diff --git a/core/src/main/java/org/dynmapblockscan/core/AbstractBlockScanBase.java b/core/src/main/java/org/dynmapblockscan/core/AbstractBlockScanBase.java index e53bbddae..3db949b47 100644 --- a/core/src/main/java/org/dynmapblockscan/core/AbstractBlockScanBase.java +++ b/core/src/main/java/org/dynmapblockscan/core/AbstractBlockScanBase.java @@ -47,6 +47,7 @@ import org.dynmapblockscan.core.statehandlers.StateContainer.WellKnownBlockClasses; import org.dynmapblockscan.core.util.Matrix3D; import org.dynmapblockscan.core.util.Vector3D; +import org.dynmapblockscan.core.PathElement; import com.google.gson.Gson; import com.google.gson.GsonBuilder; @@ -150,16 +151,6 @@ public static class BlockRecord { public int lightAttenuation; } - protected static class PathElement { - String[] modids; - PathElement(String mid) { - modids = new String[] { mid }; - } - void addModId(String mid) { - modids = Arrays.copyOf(modids, modids.length + 1); - modids[modids.length-1] = mid; - } - } protected static class PathDirectory extends PathElement { Map entries = new HashMap(); PathDirectory(String mid) { @@ -167,7 +158,7 @@ protected static class PathDirectory extends PathElement { } } - protected static Map assetmap; // Map of asset paths and mods containing them + protected Map assetmap = new HashMap<>(); // Map of asset paths and mods containing them protected void addElement(String modid, String n) { String[] tok = n.split("/"); diff --git a/core/src/main/java/org/dynmapblockscan/core/PathElement.java b/core/src/main/java/org/dynmapblockscan/core/PathElement.java new file mode 100644 index 000000000..bee656ff6 --- /dev/null +++ b/core/src/main/java/org/dynmapblockscan/core/PathElement.java @@ -0,0 +1,16 @@ +package org.dynmapblockscan.core; + +import java.util.Arrays; + +public class PathElement { + public String[] modids; + + public PathElement(String mid) { + modids = new String[]{ mid }; + } + + public void addModId(String mid) { + modids = Arrays.copyOf(modids, modids.length + 1); + modids[modids.length - 1] = mid; + } +} diff --git a/fabric-1.21.6-1.21.8/.gitignore b/fabric-1.21.6-1.21.8/.gitignore new file mode 100644 index 000000000..b30ee75db --- /dev/null +++ b/fabric-1.21.6-1.21.8/.gitignore @@ -0,0 +1,3 @@ +/.gradle/ +/build/ +/bin/ \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/build.gradle b/fabric-1.21.6-1.21.8/build.gradle new file mode 100644 index 000000000..95eae448e --- /dev/null +++ b/fabric-1.21.6-1.21.8/build.gradle @@ -0,0 +1,73 @@ +plugins { + id 'fabric-loom' version '1.11-SNAPSHOT' +} + +project.archivesBaseName = "${parent.name}-fabric-1.21.6-1.21.8" +version = project.mod_version +group = project.maven_group + +eclipse { + project { + name = "${parent.name}-fabric-1.21.6-1.21.8" + } +} + +configurations { + shadow + implementation.extendsFrom(shadow) +} + +sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = JavaLanguageVersion.of(21) // Need this here so eclipse task generates correctly. + +repositories { + mavenCentral() + maven { url 'https://oss.sonatype.org/content/repositories/snapshots' } + maven { url 'https://cursemaven.com' } +} + +dependencies { + minecraft "com.mojang:minecraft:${project.minecraft_version}" + mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" + modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" + + modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" + + compileOnly "us.dynmap:DynmapCoreAPI:${parent.version}" + + shadow project(path: ":core", configuration: 'shadow') + + compileOnly 'net.luckperms:api:5.4' + compileOnly group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2' + // modCompileOnly "me.lucko:fabric-permissions-api:0.1-SNAPSHOT" + modCompileOnly files("../libs/fabric-permissions-api-0.1.jar") +} + +processResources { + filesMatching('fabric.mod.json') { + expand "version": project.version + } +} + +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() +} + +jar { + from "LICENSE" + from { + configurations.shadow.collect { it.toString().contains("guava") ? null : it.isDirectory() ? it : zipTree(it) } + } +} + +remapJar { + archiveFileName = "${parent.name}-${parent.version}-fabric-1.21.6-1.21.8.jar" + destinationDirectory = file '../target' +} + +remapJar.doLast { + task -> + ant.checksum file: task.archivePath +} diff --git a/fabric-1.21.6-1.21.8/gradle.properties b/fabric-1.21.6-1.21.8/gradle.properties new file mode 100644 index 000000000..a1002d584 --- /dev/null +++ b/fabric-1.21.6-1.21.8/gradle.properties @@ -0,0 +1,17 @@ +# Done to increase the memory available to gradle. +org.gradle.jvmargs=-Xmx1G +org.gradle.parallel=true + +# Fabric Properties +# check these on https://fabricmc.net/develop +minecraft_version=1.21.6 +yarn_mappings=1.21.6+build.1 +loader_version=0.17.2 + +# Mod Properties +mod_version = 1.0.0 +maven_group = com.example +archives_base_name = fabric-example-mod + +# Dependencies +fabric_version=0.128.2+1.21.7 diff --git a/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/ClientProxy.java b/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/ClientProxy.java new file mode 100644 index 000000000..3b07209a4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/ClientProxy.java @@ -0,0 +1,6 @@ +package org.dynmapblockscan.fabric_1_21_6_1_21_8; + +public class ClientProxy extends Proxy { + public ClientProxy() { + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/DynmapBlockScanMod.java b/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/DynmapBlockScanMod.java new file mode 100644 index 000000000..66c682245 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/DynmapBlockScanMod.java @@ -0,0 +1,102 @@ +package org.dynmapblockscan.fabric_1_21_6_1_21_8; + +import net.fabricmc.api.EnvType; +import net.fabricmc.api.ModInitializer; +import net.fabricmc.loader.api.ModContainer; +import net.minecraft.server.MinecraftServer; +import net.fabricmc.fabric.api.event.lifecycle.v1.ServerLifecycleEvents; +import net.fabricmc.loader.api.FabricLoader; + +import java.io.File; +import java.util.Arrays; +import java.util.List; +import java.util.ArrayList; + +public class DynmapBlockScanMod implements ModInitializer +{ + public static DynmapBlockScanPlugin.OurLog logger = new DynmapBlockScanPlugin.OurLog(); + private static final ModContainer MOD_CONTAINER = FabricLoader.getInstance().getModContainer("dynmapblockscan") + .orElseThrow(() -> new RuntimeException("Failed to get mod container: dynmapblockscan")); + + // The instance of your mod that Forge uses. + public static DynmapBlockScanMod instance; + + // Says where the client and server 'proxy' code is loaded. + public static Proxy proxy = null; + + public static DynmapBlockScanPlugin plugin; + public static File jarfile; + + public DynmapBlockScanMod(){ + if(FabricLoader.getInstance().getEnvironmentType() == EnvType.CLIENT){ + proxy = new ClientProxy(); + }else{ + proxy = new Proxy(); + } + } + @Override + public void onInitialize(){ + instance = this; + + logger.info("setup"); + + jarfile = MOD_CONTAINER.getOrigin().getPaths().get(0).toFile(); + + ServerLifecycleEvents.SERVER_STARTING.register(this::onServerStarting); + ServerLifecycleEvents.SERVER_STARTED.register(this::onServerStarted); + ServerLifecycleEvents.SERVER_STOPPED.register(this::onServerStopped); + + //FileUtils.getOrCreateDirectory(FabricLoader.getInstance().getConfigDir().resolve("dynmapblockscan"), "dynmapblockscan"); + //ModLoadingContext.registerConfig("dynmapblockscan", ModConfig.Type.COMMON, SettingsConfig.SPEC, "dynmapblockscan/settings.toml"); + + } + + public static class SettingsConfig + { +// public static final ForgeConfigSpec.Builder BUILDER = new ForgeConfigSpec.Builder(); +// public static final ForgeConfigSpec SPEC; +// +// public static final ForgeConfigSpec.ConfigValue> excludeModules; +// public static final ForgeConfigSpec.ConfigValue> excludeBlockNames; + public static List excludedModules = Arrays.asList("minecraft"); // <--- Remove "minecraft" to generate vanilla blocks + public static List excludedBlockNames = Arrays.asList(); + + static + { +// BUILDER.comment("DynmapBlockScan settings"); +// BUILDER.push("settings"); +// excludeModules = BUILDER.comment("Which modules to exclude").defineList("exclude_modules", Arrays.asList("minecraft"), entry -> true); +// excludeBlockNames = BUILDER.comment("Which block names to exclude").defineList("exclude_blocknames", Arrays.asList(), entry -> true); +// BUILDER.pop(); +// +// SPEC = BUILDER.build(); + } + } + + private MinecraftServer server; + + public void onServerStarting(MinecraftServer server_) { + server = server_; + if(plugin == null) + plugin = proxy.startServer(server); +// plugin.setDisabledModules((List) SettingsConfig.excludeModules.get()); +// plugin.setDisabledBlockNames((List) SettingsConfig.excludeBlockNames.get()); + plugin.setDisabledModules((List) SettingsConfig.excludedModules); + plugin.setDisabledBlockNames((List) SettingsConfig.excludedBlockNames); + plugin.serverStarting(); + } + + public void onServerStarted(MinecraftServer server_) { + plugin.serverStarted(); + } + + public void onServerStopped(MinecraftServer server_) { + proxy.stopServer(plugin); + plugin = null; + } + +// @NetworkCheckHandler +// public boolean netCheckHandler(Map mods, Side side) { +// return true; +// } +} diff --git a/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/DynmapBlockScanPlugin.java b/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/DynmapBlockScanPlugin.java new file mode 100644 index 000000000..6cd13564e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/DynmapBlockScanPlugin.java @@ -0,0 +1,284 @@ +package org.dynmapblockscan.fabric_1_21_6_1_21_8; + +import com.google.common.collect.ImmutableMap; +import net.fabricmc.fabric.api.resource.ResourceManagerHelper; +import net.fabricmc.loader.api.FabricLoader; +import net.fabricmc.loader.api.ModContainer; +import net.fabricmc.loader.api.metadata.ModOrigin; +import net.minecraft.block.MapColor; +import net.minecraft.registry.DefaultedRegistry; +import net.minecraft.registry.Registries; +import net.minecraft.registry.RegistryKey; +import net.minecraft.resource.ResourceManager; +import net.minecraft.resource.ResourceType; +import net.minecraft.server.MinecraftServer; +import net.minecraft.state.StateManager; +import net.minecraft.state.property.Property; +import net.minecraft.util.StringIdentifiable; +import net.minecraft.util.math.BlockPos; +import net.minecraft.world.EmptyBlockView; +import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; +import org.dynmapblockscan.core.AbstractBlockScanBase; +import org.dynmapblockscan.core.BlockScanLog; +import org.dynmapblockscan.core.BlockStateOverrides.BlockStateOverride; +import org.dynmapblockscan.core.blockstate.BSBlockState; +import org.dynmapblockscan.core.blockstate.VariantList; +import org.dynmapblockscan.core.model.BlockModel; +import org.dynmapblockscan.core.statehandlers.StateContainer.StateRec; +import org.dynmapblockscan.fabric_1_21_6_1_21_8.statehandlers.FabricStateContainer; +import org.dynmapblockscan.core.PathElement; + +import java.io.File; +import java.io.InputStream; +import java.nio.file.Path; +import java.util.*; + +public class DynmapBlockScanPlugin extends AbstractBlockScanBase +{ + public static DynmapBlockScanPlugin plugin; + public static FabricLoader flInst = FabricLoader.getInstance(); + + public DynmapBlockScanPlugin(MinecraftServer srv) + { + plugin = this; + logger = new OurLog(); + } + + public void buildAssetMap() { + assetmap = new HashMap(); + Iterator mcl = flInst.getAllMods().stream().iterator(); + + while (mcl.hasNext()) { + ModContainer mc = mcl.next(); + String mid = mc.getMetadata().getId().toLowerCase(); + ModOrigin modOrigin = mc.getOrigin(); + if (modOrigin == null) continue; + + if(modOrigin.getKind() == ModOrigin.Kind.NESTED) continue;; + List modPaths = modOrigin.getPaths(); + if (modPaths == null) continue; + File src = modPaths.get(0).toFile(); + // Process mod file + processModFile(mid, src); + } + } + + public void onEnable() { + } + public void onDisable() { + } + public void serverStarted() { + } + public void serverStarting() { + logger.info("buildAssetMap"); + buildAssetMap(); + logger.info("loadOverrideResources"); + // Load override resources + loadOverrideResources(); + logger.info("scan for overrides"); + // Scan other modules for block overrides + for (ModContainer mod : flInst.getAllMods()) { + + loadModuleOverrideResources(mod.getMetadata().getId()); + } + Map blockRecords = new LinkedHashMap(); + + logger.info("Start processing states"); + + // Now process models from block records + Map models = new LinkedHashMap(); + + DefaultedRegistry bsids = Registries.BLOCK; + Block baseb = null; + + Iterator iter = bsids.iterator(); + // Scan blocks and block states + while (iter.hasNext()) { + Block b = iter.next(); + if (b == baseb) { continue; } + baseb = b; + RegistryKey rl = Registries.BLOCK.getKey(b).orElse(null); + StateManager bsc = b.getStateManager(); + // See if any of the block states use MODEL + boolean uses_model = false; + boolean uses_nonmodel = false; + + for (BlockState bs : bsc.getStates()) { + switch (bs.getRenderType()) { + case MODEL: + uses_model = true; + break; + case INVISIBLE: + uses_nonmodel = true; + if (verboselogging) + logger.info(String.format("%s: Invisible block - nothing to render", rl)); + break; + // case ENTITYBLOCK_ANIMATED: + // uses_nonmodel = true; + // if (verboselogging) + // logger.info(String.format("%s: Animated block - needs to be handled specially", rl)); + // break; +// case LIQUID: +// uses_nonmodel = true; +// if (DynmapBlockScanMod.verboselogging) +// logger.info(String.format("%s: Liquid block - special handling", rl)); +// break; + } + } + // Not model block - nothing else to do yet + if (!uses_model) { + continue; + } + else if (uses_nonmodel) { + logger.warning(String.format("%s: Block mixes model and nonmodel state handling!", rl)); + } + // Generate property value map + Map> propMap = buildPropoertyMap(bsc); + // Try to find blockstate file + //Material mat = b.getDefaultState().getBlock().getM + MapColor matcol = b.getDefaultMapColor(); + BSBlockState blockstate = loadBlockState(rl.getValue().getNamespace(), rl.getValue().getPath(), overrides, propMap); + // Build block record + BlockRecord br = new BlockRecord(); + // Process blockstate + if (blockstate != null) { + br.renderProps = blockstate.getRenderProps(); + br.materialColorID = MaterialColorID.byID(matcol.id); + br.lightAttenuation = 15; + try { // Workaround for mods with broken block state logic... + BlockState state = b.getDefaultState(); + int opacity = state.getOpacity(); + br.lightAttenuation = state.isSolidBlock(EmptyBlockView.INSTANCE, BlockPos.ORIGIN) ? 15 : (opacity == 0 ? 0 : 1); + } catch (Exception x) { + logger.warning(String.format("Exception while checking lighting data for block state: %s", b)); + logger.verboseinfo("Exception: " + x.toString()); + } + } + // Build generic block state container for block + br.sc = new FabricStateContainer(b, br.renderProps, propMap); + if (blockstate != null) { + BlockStateOverride ovr = overrides.getOverride(rl.getValue().getNamespace(), rl.getValue().getPath()); + br.varList = new LinkedHashMap>(); + // Loop through rendering states in state container + for (StateRec sr : br.sc.getValidStates()) { + Map prop = sr.getProperties(); + // If we've got key=value for block (multiple blocks in same state file) + if ((ovr != null) && (ovr.blockStateKey != null) && (ovr.blockStateValue != null)) { + prop = new HashMap(prop); + prop.put(ovr.blockStateKey, ovr.blockStateValue); + } + List vlist = blockstate.getMatchingVariants(prop, models); + br.varList.put(sr, vlist); + } + } + else { + br.varList = Collections.emptyMap(); + } + // Check for matching handler + blockRecords.put(rl.getValue().toString(), br); + } + + logger.info("Loading models...."); + loadModels(blockRecords, models); + logger.info("Variant models loaded"); + // Now, resolve all parent references - load additional models + resolveParentReferences(models); + logger.info("Parent models loaded and resolved"); + resolveAllElements(blockRecords, models); + logger.info("Elements generated"); + + publishDynmapModData(); + + assetmap = null; + } + + @Override + public InputStream openResource(String modid, String rname) { + if (modid.equals("minecraft")) modid = "dynmapblockscan"; // We supply resources (1.13.2 doesn't have assets in server jar) + String rname_lc = rname.toLowerCase(); + Object mod = flInst.getObjectShare().get(modid + ":" + rname_lc); + + ClassLoader cl = MinecraftServer.class.getClassLoader(); + if (mod != null) { + cl = mod.getClass().getClassLoader(); + } + if (cl != null) { + InputStream is = cl.getResourceAsStream(rname_lc); + if (is == null) { + is = cl.getResourceAsStream(rname); + } + return is; + } + return null; + } + + public Map> buildPropoertyMap(StateManager bsc) { + Map> renderProperties = new LinkedHashMap>(); + // Build table of render properties and valid values + for (Property p : bsc.getProperties()) { + String pn = p.getName(); + ArrayList pvals = new ArrayList(); + for (Comparable val : p.getValues()) { + if (val instanceof StringIdentifiable) { + pvals.add(((StringIdentifiable)val).asString()); + } + else { + pvals.add(val.toString()); + } + } + renderProperties.put(pn, pvals); + } + return renderProperties; + } + + // Build Map from properties in BlockState + public Map fromBlockState(BlockState bs) { + ImmutableMap.Builder bld = ImmutableMap.builder(); + for (Property x : bs.getProperties()) { + Object v = bs.get(x); + if (v instanceof StringIdentifiable) { + bld.put(x.getName(), ((StringIdentifiable)v).asString()); + } + else { + bld.put(x.getName(), v.toString()); + } + } + return bld.build(); + } + + public static class OurLog implements BlockScanLog { + Logger log; + public static final String DM = "[DynmapBlockScan] "; + OurLog() { + log = LogManager.getLogger("DynmapBlockScan"); + } + public void debug(String s) { + log.debug(DM + s); + } + public void info(String s) { + log.info(DM + s); + } + public void severe(Throwable t) { + log.fatal(t); + } + public void severe(String s) { + log.fatal(DM + s); + } + public void severe(String s, Throwable t) { + log.fatal(DM + s, t); + } + public void verboseinfo(String s) { + log.info(DM + s); + } + public void warning(String s) { + log.warn(DM + s); + } + public void warning(String s, Throwable t) { + log.warn(DM + s, t); + } + } +} + diff --git a/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/FileUtils.java b/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/FileUtils.java new file mode 100644 index 000000000..f5cc23142 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/FileUtils.java @@ -0,0 +1,38 @@ +package org.dynmapblockscan.fabric_1_21_6_1_21_8; + +import java.io.IOException; +import java.nio.file.FileAlreadyExistsException; +import java.nio.file.Files; +import java.nio.file.Path; +import com.mojang.logging.LogUtils; +import org.slf4j.Logger; +import org.slf4j.Marker; +import org.slf4j.MarkerFactory; + +public class FileUtils { + private static final Logger LOGGER = LogUtils.getLogger(); + private static final Marker CORE = MarkerFactory.getMarker("CORE"); + public static Path getOrCreateDirectory(Path dirPath, String dirLabel) { + if (!Files.isDirectory(dirPath.getParent())) { + getOrCreateDirectory(dirPath.getParent(), "parent of "+dirLabel); + } + if (!Files.isDirectory(dirPath)) + { + LOGGER.debug(CORE, "Making {} directory : {}", dirLabel, dirPath); + try { + Files.createDirectory(dirPath); + } catch (IOException e) { + if (e instanceof FileAlreadyExistsException) { + LOGGER.error(CORE, "Failed to create {} directory - there is a file in the way", dirLabel); + } else { + LOGGER.error(CORE, "Problem with creating {} directory (Permissions?)", dirLabel, e); + } + throw new RuntimeException("Problem creating directory", e); + } + LOGGER.debug(CORE, "Created {} directory : {}", dirLabel, dirPath); + } else { + LOGGER.debug(CORE, "Found existing {} directory : {}", dirLabel, dirPath); + } + return dirPath; + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/Proxy.java b/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/Proxy.java new file mode 100644 index 000000000..46950c7f8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/Proxy.java @@ -0,0 +1,24 @@ +package org.dynmapblockscan.fabric_1_21_6_1_21_8; + +import net.minecraft.server.MinecraftServer; + +/** + * Server side proxy - methods for creating and cleaning up plugin + */ +public class Proxy +{ + public Proxy() + { + } + public DynmapBlockScanPlugin startServer(MinecraftServer srv) { + DynmapBlockScanPlugin plugin = DynmapBlockScanPlugin.plugin; + if (plugin == null) { + plugin = new DynmapBlockScanPlugin(srv); + plugin.onEnable(); + } + return plugin; + } + public void stopServer(DynmapBlockScanPlugin plugin) { + plugin.onDisable(); + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/Version.java b/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/Version.java new file mode 100644 index 000000000..8fca51b20 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/Version.java @@ -0,0 +1,7 @@ +package org.dynmapblockscan.fabric_1_21_6_1_21_8; + +public class Version { + public static final String VER = "@VERSION@"; + public static final String BUILD_NUMBER = "@BUILD_NUMBER@"; +} + diff --git a/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/mixin/DynmapBlockScanMixin.java b/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/mixin/DynmapBlockScanMixin.java new file mode 100644 index 000000000..0bab4b737 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/mixin/DynmapBlockScanMixin.java @@ -0,0 +1,17 @@ +package org.dynmapblockscan.fabric_1_21_6_1_21_8.mixin; + +import net.minecraft.client.gui.screen.TitleScreen; + +import org.dynmapblockscan.fabric_1_21_6_1_21_8.DynmapBlockScanMod; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; + +@Mixin(TitleScreen.class) +public class DynmapBlockScanMixin { + @Inject(at = @At("HEAD"), method = "init()V") + private void init(CallbackInfo info) { + DynmapBlockScanMod.logger.info("This line is printed by an example mod mixin!"); + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/statehandlers/FabricStateContainer.java b/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/statehandlers/FabricStateContainer.java new file mode 100644 index 000000000..9e220a432 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/java/org/dynmapblockscan/fabric_1_21_6_1_21_8/statehandlers/FabricStateContainer.java @@ -0,0 +1,93 @@ +package org.dynmapblockscan.fabric_1_21_6_1_21_8.statehandlers; + +import com.google.common.collect.ImmutableMap; +import net.minecraft.block.*; +import net.minecraft.state.property.Property; +import net.minecraft.util.StringIdentifiable; +import org.dynmapblockscan.core.statehandlers.StateContainer; + +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; + +public class FabricStateContainer extends StateContainer { + + public FabricStateContainer(Block blk, Set renderprops, Map> propMap) { + List bsl = blk.getStateManager().getStates(); + BlockState defstate = blk.getDefaultState(); + if (renderprops == null) { + renderprops = new HashSet(); + for (String pn : propMap.keySet()) { + renderprops.add(pn); + } + } + // Build table of render properties and valid values + for (String pn : propMap.keySet()) { + if (!renderprops.contains(pn)) { + continue; + } + this.renderProperties.put(pn, propMap.get(pn)); + } + + this.defStateIndex = 0; + int idx = 0; + for (BlockState bs : bsl) { + ImmutableMap.Builder bld = ImmutableMap.builder(); + for (Property ent : bs.getProperties()) { + String pn = ent.getName(); + if (renderprops.contains(pn)) { // If valid render property + Comparable v = bs.get(ent); + if (v instanceof StringIdentifiable) { + v = ((StringIdentifiable)v).asString(); + } + bld.put(pn, v.toString()); + } + } + StateRec sr = new StateRec(idx, bld.build()); + int prev_sr = records.indexOf(sr); + if (prev_sr < 0) { + if (bs.equals(defstate)) { + this.defStateIndex = records.size(); + } + records.add(sr); + } + else { + StateRec prev = records.get(prev_sr); + if (!prev.hasMeta(idx)) { + sr = new StateRec(prev, idx); + records.set(prev_sr, sr); + if (bs.equals(defstate)) { + this.defStateIndex = prev_sr; + } + } + } + idx++; + } + // Check for well-known block types + if (blk instanceof LeavesBlock) { + type = WellKnownBlockClasses.LEAVES; + } + else if (blk instanceof CropBlock) { + type = WellKnownBlockClasses.CROPS; + } + else if (blk instanceof FlowerBlock) { + type = WellKnownBlockClasses.FLOWER; + } + else if (blk instanceof TallPlantBlock) { + type = WellKnownBlockClasses.TALLGRASS; + } + else if (blk instanceof VineBlock) { + type = WellKnownBlockClasses.VINES; + } + else if (blk instanceof PlantBlock) { + type = WellKnownBlockClasses.BUSH; + } + else if (blk instanceof GrassBlock) { + type = WellKnownBlockClasses.GRASS; + } + else if (blk instanceof LightBlock) { + type = WellKnownBlockClasses.LIQUID; + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/.mcassetsroot b/fabric-1.21.6-1.21.8/src/main/resources/assets/.mcassetsroot new file mode 100644 index 000000000..e69de29bb diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/armor_trims.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/armor_trims.json new file mode 100644 index 000000000..7e92af33f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/armor_trims.json @@ -0,0 +1,63 @@ +{ + "sources": [ + { + "type": "minecraft:paletted_permutations", + "palette_key": "minecraft:trims/color_palettes/trim_palette", + "permutations": { + "amethyst": "minecraft:trims/color_palettes/amethyst", + "copper": "minecraft:trims/color_palettes/copper", + "diamond": "minecraft:trims/color_palettes/diamond", + "diamond_darker": "minecraft:trims/color_palettes/diamond_darker", + "emerald": "minecraft:trims/color_palettes/emerald", + "gold": "minecraft:trims/color_palettes/gold", + "gold_darker": "minecraft:trims/color_palettes/gold_darker", + "iron": "minecraft:trims/color_palettes/iron", + "iron_darker": "minecraft:trims/color_palettes/iron_darker", + "lapis": "minecraft:trims/color_palettes/lapis", + "netherite": "minecraft:trims/color_palettes/netherite", + "netherite_darker": "minecraft:trims/color_palettes/netherite_darker", + "quartz": "minecraft:trims/color_palettes/quartz", + "redstone": "minecraft:trims/color_palettes/redstone", + "resin": "minecraft:trims/color_palettes/resin" + }, + "textures": [ + "minecraft:trims/entity/humanoid/sentry", + "minecraft:trims/entity/humanoid_leggings/sentry", + "minecraft:trims/entity/humanoid/dune", + "minecraft:trims/entity/humanoid_leggings/dune", + "minecraft:trims/entity/humanoid/coast", + "minecraft:trims/entity/humanoid_leggings/coast", + "minecraft:trims/entity/humanoid/wild", + "minecraft:trims/entity/humanoid_leggings/wild", + "minecraft:trims/entity/humanoid/ward", + "minecraft:trims/entity/humanoid_leggings/ward", + "minecraft:trims/entity/humanoid/eye", + "minecraft:trims/entity/humanoid_leggings/eye", + "minecraft:trims/entity/humanoid/vex", + "minecraft:trims/entity/humanoid_leggings/vex", + "minecraft:trims/entity/humanoid/tide", + "minecraft:trims/entity/humanoid_leggings/tide", + "minecraft:trims/entity/humanoid/snout", + "minecraft:trims/entity/humanoid_leggings/snout", + "minecraft:trims/entity/humanoid/rib", + "minecraft:trims/entity/humanoid_leggings/rib", + "minecraft:trims/entity/humanoid/spire", + "minecraft:trims/entity/humanoid_leggings/spire", + "minecraft:trims/entity/humanoid/wayfinder", + "minecraft:trims/entity/humanoid_leggings/wayfinder", + "minecraft:trims/entity/humanoid/shaper", + "minecraft:trims/entity/humanoid_leggings/shaper", + "minecraft:trims/entity/humanoid/silence", + "minecraft:trims/entity/humanoid_leggings/silence", + "minecraft:trims/entity/humanoid/raiser", + "minecraft:trims/entity/humanoid_leggings/raiser", + "minecraft:trims/entity/humanoid/host", + "minecraft:trims/entity/humanoid_leggings/host", + "minecraft:trims/entity/humanoid/flow", + "minecraft:trims/entity/humanoid_leggings/flow", + "minecraft:trims/entity/humanoid/bolt", + "minecraft:trims/entity/humanoid_leggings/bolt" + ] + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/banner_patterns.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/banner_patterns.json new file mode 100644 index 000000000..b683a9828 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/banner_patterns.json @@ -0,0 +1,13 @@ +{ + "sources": [ + { + "type": "minecraft:single", + "resource": "minecraft:entity/banner_base" + }, + { + "type": "minecraft:directory", + "prefix": "entity/banner/", + "source": "entity/banner" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/beds.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/beds.json new file mode 100644 index 000000000..d2e798a5e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/beds.json @@ -0,0 +1,9 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "entity/bed/", + "source": "entity/bed" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/blocks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/blocks.json new file mode 100644 index 000000000..d2cf5a79c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/blocks.json @@ -0,0 +1,58 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "block/", + "source": "block" + }, + { + "type": "minecraft:directory", + "prefix": "item/", + "source": "item" + }, + { + "type": "minecraft:directory", + "prefix": "entity/conduit/", + "source": "entity/conduit" + }, + { + "type": "minecraft:single", + "resource": "minecraft:entity/bell/bell_body" + }, + { + "type": "minecraft:single", + "resource": "minecraft:entity/decorated_pot/decorated_pot_side" + }, + { + "type": "minecraft:single", + "resource": "minecraft:entity/enchanting_table_book" + }, + { + "type": "minecraft:paletted_permutations", + "palette_key": "minecraft:trims/color_palettes/trim_palette", + "permutations": { + "amethyst": "minecraft:trims/color_palettes/amethyst", + "copper": "minecraft:trims/color_palettes/copper", + "diamond": "minecraft:trims/color_palettes/diamond", + "diamond_darker": "minecraft:trims/color_palettes/diamond_darker", + "emerald": "minecraft:trims/color_palettes/emerald", + "gold": "minecraft:trims/color_palettes/gold", + "gold_darker": "minecraft:trims/color_palettes/gold_darker", + "iron": "minecraft:trims/color_palettes/iron", + "iron_darker": "minecraft:trims/color_palettes/iron_darker", + "lapis": "minecraft:trims/color_palettes/lapis", + "netherite": "minecraft:trims/color_palettes/netherite", + "netherite_darker": "minecraft:trims/color_palettes/netherite_darker", + "quartz": "minecraft:trims/color_palettes/quartz", + "redstone": "minecraft:trims/color_palettes/redstone", + "resin": "minecraft:trims/color_palettes/resin" + }, + "textures": [ + "minecraft:trims/items/helmet_trim", + "minecraft:trims/items/chestplate_trim", + "minecraft:trims/items/leggings_trim", + "minecraft:trims/items/boots_trim" + ] + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/chests.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/chests.json new file mode 100644 index 000000000..81a68b1ca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/chests.json @@ -0,0 +1,9 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "entity/chest/", + "source": "entity/chest" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/decorated_pot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/decorated_pot.json new file mode 100644 index 000000000..57356d985 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/decorated_pot.json @@ -0,0 +1,9 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "entity/decorated_pot/", + "source": "entity/decorated_pot" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/gui.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/gui.json new file mode 100644 index 000000000..1ad438f00 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/gui.json @@ -0,0 +1,14 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "", + "source": "gui/sprites" + }, + { + "type": "minecraft:directory", + "prefix": "mob_effect/", + "source": "mob_effect" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/map_decorations.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/map_decorations.json new file mode 100644 index 000000000..f5cf7910d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/map_decorations.json @@ -0,0 +1,9 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "", + "source": "map/decorations" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/paintings.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/paintings.json new file mode 100644 index 000000000..1345d6d1e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/paintings.json @@ -0,0 +1,9 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "", + "source": "painting" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/particles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/particles.json new file mode 100644 index 000000000..18229aff0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/particles.json @@ -0,0 +1,9 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "", + "source": "particle" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/shield_patterns.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/shield_patterns.json new file mode 100644 index 000000000..77793ed1b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/shield_patterns.json @@ -0,0 +1,17 @@ +{ + "sources": [ + { + "type": "minecraft:single", + "resource": "minecraft:entity/shield_base" + }, + { + "type": "minecraft:single", + "resource": "minecraft:entity/shield_base_nopattern" + }, + { + "type": "minecraft:directory", + "prefix": "entity/shield/", + "source": "entity/shield" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/shulker_boxes.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/shulker_boxes.json new file mode 100644 index 000000000..d4ecef71e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/shulker_boxes.json @@ -0,0 +1,9 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "entity/shulker/", + "source": "entity/shulker" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/signs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/signs.json new file mode 100644 index 000000000..1f34aaa1a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/atlases/signs.json @@ -0,0 +1,9 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "entity/signs/", + "source": "entity/signs" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_button.json new file mode 100644 index 000000000..5b33b9926 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/acacia_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/acacia_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/acacia_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/acacia_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/acacia_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/acacia_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/acacia_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/acacia_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/acacia_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/acacia_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/acacia_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/acacia_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/acacia_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_door.json new file mode 100644 index 000000000..8ed15c35d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/acacia_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/acacia_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/acacia_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/acacia_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/acacia_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/acacia_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/acacia_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/acacia_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/acacia_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/acacia_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/acacia_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/acacia_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/acacia_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/acacia_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/acacia_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/acacia_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/acacia_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/acacia_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/acacia_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/acacia_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/acacia_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/acacia_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/acacia_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/acacia_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/acacia_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/acacia_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/acacia_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/acacia_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/acacia_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/acacia_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/acacia_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/acacia_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_fence.json new file mode 100644 index 000000000..179ca6ae0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/acacia_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/acacia_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/acacia_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/acacia_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/acacia_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_fence_gate.json new file mode 100644 index 000000000..39af376d2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/acacia_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/acacia_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/acacia_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/acacia_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/acacia_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/acacia_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/acacia_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/acacia_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/acacia_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/acacia_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/acacia_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/acacia_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/acacia_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/acacia_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/acacia_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/acacia_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_hanging_sign.json new file mode 100644 index 000000000..57024f8fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/acacia_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_leaves.json new file mode 100644 index 000000000..0d99aafa4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/acacia_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_log.json new file mode 100644 index 000000000..97c6b5020 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/acacia_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/acacia_log" + }, + "axis=z": { + "model": "minecraft:block/acacia_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_planks.json new file mode 100644 index 000000000..529c16091 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/acacia_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_pressure_plate.json new file mode 100644 index 000000000..6572988be --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/acacia_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/acacia_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_sapling.json new file mode 100644 index 000000000..8f2fec96c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/acacia_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_sign.json new file mode 100644 index 000000000..c663452f5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/acacia_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_slab.json new file mode 100644 index 000000000..4816cdb8f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/acacia_slab" + }, + "type=double": { + "model": "minecraft:block/acacia_planks" + }, + "type=top": { + "model": "minecraft:block/acacia_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_stairs.json new file mode 100644 index 000000000..fb8b6e13f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/acacia_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/acacia_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/acacia_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/acacia_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/acacia_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/acacia_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/acacia_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/acacia_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/acacia_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/acacia_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/acacia_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/acacia_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_trapdoor.json new file mode 100644 index 000000000..3518fc7a4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/acacia_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/acacia_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/acacia_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/acacia_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/acacia_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/acacia_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/acacia_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/acacia_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/acacia_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/acacia_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/acacia_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/acacia_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/acacia_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/acacia_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/acacia_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/acacia_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_wall_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_wall_hanging_sign.json new file mode 100644 index 000000000..57024f8fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/acacia_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_wall_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_wall_sign.json new file mode 100644 index 000000000..c663452f5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/acacia_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_wood.json new file mode 100644 index 000000000..f064d5c60 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/acacia_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/acacia_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/acacia_wood" + }, + "axis=z": { + "model": "minecraft:block/acacia_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/activator_rail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/activator_rail.json new file mode 100644 index 000000000..5c5354b56 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/activator_rail.json @@ -0,0 +1,46 @@ +{ + "variants": { + "powered=false,shape=ascending_east": { + "model": "minecraft:block/activator_rail_raised_ne", + "y": 90 + }, + "powered=false,shape=ascending_north": { + "model": "minecraft:block/activator_rail_raised_ne" + }, + "powered=false,shape=ascending_south": { + "model": "minecraft:block/activator_rail_raised_sw" + }, + "powered=false,shape=ascending_west": { + "model": "minecraft:block/activator_rail_raised_sw", + "y": 90 + }, + "powered=false,shape=east_west": { + "model": "minecraft:block/activator_rail", + "y": 90 + }, + "powered=false,shape=north_south": { + "model": "minecraft:block/activator_rail" + }, + "powered=true,shape=ascending_east": { + "model": "minecraft:block/activator_rail_on_raised_ne", + "y": 90 + }, + "powered=true,shape=ascending_north": { + "model": "minecraft:block/activator_rail_on_raised_ne" + }, + "powered=true,shape=ascending_south": { + "model": "minecraft:block/activator_rail_on_raised_sw" + }, + "powered=true,shape=ascending_west": { + "model": "minecraft:block/activator_rail_on_raised_sw", + "y": 90 + }, + "powered=true,shape=east_west": { + "model": "minecraft:block/activator_rail_on", + "y": 90 + }, + "powered=true,shape=north_south": { + "model": "minecraft:block/activator_rail_on" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/air.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/air.json new file mode 100644 index 000000000..2c8f02f06 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/air.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/air" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/allium.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/allium.json new file mode 100644 index 000000000..6c0aa8355 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/allium.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/allium" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/amethyst_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/amethyst_block.json new file mode 100644 index 000000000..388d6a427 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/amethyst_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/amethyst_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/amethyst_cluster.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/amethyst_cluster.json new file mode 100644 index 000000000..09e6b985c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/amethyst_cluster.json @@ -0,0 +1,30 @@ +{ + "variants": { + "facing=down": { + "model": "minecraft:block/amethyst_cluster", + "x": 180 + }, + "facing=east": { + "model": "minecraft:block/amethyst_cluster", + "x": 90, + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/amethyst_cluster", + "x": 90 + }, + "facing=south": { + "model": "minecraft:block/amethyst_cluster", + "x": 90, + "y": 180 + }, + "facing=up": { + "model": "minecraft:block/amethyst_cluster" + }, + "facing=west": { + "model": "minecraft:block/amethyst_cluster", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/ancient_debris.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/ancient_debris.json new file mode 100644 index 000000000..dd6b05945 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/ancient_debris.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/ancient_debris" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/andesite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/andesite.json new file mode 100644 index 000000000..8248d30d6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/andesite.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/andesite" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/andesite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/andesite_slab.json new file mode 100644 index 000000000..9afe0305d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/andesite_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/andesite_slab" + }, + "type=double": { + "model": "minecraft:block/andesite" + }, + "type=top": { + "model": "minecraft:block/andesite_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/andesite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/andesite_stairs.json new file mode 100644 index 000000000..4a05cd555 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/andesite_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/andesite_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/andesite_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/andesite_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/andesite_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/andesite_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/andesite_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/andesite_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/andesite_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/andesite_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/andesite_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/andesite_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/andesite_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/andesite_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/andesite_wall.json new file mode 100644 index 000000000..ae8964117 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/andesite_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/andesite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/andesite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/andesite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/andesite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/andesite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/andesite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/andesite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/andesite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/andesite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/anvil.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/anvil.json new file mode 100644 index 000000000..16586bb37 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/anvil.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/anvil", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/anvil", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/anvil" + }, + "facing=west": { + "model": "minecraft:block/anvil", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/attached_melon_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/attached_melon_stem.json new file mode 100644 index 000000000..bc8c0345b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/attached_melon_stem.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/attached_melon_stem", + "y": 180 + }, + "facing=north": { + "model": "minecraft:block/attached_melon_stem", + "y": 90 + }, + "facing=south": { + "model": "minecraft:block/attached_melon_stem", + "y": 270 + }, + "facing=west": { + "model": "minecraft:block/attached_melon_stem" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/attached_pumpkin_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/attached_pumpkin_stem.json new file mode 100644 index 000000000..1324bcd82 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/attached_pumpkin_stem.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/attached_pumpkin_stem", + "y": 180 + }, + "facing=north": { + "model": "minecraft:block/attached_pumpkin_stem", + "y": 90 + }, + "facing=south": { + "model": "minecraft:block/attached_pumpkin_stem", + "y": 270 + }, + "facing=west": { + "model": "minecraft:block/attached_pumpkin_stem" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/azalea.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/azalea.json new file mode 100644 index 000000000..8fa18403b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/azalea.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/azalea" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/azalea_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/azalea_leaves.json new file mode 100644 index 000000000..091af72e8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/azalea_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/azalea_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/azure_bluet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/azure_bluet.json new file mode 100644 index 000000000..ddea50561 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/azure_bluet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/azure_bluet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo.json new file mode 100644 index 000000000..3f56d3314 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo.json @@ -0,0 +1,58 @@ +{ + "multipart": [ + { + "apply": [ + { + "model": "minecraft:block/bamboo1_age0" + }, + { + "model": "minecraft:block/bamboo2_age0" + }, + { + "model": "minecraft:block/bamboo3_age0" + }, + { + "model": "minecraft:block/bamboo4_age0" + } + ], + "when": { + "age": "0" + } + }, + { + "apply": [ + { + "model": "minecraft:block/bamboo1_age1" + }, + { + "model": "minecraft:block/bamboo2_age1" + }, + { + "model": "minecraft:block/bamboo3_age1" + }, + { + "model": "minecraft:block/bamboo4_age1" + } + ], + "when": { + "age": "1" + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_small_leaves" + }, + "when": { + "leaves": "small" + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_large_leaves" + }, + "when": { + "leaves": "large" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_block.json new file mode 100644 index 000000000..26021a566 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_block.json @@ -0,0 +1,13 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/bamboo_block_x" + }, + "axis=y": { + "model": "minecraft:block/bamboo_block_y" + }, + "axis=z": { + "model": "minecraft:block/bamboo_block_z" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_button.json new file mode 100644 index 000000000..c3918bcea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/bamboo_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/bamboo_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/bamboo_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/bamboo_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/bamboo_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/bamboo_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/bamboo_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/bamboo_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/bamboo_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/bamboo_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/bamboo_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/bamboo_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/bamboo_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_door.json new file mode 100644 index 000000000..95afed111 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/bamboo_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/bamboo_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/bamboo_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/bamboo_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/bamboo_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/bamboo_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/bamboo_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/bamboo_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/bamboo_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/bamboo_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/bamboo_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/bamboo_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/bamboo_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/bamboo_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/bamboo_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/bamboo_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/bamboo_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/bamboo_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/bamboo_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/bamboo_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/bamboo_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/bamboo_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/bamboo_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/bamboo_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/bamboo_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/bamboo_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/bamboo_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/bamboo_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/bamboo_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/bamboo_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/bamboo_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/bamboo_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_fence.json new file mode 100644 index 000000000..fe47ca8fa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_fence.json @@ -0,0 +1,41 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/bamboo_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_fence_side_north" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_fence_side_east" + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_fence_side_south" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_fence_side_west" + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_fence_gate.json new file mode 100644 index 000000000..f989df6cb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_fence_gate.json @@ -0,0 +1,64 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/bamboo_fence_gate", + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/bamboo_fence_gate_open", + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/bamboo_fence_gate_wall", + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/bamboo_fence_gate_wall_open", + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/bamboo_fence_gate", + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/bamboo_fence_gate_open", + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/bamboo_fence_gate_wall", + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/bamboo_fence_gate_wall_open", + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/bamboo_fence_gate" + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/bamboo_fence_gate_open" + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/bamboo_fence_gate_wall" + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/bamboo_fence_gate_wall_open" + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/bamboo_fence_gate", + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/bamboo_fence_gate_open", + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/bamboo_fence_gate_wall", + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/bamboo_fence_gate_wall_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_hanging_sign.json new file mode 100644 index 000000000..281454077 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bamboo_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic.json new file mode 100644 index 000000000..c9b6ece45 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bamboo_mosaic" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic_slab.json new file mode 100644 index 000000000..1b743dfa9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/bamboo_mosaic_slab" + }, + "type=double": { + "model": "minecraft:block/bamboo_mosaic" + }, + "type=top": { + "model": "minecraft:block/bamboo_mosaic_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic_stairs.json new file mode 100644 index 000000000..79036430c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/bamboo_mosaic_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/bamboo_mosaic_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/bamboo_mosaic_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/bamboo_mosaic_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/bamboo_mosaic_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/bamboo_mosaic_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/bamboo_mosaic_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/bamboo_mosaic_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_planks.json new file mode 100644 index 000000000..f4f47811c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bamboo_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_pressure_plate.json new file mode 100644 index 000000000..6d4c18a90 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/bamboo_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/bamboo_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_sapling.json new file mode 100644 index 000000000..b16a0c274 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bamboo_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_sign.json new file mode 100644 index 000000000..0648ee3c0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bamboo_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_slab.json new file mode 100644 index 000000000..0888e7718 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/bamboo_slab" + }, + "type=double": { + "model": "minecraft:block/bamboo_planks" + }, + "type=top": { + "model": "minecraft:block/bamboo_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_stairs.json new file mode 100644 index 000000000..649d2b703 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/bamboo_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/bamboo_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/bamboo_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/bamboo_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/bamboo_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/bamboo_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/bamboo_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/bamboo_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/bamboo_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/bamboo_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/bamboo_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/bamboo_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_trapdoor.json new file mode 100644 index 000000000..e1b5bd14d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/bamboo_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/bamboo_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/bamboo_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/bamboo_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/bamboo_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/bamboo_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/bamboo_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/bamboo_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/bamboo_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/bamboo_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/bamboo_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/bamboo_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/bamboo_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/bamboo_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/bamboo_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/bamboo_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_wall_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_wall_hanging_sign.json new file mode 100644 index 000000000..281454077 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bamboo_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_wall_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_wall_sign.json new file mode 100644 index 000000000..0648ee3c0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bamboo_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bamboo_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/barrel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/barrel.json new file mode 100644 index 000000000..3ed4f4061 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/barrel.json @@ -0,0 +1,56 @@ +{ + "variants": { + "facing=down,open=false": { + "model": "minecraft:block/barrel", + "x": 180 + }, + "facing=down,open=true": { + "model": "minecraft:block/barrel_open", + "x": 180 + }, + "facing=east,open=false": { + "model": "minecraft:block/barrel", + "x": 90, + "y": 90 + }, + "facing=east,open=true": { + "model": "minecraft:block/barrel_open", + "x": 90, + "y": 90 + }, + "facing=north,open=false": { + "model": "minecraft:block/barrel", + "x": 90 + }, + "facing=north,open=true": { + "model": "minecraft:block/barrel_open", + "x": 90 + }, + "facing=south,open=false": { + "model": "minecraft:block/barrel", + "x": 90, + "y": 180 + }, + "facing=south,open=true": { + "model": "minecraft:block/barrel_open", + "x": 90, + "y": 180 + }, + "facing=up,open=false": { + "model": "minecraft:block/barrel" + }, + "facing=up,open=true": { + "model": "minecraft:block/barrel_open" + }, + "facing=west,open=false": { + "model": "minecraft:block/barrel", + "x": 90, + "y": 270 + }, + "facing=west,open=true": { + "model": "minecraft:block/barrel_open", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/barrier.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/barrier.json new file mode 100644 index 000000000..a8194d260 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/barrier.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/barrier" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/basalt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/basalt.json new file mode 100644 index 000000000..12bc2d6a9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/basalt.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/basalt", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/basalt" + }, + "axis=z": { + "model": "minecraft:block/basalt", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/beacon.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/beacon.json new file mode 100644 index 000000000..dc3a36b15 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/beacon.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/beacon" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bedrock.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bedrock.json new file mode 100644 index 000000000..cb107bd0c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bedrock.json @@ -0,0 +1,20 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/bedrock" + }, + { + "model": "minecraft:block/bedrock_mirrored" + }, + { + "model": "minecraft:block/bedrock", + "y": 180 + }, + { + "model": "minecraft:block/bedrock_mirrored", + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bee_nest.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bee_nest.json new file mode 100644 index 000000000..d76bd0098 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bee_nest.json @@ -0,0 +1,94 @@ +{ + "variants": { + "facing=east,honey_level=0": { + "model": "minecraft:block/bee_nest_empty", + "y": 90 + }, + "facing=east,honey_level=1": { + "model": "minecraft:block/bee_nest_empty", + "y": 90 + }, + "facing=east,honey_level=2": { + "model": "minecraft:block/bee_nest_empty", + "y": 90 + }, + "facing=east,honey_level=3": { + "model": "minecraft:block/bee_nest_empty", + "y": 90 + }, + "facing=east,honey_level=4": { + "model": "minecraft:block/bee_nest_empty", + "y": 90 + }, + "facing=east,honey_level=5": { + "model": "minecraft:block/bee_nest_honey", + "y": 90 + }, + "facing=north,honey_level=0": { + "model": "minecraft:block/bee_nest_empty" + }, + "facing=north,honey_level=1": { + "model": "minecraft:block/bee_nest_empty" + }, + "facing=north,honey_level=2": { + "model": "minecraft:block/bee_nest_empty" + }, + "facing=north,honey_level=3": { + "model": "minecraft:block/bee_nest_empty" + }, + "facing=north,honey_level=4": { + "model": "minecraft:block/bee_nest_empty" + }, + "facing=north,honey_level=5": { + "model": "minecraft:block/bee_nest_honey" + }, + "facing=south,honey_level=0": { + "model": "minecraft:block/bee_nest_empty", + "y": 180 + }, + "facing=south,honey_level=1": { + "model": "minecraft:block/bee_nest_empty", + "y": 180 + }, + "facing=south,honey_level=2": { + "model": "minecraft:block/bee_nest_empty", + "y": 180 + }, + "facing=south,honey_level=3": { + "model": "minecraft:block/bee_nest_empty", + "y": 180 + }, + "facing=south,honey_level=4": { + "model": "minecraft:block/bee_nest_empty", + "y": 180 + }, + "facing=south,honey_level=5": { + "model": "minecraft:block/bee_nest_honey", + "y": 180 + }, + "facing=west,honey_level=0": { + "model": "minecraft:block/bee_nest_empty", + "y": 270 + }, + "facing=west,honey_level=1": { + "model": "minecraft:block/bee_nest_empty", + "y": 270 + }, + "facing=west,honey_level=2": { + "model": "minecraft:block/bee_nest_empty", + "y": 270 + }, + "facing=west,honey_level=3": { + "model": "minecraft:block/bee_nest_empty", + "y": 270 + }, + "facing=west,honey_level=4": { + "model": "minecraft:block/bee_nest_empty", + "y": 270 + }, + "facing=west,honey_level=5": { + "model": "minecraft:block/bee_nest_honey", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/beehive.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/beehive.json new file mode 100644 index 000000000..cebaa7776 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/beehive.json @@ -0,0 +1,94 @@ +{ + "variants": { + "facing=east,honey_level=0": { + "model": "minecraft:block/beehive_empty", + "y": 90 + }, + "facing=east,honey_level=1": { + "model": "minecraft:block/beehive_empty", + "y": 90 + }, + "facing=east,honey_level=2": { + "model": "minecraft:block/beehive_empty", + "y": 90 + }, + "facing=east,honey_level=3": { + "model": "minecraft:block/beehive_empty", + "y": 90 + }, + "facing=east,honey_level=4": { + "model": "minecraft:block/beehive_empty", + "y": 90 + }, + "facing=east,honey_level=5": { + "model": "minecraft:block/beehive_honey", + "y": 90 + }, + "facing=north,honey_level=0": { + "model": "minecraft:block/beehive_empty" + }, + "facing=north,honey_level=1": { + "model": "minecraft:block/beehive_empty" + }, + "facing=north,honey_level=2": { + "model": "minecraft:block/beehive_empty" + }, + "facing=north,honey_level=3": { + "model": "minecraft:block/beehive_empty" + }, + "facing=north,honey_level=4": { + "model": "minecraft:block/beehive_empty" + }, + "facing=north,honey_level=5": { + "model": "minecraft:block/beehive_honey" + }, + "facing=south,honey_level=0": { + "model": "minecraft:block/beehive_empty", + "y": 180 + }, + "facing=south,honey_level=1": { + "model": "minecraft:block/beehive_empty", + "y": 180 + }, + "facing=south,honey_level=2": { + "model": "minecraft:block/beehive_empty", + "y": 180 + }, + "facing=south,honey_level=3": { + "model": "minecraft:block/beehive_empty", + "y": 180 + }, + "facing=south,honey_level=4": { + "model": "minecraft:block/beehive_empty", + "y": 180 + }, + "facing=south,honey_level=5": { + "model": "minecraft:block/beehive_honey", + "y": 180 + }, + "facing=west,honey_level=0": { + "model": "minecraft:block/beehive_empty", + "y": 270 + }, + "facing=west,honey_level=1": { + "model": "minecraft:block/beehive_empty", + "y": 270 + }, + "facing=west,honey_level=2": { + "model": "minecraft:block/beehive_empty", + "y": 270 + }, + "facing=west,honey_level=3": { + "model": "minecraft:block/beehive_empty", + "y": 270 + }, + "facing=west,honey_level=4": { + "model": "minecraft:block/beehive_empty", + "y": 270 + }, + "facing=west,honey_level=5": { + "model": "minecraft:block/beehive_honey", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/beetroots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/beetroots.json new file mode 100644 index 000000000..98e30758a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/beetroots.json @@ -0,0 +1,16 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/beetroots_stage0" + }, + "age=1": { + "model": "minecraft:block/beetroots_stage1" + }, + "age=2": { + "model": "minecraft:block/beetroots_stage2" + }, + "age=3": { + "model": "minecraft:block/beetroots_stage3" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bell.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bell.json new file mode 100644 index 000000000..2af4b5dd2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bell.json @@ -0,0 +1,64 @@ +{ + "variants": { + "attachment=ceiling,facing=east": { + "model": "minecraft:block/bell_ceiling", + "y": 90 + }, + "attachment=ceiling,facing=north": { + "model": "minecraft:block/bell_ceiling" + }, + "attachment=ceiling,facing=south": { + "model": "minecraft:block/bell_ceiling", + "y": 180 + }, + "attachment=ceiling,facing=west": { + "model": "minecraft:block/bell_ceiling", + "y": 270 + }, + "attachment=double_wall,facing=east": { + "model": "minecraft:block/bell_between_walls" + }, + "attachment=double_wall,facing=north": { + "model": "minecraft:block/bell_between_walls", + "y": 270 + }, + "attachment=double_wall,facing=south": { + "model": "minecraft:block/bell_between_walls", + "y": 90 + }, + "attachment=double_wall,facing=west": { + "model": "minecraft:block/bell_between_walls", + "y": 180 + }, + "attachment=floor,facing=east": { + "model": "minecraft:block/bell_floor", + "y": 90 + }, + "attachment=floor,facing=north": { + "model": "minecraft:block/bell_floor" + }, + "attachment=floor,facing=south": { + "model": "minecraft:block/bell_floor", + "y": 180 + }, + "attachment=floor,facing=west": { + "model": "minecraft:block/bell_floor", + "y": 270 + }, + "attachment=single_wall,facing=east": { + "model": "minecraft:block/bell_wall" + }, + "attachment=single_wall,facing=north": { + "model": "minecraft:block/bell_wall", + "y": 270 + }, + "attachment=single_wall,facing=south": { + "model": "minecraft:block/bell_wall", + "y": 90 + }, + "attachment=single_wall,facing=west": { + "model": "minecraft:block/bell_wall", + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/big_dripleaf.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/big_dripleaf.json new file mode 100644 index 000000000..06aefac01 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/big_dripleaf.json @@ -0,0 +1,64 @@ +{ + "variants": { + "facing=east,tilt=full": { + "model": "minecraft:block/big_dripleaf_full_tilt", + "y": 90 + }, + "facing=east,tilt=none": { + "model": "minecraft:block/big_dripleaf", + "y": 90 + }, + "facing=east,tilt=partial": { + "model": "minecraft:block/big_dripleaf_partial_tilt", + "y": 90 + }, + "facing=east,tilt=unstable": { + "model": "minecraft:block/big_dripleaf", + "y": 90 + }, + "facing=north,tilt=full": { + "model": "minecraft:block/big_dripleaf_full_tilt" + }, + "facing=north,tilt=none": { + "model": "minecraft:block/big_dripleaf" + }, + "facing=north,tilt=partial": { + "model": "minecraft:block/big_dripleaf_partial_tilt" + }, + "facing=north,tilt=unstable": { + "model": "minecraft:block/big_dripleaf" + }, + "facing=south,tilt=full": { + "model": "minecraft:block/big_dripleaf_full_tilt", + "y": 180 + }, + "facing=south,tilt=none": { + "model": "minecraft:block/big_dripleaf", + "y": 180 + }, + "facing=south,tilt=partial": { + "model": "minecraft:block/big_dripleaf_partial_tilt", + "y": 180 + }, + "facing=south,tilt=unstable": { + "model": "minecraft:block/big_dripleaf", + "y": 180 + }, + "facing=west,tilt=full": { + "model": "minecraft:block/big_dripleaf_full_tilt", + "y": 270 + }, + "facing=west,tilt=none": { + "model": "minecraft:block/big_dripleaf", + "y": 270 + }, + "facing=west,tilt=partial": { + "model": "minecraft:block/big_dripleaf_partial_tilt", + "y": 270 + }, + "facing=west,tilt=unstable": { + "model": "minecraft:block/big_dripleaf", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/big_dripleaf_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/big_dripleaf_stem.json new file mode 100644 index 000000000..919512083 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/big_dripleaf_stem.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/big_dripleaf_stem", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/big_dripleaf_stem" + }, + "facing=south": { + "model": "minecraft:block/big_dripleaf_stem", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/big_dripleaf_stem", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_button.json new file mode 100644 index 000000000..db0c5889d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/birch_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/birch_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/birch_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/birch_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/birch_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/birch_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/birch_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/birch_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/birch_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/birch_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/birch_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/birch_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/birch_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_door.json new file mode 100644 index 000000000..9657be972 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/birch_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/birch_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/birch_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/birch_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/birch_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/birch_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/birch_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/birch_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/birch_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/birch_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/birch_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/birch_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/birch_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/birch_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/birch_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/birch_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/birch_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/birch_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/birch_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/birch_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/birch_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/birch_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/birch_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/birch_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/birch_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/birch_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/birch_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/birch_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/birch_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/birch_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/birch_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/birch_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_fence.json new file mode 100644 index 000000000..afd6e1d0e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/birch_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/birch_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/birch_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/birch_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/birch_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_fence_gate.json new file mode 100644 index 000000000..aca8f697b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/birch_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/birch_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/birch_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/birch_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/birch_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/birch_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/birch_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/birch_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/birch_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/birch_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/birch_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/birch_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/birch_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/birch_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/birch_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/birch_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_hanging_sign.json new file mode 100644 index 000000000..f5173003b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/birch_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_leaves.json new file mode 100644 index 000000000..45a5921d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/birch_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_log.json new file mode 100644 index 000000000..24ba8da33 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/birch_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/birch_log" + }, + "axis=z": { + "model": "minecraft:block/birch_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_planks.json new file mode 100644 index 000000000..b5b2e8dcb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/birch_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_pressure_plate.json new file mode 100644 index 000000000..0f5fb7a4f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/birch_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/birch_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_sapling.json new file mode 100644 index 000000000..107370540 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/birch_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_sign.json new file mode 100644 index 000000000..dec6f07d2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/birch_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_slab.json new file mode 100644 index 000000000..28e4f33d6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/birch_slab" + }, + "type=double": { + "model": "minecraft:block/birch_planks" + }, + "type=top": { + "model": "minecraft:block/birch_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_stairs.json new file mode 100644 index 000000000..1a7881d0c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/birch_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/birch_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/birch_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/birch_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/birch_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/birch_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/birch_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/birch_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/birch_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/birch_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/birch_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/birch_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_trapdoor.json new file mode 100644 index 000000000..a8bb88c0e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/birch_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/birch_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/birch_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/birch_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/birch_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/birch_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/birch_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/birch_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/birch_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/birch_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/birch_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/birch_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/birch_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/birch_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/birch_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/birch_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_wall_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_wall_hanging_sign.json new file mode 100644 index 000000000..f5173003b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/birch_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_wall_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_wall_sign.json new file mode 100644 index 000000000..dec6f07d2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/birch_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_wood.json new file mode 100644 index 000000000..4bda7ed35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/birch_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/birch_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/birch_wood" + }, + "axis=z": { + "model": "minecraft:block/birch_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_candle.json new file mode 100644 index 000000000..3fcbe004e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/black_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/black_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/black_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/black_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/black_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/black_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/black_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/black_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_candle_cake.json new file mode 100644 index 000000000..f02ecb765 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/black_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/black_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_carpet.json new file mode 100644 index 000000000..043c7fc55 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/black_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_concrete.json new file mode 100644 index 000000000..797f0358e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/black_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_concrete_powder.json new file mode 100644 index 000000000..56a53d03a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/black_concrete_powder" + }, + { + "model": "minecraft:block/black_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/black_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/black_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_glazed_terracotta.json new file mode 100644 index 000000000..e20988dcd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/black_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/black_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/black_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/black_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_shulker_box.json new file mode 100644 index 000000000..289aec047 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/black_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_stained_glass.json new file mode 100644 index 000000000..728f216b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/black_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_stained_glass_pane.json new file mode 100644 index 000000000..655588da7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_terracotta.json new file mode 100644 index 000000000..7ae0ad870 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/black_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_wall_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_wool.json new file mode 100644 index 000000000..18b2cb6c7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/black_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/black_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blackstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blackstone.json new file mode 100644 index 000000000..5b6e6a417 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blackstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blackstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blackstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blackstone_slab.json new file mode 100644 index 000000000..41cada96e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blackstone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/blackstone_slab" + }, + "type=double": { + "model": "minecraft:block/blackstone" + }, + "type=top": { + "model": "minecraft:block/blackstone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blackstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blackstone_stairs.json new file mode 100644 index 000000000..f533ccb3b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blackstone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/blackstone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/blackstone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/blackstone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/blackstone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/blackstone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/blackstone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/blackstone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/blackstone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/blackstone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/blackstone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/blackstone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/blackstone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blackstone_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blackstone_wall.json new file mode 100644 index 000000000..537f206f0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blackstone_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/blackstone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/blackstone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/blackstone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/blackstone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/blackstone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/blackstone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/blackstone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/blackstone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/blackstone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blast_furnace.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blast_furnace.json new file mode 100644 index 000000000..63dbedd7b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blast_furnace.json @@ -0,0 +1,34 @@ +{ + "variants": { + "facing=east,lit=false": { + "model": "minecraft:block/blast_furnace", + "y": 90 + }, + "facing=east,lit=true": { + "model": "minecraft:block/blast_furnace_on", + "y": 90 + }, + "facing=north,lit=false": { + "model": "minecraft:block/blast_furnace" + }, + "facing=north,lit=true": { + "model": "minecraft:block/blast_furnace_on" + }, + "facing=south,lit=false": { + "model": "minecraft:block/blast_furnace", + "y": 180 + }, + "facing=south,lit=true": { + "model": "minecraft:block/blast_furnace_on", + "y": 180 + }, + "facing=west,lit=false": { + "model": "minecraft:block/blast_furnace", + "y": 270 + }, + "facing=west,lit=true": { + "model": "minecraft:block/blast_furnace_on", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_candle.json new file mode 100644 index 000000000..75e30d08b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/blue_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/blue_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/blue_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/blue_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/blue_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/blue_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/blue_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/blue_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_candle_cake.json new file mode 100644 index 000000000..869c55f19 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/blue_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/blue_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_carpet.json new file mode 100644 index 000000000..082b9f340 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_concrete.json new file mode 100644 index 000000000..7c63116c0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_concrete_powder.json new file mode 100644 index 000000000..92d2724af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/blue_concrete_powder" + }, + { + "model": "minecraft:block/blue_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/blue_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/blue_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_glazed_terracotta.json new file mode 100644 index 000000000..063c11c4a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/blue_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/blue_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/blue_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/blue_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_ice.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_ice.json new file mode 100644 index 000000000..79ce6ac46 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_ice.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_ice" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_orchid.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_orchid.json new file mode 100644 index 000000000..4cdb31497 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_orchid.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_orchid" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_shulker_box.json new file mode 100644 index 000000000..9f05ab962 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_stained_glass.json new file mode 100644 index 000000000..e495d0044 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_stained_glass_pane.json new file mode 100644 index 000000000..f86fce7ba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_terracotta.json new file mode 100644 index 000000000..972492b10 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_wall_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_wool.json new file mode 100644 index 000000000..1b65b8e61 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/blue_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bone_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bone_block.json new file mode 100644 index 000000000..284e15b2d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bone_block.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/bone_block", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/bone_block" + }, + "axis=z": { + "model": "minecraft:block/bone_block", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bookshelf.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bookshelf.json new file mode 100644 index 000000000..a0198c081 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bookshelf.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bookshelf" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brain_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brain_coral.json new file mode 100644 index 000000000..7b1002965 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brain_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brain_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brain_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brain_coral_block.json new file mode 100644 index 000000000..2c133d41f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brain_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brain_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brain_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brain_coral_fan.json new file mode 100644 index 000000000..353ec6b54 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brain_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brain_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brain_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brain_coral_wall_fan.json new file mode 100644 index 000000000..76fa0a4ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brain_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/brain_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/brain_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/brain_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/brain_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brewing_stand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brewing_stand.json new file mode 100644 index 000000000..dfdffcd87 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brewing_stand.json @@ -0,0 +1,57 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/brewing_stand" + } + }, + { + "apply": { + "model": "minecraft:block/brewing_stand_bottle0" + }, + "when": { + "has_bottle_0": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brewing_stand_bottle1" + }, + "when": { + "has_bottle_1": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brewing_stand_bottle2" + }, + "when": { + "has_bottle_2": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brewing_stand_empty0" + }, + "when": { + "has_bottle_0": "false" + } + }, + { + "apply": { + "model": "minecraft:block/brewing_stand_empty1" + }, + "when": { + "has_bottle_1": "false" + } + }, + { + "apply": { + "model": "minecraft:block/brewing_stand_empty2" + }, + "when": { + "has_bottle_2": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brick_slab.json new file mode 100644 index 000000000..dc9f2cce2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/brick_slab" + }, + "type=double": { + "model": "minecraft:block/bricks" + }, + "type=top": { + "model": "minecraft:block/brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brick_stairs.json new file mode 100644 index 000000000..7e6738264 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brick_wall.json new file mode 100644 index 000000000..140062a5e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bricks.json new file mode 100644 index 000000000..7b54ff6ab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_candle.json new file mode 100644 index 000000000..66979471f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/brown_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/brown_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/brown_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/brown_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/brown_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/brown_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/brown_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/brown_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_candle_cake.json new file mode 100644 index 000000000..e92e80830 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/brown_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/brown_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_carpet.json new file mode 100644 index 000000000..7273224e5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brown_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_concrete.json new file mode 100644 index 000000000..6841a73c0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brown_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_concrete_powder.json new file mode 100644 index 000000000..49ef78378 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/brown_concrete_powder" + }, + { + "model": "minecraft:block/brown_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/brown_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/brown_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_glazed_terracotta.json new file mode 100644 index 000000000..d78b69541 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/brown_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/brown_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/brown_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/brown_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_mushroom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_mushroom.json new file mode 100644 index 000000000..9a2fb1c63 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_mushroom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brown_mushroom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_mushroom_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_mushroom_block.json new file mode 100644 index 000000000..9edb9370b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_mushroom_block.json @@ -0,0 +1,115 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/brown_mushroom_block" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_mushroom_block", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_mushroom_block", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_mushroom_block", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_mushroom_block", + "uvlock": true, + "x": 270 + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_mushroom_block", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 90 + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 180 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 270 + }, + "when": { + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "x": 270 + }, + "when": { + "up": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "x": 90 + }, + "when": { + "down": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_shulker_box.json new file mode 100644 index 000000000..c4f723bb3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brown_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_stained_glass.json new file mode 100644 index 000000000..723e232ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brown_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_stained_glass_pane.json new file mode 100644 index 000000000..17abeae4f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_terracotta.json new file mode 100644 index 000000000..6a618f17d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brown_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_wall_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_wool.json new file mode 100644 index 000000000..4c378d5e6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/brown_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brown_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bubble_column.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bubble_column.json new file mode 100644 index 000000000..99fd360b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bubble_column.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/water" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bubble_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bubble_coral.json new file mode 100644 index 000000000..3e068e64e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bubble_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bubble_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bubble_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bubble_coral_block.json new file mode 100644 index 000000000..4f6abebe4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bubble_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bubble_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bubble_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bubble_coral_fan.json new file mode 100644 index 000000000..e91a669fd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bubble_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bubble_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bubble_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bubble_coral_wall_fan.json new file mode 100644 index 000000000..5310027a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bubble_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/bubble_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/bubble_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/bubble_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/bubble_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/budding_amethyst.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/budding_amethyst.json new file mode 100644 index 000000000..a6e222b68 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/budding_amethyst.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/budding_amethyst" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bush.json new file mode 100644 index 000000000..55d8078c7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/bush.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bush" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cactus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cactus.json new file mode 100644 index 000000000..c1623fbc4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cactus.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cactus" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cactus_flower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cactus_flower.json new file mode 100644 index 000000000..24f6f69b6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cactus_flower.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cactus_flower" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cake.json new file mode 100644 index 000000000..c905f1184 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cake.json @@ -0,0 +1,25 @@ +{ + "variants": { + "bites=0": { + "model": "minecraft:block/cake" + }, + "bites=1": { + "model": "minecraft:block/cake_slice1" + }, + "bites=2": { + "model": "minecraft:block/cake_slice2" + }, + "bites=3": { + "model": "minecraft:block/cake_slice3" + }, + "bites=4": { + "model": "minecraft:block/cake_slice4" + }, + "bites=5": { + "model": "minecraft:block/cake_slice5" + }, + "bites=6": { + "model": "minecraft:block/cake_slice6" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/calcite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/calcite.json new file mode 100644 index 000000000..c9ff836d2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/calcite.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/calcite" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/calibrated_sculk_sensor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/calibrated_sculk_sensor.json new file mode 100644 index 000000000..7f6197584 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/calibrated_sculk_sensor.json @@ -0,0 +1,49 @@ +{ + "variants": { + "facing=east,sculk_sensor_phase=active": { + "model": "minecraft:block/calibrated_sculk_sensor_active", + "y": 90 + }, + "facing=east,sculk_sensor_phase=cooldown": { + "model": "minecraft:block/calibrated_sculk_sensor_active", + "y": 90 + }, + "facing=east,sculk_sensor_phase=inactive": { + "model": "minecraft:block/calibrated_sculk_sensor_inactive", + "y": 90 + }, + "facing=north,sculk_sensor_phase=active": { + "model": "minecraft:block/calibrated_sculk_sensor_active" + }, + "facing=north,sculk_sensor_phase=cooldown": { + "model": "minecraft:block/calibrated_sculk_sensor_active" + }, + "facing=north,sculk_sensor_phase=inactive": { + "model": "minecraft:block/calibrated_sculk_sensor_inactive" + }, + "facing=south,sculk_sensor_phase=active": { + "model": "minecraft:block/calibrated_sculk_sensor_active", + "y": 180 + }, + "facing=south,sculk_sensor_phase=cooldown": { + "model": "minecraft:block/calibrated_sculk_sensor_active", + "y": 180 + }, + "facing=south,sculk_sensor_phase=inactive": { + "model": "minecraft:block/calibrated_sculk_sensor_inactive", + "y": 180 + }, + "facing=west,sculk_sensor_phase=active": { + "model": "minecraft:block/calibrated_sculk_sensor_active", + "y": 270 + }, + "facing=west,sculk_sensor_phase=cooldown": { + "model": "minecraft:block/calibrated_sculk_sensor_active", + "y": 270 + }, + "facing=west,sculk_sensor_phase=inactive": { + "model": "minecraft:block/calibrated_sculk_sensor_inactive", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/campfire.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/campfire.json new file mode 100644 index 000000000..d5751b857 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/campfire.json @@ -0,0 +1,34 @@ +{ + "variants": { + "facing=east,lit=false": { + "model": "minecraft:block/campfire_off", + "y": 270 + }, + "facing=east,lit=true": { + "model": "minecraft:block/campfire", + "y": 270 + }, + "facing=north,lit=false": { + "model": "minecraft:block/campfire_off", + "y": 180 + }, + "facing=north,lit=true": { + "model": "minecraft:block/campfire", + "y": 180 + }, + "facing=south,lit=false": { + "model": "minecraft:block/campfire_off" + }, + "facing=south,lit=true": { + "model": "minecraft:block/campfire" + }, + "facing=west,lit=false": { + "model": "minecraft:block/campfire_off", + "y": 90 + }, + "facing=west,lit=true": { + "model": "minecraft:block/campfire", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/candle.json new file mode 100644 index 000000000..9e8670343 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/candle_cake.json new file mode 100644 index 000000000..4e1e1181a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/candle_cake" + }, + "lit=true": { + "model": "minecraft:block/candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/carrots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/carrots.json new file mode 100644 index 000000000..8acf220f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/carrots.json @@ -0,0 +1,28 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/carrots_stage0" + }, + "age=1": { + "model": "minecraft:block/carrots_stage0" + }, + "age=2": { + "model": "minecraft:block/carrots_stage1" + }, + "age=3": { + "model": "minecraft:block/carrots_stage1" + }, + "age=4": { + "model": "minecraft:block/carrots_stage2" + }, + "age=5": { + "model": "minecraft:block/carrots_stage2" + }, + "age=6": { + "model": "minecraft:block/carrots_stage2" + }, + "age=7": { + "model": "minecraft:block/carrots_stage3" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cartography_table.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cartography_table.json new file mode 100644 index 000000000..6feb4018f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cartography_table.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cartography_table" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/carved_pumpkin.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/carved_pumpkin.json new file mode 100644 index 000000000..f98dc9f94 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/carved_pumpkin.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/carved_pumpkin", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/carved_pumpkin" + }, + "facing=south": { + "model": "minecraft:block/carved_pumpkin", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/carved_pumpkin", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cauldron.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cauldron.json new file mode 100644 index 000000000..9908cf5d4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cauldron.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cauldron" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cave_air.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cave_air.json new file mode 100644 index 000000000..2c8f02f06 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cave_air.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/air" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cave_vines.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cave_vines.json new file mode 100644 index 000000000..684555fff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cave_vines.json @@ -0,0 +1,10 @@ +{ + "variants": { + "berries=false": { + "model": "minecraft:block/cave_vines" + }, + "berries=true": { + "model": "minecraft:block/cave_vines_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cave_vines_plant.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cave_vines_plant.json new file mode 100644 index 000000000..a07870ef5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cave_vines_plant.json @@ -0,0 +1,10 @@ +{ + "variants": { + "berries=false": { + "model": "minecraft:block/cave_vines_plant" + }, + "berries=true": { + "model": "minecraft:block/cave_vines_plant_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chain.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chain.json new file mode 100644 index 000000000..9ae0f9648 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chain.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/chain", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/chain" + }, + "axis=z": { + "model": "minecraft:block/chain", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chain_command_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chain_command_block.json new file mode 100644 index 000000000..ede144292 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chain_command_block.json @@ -0,0 +1,50 @@ +{ + "variants": { + "conditional=false,facing=down": { + "model": "minecraft:block/chain_command_block", + "x": 90 + }, + "conditional=false,facing=east": { + "model": "minecraft:block/chain_command_block", + "y": 90 + }, + "conditional=false,facing=north": { + "model": "minecraft:block/chain_command_block" + }, + "conditional=false,facing=south": { + "model": "minecraft:block/chain_command_block", + "y": 180 + }, + "conditional=false,facing=up": { + "model": "minecraft:block/chain_command_block", + "x": 270 + }, + "conditional=false,facing=west": { + "model": "minecraft:block/chain_command_block", + "y": 270 + }, + "conditional=true,facing=down": { + "model": "minecraft:block/chain_command_block_conditional", + "x": 90 + }, + "conditional=true,facing=east": { + "model": "minecraft:block/chain_command_block_conditional", + "y": 90 + }, + "conditional=true,facing=north": { + "model": "minecraft:block/chain_command_block_conditional" + }, + "conditional=true,facing=south": { + "model": "minecraft:block/chain_command_block_conditional", + "y": 180 + }, + "conditional=true,facing=up": { + "model": "minecraft:block/chain_command_block_conditional", + "x": 270 + }, + "conditional=true,facing=west": { + "model": "minecraft:block/chain_command_block_conditional", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_button.json new file mode 100644 index 000000000..89686b633 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/cherry_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/cherry_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/cherry_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/cherry_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/cherry_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/cherry_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/cherry_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/cherry_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/cherry_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/cherry_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/cherry_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/cherry_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/cherry_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_door.json new file mode 100644 index 000000000..73fb6c3b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/cherry_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/cherry_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/cherry_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/cherry_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/cherry_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/cherry_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/cherry_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/cherry_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/cherry_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/cherry_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/cherry_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/cherry_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/cherry_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/cherry_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/cherry_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/cherry_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/cherry_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/cherry_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/cherry_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/cherry_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/cherry_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/cherry_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/cherry_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/cherry_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/cherry_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/cherry_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/cherry_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/cherry_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/cherry_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/cherry_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/cherry_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/cherry_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_fence.json new file mode 100644 index 000000000..a67bdd8e0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/cherry_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/cherry_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cherry_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cherry_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cherry_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_fence_gate.json new file mode 100644 index 000000000..e92e638cc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/cherry_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/cherry_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/cherry_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/cherry_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/cherry_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/cherry_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/cherry_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/cherry_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/cherry_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/cherry_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/cherry_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/cherry_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/cherry_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/cherry_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/cherry_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/cherry_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_hanging_sign.json new file mode 100644 index 000000000..f6cd312b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cherry_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_leaves.json new file mode 100644 index 000000000..de7a3c88f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cherry_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_log.json new file mode 100644 index 000000000..a35c0d9f8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_log.json @@ -0,0 +1,13 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/cherry_log_x" + }, + "axis=y": { + "model": "minecraft:block/cherry_log_y" + }, + "axis=z": { + "model": "minecraft:block/cherry_log_z" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_planks.json new file mode 100644 index 000000000..02915c932 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cherry_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_pressure_plate.json new file mode 100644 index 000000000..619b8c70e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/cherry_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/cherry_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_sapling.json new file mode 100644 index 000000000..cab2fb40e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cherry_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_sign.json new file mode 100644 index 000000000..e9f5111a0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cherry_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_slab.json new file mode 100644 index 000000000..3c192c1b5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/cherry_slab" + }, + "type=double": { + "model": "minecraft:block/cherry_planks" + }, + "type=top": { + "model": "minecraft:block/cherry_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_stairs.json new file mode 100644 index 000000000..0de5122b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/cherry_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/cherry_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/cherry_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/cherry_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/cherry_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/cherry_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/cherry_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/cherry_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/cherry_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/cherry_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/cherry_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/cherry_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_trapdoor.json new file mode 100644 index 000000000..90aac9610 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/cherry_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/cherry_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/cherry_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/cherry_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/cherry_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/cherry_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/cherry_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/cherry_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/cherry_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/cherry_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/cherry_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/cherry_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/cherry_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/cherry_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/cherry_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/cherry_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_wall_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_wall_hanging_sign.json new file mode 100644 index 000000000..f6cd312b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cherry_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_wall_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_wall_sign.json new file mode 100644 index 000000000..e9f5111a0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cherry_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_wood.json new file mode 100644 index 000000000..5c180b3f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cherry_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/cherry_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/cherry_wood" + }, + "axis=z": { + "model": "minecraft:block/cherry_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chest.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chest.json new file mode 100644 index 000000000..f78fa579c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chest.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chest" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chipped_anvil.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chipped_anvil.json new file mode 100644 index 000000000..466eb4c7b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chipped_anvil.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/chipped_anvil", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/chipped_anvil", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/chipped_anvil" + }, + "facing=west": { + "model": "minecraft:block/chipped_anvil", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_bookshelf.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_bookshelf.json new file mode 100644 index 000000000..0c9b22b91 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_bookshelf.json @@ -0,0 +1,799 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf", + "uvlock": true + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_0_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_0_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_mid" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_1_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_mid" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_1_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_2_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_2_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_3_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_3_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_mid" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_4_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_mid" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_4_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_5_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_5_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf", + "uvlock": true, + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_0_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_0_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_mid", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_1_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_mid", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_1_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_2_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_2_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_3_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_3_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_mid", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_4_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_mid", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_4_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_5_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_5_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf", + "uvlock": true, + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_0_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_0_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_mid", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_1_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_mid", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_1_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_2_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_2_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_3_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_3_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_mid", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_4_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_mid", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_4_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_5_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_5_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf", + "uvlock": true, + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_0_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_0_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_mid", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_1_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_mid", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_1_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_2_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_2_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_3_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_3_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_mid", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_4_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_mid", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_4_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_5_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_5_occupied": "false" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_copper.json new file mode 100644 index 000000000..6b2ccc853 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_deepslate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_deepslate.json new file mode 100644 index 000000000..e7edb5a66 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_deepslate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_deepslate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_nether_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_nether_bricks.json new file mode 100644 index 000000000..c2748322d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_nether_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_nether_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_polished_blackstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_polished_blackstone.json new file mode 100644 index 000000000..66a2f35f5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_polished_blackstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_polished_blackstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_quartz_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_quartz_block.json new file mode 100644 index 000000000..2e9192c7c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_quartz_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_quartz_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_red_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_red_sandstone.json new file mode 100644 index 000000000..c1f7cc6e0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_red_sandstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_red_sandstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_resin_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_resin_bricks.json new file mode 100644 index 000000000..fd9c64542 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_resin_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_resin_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_sandstone.json new file mode 100644 index 000000000..7a5de5693 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_sandstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_sandstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_stone_bricks.json new file mode 100644 index 000000000..4034c11b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_tuff.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_tuff.json new file mode 100644 index 000000000..d4afccd7b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_tuff.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_tuff" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_tuff_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_tuff_bricks.json new file mode 100644 index 000000000..6c5654465 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chiseled_tuff_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_tuff_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chorus_flower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chorus_flower.json new file mode 100644 index 000000000..0bf058066 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chorus_flower.json @@ -0,0 +1,22 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/chorus_flower" + }, + "age=1": { + "model": "minecraft:block/chorus_flower" + }, + "age=2": { + "model": "minecraft:block/chorus_flower" + }, + "age=3": { + "model": "minecraft:block/chorus_flower" + }, + "age=4": { + "model": "minecraft:block/chorus_flower" + }, + "age=5": { + "model": "minecraft:block/chorus_flower_dead" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chorus_plant.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chorus_plant.json new file mode 100644 index 000000000..c84cff188 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/chorus_plant.json @@ -0,0 +1,222 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/chorus_plant_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/chorus_plant_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/chorus_plant_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/chorus_plant_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/chorus_plant_side", + "uvlock": true, + "x": 270 + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/chorus_plant_side", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "true" + } + }, + { + "apply": [ + { + "model": "minecraft:block/chorus_plant_noside", + "weight": 2 + }, + { + "model": "minecraft:block/chorus_plant_noside1" + }, + { + "model": "minecraft:block/chorus_plant_noside2" + }, + { + "model": "minecraft:block/chorus_plant_noside3" + } + ], + "when": { + "north": "false" + } + }, + { + "apply": [ + { + "model": "minecraft:block/chorus_plant_noside1", + "uvlock": true, + "y": 90 + }, + { + "model": "minecraft:block/chorus_plant_noside2", + "uvlock": true, + "y": 90 + }, + { + "model": "minecraft:block/chorus_plant_noside3", + "uvlock": true, + "y": 90 + }, + { + "model": "minecraft:block/chorus_plant_noside", + "uvlock": true, + "weight": 2, + "y": 90 + } + ], + "when": { + "east": "false" + } + }, + { + "apply": [ + { + "model": "minecraft:block/chorus_plant_noside2", + "uvlock": true, + "y": 180 + }, + { + "model": "minecraft:block/chorus_plant_noside3", + "uvlock": true, + "y": 180 + }, + { + "model": "minecraft:block/chorus_plant_noside", + "uvlock": true, + "weight": 2, + "y": 180 + }, + { + "model": "minecraft:block/chorus_plant_noside1", + "uvlock": true, + "y": 180 + } + ], + "when": { + "south": "false" + } + }, + { + "apply": [ + { + "model": "minecraft:block/chorus_plant_noside3", + "uvlock": true, + "y": 270 + }, + { + "model": "minecraft:block/chorus_plant_noside", + "uvlock": true, + "weight": 2, + "y": 270 + }, + { + "model": "minecraft:block/chorus_plant_noside1", + "uvlock": true, + "y": 270 + }, + { + "model": "minecraft:block/chorus_plant_noside2", + "uvlock": true, + "y": 270 + } + ], + "when": { + "west": "false" + } + }, + { + "apply": [ + { + "model": "minecraft:block/chorus_plant_noside", + "uvlock": true, + "weight": 2, + "x": 270 + }, + { + "model": "minecraft:block/chorus_plant_noside3", + "uvlock": true, + "x": 270 + }, + { + "model": "minecraft:block/chorus_plant_noside1", + "uvlock": true, + "x": 270 + }, + { + "model": "minecraft:block/chorus_plant_noside2", + "uvlock": true, + "x": 270 + } + ], + "when": { + "up": "false" + } + }, + { + "apply": [ + { + "model": "minecraft:block/chorus_plant_noside3", + "uvlock": true, + "x": 90 + }, + { + "model": "minecraft:block/chorus_plant_noside2", + "uvlock": true, + "x": 90 + }, + { + "model": "minecraft:block/chorus_plant_noside1", + "uvlock": true, + "x": 90 + }, + { + "model": "minecraft:block/chorus_plant_noside", + "uvlock": true, + "weight": 2, + "x": 90 + } + ], + "when": { + "down": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/clay.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/clay.json new file mode 100644 index 000000000..d22f313b4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/clay.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/clay" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/closed_eyeblossom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/closed_eyeblossom.json new file mode 100644 index 000000000..7a39dcf37 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/closed_eyeblossom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/closed_eyeblossom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/coal_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/coal_block.json new file mode 100644 index 000000000..266adaad6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/coal_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/coal_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/coal_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/coal_ore.json new file mode 100644 index 000000000..9fa7c00d8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/coal_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/coal_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/coarse_dirt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/coarse_dirt.json new file mode 100644 index 000000000..1f87e5c17 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/coarse_dirt.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/coarse_dirt" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate.json new file mode 100644 index 000000000..d44144f1c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cobbled_deepslate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_slab.json new file mode 100644 index 000000000..65a49dcc8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/cobbled_deepslate_slab" + }, + "type=double": { + "model": "minecraft:block/cobbled_deepslate" + }, + "type=top": { + "model": "minecraft:block/cobbled_deepslate_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_stairs.json new file mode 100644 index 000000000..1c243b1d5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/cobbled_deepslate_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/cobbled_deepslate_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/cobbled_deepslate_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/cobbled_deepslate_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/cobbled_deepslate_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/cobbled_deepslate_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/cobbled_deepslate_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/cobbled_deepslate_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_wall.json new file mode 100644 index 000000000..baa3cbb90 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobblestone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobblestone.json new file mode 100644 index 000000000..e94cf8820 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobblestone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cobblestone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobblestone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobblestone_slab.json new file mode 100644 index 000000000..8164d9edc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobblestone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/cobblestone_slab" + }, + "type=double": { + "model": "minecraft:block/cobblestone" + }, + "type=top": { + "model": "minecraft:block/cobblestone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobblestone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobblestone_stairs.json new file mode 100644 index 000000000..e018cb307 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobblestone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/cobblestone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/cobblestone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/cobblestone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/cobblestone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/cobblestone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/cobblestone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/cobblestone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/cobblestone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/cobblestone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/cobblestone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/cobblestone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/cobblestone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobblestone_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobblestone_wall.json new file mode 100644 index 000000000..ea2f67611 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobblestone_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobweb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobweb.json new file mode 100644 index 000000000..30a165e48 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cobweb.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cobweb" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cocoa.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cocoa.json new file mode 100644 index 000000000..d12aa4ecb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cocoa.json @@ -0,0 +1,49 @@ +{ + "variants": { + "age=0,facing=east": { + "model": "minecraft:block/cocoa_stage0", + "y": 270 + }, + "age=0,facing=north": { + "model": "minecraft:block/cocoa_stage0", + "y": 180 + }, + "age=0,facing=south": { + "model": "minecraft:block/cocoa_stage0" + }, + "age=0,facing=west": { + "model": "minecraft:block/cocoa_stage0", + "y": 90 + }, + "age=1,facing=east": { + "model": "minecraft:block/cocoa_stage1", + "y": 270 + }, + "age=1,facing=north": { + "model": "minecraft:block/cocoa_stage1", + "y": 180 + }, + "age=1,facing=south": { + "model": "minecraft:block/cocoa_stage1" + }, + "age=1,facing=west": { + "model": "minecraft:block/cocoa_stage1", + "y": 90 + }, + "age=2,facing=east": { + "model": "minecraft:block/cocoa_stage2", + "y": 270 + }, + "age=2,facing=north": { + "model": "minecraft:block/cocoa_stage2", + "y": 180 + }, + "age=2,facing=south": { + "model": "minecraft:block/cocoa_stage2" + }, + "age=2,facing=west": { + "model": "minecraft:block/cocoa_stage2", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/command_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/command_block.json new file mode 100644 index 000000000..dbda5cf3d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/command_block.json @@ -0,0 +1,50 @@ +{ + "variants": { + "conditional=false,facing=down": { + "model": "minecraft:block/command_block", + "x": 90 + }, + "conditional=false,facing=east": { + "model": "minecraft:block/command_block", + "y": 90 + }, + "conditional=false,facing=north": { + "model": "minecraft:block/command_block" + }, + "conditional=false,facing=south": { + "model": "minecraft:block/command_block", + "y": 180 + }, + "conditional=false,facing=up": { + "model": "minecraft:block/command_block", + "x": 270 + }, + "conditional=false,facing=west": { + "model": "minecraft:block/command_block", + "y": 270 + }, + "conditional=true,facing=down": { + "model": "minecraft:block/command_block_conditional", + "x": 90 + }, + "conditional=true,facing=east": { + "model": "minecraft:block/command_block_conditional", + "y": 90 + }, + "conditional=true,facing=north": { + "model": "minecraft:block/command_block_conditional" + }, + "conditional=true,facing=south": { + "model": "minecraft:block/command_block_conditional", + "y": 180 + }, + "conditional=true,facing=up": { + "model": "minecraft:block/command_block_conditional", + "x": 270 + }, + "conditional=true,facing=west": { + "model": "minecraft:block/command_block_conditional", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/comparator.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/comparator.json new file mode 100644 index 000000000..13f9f2146 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/comparator.json @@ -0,0 +1,64 @@ +{ + "variants": { + "facing=east,mode=compare,powered=false": { + "model": "minecraft:block/comparator", + "y": 270 + }, + "facing=east,mode=compare,powered=true": { + "model": "minecraft:block/comparator_on", + "y": 270 + }, + "facing=east,mode=subtract,powered=false": { + "model": "minecraft:block/comparator_subtract", + "y": 270 + }, + "facing=east,mode=subtract,powered=true": { + "model": "minecraft:block/comparator_on_subtract", + "y": 270 + }, + "facing=north,mode=compare,powered=false": { + "model": "minecraft:block/comparator", + "y": 180 + }, + "facing=north,mode=compare,powered=true": { + "model": "minecraft:block/comparator_on", + "y": 180 + }, + "facing=north,mode=subtract,powered=false": { + "model": "minecraft:block/comparator_subtract", + "y": 180 + }, + "facing=north,mode=subtract,powered=true": { + "model": "minecraft:block/comparator_on_subtract", + "y": 180 + }, + "facing=south,mode=compare,powered=false": { + "model": "minecraft:block/comparator" + }, + "facing=south,mode=compare,powered=true": { + "model": "minecraft:block/comparator_on" + }, + "facing=south,mode=subtract,powered=false": { + "model": "minecraft:block/comparator_subtract" + }, + "facing=south,mode=subtract,powered=true": { + "model": "minecraft:block/comparator_on_subtract" + }, + "facing=west,mode=compare,powered=false": { + "model": "minecraft:block/comparator", + "y": 90 + }, + "facing=west,mode=compare,powered=true": { + "model": "minecraft:block/comparator_on", + "y": 90 + }, + "facing=west,mode=subtract,powered=false": { + "model": "minecraft:block/comparator_subtract", + "y": 90 + }, + "facing=west,mode=subtract,powered=true": { + "model": "minecraft:block/comparator_on_subtract", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/composter.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/composter.json new file mode 100644 index 000000000..219eea9c2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/composter.json @@ -0,0 +1,73 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/composter" + } + }, + { + "apply": { + "model": "minecraft:block/composter_contents1" + }, + "when": { + "level": "1" + } + }, + { + "apply": { + "model": "minecraft:block/composter_contents2" + }, + "when": { + "level": "2" + } + }, + { + "apply": { + "model": "minecraft:block/composter_contents3" + }, + "when": { + "level": "3" + } + }, + { + "apply": { + "model": "minecraft:block/composter_contents4" + }, + "when": { + "level": "4" + } + }, + { + "apply": { + "model": "minecraft:block/composter_contents5" + }, + "when": { + "level": "5" + } + }, + { + "apply": { + "model": "minecraft:block/composter_contents6" + }, + "when": { + "level": "6" + } + }, + { + "apply": { + "model": "minecraft:block/composter_contents7" + }, + "when": { + "level": "7" + } + }, + { + "apply": { + "model": "minecraft:block/composter_contents_ready" + }, + "when": { + "level": "8" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/conduit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/conduit.json new file mode 100644 index 000000000..f6841bed2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/conduit.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/conduit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_block.json new file mode 100644 index 000000000..b440184df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/copper_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_bulb.json new file mode 100644 index 000000000..5929d9b4f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_bulb.json @@ -0,0 +1,16 @@ +{ + "variants": { + "lit=false,powered=false": { + "model": "minecraft:block/copper_bulb" + }, + "lit=false,powered=true": { + "model": "minecraft:block/copper_bulb_powered" + }, + "lit=true,powered=false": { + "model": "minecraft:block/copper_bulb_lit" + }, + "lit=true,powered=true": { + "model": "minecraft:block/copper_bulb_lit_powered" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_door.json new file mode 100644 index 000000000..44dcbdef4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/copper_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/copper_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/copper_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/copper_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/copper_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/copper_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/copper_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/copper_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/copper_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/copper_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/copper_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/copper_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/copper_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/copper_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/copper_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/copper_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/copper_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/copper_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/copper_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/copper_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/copper_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/copper_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/copper_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/copper_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/copper_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/copper_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/copper_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/copper_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/copper_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/copper_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/copper_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/copper_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_grate.json new file mode 100644 index 000000000..2f7bc9ec3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_grate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/copper_grate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_ore.json new file mode 100644 index 000000000..c8cd05c44 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/copper_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_trapdoor.json new file mode 100644 index 000000000..837c01b9e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/copper_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/copper_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/copper_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/copper_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/copper_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/copper_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/copper_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/copper_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/copper_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/copper_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/copper_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cornflower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cornflower.json new file mode 100644 index 000000000..2d787937c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cornflower.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cornflower" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cracked_deepslate_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cracked_deepslate_bricks.json new file mode 100644 index 000000000..008daf0da --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cracked_deepslate_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cracked_deepslate_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cracked_deepslate_tiles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cracked_deepslate_tiles.json new file mode 100644 index 000000000..99ddace6a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cracked_deepslate_tiles.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cracked_deepslate_tiles" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cracked_nether_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cracked_nether_bricks.json new file mode 100644 index 000000000..42f44bbaf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cracked_nether_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cracked_nether_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cracked_polished_blackstone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cracked_polished_blackstone_bricks.json new file mode 100644 index 000000000..2fe33ddc4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cracked_polished_blackstone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cracked_polished_blackstone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cracked_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cracked_stone_bricks.json new file mode 100644 index 000000000..6e194be2d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cracked_stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cracked_stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crafter.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crafter.json new file mode 100644 index 000000000..2de2b178a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crafter.json @@ -0,0 +1,216 @@ +{ + "variants": { + "crafting=false,orientation=down_east,triggered=false": { + "model": "minecraft:block/crafter", + "x": 90, + "y": 90 + }, + "crafting=false,orientation=down_east,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "x": 90, + "y": 90 + }, + "crafting=false,orientation=down_north,triggered=false": { + "model": "minecraft:block/crafter", + "x": 90 + }, + "crafting=false,orientation=down_north,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "x": 90 + }, + "crafting=false,orientation=down_south,triggered=false": { + "model": "minecraft:block/crafter", + "x": 90, + "y": 180 + }, + "crafting=false,orientation=down_south,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "x": 90, + "y": 180 + }, + "crafting=false,orientation=down_west,triggered=false": { + "model": "minecraft:block/crafter", + "x": 90, + "y": 270 + }, + "crafting=false,orientation=down_west,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "x": 90, + "y": 270 + }, + "crafting=false,orientation=east_up,triggered=false": { + "model": "minecraft:block/crafter", + "y": 90 + }, + "crafting=false,orientation=east_up,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "y": 90 + }, + "crafting=false,orientation=north_up,triggered=false": { + "model": "minecraft:block/crafter" + }, + "crafting=false,orientation=north_up,triggered=true": { + "model": "minecraft:block/crafter_triggered" + }, + "crafting=false,orientation=south_up,triggered=false": { + "model": "minecraft:block/crafter", + "y": 180 + }, + "crafting=false,orientation=south_up,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "y": 180 + }, + "crafting=false,orientation=up_east,triggered=false": { + "model": "minecraft:block/crafter", + "x": 270, + "y": 270 + }, + "crafting=false,orientation=up_east,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "x": 270, + "y": 270 + }, + "crafting=false,orientation=up_north,triggered=false": { + "model": "minecraft:block/crafter", + "x": 270, + "y": 180 + }, + "crafting=false,orientation=up_north,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "x": 270, + "y": 180 + }, + "crafting=false,orientation=up_south,triggered=false": { + "model": "minecraft:block/crafter", + "x": 270 + }, + "crafting=false,orientation=up_south,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "x": 270 + }, + "crafting=false,orientation=up_west,triggered=false": { + "model": "minecraft:block/crafter", + "x": 270, + "y": 90 + }, + "crafting=false,orientation=up_west,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "x": 270, + "y": 90 + }, + "crafting=false,orientation=west_up,triggered=false": { + "model": "minecraft:block/crafter", + "y": 270 + }, + "crafting=false,orientation=west_up,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "y": 270 + }, + "crafting=true,orientation=down_east,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "x": 90, + "y": 90 + }, + "crafting=true,orientation=down_east,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "x": 90, + "y": 90 + }, + "crafting=true,orientation=down_north,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "x": 90 + }, + "crafting=true,orientation=down_north,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "x": 90 + }, + "crafting=true,orientation=down_south,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "x": 90, + "y": 180 + }, + "crafting=true,orientation=down_south,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "x": 90, + "y": 180 + }, + "crafting=true,orientation=down_west,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "x": 90, + "y": 270 + }, + "crafting=true,orientation=down_west,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "x": 90, + "y": 270 + }, + "crafting=true,orientation=east_up,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "y": 90 + }, + "crafting=true,orientation=east_up,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "y": 90 + }, + "crafting=true,orientation=north_up,triggered=false": { + "model": "minecraft:block/crafter_crafting" + }, + "crafting=true,orientation=north_up,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered" + }, + "crafting=true,orientation=south_up,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "y": 180 + }, + "crafting=true,orientation=south_up,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "y": 180 + }, + "crafting=true,orientation=up_east,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "x": 270, + "y": 270 + }, + "crafting=true,orientation=up_east,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "x": 270, + "y": 270 + }, + "crafting=true,orientation=up_north,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "x": 270, + "y": 180 + }, + "crafting=true,orientation=up_north,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "x": 270, + "y": 180 + }, + "crafting=true,orientation=up_south,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "x": 270 + }, + "crafting=true,orientation=up_south,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "x": 270 + }, + "crafting=true,orientation=up_west,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "x": 270, + "y": 90 + }, + "crafting=true,orientation=up_west,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "x": 270, + "y": 90 + }, + "crafting=true,orientation=west_up,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "y": 270 + }, + "crafting=true,orientation=west_up,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crafting_table.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crafting_table.json new file mode 100644 index 000000000..46adc7909 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crafting_table.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crafting_table" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/creaking_heart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/creaking_heart.json new file mode 100644 index 000000000..116f6e503 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/creaking_heart.json @@ -0,0 +1,40 @@ +{ + "variants": { + "axis=x,creaking_heart_state=awake": { + "model": "minecraft:block/creaking_heart_awake_horizontal", + "x": 90, + "y": 90 + }, + "axis=x,creaking_heart_state=dormant": { + "model": "minecraft:block/creaking_heart_dormant_horizontal", + "x": 90, + "y": 90 + }, + "axis=x,creaking_heart_state=uprooted": { + "model": "minecraft:block/creaking_heart_horizontal", + "x": 90, + "y": 90 + }, + "axis=y,creaking_heart_state=awake": { + "model": "minecraft:block/creaking_heart_awake" + }, + "axis=y,creaking_heart_state=dormant": { + "model": "minecraft:block/creaking_heart_dormant" + }, + "axis=y,creaking_heart_state=uprooted": { + "model": "minecraft:block/creaking_heart" + }, + "axis=z,creaking_heart_state=awake": { + "model": "minecraft:block/creaking_heart_awake_horizontal", + "x": 90 + }, + "axis=z,creaking_heart_state=dormant": { + "model": "minecraft:block/creaking_heart_dormant_horizontal", + "x": 90 + }, + "axis=z,creaking_heart_state=uprooted": { + "model": "minecraft:block/creaking_heart_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/creeper_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/creeper_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/creeper_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/creeper_wall_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/creeper_wall_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/creeper_wall_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_button.json new file mode 100644 index 000000000..bccd1097e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/crimson_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/crimson_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/crimson_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/crimson_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/crimson_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/crimson_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/crimson_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/crimson_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/crimson_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/crimson_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/crimson_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/crimson_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/crimson_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_door.json new file mode 100644 index 000000000..4e60e7b95 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/crimson_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/crimson_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/crimson_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/crimson_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/crimson_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/crimson_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/crimson_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/crimson_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/crimson_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/crimson_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/crimson_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/crimson_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/crimson_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/crimson_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/crimson_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/crimson_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/crimson_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/crimson_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/crimson_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/crimson_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/crimson_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/crimson_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/crimson_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/crimson_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/crimson_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/crimson_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/crimson_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/crimson_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/crimson_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/crimson_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/crimson_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/crimson_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_fence.json new file mode 100644 index 000000000..8f5a27352 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/crimson_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/crimson_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/crimson_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/crimson_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/crimson_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_fence_gate.json new file mode 100644 index 000000000..f53ea9c29 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/crimson_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/crimson_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/crimson_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/crimson_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/crimson_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/crimson_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/crimson_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/crimson_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/crimson_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/crimson_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/crimson_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/crimson_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/crimson_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/crimson_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/crimson_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/crimson_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_fungus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_fungus.json new file mode 100644 index 000000000..4ee39fd27 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_fungus.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crimson_fungus" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_hanging_sign.json new file mode 100644 index 000000000..2c48d46fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crimson_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_hyphae.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_hyphae.json new file mode 100644 index 000000000..115ed6357 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_hyphae.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/crimson_hyphae", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/crimson_hyphae" + }, + "axis=z": { + "model": "minecraft:block/crimson_hyphae", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_nylium.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_nylium.json new file mode 100644 index 000000000..e3ecaf600 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_nylium.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crimson_nylium" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_planks.json new file mode 100644 index 000000000..9cd4ff65c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crimson_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_pressure_plate.json new file mode 100644 index 000000000..7e7ab3d63 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/crimson_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/crimson_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_roots.json new file mode 100644 index 000000000..830d559a9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_roots.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crimson_roots" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_sign.json new file mode 100644 index 000000000..c2f40c97f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crimson_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_slab.json new file mode 100644 index 000000000..7f8f651d1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/crimson_slab" + }, + "type=double": { + "model": "minecraft:block/crimson_planks" + }, + "type=top": { + "model": "minecraft:block/crimson_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_stairs.json new file mode 100644 index 000000000..508f9dd28 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/crimson_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/crimson_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/crimson_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/crimson_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/crimson_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/crimson_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/crimson_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/crimson_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/crimson_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/crimson_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/crimson_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/crimson_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_stem.json new file mode 100644 index 000000000..81285b0ce --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_stem.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/crimson_stem", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/crimson_stem" + }, + "axis=z": { + "model": "minecraft:block/crimson_stem", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_trapdoor.json new file mode 100644 index 000000000..50f813608 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/crimson_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/crimson_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/crimson_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/crimson_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/crimson_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/crimson_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/crimson_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/crimson_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/crimson_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/crimson_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/crimson_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/crimson_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/crimson_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/crimson_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/crimson_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/crimson_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_wall_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_wall_hanging_sign.json new file mode 100644 index 000000000..2c48d46fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crimson_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_wall_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_wall_sign.json new file mode 100644 index 000000000..c2f40c97f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crimson_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crimson_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crying_obsidian.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crying_obsidian.json new file mode 100644 index 000000000..fd7ad59ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/crying_obsidian.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crying_obsidian" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_copper.json new file mode 100644 index 000000000..2105f293c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cut_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_copper_slab.json new file mode 100644 index 000000000..31d149b52 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_copper_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/cut_copper_slab" + }, + "type=double": { + "model": "minecraft:block/cut_copper" + }, + "type=top": { + "model": "minecraft:block/cut_copper_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_copper_stairs.json new file mode 100644 index 000000000..95160aaf1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_copper_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/cut_copper_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_red_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_red_sandstone.json new file mode 100644 index 000000000..7ef05a720 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_red_sandstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cut_red_sandstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_red_sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_red_sandstone_slab.json new file mode 100644 index 000000000..0b7645aeb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_red_sandstone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/cut_red_sandstone_slab" + }, + "type=double": { + "model": "minecraft:block/cut_red_sandstone" + }, + "type=top": { + "model": "minecraft:block/cut_red_sandstone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_sandstone.json new file mode 100644 index 000000000..9bab8fc4d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_sandstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cut_sandstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_sandstone_slab.json new file mode 100644 index 000000000..5c8f0520d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cut_sandstone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/cut_sandstone_slab" + }, + "type=double": { + "model": "minecraft:block/cut_sandstone" + }, + "type=top": { + "model": "minecraft:block/cut_sandstone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_candle.json new file mode 100644 index 000000000..4e35ccd53 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/cyan_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/cyan_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/cyan_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/cyan_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/cyan_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/cyan_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/cyan_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/cyan_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_candle_cake.json new file mode 100644 index 000000000..348abcc2d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/cyan_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/cyan_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_carpet.json new file mode 100644 index 000000000..0b0212c56 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cyan_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_concrete.json new file mode 100644 index 000000000..32935a3bd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cyan_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_concrete_powder.json new file mode 100644 index 000000000..cf7085ebe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/cyan_concrete_powder" + }, + { + "model": "minecraft:block/cyan_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/cyan_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/cyan_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_glazed_terracotta.json new file mode 100644 index 000000000..26276ef3b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/cyan_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/cyan_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/cyan_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/cyan_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_shulker_box.json new file mode 100644 index 000000000..86214c0df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cyan_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_stained_glass.json new file mode 100644 index 000000000..6645a5736 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cyan_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_stained_glass_pane.json new file mode 100644 index 000000000..e1fddf7e1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_terracotta.json new file mode 100644 index 000000000..dca321fa0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cyan_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_wall_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_wool.json new file mode 100644 index 000000000..48b12b5ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/cyan_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cyan_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/damaged_anvil.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/damaged_anvil.json new file mode 100644 index 000000000..cca2bca49 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/damaged_anvil.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/damaged_anvil", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/damaged_anvil", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/damaged_anvil" + }, + "facing=west": { + "model": "minecraft:block/damaged_anvil", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dandelion.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dandelion.json new file mode 100644 index 000000000..bf8a14b97 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dandelion.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dandelion" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_button.json new file mode 100644 index 000000000..fca360410 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/dark_oak_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/dark_oak_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/dark_oak_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/dark_oak_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/dark_oak_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/dark_oak_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/dark_oak_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/dark_oak_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/dark_oak_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/dark_oak_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/dark_oak_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/dark_oak_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_door.json new file mode 100644 index 000000000..aa45d8caa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/dark_oak_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/dark_oak_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/dark_oak_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/dark_oak_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/dark_oak_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/dark_oak_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/dark_oak_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/dark_oak_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/dark_oak_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/dark_oak_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/dark_oak_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/dark_oak_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/dark_oak_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/dark_oak_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/dark_oak_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/dark_oak_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/dark_oak_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/dark_oak_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/dark_oak_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/dark_oak_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/dark_oak_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/dark_oak_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/dark_oak_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/dark_oak_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/dark_oak_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/dark_oak_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/dark_oak_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/dark_oak_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/dark_oak_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/dark_oak_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/dark_oak_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/dark_oak_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_fence.json new file mode 100644 index 000000000..59bdf154a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/dark_oak_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_fence_gate.json new file mode 100644 index 000000000..3b6d547fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/dark_oak_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/dark_oak_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/dark_oak_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/dark_oak_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/dark_oak_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/dark_oak_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/dark_oak_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/dark_oak_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/dark_oak_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/dark_oak_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/dark_oak_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/dark_oak_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/dark_oak_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/dark_oak_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/dark_oak_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/dark_oak_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_hanging_sign.json new file mode 100644 index 000000000..e21ee9aac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dark_oak_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_leaves.json new file mode 100644 index 000000000..0b6f4f4d0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dark_oak_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_log.json new file mode 100644 index 000000000..ae91a1075 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/dark_oak_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/dark_oak_log" + }, + "axis=z": { + "model": "minecraft:block/dark_oak_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_planks.json new file mode 100644 index 000000000..47194b083 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dark_oak_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_pressure_plate.json new file mode 100644 index 000000000..7a3ce2afa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/dark_oak_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/dark_oak_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_sapling.json new file mode 100644 index 000000000..31435f372 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dark_oak_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_sign.json new file mode 100644 index 000000000..d3e8f533e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dark_oak_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_slab.json new file mode 100644 index 000000000..a99483a25 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/dark_oak_slab" + }, + "type=double": { + "model": "minecraft:block/dark_oak_planks" + }, + "type=top": { + "model": "minecraft:block/dark_oak_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_stairs.json new file mode 100644 index 000000000..4ab6e05df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/dark_oak_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/dark_oak_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/dark_oak_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/dark_oak_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/dark_oak_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/dark_oak_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/dark_oak_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/dark_oak_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/dark_oak_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/dark_oak_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/dark_oak_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/dark_oak_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_trapdoor.json new file mode 100644 index 000000000..87bb35c2e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/dark_oak_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/dark_oak_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/dark_oak_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/dark_oak_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/dark_oak_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/dark_oak_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/dark_oak_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/dark_oak_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/dark_oak_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/dark_oak_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/dark_oak_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/dark_oak_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/dark_oak_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/dark_oak_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/dark_oak_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/dark_oak_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_wall_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_wall_hanging_sign.json new file mode 100644 index 000000000..e21ee9aac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dark_oak_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_wall_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_wall_sign.json new file mode 100644 index 000000000..d3e8f533e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dark_oak_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_wood.json new file mode 100644 index 000000000..d45b617fd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_oak_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/dark_oak_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/dark_oak_wood" + }, + "axis=z": { + "model": "minecraft:block/dark_oak_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_prismarine.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_prismarine.json new file mode 100644 index 000000000..2f1ce7497 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_prismarine.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dark_prismarine" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_prismarine_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_prismarine_slab.json new file mode 100644 index 000000000..80a619490 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_prismarine_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/dark_prismarine_slab" + }, + "type=double": { + "model": "minecraft:block/dark_prismarine" + }, + "type=top": { + "model": "minecraft:block/dark_prismarine_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_prismarine_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_prismarine_stairs.json new file mode 100644 index 000000000..f53fdfcf4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dark_prismarine_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/dark_prismarine_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/dark_prismarine_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/dark_prismarine_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/dark_prismarine_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/dark_prismarine_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/dark_prismarine_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/dark_prismarine_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/dark_prismarine_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/dark_prismarine_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/dark_prismarine_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/dark_prismarine_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/dark_prismarine_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/daylight_detector.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/daylight_detector.json new file mode 100644 index 000000000..c6182ff91 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/daylight_detector.json @@ -0,0 +1,10 @@ +{ + "variants": { + "inverted=false": { + "model": "minecraft:block/daylight_detector" + }, + "inverted=true": { + "model": "minecraft:block/daylight_detector_inverted" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_brain_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_brain_coral.json new file mode 100644 index 000000000..736b2bd42 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_brain_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_brain_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_block.json new file mode 100644 index 000000000..550f6b06e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_brain_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_fan.json new file mode 100644 index 000000000..41c6e2a90 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_brain_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_wall_fan.json new file mode 100644 index 000000000..03c9d9762 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/dead_brain_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/dead_brain_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/dead_brain_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/dead_brain_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral.json new file mode 100644 index 000000000..fac745e18 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_bubble_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_block.json new file mode 100644 index 000000000..ada5781b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_bubble_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_fan.json new file mode 100644 index 000000000..d55b06086 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_bubble_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_wall_fan.json new file mode 100644 index 000000000..727aea199 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/dead_bubble_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/dead_bubble_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/dead_bubble_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/dead_bubble_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_bush.json new file mode 100644 index 000000000..ed88d1090 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_bush.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_bush" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_fire_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_fire_coral.json new file mode 100644 index 000000000..65f7ee33b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_fire_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_fire_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_block.json new file mode 100644 index 000000000..4414956f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_fire_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_fan.json new file mode 100644 index 000000000..fb3c6feb4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_fire_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_wall_fan.json new file mode 100644 index 000000000..0fd52584d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/dead_fire_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/dead_fire_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/dead_fire_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/dead_fire_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_horn_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_horn_coral.json new file mode 100644 index 000000000..f38ce336b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_horn_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_horn_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_block.json new file mode 100644 index 000000000..8666c0c6f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_horn_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_fan.json new file mode 100644 index 000000000..1f72003e6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_horn_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_wall_fan.json new file mode 100644 index 000000000..02928d6ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/dead_horn_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/dead_horn_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/dead_horn_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/dead_horn_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_tube_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_tube_coral.json new file mode 100644 index 000000000..156c3f0ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_tube_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_tube_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_block.json new file mode 100644 index 000000000..72d40552f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_tube_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_fan.json new file mode 100644 index 000000000..095e294be --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_tube_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_wall_fan.json new file mode 100644 index 000000000..0705e15de --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/dead_tube_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/dead_tube_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/dead_tube_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/dead_tube_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/decorated_pot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/decorated_pot.json new file mode 100644 index 000000000..2aa0faf7b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/decorated_pot.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/decorated_pot" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate.json new file mode 100644 index 000000000..dd197be8f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate.json @@ -0,0 +1,62 @@ +{ + "variants": { + "axis=x": [ + { + "model": "minecraft:block/deepslate", + "x": 90, + "y": 90 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "x": 90, + "y": 90 + }, + { + "model": "minecraft:block/deepslate", + "x": 90, + "y": 90 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "x": 90, + "y": 90 + } + ], + "axis=y": [ + { + "model": "minecraft:block/deepslate" + }, + { + "model": "minecraft:block/deepslate_mirrored" + }, + { + "model": "minecraft:block/deepslate", + "y": 180 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "y": 180 + } + ], + "axis=z": [ + { + "model": "minecraft:block/deepslate", + "x": 90 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "x": 90 + }, + { + "model": "minecraft:block/deepslate", + "x": 90, + "y": 180 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "x": 90, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_brick_slab.json new file mode 100644 index 000000000..1d1710382 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/deepslate_brick_slab" + }, + "type=double": { + "model": "minecraft:block/deepslate_bricks" + }, + "type=top": { + "model": "minecraft:block/deepslate_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_brick_stairs.json new file mode 100644 index 000000000..49dc5b394 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/deepslate_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/deepslate_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/deepslate_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/deepslate_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/deepslate_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/deepslate_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/deepslate_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/deepslate_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/deepslate_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/deepslate_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/deepslate_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/deepslate_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_brick_wall.json new file mode 100644 index 000000000..545dba089 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_bricks.json new file mode 100644 index 000000000..1884843cb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_coal_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_coal_ore.json new file mode 100644 index 000000000..8df18485c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_coal_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_coal_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_copper_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_copper_ore.json new file mode 100644 index 000000000..aa4aaa01e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_copper_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_copper_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_diamond_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_diamond_ore.json new file mode 100644 index 000000000..fa67e3fd7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_diamond_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_diamond_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_emerald_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_emerald_ore.json new file mode 100644 index 000000000..bf0b9264b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_emerald_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_emerald_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_gold_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_gold_ore.json new file mode 100644 index 000000000..f2077df60 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_gold_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_gold_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_iron_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_iron_ore.json new file mode 100644 index 000000000..62c79c11a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_iron_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_iron_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_lapis_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_lapis_ore.json new file mode 100644 index 000000000..60d27c9f9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_lapis_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_lapis_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_redstone_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_redstone_ore.json new file mode 100644 index 000000000..8767d7d9b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_redstone_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_redstone_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_tile_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_tile_slab.json new file mode 100644 index 000000000..60a8208f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/deepslate_tile_slab" + }, + "type=double": { + "model": "minecraft:block/deepslate_tiles" + }, + "type=top": { + "model": "minecraft:block/deepslate_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_tile_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_tile_stairs.json new file mode 100644 index 000000000..aefda363a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/deepslate_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/deepslate_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/deepslate_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/deepslate_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/deepslate_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/deepslate_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/deepslate_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/deepslate_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/deepslate_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/deepslate_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/deepslate_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/deepslate_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_tile_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_tile_wall.json new file mode 100644 index 000000000..e74929677 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_tiles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_tiles.json new file mode 100644 index 000000000..2e9d4dce2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/deepslate_tiles.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_tiles" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/detector_rail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/detector_rail.json new file mode 100644 index 000000000..fff11cc0c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/detector_rail.json @@ -0,0 +1,46 @@ +{ + "variants": { + "powered=false,shape=ascending_east": { + "model": "minecraft:block/detector_rail_raised_ne", + "y": 90 + }, + "powered=false,shape=ascending_north": { + "model": "minecraft:block/detector_rail_raised_ne" + }, + "powered=false,shape=ascending_south": { + "model": "minecraft:block/detector_rail_raised_sw" + }, + "powered=false,shape=ascending_west": { + "model": "minecraft:block/detector_rail_raised_sw", + "y": 90 + }, + "powered=false,shape=east_west": { + "model": "minecraft:block/detector_rail", + "y": 90 + }, + "powered=false,shape=north_south": { + "model": "minecraft:block/detector_rail" + }, + "powered=true,shape=ascending_east": { + "model": "minecraft:block/detector_rail_on_raised_ne", + "y": 90 + }, + "powered=true,shape=ascending_north": { + "model": "minecraft:block/detector_rail_on_raised_ne" + }, + "powered=true,shape=ascending_south": { + "model": "minecraft:block/detector_rail_on_raised_sw" + }, + "powered=true,shape=ascending_west": { + "model": "minecraft:block/detector_rail_on_raised_sw", + "y": 90 + }, + "powered=true,shape=east_west": { + "model": "minecraft:block/detector_rail_on", + "y": 90 + }, + "powered=true,shape=north_south": { + "model": "minecraft:block/detector_rail_on" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diamond_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diamond_block.json new file mode 100644 index 000000000..5a5d8888f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diamond_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/diamond_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diamond_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diamond_ore.json new file mode 100644 index 000000000..fda884363 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diamond_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/diamond_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diorite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diorite.json new file mode 100644 index 000000000..6adf7b0af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diorite.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/diorite" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diorite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diorite_slab.json new file mode 100644 index 000000000..58e561101 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diorite_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/diorite_slab" + }, + "type=double": { + "model": "minecraft:block/diorite" + }, + "type=top": { + "model": "minecraft:block/diorite_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diorite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diorite_stairs.json new file mode 100644 index 000000000..7e446fa0b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diorite_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/diorite_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/diorite_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/diorite_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/diorite_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/diorite_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/diorite_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/diorite_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/diorite_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/diorite_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/diorite_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/diorite_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/diorite_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diorite_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diorite_wall.json new file mode 100644 index 000000000..d27287852 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/diorite_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/diorite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/diorite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/diorite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/diorite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/diorite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/diorite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/diorite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/diorite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/diorite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dirt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dirt.json new file mode 100644 index 000000000..875507fe3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dirt.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/dirt" + }, + { + "model": "minecraft:block/dirt", + "y": 90 + }, + { + "model": "minecraft:block/dirt", + "y": 180 + }, + { + "model": "minecraft:block/dirt", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dirt_path.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dirt_path.json new file mode 100644 index 000000000..3865928a3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dirt_path.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/dirt_path" + }, + { + "model": "minecraft:block/dirt_path", + "y": 90 + }, + { + "model": "minecraft:block/dirt_path", + "y": 180 + }, + { + "model": "minecraft:block/dirt_path", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dispenser.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dispenser.json new file mode 100644 index 000000000..aae90a81c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dispenser.json @@ -0,0 +1,26 @@ +{ + "variants": { + "facing=down": { + "model": "minecraft:block/dispenser_vertical", + "x": 180 + }, + "facing=east": { + "model": "minecraft:block/dispenser", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/dispenser" + }, + "facing=south": { + "model": "minecraft:block/dispenser", + "y": 180 + }, + "facing=up": { + "model": "minecraft:block/dispenser_vertical" + }, + "facing=west": { + "model": "minecraft:block/dispenser", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dragon_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dragon_egg.json new file mode 100644 index 000000000..9bb980f7d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dragon_egg.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dragon_egg" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dragon_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dragon_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dragon_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dragon_wall_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dragon_wall_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dragon_wall_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dried_ghast.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dried_ghast.json new file mode 100644 index 000000000..3d9e96113 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dried_ghast.json @@ -0,0 +1,64 @@ +{ + "variants": { + "facing=east,hydration=0": { + "model": "minecraft:block/dried_ghast_hydration_0", + "y": 90 + }, + "facing=east,hydration=1": { + "model": "minecraft:block/dried_ghast_hydration_1", + "y": 90 + }, + "facing=east,hydration=2": { + "model": "minecraft:block/dried_ghast_hydration_2", + "y": 90 + }, + "facing=east,hydration=3": { + "model": "minecraft:block/dried_ghast_hydration_3", + "y": 90 + }, + "facing=north,hydration=0": { + "model": "minecraft:block/dried_ghast_hydration_0" + }, + "facing=north,hydration=1": { + "model": "minecraft:block/dried_ghast_hydration_1" + }, + "facing=north,hydration=2": { + "model": "minecraft:block/dried_ghast_hydration_2" + }, + "facing=north,hydration=3": { + "model": "minecraft:block/dried_ghast_hydration_3" + }, + "facing=south,hydration=0": { + "model": "minecraft:block/dried_ghast_hydration_0", + "y": 180 + }, + "facing=south,hydration=1": { + "model": "minecraft:block/dried_ghast_hydration_1", + "y": 180 + }, + "facing=south,hydration=2": { + "model": "minecraft:block/dried_ghast_hydration_2", + "y": 180 + }, + "facing=south,hydration=3": { + "model": "minecraft:block/dried_ghast_hydration_3", + "y": 180 + }, + "facing=west,hydration=0": { + "model": "minecraft:block/dried_ghast_hydration_0", + "y": 270 + }, + "facing=west,hydration=1": { + "model": "minecraft:block/dried_ghast_hydration_1", + "y": 270 + }, + "facing=west,hydration=2": { + "model": "minecraft:block/dried_ghast_hydration_2", + "y": 270 + }, + "facing=west,hydration=3": { + "model": "minecraft:block/dried_ghast_hydration_3", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dried_kelp_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dried_kelp_block.json new file mode 100644 index 000000000..aa9d160b5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dried_kelp_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dried_kelp_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dripstone_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dripstone_block.json new file mode 100644 index 000000000..d3949ca4d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dripstone_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dripstone_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dropper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dropper.json new file mode 100644 index 000000000..19b148300 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/dropper.json @@ -0,0 +1,26 @@ +{ + "variants": { + "facing=down": { + "model": "minecraft:block/dropper_vertical", + "x": 180 + }, + "facing=east": { + "model": "minecraft:block/dropper", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/dropper" + }, + "facing=south": { + "model": "minecraft:block/dropper", + "y": 180 + }, + "facing=up": { + "model": "minecraft:block/dropper_vertical" + }, + "facing=west": { + "model": "minecraft:block/dropper", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/emerald_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/emerald_block.json new file mode 100644 index 000000000..e159176d2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/emerald_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/emerald_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/emerald_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/emerald_ore.json new file mode 100644 index 000000000..ed6121a94 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/emerald_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/emerald_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/enchanting_table.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/enchanting_table.json new file mode 100644 index 000000000..85aeab36a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/enchanting_table.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/enchanting_table" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_gateway.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_gateway.json new file mode 100644 index 000000000..cc89ed7c2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_gateway.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/end_gateway" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_portal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_portal.json new file mode 100644 index 000000000..2b5f683e1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_portal.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/end_portal" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_portal_frame.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_portal_frame.json new file mode 100644 index 000000000..adcb19a14 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_portal_frame.json @@ -0,0 +1,34 @@ +{ + "variants": { + "eye=false,facing=east": { + "model": "minecraft:block/end_portal_frame", + "y": 270 + }, + "eye=false,facing=north": { + "model": "minecraft:block/end_portal_frame", + "y": 180 + }, + "eye=false,facing=south": { + "model": "minecraft:block/end_portal_frame" + }, + "eye=false,facing=west": { + "model": "minecraft:block/end_portal_frame", + "y": 90 + }, + "eye=true,facing=east": { + "model": "minecraft:block/end_portal_frame_filled", + "y": 270 + }, + "eye=true,facing=north": { + "model": "minecraft:block/end_portal_frame_filled", + "y": 180 + }, + "eye=true,facing=south": { + "model": "minecraft:block/end_portal_frame_filled" + }, + "eye=true,facing=west": { + "model": "minecraft:block/end_portal_frame_filled", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_rod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_rod.json new file mode 100644 index 000000000..0119a1a24 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_rod.json @@ -0,0 +1,30 @@ +{ + "variants": { + "facing=down": { + "model": "minecraft:block/end_rod", + "x": 180 + }, + "facing=east": { + "model": "minecraft:block/end_rod", + "x": 90, + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/end_rod", + "x": 90 + }, + "facing=south": { + "model": "minecraft:block/end_rod", + "x": 90, + "y": 180 + }, + "facing=up": { + "model": "minecraft:block/end_rod" + }, + "facing=west": { + "model": "minecraft:block/end_rod", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_stone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_stone.json new file mode 100644 index 000000000..e8e23c911 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_stone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/end_stone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_stone_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_stone_brick_slab.json new file mode 100644 index 000000000..08681cc5a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_stone_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/end_stone_brick_slab" + }, + "type=double": { + "model": "minecraft:block/end_stone_bricks" + }, + "type=top": { + "model": "minecraft:block/end_stone_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_stone_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_stone_brick_stairs.json new file mode 100644 index 000000000..96d2b2dd2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_stone_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/end_stone_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/end_stone_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/end_stone_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/end_stone_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/end_stone_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/end_stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/end_stone_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/end_stone_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/end_stone_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/end_stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/end_stone_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/end_stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_stone_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_stone_brick_wall.json new file mode 100644 index 000000000..b7a3ba8be --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_stone_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_stone_bricks.json new file mode 100644 index 000000000..1cc0910a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/end_stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/end_stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/ender_chest.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/ender_chest.json new file mode 100644 index 000000000..8656aed71 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/ender_chest.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/ender_chest" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_chiseled_copper.json new file mode 100644 index 000000000..3b87926a4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_chiseled_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_copper.json new file mode 100644 index 000000000..ed711e799 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_copper_bulb.json new file mode 100644 index 000000000..203fd0f56 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_copper_bulb.json @@ -0,0 +1,16 @@ +{ + "variants": { + "lit=false,powered=false": { + "model": "minecraft:block/exposed_copper_bulb" + }, + "lit=false,powered=true": { + "model": "minecraft:block/exposed_copper_bulb_powered" + }, + "lit=true,powered=false": { + "model": "minecraft:block/exposed_copper_bulb_lit" + }, + "lit=true,powered=true": { + "model": "minecraft:block/exposed_copper_bulb_lit_powered" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_copper_door.json new file mode 100644 index 000000000..f4f304897 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_copper_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_copper_grate.json new file mode 100644 index 000000000..49a6446fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_copper_grate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_copper_grate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_copper_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_copper_trapdoor.json new file mode 100644 index 000000000..e8734ba35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_copper_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper.json new file mode 100644 index 000000000..3b465b0bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_cut_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper_slab.json new file mode 100644 index 000000000..81b09c734 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/exposed_cut_copper_slab" + }, + "type=double": { + "model": "minecraft:block/exposed_cut_copper" + }, + "type=top": { + "model": "minecraft:block/exposed_cut_copper_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper_stairs.json new file mode 100644 index 000000000..f9863f6c8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/farmland.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/farmland.json new file mode 100644 index 000000000..93882d0c0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/farmland.json @@ -0,0 +1,28 @@ +{ + "variants": { + "moisture=0": { + "model": "minecraft:block/farmland" + }, + "moisture=1": { + "model": "minecraft:block/farmland" + }, + "moisture=2": { + "model": "minecraft:block/farmland" + }, + "moisture=3": { + "model": "minecraft:block/farmland" + }, + "moisture=4": { + "model": "minecraft:block/farmland" + }, + "moisture=5": { + "model": "minecraft:block/farmland" + }, + "moisture=6": { + "model": "minecraft:block/farmland" + }, + "moisture=7": { + "model": "minecraft:block/farmland_moist" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fern.json new file mode 100644 index 000000000..01cf1d349 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fern.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/fern" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fire.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fire.json new file mode 100644 index 000000000..835848751 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fire.json @@ -0,0 +1,172 @@ +{ + "multipart": [ + { + "apply": [ + { + "model": "minecraft:block/fire_floor0" + }, + { + "model": "minecraft:block/fire_floor1" + } + ], + "when": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": [ + { + "model": "minecraft:block/fire_side0" + }, + { + "model": "minecraft:block/fire_side1" + }, + { + "model": "minecraft:block/fire_side_alt0" + }, + { + "model": "minecraft:block/fire_side_alt1" + } + ], + "when": { + "OR": [ + { + "north": "true" + }, + { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + ] + } + }, + { + "apply": [ + { + "model": "minecraft:block/fire_side0", + "y": 90 + }, + { + "model": "minecraft:block/fire_side1", + "y": 90 + }, + { + "model": "minecraft:block/fire_side_alt0", + "y": 90 + }, + { + "model": "minecraft:block/fire_side_alt1", + "y": 90 + } + ], + "when": { + "OR": [ + { + "east": "true" + }, + { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + ] + } + }, + { + "apply": [ + { + "model": "minecraft:block/fire_side0", + "y": 180 + }, + { + "model": "minecraft:block/fire_side1", + "y": 180 + }, + { + "model": "minecraft:block/fire_side_alt0", + "y": 180 + }, + { + "model": "minecraft:block/fire_side_alt1", + "y": 180 + } + ], + "when": { + "OR": [ + { + "south": "true" + }, + { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + ] + } + }, + { + "apply": [ + { + "model": "minecraft:block/fire_side0", + "y": 270 + }, + { + "model": "minecraft:block/fire_side1", + "y": 270 + }, + { + "model": "minecraft:block/fire_side_alt0", + "y": 270 + }, + { + "model": "minecraft:block/fire_side_alt1", + "y": 270 + } + ], + "when": { + "OR": [ + { + "west": "true" + }, + { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + ] + } + }, + { + "apply": [ + { + "model": "minecraft:block/fire_up0" + }, + { + "model": "minecraft:block/fire_up1" + }, + { + "model": "minecraft:block/fire_up_alt0" + }, + { + "model": "minecraft:block/fire_up_alt1" + } + ], + "when": { + "up": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fire_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fire_coral.json new file mode 100644 index 000000000..a80bfadc0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fire_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/fire_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fire_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fire_coral_block.json new file mode 100644 index 000000000..a4f98fbde --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fire_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/fire_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fire_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fire_coral_fan.json new file mode 100644 index 000000000..d6579f899 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fire_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/fire_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fire_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fire_coral_wall_fan.json new file mode 100644 index 000000000..914933066 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fire_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/fire_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/fire_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/fire_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/fire_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/firefly_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/firefly_bush.json new file mode 100644 index 000000000..373034532 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/firefly_bush.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/firefly_bush" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fletching_table.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fletching_table.json new file mode 100644 index 000000000..941b4fd96 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/fletching_table.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/fletching_table" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/flower_pot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/flower_pot.json new file mode 100644 index 000000000..8a1ab93be --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/flower_pot.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/flower_pot" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/flowering_azalea.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/flowering_azalea.json new file mode 100644 index 000000000..daeb290c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/flowering_azalea.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/flowering_azalea" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/flowering_azalea_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/flowering_azalea_leaves.json new file mode 100644 index 000000000..9731fdb04 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/flowering_azalea_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/flowering_azalea_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/frogspawn.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/frogspawn.json new file mode 100644 index 000000000..bf103d4ab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/frogspawn.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/frogspawn" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/frosted_ice.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/frosted_ice.json new file mode 100644 index 000000000..f03b5bdcf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/frosted_ice.json @@ -0,0 +1,16 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/frosted_ice_0" + }, + "age=1": { + "model": "minecraft:block/frosted_ice_1" + }, + "age=2": { + "model": "minecraft:block/frosted_ice_2" + }, + "age=3": { + "model": "minecraft:block/frosted_ice_3" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/furnace.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/furnace.json new file mode 100644 index 000000000..9c31d91fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/furnace.json @@ -0,0 +1,34 @@ +{ + "variants": { + "facing=east,lit=false": { + "model": "minecraft:block/furnace", + "y": 90 + }, + "facing=east,lit=true": { + "model": "minecraft:block/furnace_on", + "y": 90 + }, + "facing=north,lit=false": { + "model": "minecraft:block/furnace" + }, + "facing=north,lit=true": { + "model": "minecraft:block/furnace_on" + }, + "facing=south,lit=false": { + "model": "minecraft:block/furnace", + "y": 180 + }, + "facing=south,lit=true": { + "model": "minecraft:block/furnace_on", + "y": 180 + }, + "facing=west,lit=false": { + "model": "minecraft:block/furnace", + "y": 270 + }, + "facing=west,lit=true": { + "model": "minecraft:block/furnace_on", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gilded_blackstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gilded_blackstone.json new file mode 100644 index 000000000..511f5825c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gilded_blackstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gilded_blackstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/glass.json new file mode 100644 index 000000000..5f6ec4d28 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/glass_pane.json new file mode 100644 index 000000000..d8f2900fd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/glow_item_frame.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/glow_item_frame.json new file mode 100644 index 000000000..f43a18719 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/glow_item_frame.json @@ -0,0 +1,6 @@ +{ + "variants": { + "map=false": { "model": "block/glow_item_frame" }, + "map=true": { "model": "block/glow_item_frame_map" } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/glow_lichen.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/glow_lichen.json new file mode 100644 index 000000000..b98b5e356 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/glow_lichen.json @@ -0,0 +1,150 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/glow_lichen" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen" + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "y": 90 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "y": 180 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "y": 270 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "x": 270 + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "x": 270 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/glowstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/glowstone.json new file mode 100644 index 000000000..c60860b8c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/glowstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/glowstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gold_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gold_block.json new file mode 100644 index 000000000..475eff025 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gold_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gold_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gold_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gold_ore.json new file mode 100644 index 000000000..183d06791 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gold_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gold_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/granite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/granite.json new file mode 100644 index 000000000..d11c34e1c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/granite.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/granite" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/granite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/granite_slab.json new file mode 100644 index 000000000..1d2d50b6f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/granite_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/granite_slab" + }, + "type=double": { + "model": "minecraft:block/granite" + }, + "type=top": { + "model": "minecraft:block/granite_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/granite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/granite_stairs.json new file mode 100644 index 000000000..e3585341b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/granite_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/granite_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/granite_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/granite_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/granite_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/granite_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/granite_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/granite_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/granite_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/granite_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/granite_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/granite_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/granite_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/granite_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/granite_wall.json new file mode 100644 index 000000000..91af5755d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/granite_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/granite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/granite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/granite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/granite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/granite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/granite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/granite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/granite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/granite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/grass_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/grass_block.json new file mode 100644 index 000000000..ab4efdb13 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/grass_block.json @@ -0,0 +1,24 @@ +{ + "variants": { + "snowy=false": [ + { + "model": "minecraft:block/grass_block" + }, + { + "model": "minecraft:block/grass_block", + "y": 90 + }, + { + "model": "minecraft:block/grass_block", + "y": 180 + }, + { + "model": "minecraft:block/grass_block", + "y": 270 + } + ], + "snowy=true": { + "model": "minecraft:block/grass_block_snow" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gravel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gravel.json new file mode 100644 index 000000000..7f0372347 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gravel.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gravel" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_candle.json new file mode 100644 index 000000000..640fdd7c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/gray_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/gray_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/gray_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/gray_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/gray_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/gray_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/gray_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/gray_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_candle_cake.json new file mode 100644 index 000000000..f597b093d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/gray_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/gray_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_carpet.json new file mode 100644 index 000000000..05f0cc60d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gray_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_concrete.json new file mode 100644 index 000000000..95c74d4af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gray_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_concrete_powder.json new file mode 100644 index 000000000..1d83c5629 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/gray_concrete_powder" + }, + { + "model": "minecraft:block/gray_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/gray_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/gray_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_glazed_terracotta.json new file mode 100644 index 000000000..4315e7d76 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/gray_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/gray_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/gray_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/gray_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_shulker_box.json new file mode 100644 index 000000000..8dd3ead26 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gray_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_stained_glass.json new file mode 100644 index 000000000..d7d76b1a0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gray_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_stained_glass_pane.json new file mode 100644 index 000000000..a24e8b4b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_terracotta.json new file mode 100644 index 000000000..c605f3d05 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gray_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_wall_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_wool.json new file mode 100644 index 000000000..001779de7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/gray_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gray_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_candle.json new file mode 100644 index 000000000..1e5ce65a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/green_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/green_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/green_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/green_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/green_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/green_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/green_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/green_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_candle_cake.json new file mode 100644 index 000000000..d01a78d90 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/green_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/green_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_carpet.json new file mode 100644 index 000000000..83ea2c2d6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/green_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_concrete.json new file mode 100644 index 000000000..3ac2d62c7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/green_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_concrete_powder.json new file mode 100644 index 000000000..ee2e37dcf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/green_concrete_powder" + }, + { + "model": "minecraft:block/green_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/green_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/green_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_glazed_terracotta.json new file mode 100644 index 000000000..4c991e2ec --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/green_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/green_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/green_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/green_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_shulker_box.json new file mode 100644 index 000000000..e8c32e0df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/green_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_stained_glass.json new file mode 100644 index 000000000..ca4fec406 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/green_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_stained_glass_pane.json new file mode 100644 index 000000000..d0c3779f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_terracotta.json new file mode 100644 index 000000000..3bf40d83e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/green_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_wall_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_wool.json new file mode 100644 index 000000000..895370355 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/green_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/green_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/grindstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/grindstone.json new file mode 100644 index 000000000..244481d0a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/grindstone.json @@ -0,0 +1,57 @@ +{ + "variants": { + "face=ceiling,facing=east": { + "model": "minecraft:block/grindstone", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north": { + "model": "minecraft:block/grindstone", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south": { + "model": "minecraft:block/grindstone", + "x": 180 + }, + "face=ceiling,facing=west": { + "model": "minecraft:block/grindstone", + "x": 180, + "y": 90 + }, + "face=floor,facing=east": { + "model": "minecraft:block/grindstone", + "y": 90 + }, + "face=floor,facing=north": { + "model": "minecraft:block/grindstone" + }, + "face=floor,facing=south": { + "model": "minecraft:block/grindstone", + "y": 180 + }, + "face=floor,facing=west": { + "model": "minecraft:block/grindstone", + "y": 270 + }, + "face=wall,facing=east": { + "model": "minecraft:block/grindstone", + "x": 90, + "y": 90 + }, + "face=wall,facing=north": { + "model": "minecraft:block/grindstone", + "x": 90 + }, + "face=wall,facing=south": { + "model": "minecraft:block/grindstone", + "x": 90, + "y": 180 + }, + "face=wall,facing=west": { + "model": "minecraft:block/grindstone", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/hanging_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/hanging_roots.json new file mode 100644 index 000000000..a6a155d0b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/hanging_roots.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/hanging_roots" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/hay_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/hay_block.json new file mode 100644 index 000000000..63467f1b3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/hay_block.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/hay_block_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/hay_block" + }, + "axis=z": { + "model": "minecraft:block/hay_block_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/heavy_core.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/heavy_core.json new file mode 100644 index 000000000..4ddafc634 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/heavy_core.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/heavy_core" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/heavy_weighted_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/heavy_weighted_pressure_plate.json new file mode 100644 index 000000000..3f2b8800a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/heavy_weighted_pressure_plate.json @@ -0,0 +1,52 @@ +{ + "variants": { + "power=0": { + "model": "minecraft:block/heavy_weighted_pressure_plate" + }, + "power=1": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=10": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=11": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=12": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=13": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=14": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=15": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=2": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=3": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=4": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=5": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=6": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=7": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=8": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=9": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/honey_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/honey_block.json new file mode 100644 index 000000000..337f73f9e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/honey_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/honey_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/honeycomb_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/honeycomb_block.json new file mode 100644 index 000000000..b8a98bb35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/honeycomb_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/honeycomb_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/hopper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/hopper.json new file mode 100644 index 000000000..be15ea37f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/hopper.json @@ -0,0 +1,22 @@ +{ + "variants": { + "facing=down": { + "model": "minecraft:block/hopper" + }, + "facing=east": { + "model": "minecraft:block/hopper_side", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/hopper_side" + }, + "facing=south": { + "model": "minecraft:block/hopper_side", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/hopper_side", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/horn_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/horn_coral.json new file mode 100644 index 000000000..c7665173d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/horn_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/horn_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/horn_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/horn_coral_block.json new file mode 100644 index 000000000..6f8f199f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/horn_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/horn_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/horn_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/horn_coral_fan.json new file mode 100644 index 000000000..99f085499 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/horn_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/horn_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/horn_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/horn_coral_wall_fan.json new file mode 100644 index 000000000..07d22ed04 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/horn_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/horn_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/horn_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/horn_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/horn_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/ice.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/ice.json new file mode 100644 index 000000000..0617dfc34 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/ice.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/ice" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_chiseled_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_chiseled_stone_bricks.json new file mode 100644 index 000000000..4034c11b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_chiseled_stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_cobblestone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_cobblestone.json new file mode 100644 index 000000000..e94cf8820 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_cobblestone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cobblestone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_cracked_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_cracked_stone_bricks.json new file mode 100644 index 000000000..6e194be2d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_cracked_stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cracked_stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_deepslate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_deepslate.json new file mode 100644 index 000000000..dd197be8f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_deepslate.json @@ -0,0 +1,62 @@ +{ + "variants": { + "axis=x": [ + { + "model": "minecraft:block/deepslate", + "x": 90, + "y": 90 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "x": 90, + "y": 90 + }, + { + "model": "minecraft:block/deepslate", + "x": 90, + "y": 90 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "x": 90, + "y": 90 + } + ], + "axis=y": [ + { + "model": "minecraft:block/deepslate" + }, + { + "model": "minecraft:block/deepslate_mirrored" + }, + { + "model": "minecraft:block/deepslate", + "y": 180 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "y": 180 + } + ], + "axis=z": [ + { + "model": "minecraft:block/deepslate", + "x": 90 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "x": 90 + }, + { + "model": "minecraft:block/deepslate", + "x": 90, + "y": 180 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "x": 90, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_mossy_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_mossy_stone_bricks.json new file mode 100644 index 000000000..c17c4a7f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_mossy_stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mossy_stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_stone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_stone.json new file mode 100644 index 000000000..c150ec294 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_stone.json @@ -0,0 +1,20 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/stone" + }, + { + "model": "minecraft:block/stone_mirrored" + }, + { + "model": "minecraft:block/stone", + "y": 180 + }, + { + "model": "minecraft:block/stone_mirrored", + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_stone_bricks.json new file mode 100644 index 000000000..8a05daf03 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/infested_stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/iron_bars.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/iron_bars.json new file mode 100644 index 000000000..37dfb9912 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/iron_bars.json @@ -0,0 +1,100 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/iron_bars_post_ends" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_post" + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_cap" + }, + "when": { + "east": "false", + "north": "true", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_cap", + "y": 90 + }, + "when": { + "east": "true", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_cap_alt" + }, + "when": { + "east": "false", + "north": "false", + "south": "true", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_cap_alt", + "y": 90 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/iron_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/iron_block.json new file mode 100644 index 000000000..5cad8c39f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/iron_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/iron_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/iron_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/iron_door.json new file mode 100644 index 000000000..e4fbc9526 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/iron_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/iron_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/iron_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/iron_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/iron_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/iron_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/iron_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/iron_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/iron_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/iron_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/iron_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/iron_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/iron_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/iron_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/iron_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/iron_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/iron_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/iron_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/iron_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/iron_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/iron_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/iron_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/iron_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/iron_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/iron_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/iron_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/iron_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/iron_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/iron_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/iron_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/iron_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/iron_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/iron_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/iron_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/iron_ore.json new file mode 100644 index 000000000..c514e64b9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/iron_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/iron_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/iron_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/iron_trapdoor.json new file mode 100644 index 000000000..df0b2b3d4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/iron_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/iron_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/iron_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/iron_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/iron_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/iron_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/iron_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/iron_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/iron_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/iron_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/iron_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/iron_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/iron_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/iron_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/iron_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/iron_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/iron_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/item_frame.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/item_frame.json new file mode 100644 index 000000000..7b70ec00c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/item_frame.json @@ -0,0 +1,6 @@ +{ + "variants": { + "map=false": { "model": "block/item_frame" }, + "map=true": { "model": "block/item_frame_map" } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jack_o_lantern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jack_o_lantern.json new file mode 100644 index 000000000..7454ebab3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jack_o_lantern.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/jack_o_lantern", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/jack_o_lantern" + }, + "facing=south": { + "model": "minecraft:block/jack_o_lantern", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/jack_o_lantern", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jigsaw.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jigsaw.json new file mode 100644 index 000000000..8f24d193d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jigsaw.json @@ -0,0 +1,57 @@ +{ + "variants": { + "orientation=down_east": { + "model": "minecraft:block/jigsaw", + "x": 90, + "y": 90 + }, + "orientation=down_north": { + "model": "minecraft:block/jigsaw", + "x": 90 + }, + "orientation=down_south": { + "model": "minecraft:block/jigsaw", + "x": 90, + "y": 180 + }, + "orientation=down_west": { + "model": "minecraft:block/jigsaw", + "x": 90, + "y": 270 + }, + "orientation=east_up": { + "model": "minecraft:block/jigsaw", + "y": 90 + }, + "orientation=north_up": { + "model": "minecraft:block/jigsaw" + }, + "orientation=south_up": { + "model": "minecraft:block/jigsaw", + "y": 180 + }, + "orientation=up_east": { + "model": "minecraft:block/jigsaw", + "x": 270, + "y": 270 + }, + "orientation=up_north": { + "model": "minecraft:block/jigsaw", + "x": 270, + "y": 180 + }, + "orientation=up_south": { + "model": "minecraft:block/jigsaw", + "x": 270 + }, + "orientation=up_west": { + "model": "minecraft:block/jigsaw", + "x": 270, + "y": 90 + }, + "orientation=west_up": { + "model": "minecraft:block/jigsaw", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jukebox.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jukebox.json new file mode 100644 index 000000000..7ee694c69 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jukebox.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/jukebox" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_button.json new file mode 100644 index 000000000..874add88e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/jungle_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/jungle_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/jungle_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/jungle_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/jungle_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/jungle_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/jungle_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/jungle_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/jungle_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/jungle_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/jungle_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/jungle_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/jungle_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_door.json new file mode 100644 index 000000000..f5878e6fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/jungle_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/jungle_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/jungle_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/jungle_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/jungle_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/jungle_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/jungle_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/jungle_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/jungle_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/jungle_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/jungle_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/jungle_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/jungle_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/jungle_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/jungle_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/jungle_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/jungle_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/jungle_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/jungle_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/jungle_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/jungle_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/jungle_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/jungle_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/jungle_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/jungle_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/jungle_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/jungle_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/jungle_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/jungle_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/jungle_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/jungle_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/jungle_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_fence.json new file mode 100644 index 000000000..7ed2c128e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/jungle_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/jungle_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/jungle_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/jungle_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/jungle_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_fence_gate.json new file mode 100644 index 000000000..37e51526e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/jungle_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/jungle_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/jungle_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/jungle_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/jungle_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/jungle_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/jungle_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/jungle_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/jungle_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/jungle_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/jungle_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/jungle_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/jungle_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/jungle_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/jungle_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/jungle_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_hanging_sign.json new file mode 100644 index 000000000..019498fd7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/jungle_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_leaves.json new file mode 100644 index 000000000..9bc23fe04 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/jungle_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_log.json new file mode 100644 index 000000000..ad109dd8e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/jungle_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/jungle_log" + }, + "axis=z": { + "model": "minecraft:block/jungle_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_planks.json new file mode 100644 index 000000000..e387c978d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/jungle_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_pressure_plate.json new file mode 100644 index 000000000..a32da0b88 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/jungle_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/jungle_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_sapling.json new file mode 100644 index 000000000..5e90752d0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/jungle_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_sign.json new file mode 100644 index 000000000..883b18597 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/jungle_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_slab.json new file mode 100644 index 000000000..700e45f93 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/jungle_slab" + }, + "type=double": { + "model": "minecraft:block/jungle_planks" + }, + "type=top": { + "model": "minecraft:block/jungle_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_stairs.json new file mode 100644 index 000000000..df5cc2b2c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/jungle_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/jungle_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/jungle_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/jungle_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/jungle_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/jungle_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/jungle_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/jungle_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/jungle_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/jungle_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/jungle_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/jungle_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_trapdoor.json new file mode 100644 index 000000000..c858f7739 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/jungle_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/jungle_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/jungle_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/jungle_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/jungle_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/jungle_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/jungle_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/jungle_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/jungle_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/jungle_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/jungle_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/jungle_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/jungle_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/jungle_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/jungle_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/jungle_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_wall_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_wall_hanging_sign.json new file mode 100644 index 000000000..019498fd7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/jungle_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_wall_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_wall_sign.json new file mode 100644 index 000000000..883b18597 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/jungle_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_wood.json new file mode 100644 index 000000000..af9a353d8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/jungle_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/jungle_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/jungle_wood" + }, + "axis=z": { + "model": "minecraft:block/jungle_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/kelp.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/kelp.json new file mode 100644 index 000000000..6654924af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/kelp.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/kelp" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/kelp_plant.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/kelp_plant.json new file mode 100644 index 000000000..f1d1539ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/kelp_plant.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/kelp_plant" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/ladder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/ladder.json new file mode 100644 index 000000000..972cc8029 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/ladder.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/ladder", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/ladder" + }, + "facing=south": { + "model": "minecraft:block/ladder", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/ladder", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lantern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lantern.json new file mode 100644 index 000000000..00cb4380c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lantern.json @@ -0,0 +1,10 @@ +{ + "variants": { + "hanging=false": { + "model": "minecraft:block/lantern" + }, + "hanging=true": { + "model": "minecraft:block/lantern_hanging" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lapis_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lapis_block.json new file mode 100644 index 000000000..ff91f2329 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lapis_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lapis_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lapis_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lapis_ore.json new file mode 100644 index 000000000..351713044 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lapis_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lapis_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/large_amethyst_bud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/large_amethyst_bud.json new file mode 100644 index 000000000..c64c6a9f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/large_amethyst_bud.json @@ -0,0 +1,30 @@ +{ + "variants": { + "facing=down": { + "model": "minecraft:block/large_amethyst_bud", + "x": 180 + }, + "facing=east": { + "model": "minecraft:block/large_amethyst_bud", + "x": 90, + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/large_amethyst_bud", + "x": 90 + }, + "facing=south": { + "model": "minecraft:block/large_amethyst_bud", + "x": 90, + "y": 180 + }, + "facing=up": { + "model": "minecraft:block/large_amethyst_bud" + }, + "facing=west": { + "model": "minecraft:block/large_amethyst_bud", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/large_fern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/large_fern.json new file mode 100644 index 000000000..a92b142fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/large_fern.json @@ -0,0 +1,10 @@ +{ + "variants": { + "half=lower": { + "model": "minecraft:block/large_fern_bottom" + }, + "half=upper": { + "model": "minecraft:block/large_fern_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lava.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lava.json new file mode 100644 index 000000000..54087c252 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lava.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lava" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lava_cauldron.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lava_cauldron.json new file mode 100644 index 000000000..6ed31aab4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lava_cauldron.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lava_cauldron" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/leaf_litter.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/leaf_litter.json new file mode 100644 index 000000000..165771c19 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/leaf_litter.json @@ -0,0 +1,160 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/leaf_litter_1" + }, + "when": { + "facing": "north", + "segment_amount": "1" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_1", + "y": 90 + }, + "when": { + "facing": "east", + "segment_amount": "1" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_1", + "y": 180 + }, + "when": { + "facing": "south", + "segment_amount": "1" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_1", + "y": 270 + }, + "when": { + "facing": "west", + "segment_amount": "1" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_2" + }, + "when": { + "facing": "north", + "segment_amount": "2|3" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_2", + "y": 90 + }, + "when": { + "facing": "east", + "segment_amount": "2|3" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_2", + "y": 180 + }, + "when": { + "facing": "south", + "segment_amount": "2|3" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_2", + "y": 270 + }, + "when": { + "facing": "west", + "segment_amount": "2|3" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_3" + }, + "when": { + "facing": "north", + "segment_amount": "3" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_3", + "y": 90 + }, + "when": { + "facing": "east", + "segment_amount": "3" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_3", + "y": 180 + }, + "when": { + "facing": "south", + "segment_amount": "3" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_3", + "y": 270 + }, + "when": { + "facing": "west", + "segment_amount": "3" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_4" + }, + "when": { + "facing": "north", + "segment_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_4", + "y": 90 + }, + "when": { + "facing": "east", + "segment_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_4", + "y": 180 + }, + "when": { + "facing": "south", + "segment_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_4", + "y": 270 + }, + "when": { + "facing": "west", + "segment_amount": "4" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lectern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lectern.json new file mode 100644 index 000000000..b6ec88be8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lectern.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/lectern", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/lectern" + }, + "facing=south": { + "model": "minecraft:block/lectern", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/lectern", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lever.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lever.json new file mode 100644 index 000000000..f5892ecab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lever.json @@ -0,0 +1,110 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/lever_on", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/lever", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/lever_on", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/lever", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/lever_on", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/lever", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/lever_on", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/lever", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/lever_on", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/lever", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/lever_on" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/lever" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/lever_on", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/lever", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/lever_on", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/lever", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/lever_on", + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/lever", + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/lever_on", + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/lever", + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/lever_on", + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/lever", + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/lever_on", + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/lever", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light.json new file mode 100644 index 000000000..c6fa88559 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light.json @@ -0,0 +1,52 @@ +{ + "variants": { + "level=0": { + "model": "minecraft:block/light_00" + }, + "level=1": { + "model": "minecraft:block/light_01" + }, + "level=10": { + "model": "minecraft:block/light_10" + }, + "level=11": { + "model": "minecraft:block/light_11" + }, + "level=12": { + "model": "minecraft:block/light_12" + }, + "level=13": { + "model": "minecraft:block/light_13" + }, + "level=14": { + "model": "minecraft:block/light_14" + }, + "level=15": { + "model": "minecraft:block/light_15" + }, + "level=2": { + "model": "minecraft:block/light_02" + }, + "level=3": { + "model": "minecraft:block/light_03" + }, + "level=4": { + "model": "minecraft:block/light_04" + }, + "level=5": { + "model": "minecraft:block/light_05" + }, + "level=6": { + "model": "minecraft:block/light_06" + }, + "level=7": { + "model": "minecraft:block/light_07" + }, + "level=8": { + "model": "minecraft:block/light_08" + }, + "level=9": { + "model": "minecraft:block/light_09" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_candle.json new file mode 100644 index 000000000..93995174e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/light_blue_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/light_blue_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/light_blue_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/light_blue_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/light_blue_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/light_blue_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/light_blue_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/light_blue_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_candle_cake.json new file mode 100644 index 000000000..669bb4e28 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/light_blue_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/light_blue_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_carpet.json new file mode 100644 index 000000000..5db104bc8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_blue_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_concrete.json new file mode 100644 index 000000000..b1869773e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_blue_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_concrete_powder.json new file mode 100644 index 000000000..b1a0f8662 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/light_blue_concrete_powder" + }, + { + "model": "minecraft:block/light_blue_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/light_blue_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/light_blue_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_glazed_terracotta.json new file mode 100644 index 000000000..04c566aa2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/light_blue_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/light_blue_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/light_blue_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/light_blue_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_shulker_box.json new file mode 100644 index 000000000..0d8702cef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_blue_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_stained_glass.json new file mode 100644 index 000000000..6570fbc59 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_blue_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_stained_glass_pane.json new file mode 100644 index 000000000..91092ccae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_terracotta.json new file mode 100644 index 000000000..923dc3d41 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_blue_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_wall_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_wool.json new file mode 100644 index 000000000..0f808ef73 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_blue_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_blue_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_candle.json new file mode 100644 index 000000000..4d98f6c2c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/light_gray_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/light_gray_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/light_gray_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/light_gray_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/light_gray_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/light_gray_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/light_gray_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/light_gray_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_candle_cake.json new file mode 100644 index 000000000..87604a99b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/light_gray_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/light_gray_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_carpet.json new file mode 100644 index 000000000..2cd65422f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_gray_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_concrete.json new file mode 100644 index 000000000..7fcc76536 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_gray_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_concrete_powder.json new file mode 100644 index 000000000..71d06183b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/light_gray_concrete_powder" + }, + { + "model": "minecraft:block/light_gray_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/light_gray_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/light_gray_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_glazed_terracotta.json new file mode 100644 index 000000000..afaa7d77a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/light_gray_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/light_gray_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/light_gray_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/light_gray_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_shulker_box.json new file mode 100644 index 000000000..a04db2c92 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_gray_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_stained_glass.json new file mode 100644 index 000000000..b14a289d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_gray_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_stained_glass_pane.json new file mode 100644 index 000000000..0c4c99ee6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_terracotta.json new file mode 100644 index 000000000..d1fe850d9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_gray_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_wall_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_wool.json new file mode 100644 index 000000000..c26d7157c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_gray_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_gray_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_weighted_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_weighted_pressure_plate.json new file mode 100644 index 000000000..3495b4c58 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/light_weighted_pressure_plate.json @@ -0,0 +1,52 @@ +{ + "variants": { + "power=0": { + "model": "minecraft:block/light_weighted_pressure_plate" + }, + "power=1": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=10": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=11": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=12": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=13": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=14": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=15": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=2": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=3": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=4": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=5": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=6": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=7": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=8": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=9": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lightning_rod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lightning_rod.json new file mode 100644 index 000000000..df0e7c466 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lightning_rod.json @@ -0,0 +1,56 @@ +{ + "variants": { + "facing=down,powered=false": { + "model": "minecraft:block/lightning_rod", + "x": 180 + }, + "facing=down,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 180 + }, + "facing=east,powered=false": { + "model": "minecraft:block/lightning_rod", + "x": 90, + "y": 90 + }, + "facing=east,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 90 + }, + "facing=north,powered=false": { + "model": "minecraft:block/lightning_rod", + "x": 90 + }, + "facing=north,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90 + }, + "facing=south,powered=false": { + "model": "minecraft:block/lightning_rod", + "x": 90, + "y": 180 + }, + "facing=south,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 180 + }, + "facing=up,powered=false": { + "model": "minecraft:block/lightning_rod" + }, + "facing=up,powered=true": { + "model": "minecraft:block/lightning_rod_on" + }, + "facing=west,powered=false": { + "model": "minecraft:block/lightning_rod", + "x": 90, + "y": 270 + }, + "facing=west,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lilac.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lilac.json new file mode 100644 index 000000000..5a29adb9e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lilac.json @@ -0,0 +1,10 @@ +{ + "variants": { + "half=lower": { + "model": "minecraft:block/lilac_bottom" + }, + "half=upper": { + "model": "minecraft:block/lilac_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lily_of_the_valley.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lily_of_the_valley.json new file mode 100644 index 000000000..5bc1e9384 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lily_of_the_valley.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lily_of_the_valley" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lily_pad.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lily_pad.json new file mode 100644 index 000000000..41cd85d1c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lily_pad.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/lily_pad" + }, + { + "model": "minecraft:block/lily_pad", + "y": 90 + }, + { + "model": "minecraft:block/lily_pad", + "y": 180 + }, + { + "model": "minecraft:block/lily_pad", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_candle.json new file mode 100644 index 000000000..373f7fb0d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/lime_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/lime_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/lime_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/lime_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/lime_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/lime_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/lime_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/lime_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_candle_cake.json new file mode 100644 index 000000000..6a650d6bd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/lime_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/lime_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_carpet.json new file mode 100644 index 000000000..970a8ac1c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lime_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_concrete.json new file mode 100644 index 000000000..af1b10b50 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lime_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_concrete_powder.json new file mode 100644 index 000000000..4f48ccf10 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/lime_concrete_powder" + }, + { + "model": "minecraft:block/lime_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/lime_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/lime_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_glazed_terracotta.json new file mode 100644 index 000000000..1bf117b77 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/lime_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/lime_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/lime_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/lime_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_shulker_box.json new file mode 100644 index 000000000..8f33bac61 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lime_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_stained_glass.json new file mode 100644 index 000000000..6916921a4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lime_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_stained_glass_pane.json new file mode 100644 index 000000000..499df0190 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_terracotta.json new file mode 100644 index 000000000..c194305cb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lime_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_wall_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_wool.json new file mode 100644 index 000000000..d1524b5d6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lime_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lime_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lodestone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lodestone.json new file mode 100644 index 000000000..639e6848f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/lodestone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lodestone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/loom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/loom.json new file mode 100644 index 000000000..0a8c5b691 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/loom.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/loom", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/loom" + }, + "facing=south": { + "model": "minecraft:block/loom", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/loom", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_candle.json new file mode 100644 index 000000000..732c2807c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/magenta_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/magenta_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/magenta_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/magenta_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/magenta_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/magenta_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/magenta_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/magenta_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_candle_cake.json new file mode 100644 index 000000000..1c994f6d1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/magenta_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/magenta_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_carpet.json new file mode 100644 index 000000000..3427fec70 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/magenta_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_concrete.json new file mode 100644 index 000000000..efa0ead93 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/magenta_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_concrete_powder.json new file mode 100644 index 000000000..37231b4f9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/magenta_concrete_powder" + }, + { + "model": "minecraft:block/magenta_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/magenta_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/magenta_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_glazed_terracotta.json new file mode 100644 index 000000000..bfb421a14 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/magenta_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/magenta_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/magenta_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/magenta_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_shulker_box.json new file mode 100644 index 000000000..e0d737fb2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/magenta_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_stained_glass.json new file mode 100644 index 000000000..2081e041b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/magenta_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_stained_glass_pane.json new file mode 100644 index 000000000..2c1e27648 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_terracotta.json new file mode 100644 index 000000000..30135ae51 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/magenta_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_wall_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_wool.json new file mode 100644 index 000000000..d8666f052 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magenta_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/magenta_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magma_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magma_block.json new file mode 100644 index 000000000..90e6478e8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/magma_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/magma_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_button.json new file mode 100644 index 000000000..1dc794676 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/mangrove_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/mangrove_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/mangrove_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/mangrove_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/mangrove_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/mangrove_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/mangrove_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/mangrove_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/mangrove_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/mangrove_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/mangrove_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/mangrove_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/mangrove_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_door.json new file mode 100644 index 000000000..0314412d6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/mangrove_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/mangrove_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/mangrove_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/mangrove_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/mangrove_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/mangrove_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/mangrove_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/mangrove_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/mangrove_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/mangrove_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/mangrove_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/mangrove_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/mangrove_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/mangrove_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/mangrove_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/mangrove_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/mangrove_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/mangrove_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/mangrove_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/mangrove_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/mangrove_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/mangrove_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/mangrove_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/mangrove_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/mangrove_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/mangrove_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/mangrove_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/mangrove_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/mangrove_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/mangrove_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/mangrove_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/mangrove_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_fence.json new file mode 100644 index 000000000..110e6b760 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/mangrove_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_fence_gate.json new file mode 100644 index 000000000..c50e279cf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/mangrove_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/mangrove_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/mangrove_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/mangrove_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/mangrove_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/mangrove_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/mangrove_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/mangrove_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/mangrove_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/mangrove_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/mangrove_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/mangrove_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/mangrove_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/mangrove_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/mangrove_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/mangrove_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_hanging_sign.json new file mode 100644 index 000000000..c8442f053 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mangrove_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_leaves.json new file mode 100644 index 000000000..49ae2e02f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mangrove_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_log.json new file mode 100644 index 000000000..55ca8b938 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/mangrove_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/mangrove_log" + }, + "axis=z": { + "model": "minecraft:block/mangrove_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_planks.json new file mode 100644 index 000000000..9e7098e8f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mangrove_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_pressure_plate.json new file mode 100644 index 000000000..6415a38c9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/mangrove_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/mangrove_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_propagule.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_propagule.json new file mode 100644 index 000000000..970a8c4ba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_propagule.json @@ -0,0 +1,34 @@ +{ + "variants": { + "age=0,hanging=false": { + "model": "minecraft:block/mangrove_propagule" + }, + "age=0,hanging=true": { + "model": "minecraft:block/mangrove_propagule_hanging_0" + }, + "age=1,hanging=false": { + "model": "minecraft:block/mangrove_propagule" + }, + "age=1,hanging=true": { + "model": "minecraft:block/mangrove_propagule_hanging_1" + }, + "age=2,hanging=false": { + "model": "minecraft:block/mangrove_propagule" + }, + "age=2,hanging=true": { + "model": "minecraft:block/mangrove_propagule_hanging_2" + }, + "age=3,hanging=false": { + "model": "minecraft:block/mangrove_propagule" + }, + "age=3,hanging=true": { + "model": "minecraft:block/mangrove_propagule_hanging_3" + }, + "age=4,hanging=false": { + "model": "minecraft:block/mangrove_propagule" + }, + "age=4,hanging=true": { + "model": "minecraft:block/mangrove_propagule_hanging_4" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_roots.json new file mode 100644 index 000000000..dd31808bc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_roots.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mangrove_roots" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_sign.json new file mode 100644 index 000000000..9559d65cc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mangrove_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_slab.json new file mode 100644 index 000000000..ec39777e0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/mangrove_slab" + }, + "type=double": { + "model": "minecraft:block/mangrove_planks" + }, + "type=top": { + "model": "minecraft:block/mangrove_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_stairs.json new file mode 100644 index 000000000..69e2425b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/mangrove_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/mangrove_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/mangrove_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/mangrove_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/mangrove_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/mangrove_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/mangrove_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/mangrove_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/mangrove_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/mangrove_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/mangrove_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/mangrove_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_trapdoor.json new file mode 100644 index 000000000..17c336a63 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/mangrove_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/mangrove_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/mangrove_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/mangrove_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/mangrove_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/mangrove_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/mangrove_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/mangrove_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/mangrove_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/mangrove_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/mangrove_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/mangrove_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/mangrove_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/mangrove_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/mangrove_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/mangrove_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_wall_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_wall_hanging_sign.json new file mode 100644 index 000000000..c8442f053 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mangrove_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_wall_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_wall_sign.json new file mode 100644 index 000000000..9559d65cc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mangrove_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_wood.json new file mode 100644 index 000000000..c517ddc9e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mangrove_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/mangrove_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/mangrove_wood" + }, + "axis=z": { + "model": "minecraft:block/mangrove_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/medium_amethyst_bud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/medium_amethyst_bud.json new file mode 100644 index 000000000..2166b8626 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/medium_amethyst_bud.json @@ -0,0 +1,30 @@ +{ + "variants": { + "facing=down": { + "model": "minecraft:block/medium_amethyst_bud", + "x": 180 + }, + "facing=east": { + "model": "minecraft:block/medium_amethyst_bud", + "x": 90, + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/medium_amethyst_bud", + "x": 90 + }, + "facing=south": { + "model": "minecraft:block/medium_amethyst_bud", + "x": 90, + "y": 180 + }, + "facing=up": { + "model": "minecraft:block/medium_amethyst_bud" + }, + "facing=west": { + "model": "minecraft:block/medium_amethyst_bud", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/melon.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/melon.json new file mode 100644 index 000000000..93ce0cd42 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/melon.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/melon" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/melon_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/melon_stem.json new file mode 100644 index 000000000..89bcde3f5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/melon_stem.json @@ -0,0 +1,28 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/melon_stem_stage0" + }, + "age=1": { + "model": "minecraft:block/melon_stem_stage1" + }, + "age=2": { + "model": "minecraft:block/melon_stem_stage2" + }, + "age=3": { + "model": "minecraft:block/melon_stem_stage3" + }, + "age=4": { + "model": "minecraft:block/melon_stem_stage4" + }, + "age=5": { + "model": "minecraft:block/melon_stem_stage5" + }, + "age=6": { + "model": "minecraft:block/melon_stem_stage6" + }, + "age=7": { + "model": "minecraft:block/melon_stem_stage7" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/moss_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/moss_block.json new file mode 100644 index 000000000..8c2eaa3a8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/moss_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/moss_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/moss_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/moss_carpet.json new file mode 100644 index 000000000..3b338b558 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/moss_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/moss_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone.json new file mode 100644 index 000000000..7467ed1d3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mossy_cobblestone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_slab.json new file mode 100644 index 000000000..51dfa2ca2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/mossy_cobblestone_slab" + }, + "type=double": { + "model": "minecraft:block/mossy_cobblestone" + }, + "type=top": { + "model": "minecraft:block/mossy_cobblestone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_stairs.json new file mode 100644 index 000000000..1e1bc448a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/mossy_cobblestone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/mossy_cobblestone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/mossy_cobblestone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/mossy_cobblestone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/mossy_cobblestone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/mossy_cobblestone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/mossy_cobblestone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/mossy_cobblestone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_wall.json new file mode 100644 index 000000000..6edbd9afe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_slab.json new file mode 100644 index 000000000..e8d96fc00 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/mossy_stone_brick_slab" + }, + "type=double": { + "model": "minecraft:block/mossy_stone_bricks" + }, + "type=top": { + "model": "minecraft:block/mossy_stone_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_stairs.json new file mode 100644 index 000000000..1a00d6715 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/mossy_stone_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/mossy_stone_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/mossy_stone_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/mossy_stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/mossy_stone_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/mossy_stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/mossy_stone_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/mossy_stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_wall.json new file mode 100644 index 000000000..d5c2e06dd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_stone_bricks.json new file mode 100644 index 000000000..c17c4a7f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mossy_stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mossy_stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/moving_piston.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/moving_piston.json new file mode 100644 index 000000000..aaa921ffa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/moving_piston.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/moving_piston" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mud.json new file mode 100644 index 000000000..d62b2f7a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mud.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mud" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mud_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mud_brick_slab.json new file mode 100644 index 000000000..f611448dc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mud_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/mud_brick_slab" + }, + "type=double": { + "model": "minecraft:block/mud_bricks" + }, + "type=top": { + "model": "minecraft:block/mud_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mud_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mud_brick_stairs.json new file mode 100644 index 000000000..a75a34900 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mud_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/mud_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/mud_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/mud_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/mud_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/mud_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/mud_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/mud_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/mud_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/mud_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/mud_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/mud_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/mud_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mud_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mud_brick_wall.json new file mode 100644 index 000000000..6a954ff05 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mud_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/mud_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mud_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mud_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mud_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mud_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mud_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mud_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mud_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mud_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mud_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mud_bricks.json new file mode 100644 index 000000000..57475ffd1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mud_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mud_bricks_north_west_mirrored" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/muddy_mangrove_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/muddy_mangrove_roots.json new file mode 100644 index 000000000..8f96e0137 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/muddy_mangrove_roots.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/muddy_mangrove_roots", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/muddy_mangrove_roots" + }, + "axis=z": { + "model": "minecraft:block/muddy_mangrove_roots", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mushroom_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mushroom_stem.json new file mode 100644 index 000000000..f343a9b9d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mushroom_stem.json @@ -0,0 +1,115 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/mushroom_stem" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_stem", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_stem", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_stem", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_stem", + "uvlock": true, + "x": 270 + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_stem", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 90 + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 180 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 270 + }, + "when": { + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "x": 270 + }, + "when": { + "up": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "x": 90 + }, + "when": { + "down": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mycelium.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mycelium.json new file mode 100644 index 000000000..cdf6392d8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/mycelium.json @@ -0,0 +1,24 @@ +{ + "variants": { + "snowy=false": [ + { + "model": "minecraft:block/mycelium" + }, + { + "model": "minecraft:block/mycelium", + "y": 90 + }, + { + "model": "minecraft:block/mycelium", + "y": 180 + }, + { + "model": "minecraft:block/mycelium", + "y": 270 + } + ], + "snowy=true": { + "model": "minecraft:block/grass_block_snow" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_brick_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_brick_fence.json new file mode 100644 index 000000000..124e21d6e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_brick_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/nether_brick_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_brick_slab.json new file mode 100644 index 000000000..e6e04975b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/nether_brick_slab" + }, + "type=double": { + "model": "minecraft:block/nether_bricks" + }, + "type=top": { + "model": "minecraft:block/nether_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_brick_stairs.json new file mode 100644 index 000000000..80c3796f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/nether_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/nether_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/nether_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/nether_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/nether_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/nether_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/nether_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/nether_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/nether_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/nether_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/nether_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/nether_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_brick_wall.json new file mode 100644 index 000000000..65eccc401 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/nether_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_bricks.json new file mode 100644 index 000000000..85622bf5a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/nether_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_gold_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_gold_ore.json new file mode 100644 index 000000000..75e62a37d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_gold_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/nether_gold_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_portal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_portal.json new file mode 100644 index 000000000..af9f386ae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_portal.json @@ -0,0 +1,10 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/nether_portal_ns" + }, + "axis=z": { + "model": "minecraft:block/nether_portal_ew" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_quartz_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_quartz_ore.json new file mode 100644 index 000000000..b473ab4f0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_quartz_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/nether_quartz_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_sprouts.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_sprouts.json new file mode 100644 index 000000000..445d10019 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_sprouts.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/nether_sprouts" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_wart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_wart.json new file mode 100644 index 000000000..f956d12cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_wart.json @@ -0,0 +1,16 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/nether_wart_stage0" + }, + "age=1": { + "model": "minecraft:block/nether_wart_stage1" + }, + "age=2": { + "model": "minecraft:block/nether_wart_stage1" + }, + "age=3": { + "model": "minecraft:block/nether_wart_stage2" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_wart_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_wart_block.json new file mode 100644 index 000000000..ea08ea130 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/nether_wart_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/nether_wart_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/netherite_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/netherite_block.json new file mode 100644 index 000000000..85f89e955 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/netherite_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/netherite_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/netherrack.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/netherrack.json new file mode 100644 index 000000000..aa1fad53d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/netherrack.json @@ -0,0 +1,78 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/netherrack" + }, + { + "model": "minecraft:block/netherrack", + "x": 90 + }, + { + "model": "minecraft:block/netherrack", + "x": 180 + }, + { + "model": "minecraft:block/netherrack", + "x": 270 + }, + { + "model": "minecraft:block/netherrack", + "y": 90 + }, + { + "model": "minecraft:block/netherrack", + "x": 90, + "y": 90 + }, + { + "model": "minecraft:block/netherrack", + "x": 180, + "y": 90 + }, + { + "model": "minecraft:block/netherrack", + "x": 270, + "y": 90 + }, + { + "model": "minecraft:block/netherrack", + "y": 180 + }, + { + "model": "minecraft:block/netherrack", + "x": 90, + "y": 180 + }, + { + "model": "minecraft:block/netherrack", + "x": 180, + "y": 180 + }, + { + "model": "minecraft:block/netherrack", + "x": 270, + "y": 180 + }, + { + "model": "minecraft:block/netherrack", + "y": 270 + }, + { + "model": "minecraft:block/netherrack", + "x": 90, + "y": 270 + }, + { + "model": "minecraft:block/netherrack", + "x": 180, + "y": 270 + }, + { + "model": "minecraft:block/netherrack", + "x": 270, + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/note_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/note_block.json new file mode 100644 index 000000000..651e64c51 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/note_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/note_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_button.json new file mode 100644 index 000000000..e21e090a9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/oak_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/oak_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/oak_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/oak_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/oak_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/oak_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/oak_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/oak_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/oak_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/oak_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/oak_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/oak_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/oak_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_door.json new file mode 100644 index 000000000..c739dec25 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oak_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oak_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oak_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oak_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oak_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oak_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oak_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oak_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oak_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oak_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oak_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oak_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oak_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oak_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oak_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oak_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oak_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oak_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oak_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oak_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oak_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oak_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oak_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oak_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oak_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oak_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oak_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oak_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oak_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oak_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oak_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oak_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_fence.json new file mode 100644 index 000000000..394851e18 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/oak_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/oak_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/oak_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/oak_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/oak_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_fence_gate.json new file mode 100644 index 000000000..872298ceb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/oak_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/oak_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/oak_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/oak_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/oak_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/oak_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/oak_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/oak_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/oak_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/oak_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/oak_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/oak_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/oak_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/oak_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/oak_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/oak_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_hanging_sign.json new file mode 100644 index 000000000..b2c43dc30 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oak_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_leaves.json new file mode 100644 index 000000000..8d60eedb4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oak_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_log.json new file mode 100644 index 000000000..9d3266ce0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/oak_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/oak_log" + }, + "axis=z": { + "model": "minecraft:block/oak_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_planks.json new file mode 100644 index 000000000..027809296 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oak_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_pressure_plate.json new file mode 100644 index 000000000..6ecbfbc5f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/oak_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/oak_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_sapling.json new file mode 100644 index 000000000..04d4cbe93 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oak_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_sign.json new file mode 100644 index 000000000..b9f38f4f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oak_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_slab.json new file mode 100644 index 000000000..c503f74ca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/oak_slab" + }, + "type=double": { + "model": "minecraft:block/oak_planks" + }, + "type=top": { + "model": "minecraft:block/oak_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_stairs.json new file mode 100644 index 000000000..c20e7ef6c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/oak_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/oak_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/oak_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/oak_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/oak_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/oak_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/oak_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/oak_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/oak_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/oak_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/oak_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/oak_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_trapdoor.json new file mode 100644 index 000000000..168faf128 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/oak_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/oak_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/oak_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/oak_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/oak_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/oak_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/oak_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/oak_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/oak_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/oak_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/oak_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/oak_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/oak_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/oak_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/oak_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/oak_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_wall_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_wall_hanging_sign.json new file mode 100644 index 000000000..b2c43dc30 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oak_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_wall_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_wall_sign.json new file mode 100644 index 000000000..b9f38f4f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oak_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_wood.json new file mode 100644 index 000000000..1eb596b84 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oak_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/oak_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/oak_wood" + }, + "axis=z": { + "model": "minecraft:block/oak_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/observer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/observer.json new file mode 100644 index 000000000..6f54ba51b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/observer.json @@ -0,0 +1,50 @@ +{ + "variants": { + "facing=down,powered=false": { + "model": "minecraft:block/observer", + "x": 90 + }, + "facing=down,powered=true": { + "model": "minecraft:block/observer_on", + "x": 90 + }, + "facing=east,powered=false": { + "model": "minecraft:block/observer", + "y": 90 + }, + "facing=east,powered=true": { + "model": "minecraft:block/observer_on", + "y": 90 + }, + "facing=north,powered=false": { + "model": "minecraft:block/observer" + }, + "facing=north,powered=true": { + "model": "minecraft:block/observer_on" + }, + "facing=south,powered=false": { + "model": "minecraft:block/observer", + "y": 180 + }, + "facing=south,powered=true": { + "model": "minecraft:block/observer_on", + "y": 180 + }, + "facing=up,powered=false": { + "model": "minecraft:block/observer", + "x": 270 + }, + "facing=up,powered=true": { + "model": "minecraft:block/observer_on", + "x": 270 + }, + "facing=west,powered=false": { + "model": "minecraft:block/observer", + "y": 270 + }, + "facing=west,powered=true": { + "model": "minecraft:block/observer_on", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/obsidian.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/obsidian.json new file mode 100644 index 000000000..28d39dfdc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/obsidian.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/obsidian" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/ochre_froglight.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/ochre_froglight.json new file mode 100644 index 000000000..2a4f1aa70 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/ochre_froglight.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/ochre_froglight_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/ochre_froglight" + }, + "axis=z": { + "model": "minecraft:block/ochre_froglight_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/open_eyeblossom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/open_eyeblossom.json new file mode 100644 index 000000000..17dc8f759 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/open_eyeblossom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/open_eyeblossom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_candle.json new file mode 100644 index 000000000..203c65191 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/orange_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/orange_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/orange_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/orange_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/orange_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/orange_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/orange_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/orange_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_candle_cake.json new file mode 100644 index 000000000..1e65e8803 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/orange_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/orange_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_carpet.json new file mode 100644 index 000000000..37ac6ac4f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/orange_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_concrete.json new file mode 100644 index 000000000..e88cada06 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/orange_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_concrete_powder.json new file mode 100644 index 000000000..9637378d5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/orange_concrete_powder" + }, + { + "model": "minecraft:block/orange_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/orange_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/orange_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_glazed_terracotta.json new file mode 100644 index 000000000..abdb57a3b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/orange_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/orange_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/orange_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/orange_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_shulker_box.json new file mode 100644 index 000000000..0bc75690b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/orange_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_stained_glass.json new file mode 100644 index 000000000..93c651a54 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/orange_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_stained_glass_pane.json new file mode 100644 index 000000000..35df240f8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_terracotta.json new file mode 100644 index 000000000..6d644c41f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/orange_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_tulip.json new file mode 100644 index 000000000..8aac68c8c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_tulip.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/orange_tulip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_wall_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_wool.json new file mode 100644 index 000000000..ae3fabee3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/orange_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/orange_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxeye_daisy.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxeye_daisy.json new file mode 100644 index 000000000..fa815c224 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxeye_daisy.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxeye_daisy" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_chiseled_copper.json new file mode 100644 index 000000000..ea362c155 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_chiseled_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_copper.json new file mode 100644 index 000000000..d7ce62512 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_copper_bulb.json new file mode 100644 index 000000000..1e58f046b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_copper_bulb.json @@ -0,0 +1,16 @@ +{ + "variants": { + "lit=false,powered=false": { + "model": "minecraft:block/oxidized_copper_bulb" + }, + "lit=false,powered=true": { + "model": "minecraft:block/oxidized_copper_bulb_powered" + }, + "lit=true,powered=false": { + "model": "minecraft:block/oxidized_copper_bulb_lit" + }, + "lit=true,powered=true": { + "model": "minecraft:block/oxidized_copper_bulb_lit_powered" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_copper_door.json new file mode 100644 index 000000000..2cb098048 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_copper_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_copper_grate.json new file mode 100644 index 000000000..e8039a9a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_copper_grate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_copper_grate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_copper_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_copper_trapdoor.json new file mode 100644 index 000000000..c5ceb4cd7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_copper_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper.json new file mode 100644 index 000000000..58bf24a1c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_cut_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper_slab.json new file mode 100644 index 000000000..e91b8c962 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/oxidized_cut_copper_slab" + }, + "type=double": { + "model": "minecraft:block/oxidized_cut_copper" + }, + "type=top": { + "model": "minecraft:block/oxidized_cut_copper_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper_stairs.json new file mode 100644 index 000000000..5b79a1e8b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/packed_ice.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/packed_ice.json new file mode 100644 index 000000000..b395c21e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/packed_ice.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/packed_ice" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/packed_mud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/packed_mud.json new file mode 100644 index 000000000..6309d7d05 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/packed_mud.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/packed_mud" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_hanging_moss.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_hanging_moss.json new file mode 100644 index 000000000..932d09083 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_hanging_moss.json @@ -0,0 +1,10 @@ +{ + "variants": { + "tip=false": { + "model": "minecraft:block/pale_hanging_moss" + }, + "tip=true": { + "model": "minecraft:block/pale_hanging_moss_tip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_moss_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_moss_block.json new file mode 100644 index 000000000..046db23cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_moss_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pale_moss_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_moss_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_moss_carpet.json new file mode 100644 index 000000000..1fd7b845e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_moss_carpet.json @@ -0,0 +1,154 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/pale_moss_carpet" + }, + "when": { + "bottom": "true" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet" + }, + "when": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_tall" + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_small" + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_tall" + }, + "when": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_small", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_small", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_small", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "none", + "west": "none" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_button.json new file mode 100644 index 000000000..9179ab893 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/pale_oak_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/pale_oak_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/pale_oak_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/pale_oak_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/pale_oak_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/pale_oak_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/pale_oak_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/pale_oak_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/pale_oak_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/pale_oak_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/pale_oak_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/pale_oak_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_door.json new file mode 100644 index 000000000..f642a7985 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/pale_oak_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/pale_oak_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/pale_oak_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/pale_oak_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/pale_oak_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/pale_oak_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/pale_oak_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/pale_oak_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/pale_oak_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/pale_oak_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/pale_oak_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/pale_oak_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/pale_oak_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/pale_oak_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/pale_oak_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/pale_oak_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/pale_oak_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/pale_oak_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/pale_oak_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/pale_oak_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/pale_oak_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/pale_oak_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/pale_oak_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/pale_oak_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/pale_oak_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/pale_oak_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/pale_oak_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/pale_oak_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/pale_oak_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/pale_oak_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/pale_oak_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/pale_oak_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_fence.json new file mode 100644 index 000000000..769609574 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/pale_oak_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_fence_gate.json new file mode 100644 index 000000000..dbdc769e0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/pale_oak_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/pale_oak_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/pale_oak_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/pale_oak_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/pale_oak_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/pale_oak_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/pale_oak_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/pale_oak_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/pale_oak_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/pale_oak_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/pale_oak_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/pale_oak_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/pale_oak_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/pale_oak_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/pale_oak_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/pale_oak_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_hanging_sign.json new file mode 100644 index 000000000..bde6debab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pale_oak_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_leaves.json new file mode 100644 index 000000000..8de6861a0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pale_oak_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_log.json new file mode 100644 index 000000000..9b2d759a3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/pale_oak_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/pale_oak_log" + }, + "axis=z": { + "model": "minecraft:block/pale_oak_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_planks.json new file mode 100644 index 000000000..b9fca1f32 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pale_oak_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_pressure_plate.json new file mode 100644 index 000000000..78576b302 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/pale_oak_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/pale_oak_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_sapling.json new file mode 100644 index 000000000..45c2673aa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pale_oak_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_sign.json new file mode 100644 index 000000000..be6f9eb87 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pale_oak_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_slab.json new file mode 100644 index 000000000..91ad3cca7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/pale_oak_slab" + }, + "type=double": { + "model": "minecraft:block/pale_oak_planks" + }, + "type=top": { + "model": "minecraft:block/pale_oak_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_stairs.json new file mode 100644 index 000000000..a9124eaf7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/pale_oak_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/pale_oak_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/pale_oak_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/pale_oak_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/pale_oak_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/pale_oak_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/pale_oak_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/pale_oak_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/pale_oak_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/pale_oak_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/pale_oak_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/pale_oak_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_trapdoor.json new file mode 100644 index 000000000..41deeb52e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/pale_oak_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/pale_oak_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/pale_oak_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/pale_oak_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/pale_oak_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/pale_oak_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/pale_oak_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/pale_oak_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/pale_oak_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/pale_oak_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/pale_oak_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/pale_oak_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/pale_oak_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/pale_oak_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/pale_oak_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/pale_oak_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_wall_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_wall_hanging_sign.json new file mode 100644 index 000000000..bde6debab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pale_oak_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_wall_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_wall_sign.json new file mode 100644 index 000000000..be6f9eb87 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pale_oak_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_wood.json new file mode 100644 index 000000000..2a98bc055 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pale_oak_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/pale_oak_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/pale_oak_wood" + }, + "axis=z": { + "model": "minecraft:block/pale_oak_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pearlescent_froglight.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pearlescent_froglight.json new file mode 100644 index 000000000..ff6fa2678 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pearlescent_froglight.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/pearlescent_froglight_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/pearlescent_froglight" + }, + "axis=z": { + "model": "minecraft:block/pearlescent_froglight_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/peony.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/peony.json new file mode 100644 index 000000000..c97072d5d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/peony.json @@ -0,0 +1,10 @@ +{ + "variants": { + "half=lower": { + "model": "minecraft:block/peony_bottom" + }, + "half=upper": { + "model": "minecraft:block/peony_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/petrified_oak_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/petrified_oak_slab.json new file mode 100644 index 000000000..98db0a126 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/petrified_oak_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/petrified_oak_slab" + }, + "type=double": { + "model": "minecraft:block/oak_planks" + }, + "type=top": { + "model": "minecraft:block/petrified_oak_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/piglin_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/piglin_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/piglin_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/piglin_wall_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/piglin_wall_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/piglin_wall_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_candle.json new file mode 100644 index 000000000..fd63fea42 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/pink_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/pink_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/pink_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/pink_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/pink_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/pink_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/pink_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/pink_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_candle_cake.json new file mode 100644 index 000000000..5b9c8d565 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/pink_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/pink_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_carpet.json new file mode 100644 index 000000000..c9a49aed7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pink_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_concrete.json new file mode 100644 index 000000000..3beebd45d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pink_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_concrete_powder.json new file mode 100644 index 000000000..c6f09205c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/pink_concrete_powder" + }, + { + "model": "minecraft:block/pink_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/pink_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/pink_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_glazed_terracotta.json new file mode 100644 index 000000000..84e6c0c6f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/pink_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/pink_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/pink_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/pink_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_petals.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_petals.json new file mode 100644 index 000000000..8784501ec --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_petals.json @@ -0,0 +1,156 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/pink_petals_1" + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_1", + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_1", + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_1", + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_2" + }, + "when": { + "facing": "north", + "flower_amount": "2|3|4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_2", + "y": 90 + }, + "when": { + "facing": "east", + "flower_amount": "2|3|4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_2", + "y": 180 + }, + "when": { + "facing": "south", + "flower_amount": "2|3|4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_2", + "y": 270 + }, + "when": { + "facing": "west", + "flower_amount": "2|3|4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_3" + }, + "when": { + "facing": "north", + "flower_amount": "3|4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_3", + "y": 90 + }, + "when": { + "facing": "east", + "flower_amount": "3|4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_3", + "y": 180 + }, + "when": { + "facing": "south", + "flower_amount": "3|4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_3", + "y": 270 + }, + "when": { + "facing": "west", + "flower_amount": "3|4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_4" + }, + "when": { + "facing": "north", + "flower_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_4", + "y": 90 + }, + "when": { + "facing": "east", + "flower_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_4", + "y": 180 + }, + "when": { + "facing": "south", + "flower_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_4", + "y": 270 + }, + "when": { + "facing": "west", + "flower_amount": "4" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_shulker_box.json new file mode 100644 index 000000000..3f336dcf3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pink_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_stained_glass.json new file mode 100644 index 000000000..3adb5ca2a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pink_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_stained_glass_pane.json new file mode 100644 index 000000000..4b9b92419 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_terracotta.json new file mode 100644 index 000000000..b9dbe910c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pink_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_tulip.json new file mode 100644 index 000000000..038823fb4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_tulip.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pink_tulip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_wall_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_wool.json new file mode 100644 index 000000000..d7096f632 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pink_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pink_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/piston.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/piston.json new file mode 100644 index 000000000..0ee3b9124 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/piston.json @@ -0,0 +1,50 @@ +{ + "variants": { + "extended=false,facing=down": { + "model": "minecraft:block/piston", + "x": 90 + }, + "extended=false,facing=east": { + "model": "minecraft:block/piston", + "y": 90 + }, + "extended=false,facing=north": { + "model": "minecraft:block/piston" + }, + "extended=false,facing=south": { + "model": "minecraft:block/piston", + "y": 180 + }, + "extended=false,facing=up": { + "model": "minecraft:block/piston", + "x": 270 + }, + "extended=false,facing=west": { + "model": "minecraft:block/piston", + "y": 270 + }, + "extended=true,facing=down": { + "model": "minecraft:block/piston_base", + "x": 90 + }, + "extended=true,facing=east": { + "model": "minecraft:block/piston_base", + "y": 90 + }, + "extended=true,facing=north": { + "model": "minecraft:block/piston_base" + }, + "extended=true,facing=south": { + "model": "minecraft:block/piston_base", + "y": 180 + }, + "extended=true,facing=up": { + "model": "minecraft:block/piston_base", + "x": 270 + }, + "extended=true,facing=west": { + "model": "minecraft:block/piston_base", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/piston_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/piston_head.json new file mode 100644 index 000000000..b1a803521 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/piston_head.json @@ -0,0 +1,96 @@ +{ + "variants": { + "facing=down,short=false,type=normal": { + "model": "minecraft:block/piston_head", + "x": 90 + }, + "facing=down,short=false,type=sticky": { + "model": "minecraft:block/piston_head_sticky", + "x": 90 + }, + "facing=down,short=true,type=normal": { + "model": "minecraft:block/piston_head_short", + "x": 90 + }, + "facing=down,short=true,type=sticky": { + "model": "minecraft:block/piston_head_short_sticky", + "x": 90 + }, + "facing=east,short=false,type=normal": { + "model": "minecraft:block/piston_head", + "y": 90 + }, + "facing=east,short=false,type=sticky": { + "model": "minecraft:block/piston_head_sticky", + "y": 90 + }, + "facing=east,short=true,type=normal": { + "model": "minecraft:block/piston_head_short", + "y": 90 + }, + "facing=east,short=true,type=sticky": { + "model": "minecraft:block/piston_head_short_sticky", + "y": 90 + }, + "facing=north,short=false,type=normal": { + "model": "minecraft:block/piston_head" + }, + "facing=north,short=false,type=sticky": { + "model": "minecraft:block/piston_head_sticky" + }, + "facing=north,short=true,type=normal": { + "model": "minecraft:block/piston_head_short" + }, + "facing=north,short=true,type=sticky": { + "model": "minecraft:block/piston_head_short_sticky" + }, + "facing=south,short=false,type=normal": { + "model": "minecraft:block/piston_head", + "y": 180 + }, + "facing=south,short=false,type=sticky": { + "model": "minecraft:block/piston_head_sticky", + "y": 180 + }, + "facing=south,short=true,type=normal": { + "model": "minecraft:block/piston_head_short", + "y": 180 + }, + "facing=south,short=true,type=sticky": { + "model": "minecraft:block/piston_head_short_sticky", + "y": 180 + }, + "facing=up,short=false,type=normal": { + "model": "minecraft:block/piston_head", + "x": 270 + }, + "facing=up,short=false,type=sticky": { + "model": "minecraft:block/piston_head_sticky", + "x": 270 + }, + "facing=up,short=true,type=normal": { + "model": "minecraft:block/piston_head_short", + "x": 270 + }, + "facing=up,short=true,type=sticky": { + "model": "minecraft:block/piston_head_short_sticky", + "x": 270 + }, + "facing=west,short=false,type=normal": { + "model": "minecraft:block/piston_head", + "y": 270 + }, + "facing=west,short=false,type=sticky": { + "model": "minecraft:block/piston_head_sticky", + "y": 270 + }, + "facing=west,short=true,type=normal": { + "model": "minecraft:block/piston_head_short", + "y": 270 + }, + "facing=west,short=true,type=sticky": { + "model": "minecraft:block/piston_head_short_sticky", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pitcher_crop.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pitcher_crop.json new file mode 100644 index 000000000..375502da1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pitcher_crop.json @@ -0,0 +1,34 @@ +{ + "variants": { + "age=0,half=lower": { + "model": "minecraft:block/pitcher_crop_bottom_stage_0" + }, + "age=0,half=upper": { + "model": "minecraft:block/pitcher_crop_top_stage_0" + }, + "age=1,half=lower": { + "model": "minecraft:block/pitcher_crop_bottom_stage_1" + }, + "age=1,half=upper": { + "model": "minecraft:block/pitcher_crop_top_stage_1" + }, + "age=2,half=lower": { + "model": "minecraft:block/pitcher_crop_bottom_stage_2" + }, + "age=2,half=upper": { + "model": "minecraft:block/pitcher_crop_top_stage_2" + }, + "age=3,half=lower": { + "model": "minecraft:block/pitcher_crop_bottom_stage_3" + }, + "age=3,half=upper": { + "model": "minecraft:block/pitcher_crop_top_stage_3" + }, + "age=4,half=lower": { + "model": "minecraft:block/pitcher_crop_bottom_stage_4" + }, + "age=4,half=upper": { + "model": "minecraft:block/pitcher_crop_top_stage_4" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pitcher_plant.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pitcher_plant.json new file mode 100644 index 000000000..fdf53d561 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pitcher_plant.json @@ -0,0 +1,10 @@ +{ + "variants": { + "half=lower": { + "model": "minecraft:block/pitcher_plant_bottom" + }, + "half=upper": { + "model": "minecraft:block/pitcher_plant_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/player_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/player_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/player_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/player_wall_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/player_wall_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/player_wall_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/podzol.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/podzol.json new file mode 100644 index 000000000..03e40a712 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/podzol.json @@ -0,0 +1,24 @@ +{ + "variants": { + "snowy=false": [ + { + "model": "minecraft:block/podzol" + }, + { + "model": "minecraft:block/podzol", + "y": 90 + }, + { + "model": "minecraft:block/podzol", + "y": 180 + }, + { + "model": "minecraft:block/podzol", + "y": 270 + } + ], + "snowy=true": { + "model": "minecraft:block/grass_block_snow" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pointed_dripstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pointed_dripstone.json new file mode 100644 index 000000000..c6c46aa35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pointed_dripstone.json @@ -0,0 +1,34 @@ +{ + "variants": { + "thickness=base,vertical_direction=down": { + "model": "minecraft:block/pointed_dripstone_down_base" + }, + "thickness=base,vertical_direction=up": { + "model": "minecraft:block/pointed_dripstone_up_base" + }, + "thickness=frustum,vertical_direction=down": { + "model": "minecraft:block/pointed_dripstone_down_frustum" + }, + "thickness=frustum,vertical_direction=up": { + "model": "minecraft:block/pointed_dripstone_up_frustum" + }, + "thickness=middle,vertical_direction=down": { + "model": "minecraft:block/pointed_dripstone_down_middle" + }, + "thickness=middle,vertical_direction=up": { + "model": "minecraft:block/pointed_dripstone_up_middle" + }, + "thickness=tip,vertical_direction=down": { + "model": "minecraft:block/pointed_dripstone_down_tip" + }, + "thickness=tip,vertical_direction=up": { + "model": "minecraft:block/pointed_dripstone_up_tip" + }, + "thickness=tip_merge,vertical_direction=down": { + "model": "minecraft:block/pointed_dripstone_down_tip_merge" + }, + "thickness=tip_merge,vertical_direction=up": { + "model": "minecraft:block/pointed_dripstone_up_tip_merge" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_andesite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_andesite.json new file mode 100644 index 000000000..5bb5391e9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_andesite.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/polished_andesite" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_andesite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_andesite_slab.json new file mode 100644 index 000000000..e5ce87a7b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_andesite_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/polished_andesite_slab" + }, + "type=double": { + "model": "minecraft:block/polished_andesite" + }, + "type=top": { + "model": "minecraft:block/polished_andesite_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_andesite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_andesite_stairs.json new file mode 100644 index 000000000..bd0808275 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_andesite_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_andesite_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_andesite_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/polished_andesite_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/polished_andesite_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/polished_andesite_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/polished_andesite_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_andesite_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_andesite_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/polished_andesite_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/polished_andesite_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/polished_andesite_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/polished_andesite_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_basalt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_basalt.json new file mode 100644 index 000000000..5ee6cefe9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_basalt.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/polished_basalt", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/polished_basalt" + }, + "axis=z": { + "model": "minecraft:block/polished_basalt", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone.json new file mode 100644 index 000000000..e133b2760 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/polished_blackstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_slab.json new file mode 100644 index 000000000..759b5a73b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/polished_blackstone_brick_slab" + }, + "type=double": { + "model": "minecraft:block/polished_blackstone_bricks" + }, + "type=top": { + "model": "minecraft:block/polished_blackstone_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_stairs.json new file mode 100644 index 000000000..54829daba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/polished_blackstone_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/polished_blackstone_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/polished_blackstone_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/polished_blackstone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/polished_blackstone_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/polished_blackstone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/polished_blackstone_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/polished_blackstone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_wall.json new file mode 100644 index 000000000..2ec1a2539 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_bricks.json new file mode 100644 index 000000000..2a1cabca8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/polished_blackstone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_button.json new file mode 100644 index 000000000..7d4f337cb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/polished_blackstone_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_pressure_plate.json new file mode 100644 index 000000000..f8f5cb144 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/polished_blackstone_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/polished_blackstone_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_slab.json new file mode 100644 index 000000000..1cfda0ddf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/polished_blackstone_slab" + }, + "type=double": { + "model": "minecraft:block/polished_blackstone" + }, + "type=top": { + "model": "minecraft:block/polished_blackstone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_stairs.json new file mode 100644 index 000000000..09a9ae372 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/polished_blackstone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/polished_blackstone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/polished_blackstone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/polished_blackstone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/polished_blackstone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/polished_blackstone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/polished_blackstone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/polished_blackstone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_wall.json new file mode 100644 index 000000000..f666cd7d5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_blackstone_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_deepslate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_deepslate.json new file mode 100644 index 000000000..5ad405570 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_deepslate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/polished_deepslate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_deepslate_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_deepslate_slab.json new file mode 100644 index 000000000..5bf01dc32 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_deepslate_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/polished_deepslate_slab" + }, + "type=double": { + "model": "minecraft:block/polished_deepslate" + }, + "type=top": { + "model": "minecraft:block/polished_deepslate_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_deepslate_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_deepslate_stairs.json new file mode 100644 index 000000000..1fa36d22e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_deepslate_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_deepslate_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_deepslate_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/polished_deepslate_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/polished_deepslate_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/polished_deepslate_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/polished_deepslate_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_deepslate_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_deepslate_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/polished_deepslate_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/polished_deepslate_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/polished_deepslate_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/polished_deepslate_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_deepslate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_deepslate_wall.json new file mode 100644 index 000000000..06afb23ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_deepslate_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_diorite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_diorite.json new file mode 100644 index 000000000..ea96c5177 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_diorite.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/polished_diorite" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_diorite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_diorite_slab.json new file mode 100644 index 000000000..f35423362 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_diorite_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/polished_diorite_slab" + }, + "type=double": { + "model": "minecraft:block/polished_diorite" + }, + "type=top": { + "model": "minecraft:block/polished_diorite_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_diorite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_diorite_stairs.json new file mode 100644 index 000000000..cdbc415ca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_diorite_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_diorite_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_diorite_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/polished_diorite_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/polished_diorite_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/polished_diorite_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/polished_diorite_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_diorite_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_diorite_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/polished_diorite_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/polished_diorite_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/polished_diorite_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/polished_diorite_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_granite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_granite.json new file mode 100644 index 000000000..bad818afd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_granite.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/polished_granite" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_granite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_granite_slab.json new file mode 100644 index 000000000..e1ec01cdd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_granite_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/polished_granite_slab" + }, + "type=double": { + "model": "minecraft:block/polished_granite" + }, + "type=top": { + "model": "minecraft:block/polished_granite_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_granite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_granite_stairs.json new file mode 100644 index 000000000..f64b99a51 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_granite_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_granite_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_granite_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/polished_granite_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/polished_granite_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/polished_granite_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/polished_granite_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_granite_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_granite_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/polished_granite_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/polished_granite_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/polished_granite_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/polished_granite_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_tuff.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_tuff.json new file mode 100644 index 000000000..dbb2b296c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_tuff.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/polished_tuff" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_tuff_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_tuff_slab.json new file mode 100644 index 000000000..25581fea5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_tuff_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/polished_tuff_slab" + }, + "type=double": { + "model": "minecraft:block/polished_tuff" + }, + "type=top": { + "model": "minecraft:block/polished_tuff_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_tuff_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_tuff_stairs.json new file mode 100644 index 000000000..ea1928905 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_tuff_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_tuff_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_tuff_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/polished_tuff_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/polished_tuff_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/polished_tuff_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/polished_tuff_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_tuff_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_tuff_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/polished_tuff_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/polished_tuff_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/polished_tuff_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/polished_tuff_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_tuff_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_tuff_wall.json new file mode 100644 index 000000000..44350ac9e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/polished_tuff_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/poppy.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/poppy.json new file mode 100644 index 000000000..870cb7d28 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/poppy.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/poppy" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potatoes.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potatoes.json new file mode 100644 index 000000000..85b439e73 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potatoes.json @@ -0,0 +1,28 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/potatoes_stage0" + }, + "age=1": { + "model": "minecraft:block/potatoes_stage0" + }, + "age=2": { + "model": "minecraft:block/potatoes_stage1" + }, + "age=3": { + "model": "minecraft:block/potatoes_stage1" + }, + "age=4": { + "model": "minecraft:block/potatoes_stage2" + }, + "age=5": { + "model": "minecraft:block/potatoes_stage2" + }, + "age=6": { + "model": "minecraft:block/potatoes_stage2" + }, + "age=7": { + "model": "minecraft:block/potatoes_stage3" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_acacia_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_acacia_sapling.json new file mode 100644 index 000000000..03a983a42 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_acacia_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_acacia_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_allium.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_allium.json new file mode 100644 index 000000000..07d8e7833 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_allium.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_allium" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_azalea_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_azalea_bush.json new file mode 100644 index 000000000..73a68cb25 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_azalea_bush.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_azalea_bush" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_azure_bluet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_azure_bluet.json new file mode 100644 index 000000000..80c7a52f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_azure_bluet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_azure_bluet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_bamboo.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_bamboo.json new file mode 100644 index 000000000..7d10ed3ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_bamboo.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_bamboo" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_birch_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_birch_sapling.json new file mode 100644 index 000000000..98b48ea51 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_birch_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_birch_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_blue_orchid.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_blue_orchid.json new file mode 100644 index 000000000..48da368ff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_blue_orchid.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_blue_orchid" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_brown_mushroom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_brown_mushroom.json new file mode 100644 index 000000000..b1a024736 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_brown_mushroom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_brown_mushroom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_cactus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_cactus.json new file mode 100644 index 000000000..04758daee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_cactus.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_cactus" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_cherry_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_cherry_sapling.json new file mode 100644 index 000000000..d92678f94 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_cherry_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_cherry_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_closed_eyeblossom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_closed_eyeblossom.json new file mode 100644 index 000000000..6f55d460e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_closed_eyeblossom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_closed_eyeblossom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_cornflower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_cornflower.json new file mode 100644 index 000000000..29b268567 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_cornflower.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_cornflower" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_crimson_fungus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_crimson_fungus.json new file mode 100644 index 000000000..d697c8e19 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_crimson_fungus.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_crimson_fungus" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_crimson_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_crimson_roots.json new file mode 100644 index 000000000..b2707ca05 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_crimson_roots.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_crimson_roots" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_dandelion.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_dandelion.json new file mode 100644 index 000000000..36227401d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_dandelion.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_dandelion" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_dark_oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_dark_oak_sapling.json new file mode 100644 index 000000000..f532b1eca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_dark_oak_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_dark_oak_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_dead_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_dead_bush.json new file mode 100644 index 000000000..52d9462fa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_dead_bush.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_dead_bush" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_fern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_fern.json new file mode 100644 index 000000000..ee886f3c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_fern.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_fern" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_flowering_azalea_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_flowering_azalea_bush.json new file mode 100644 index 000000000..c9216f715 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_flowering_azalea_bush.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_flowering_azalea_bush" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_jungle_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_jungle_sapling.json new file mode 100644 index 000000000..928947b32 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_jungle_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_jungle_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_lily_of_the_valley.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_lily_of_the_valley.json new file mode 100644 index 000000000..14e7942a7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_lily_of_the_valley.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_lily_of_the_valley" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_mangrove_propagule.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_mangrove_propagule.json new file mode 100644 index 000000000..7da19aa19 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_mangrove_propagule.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_mangrove_propagule" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_oak_sapling.json new file mode 100644 index 000000000..e77b75bf8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_oak_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_oak_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_open_eyeblossom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_open_eyeblossom.json new file mode 100644 index 000000000..e5b6b9b7a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_open_eyeblossom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_open_eyeblossom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_orange_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_orange_tulip.json new file mode 100644 index 000000000..978f35d04 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_orange_tulip.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_orange_tulip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_oxeye_daisy.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_oxeye_daisy.json new file mode 100644 index 000000000..7fc330ae9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_oxeye_daisy.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_oxeye_daisy" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_pale_oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_pale_oak_sapling.json new file mode 100644 index 000000000..5d1731dc9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_pale_oak_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_pale_oak_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_pink_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_pink_tulip.json new file mode 100644 index 000000000..159cc4b20 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_pink_tulip.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_pink_tulip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_poppy.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_poppy.json new file mode 100644 index 000000000..f16aee08b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_poppy.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_poppy" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_red_mushroom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_red_mushroom.json new file mode 100644 index 000000000..451f88db6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_red_mushroom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_red_mushroom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_red_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_red_tulip.json new file mode 100644 index 000000000..fec6840d0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_red_tulip.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_red_tulip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_spruce_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_spruce_sapling.json new file mode 100644 index 000000000..224d5a9f8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_spruce_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_spruce_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_torchflower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_torchflower.json new file mode 100644 index 000000000..dd981b972 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_torchflower.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_torchflower" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_warped_fungus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_warped_fungus.json new file mode 100644 index 000000000..3f127a341 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_warped_fungus.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_warped_fungus" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_warped_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_warped_roots.json new file mode 100644 index 000000000..f141ee94b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_warped_roots.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_warped_roots" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_white_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_white_tulip.json new file mode 100644 index 000000000..823ca9473 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_white_tulip.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_white_tulip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_wither_rose.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_wither_rose.json new file mode 100644 index 000000000..d12f6aa11 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/potted_wither_rose.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_wither_rose" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/powder_snow.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/powder_snow.json new file mode 100644 index 000000000..98be27af7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/powder_snow.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/powder_snow" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/powder_snow_cauldron.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/powder_snow_cauldron.json new file mode 100644 index 000000000..f6e94684c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/powder_snow_cauldron.json @@ -0,0 +1,13 @@ +{ + "variants": { + "level=1": { + "model": "minecraft:block/powder_snow_cauldron_level1" + }, + "level=2": { + "model": "minecraft:block/powder_snow_cauldron_level2" + }, + "level=3": { + "model": "minecraft:block/powder_snow_cauldron_full" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/powered_rail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/powered_rail.json new file mode 100644 index 000000000..a20a06fc3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/powered_rail.json @@ -0,0 +1,46 @@ +{ + "variants": { + "powered=false,shape=ascending_east": { + "model": "minecraft:block/powered_rail_raised_ne", + "y": 90 + }, + "powered=false,shape=ascending_north": { + "model": "minecraft:block/powered_rail_raised_ne" + }, + "powered=false,shape=ascending_south": { + "model": "minecraft:block/powered_rail_raised_sw" + }, + "powered=false,shape=ascending_west": { + "model": "minecraft:block/powered_rail_raised_sw", + "y": 90 + }, + "powered=false,shape=east_west": { + "model": "minecraft:block/powered_rail", + "y": 90 + }, + "powered=false,shape=north_south": { + "model": "minecraft:block/powered_rail" + }, + "powered=true,shape=ascending_east": { + "model": "minecraft:block/powered_rail_on_raised_ne", + "y": 90 + }, + "powered=true,shape=ascending_north": { + "model": "minecraft:block/powered_rail_on_raised_ne" + }, + "powered=true,shape=ascending_south": { + "model": "minecraft:block/powered_rail_on_raised_sw" + }, + "powered=true,shape=ascending_west": { + "model": "minecraft:block/powered_rail_on_raised_sw", + "y": 90 + }, + "powered=true,shape=east_west": { + "model": "minecraft:block/powered_rail_on", + "y": 90 + }, + "powered=true,shape=north_south": { + "model": "minecraft:block/powered_rail_on" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine.json new file mode 100644 index 000000000..b24d70343 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/prismarine" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_brick_slab.json new file mode 100644 index 000000000..3e151d0f9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/prismarine_brick_slab" + }, + "type=double": { + "model": "minecraft:block/prismarine_bricks" + }, + "type=top": { + "model": "minecraft:block/prismarine_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_brick_stairs.json new file mode 100644 index 000000000..013765ce6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/prismarine_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/prismarine_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/prismarine_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/prismarine_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/prismarine_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/prismarine_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/prismarine_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/prismarine_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/prismarine_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/prismarine_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/prismarine_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/prismarine_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_bricks.json new file mode 100644 index 000000000..db6a49ca8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/prismarine_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_slab.json new file mode 100644 index 000000000..3ac550906 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/prismarine_slab" + }, + "type=double": { + "model": "minecraft:block/prismarine" + }, + "type=top": { + "model": "minecraft:block/prismarine_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_stairs.json new file mode 100644 index 000000000..64bfd2a39 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/prismarine_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/prismarine_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/prismarine_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/prismarine_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/prismarine_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/prismarine_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/prismarine_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/prismarine_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/prismarine_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/prismarine_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/prismarine_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/prismarine_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_wall.json new file mode 100644 index 000000000..67f259274 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/prismarine_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/prismarine_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/prismarine_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/prismarine_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/prismarine_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/prismarine_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/prismarine_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/prismarine_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/prismarine_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/prismarine_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pumpkin.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pumpkin.json new file mode 100644 index 000000000..b64dee3dd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pumpkin.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pumpkin" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pumpkin_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pumpkin_stem.json new file mode 100644 index 000000000..536ed1180 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/pumpkin_stem.json @@ -0,0 +1,28 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/pumpkin_stem_stage0" + }, + "age=1": { + "model": "minecraft:block/pumpkin_stem_stage1" + }, + "age=2": { + "model": "minecraft:block/pumpkin_stem_stage2" + }, + "age=3": { + "model": "minecraft:block/pumpkin_stem_stage3" + }, + "age=4": { + "model": "minecraft:block/pumpkin_stem_stage4" + }, + "age=5": { + "model": "minecraft:block/pumpkin_stem_stage5" + }, + "age=6": { + "model": "minecraft:block/pumpkin_stem_stage6" + }, + "age=7": { + "model": "minecraft:block/pumpkin_stem_stage7" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_candle.json new file mode 100644 index 000000000..b6200c02a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/purple_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/purple_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/purple_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/purple_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/purple_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/purple_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/purple_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/purple_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_candle_cake.json new file mode 100644 index 000000000..69002bd59 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/purple_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/purple_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_carpet.json new file mode 100644 index 000000000..94bd741ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/purple_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_concrete.json new file mode 100644 index 000000000..06ecc28a5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/purple_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_concrete_powder.json new file mode 100644 index 000000000..23291b955 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/purple_concrete_powder" + }, + { + "model": "minecraft:block/purple_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/purple_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/purple_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_glazed_terracotta.json new file mode 100644 index 000000000..9f70fd4f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/purple_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/purple_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/purple_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/purple_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_shulker_box.json new file mode 100644 index 000000000..880e3163a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/purple_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_stained_glass.json new file mode 100644 index 000000000..02662b508 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/purple_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_stained_glass_pane.json new file mode 100644 index 000000000..dfec43a55 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_terracotta.json new file mode 100644 index 000000000..b500566d8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/purple_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_wall_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_wool.json new file mode 100644 index 000000000..a14ba55d5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purple_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/purple_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purpur_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purpur_block.json new file mode 100644 index 000000000..0bd34f34c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purpur_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/purpur_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purpur_pillar.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purpur_pillar.json new file mode 100644 index 000000000..65046d71a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purpur_pillar.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/purpur_pillar_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/purpur_pillar" + }, + "axis=z": { + "model": "minecraft:block/purpur_pillar_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purpur_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purpur_slab.json new file mode 100644 index 000000000..b4b9fb43b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purpur_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/purpur_slab" + }, + "type=double": { + "model": "minecraft:block/purpur_block" + }, + "type=top": { + "model": "minecraft:block/purpur_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purpur_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purpur_stairs.json new file mode 100644 index 000000000..407a9945f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/purpur_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/purpur_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/purpur_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/purpur_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/purpur_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/purpur_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/purpur_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/purpur_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/purpur_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/purpur_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/purpur_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/purpur_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/purpur_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/quartz_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/quartz_block.json new file mode 100644 index 000000000..6dcfecf9f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/quartz_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/quartz_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/quartz_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/quartz_bricks.json new file mode 100644 index 000000000..24827d45f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/quartz_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/quartz_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/quartz_pillar.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/quartz_pillar.json new file mode 100644 index 000000000..260cca79e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/quartz_pillar.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/quartz_pillar_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/quartz_pillar" + }, + "axis=z": { + "model": "minecraft:block/quartz_pillar_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/quartz_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/quartz_slab.json new file mode 100644 index 000000000..6d2ae81b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/quartz_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/quartz_slab" + }, + "type=double": { + "model": "minecraft:block/quartz_block" + }, + "type=top": { + "model": "minecraft:block/quartz_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/quartz_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/quartz_stairs.json new file mode 100644 index 000000000..a024448f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/quartz_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/quartz_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/quartz_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/quartz_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/quartz_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/quartz_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/quartz_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/quartz_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/quartz_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/quartz_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/quartz_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/quartz_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/quartz_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/rail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/rail.json new file mode 100644 index 000000000..4b1e4d04e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/rail.json @@ -0,0 +1,40 @@ +{ + "variants": { + "shape=ascending_east": { + "model": "minecraft:block/rail_raised_ne", + "y": 90 + }, + "shape=ascending_north": { + "model": "minecraft:block/rail_raised_ne" + }, + "shape=ascending_south": { + "model": "minecraft:block/rail_raised_sw" + }, + "shape=ascending_west": { + "model": "minecraft:block/rail_raised_sw", + "y": 90 + }, + "shape=east_west": { + "model": "minecraft:block/rail", + "y": 90 + }, + "shape=north_east": { + "model": "minecraft:block/rail_corner", + "y": 270 + }, + "shape=north_south": { + "model": "minecraft:block/rail" + }, + "shape=north_west": { + "model": "minecraft:block/rail_corner", + "y": 180 + }, + "shape=south_east": { + "model": "minecraft:block/rail_corner" + }, + "shape=south_west": { + "model": "minecraft:block/rail_corner", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/raw_copper_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/raw_copper_block.json new file mode 100644 index 000000000..852b44523 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/raw_copper_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/raw_copper_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/raw_gold_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/raw_gold_block.json new file mode 100644 index 000000000..65d04cc27 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/raw_gold_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/raw_gold_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/raw_iron_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/raw_iron_block.json new file mode 100644 index 000000000..91478da29 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/raw_iron_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/raw_iron_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_candle.json new file mode 100644 index 000000000..6c8520dec --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/red_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/red_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/red_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/red_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/red_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/red_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/red_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/red_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_candle_cake.json new file mode 100644 index 000000000..d0ceeefdc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/red_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/red_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_carpet.json new file mode 100644 index 000000000..78866a8df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_concrete.json new file mode 100644 index 000000000..ef1aedb05 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_concrete_powder.json new file mode 100644 index 000000000..98e8099c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/red_concrete_powder" + }, + { + "model": "minecraft:block/red_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/red_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/red_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_glazed_terracotta.json new file mode 100644 index 000000000..920d1648e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/red_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/red_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/red_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/red_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_mushroom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_mushroom.json new file mode 100644 index 000000000..9bb1dff20 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_mushroom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_mushroom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_mushroom_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_mushroom_block.json new file mode 100644 index 000000000..2312116f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_mushroom_block.json @@ -0,0 +1,115 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/red_mushroom_block" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_mushroom_block", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_mushroom_block", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_mushroom_block", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_mushroom_block", + "uvlock": true, + "x": 270 + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_mushroom_block", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 90 + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 180 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 270 + }, + "when": { + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "x": 270 + }, + "when": { + "up": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "x": 90 + }, + "when": { + "down": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_nether_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_nether_brick_slab.json new file mode 100644 index 000000000..492c8f2f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_nether_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/red_nether_brick_slab" + }, + "type=double": { + "model": "minecraft:block/red_nether_bricks" + }, + "type=top": { + "model": "minecraft:block/red_nether_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_nether_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_nether_brick_stairs.json new file mode 100644 index 000000000..f3cec794d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_nether_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/red_nether_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/red_nether_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/red_nether_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/red_nether_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/red_nether_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/red_nether_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/red_nether_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/red_nether_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/red_nether_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/red_nether_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/red_nether_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/red_nether_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_nether_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_nether_brick_wall.json new file mode 100644 index 000000000..f2f8a35bb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_nether_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_nether_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_nether_bricks.json new file mode 100644 index 000000000..75d6b4dcd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_nether_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_nether_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_sand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_sand.json new file mode 100644 index 000000000..083533ba7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_sand.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/red_sand" + }, + { + "model": "minecraft:block/red_sand", + "y": 90 + }, + { + "model": "minecraft:block/red_sand", + "y": 180 + }, + { + "model": "minecraft:block/red_sand", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_sandstone.json new file mode 100644 index 000000000..9f10b9608 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_sandstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_sandstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_sandstone_slab.json new file mode 100644 index 000000000..e8fcb59dc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_sandstone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/red_sandstone_slab" + }, + "type=double": { + "model": "minecraft:block/red_sandstone" + }, + "type=top": { + "model": "minecraft:block/red_sandstone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_sandstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_sandstone_stairs.json new file mode 100644 index 000000000..d457e088c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_sandstone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/red_sandstone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/red_sandstone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/red_sandstone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/red_sandstone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/red_sandstone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/red_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/red_sandstone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/red_sandstone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/red_sandstone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/red_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/red_sandstone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/red_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_sandstone_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_sandstone_wall.json new file mode 100644 index 000000000..91a72c896 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_sandstone_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_shulker_box.json new file mode 100644 index 000000000..ce5bcc98d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_stained_glass.json new file mode 100644 index 000000000..7e6ffba8a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_stained_glass_pane.json new file mode 100644 index 000000000..2bd8883a0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_terracotta.json new file mode 100644 index 000000000..78ac3ae6f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_tulip.json new file mode 100644 index 000000000..a2afbe183 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_tulip.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_tulip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_wall_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_wool.json new file mode 100644 index 000000000..d756ff397 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/red_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_block.json new file mode 100644 index 000000000..b0ff253e8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/redstone_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_lamp.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_lamp.json new file mode 100644 index 000000000..bbd9d9355 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_lamp.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/redstone_lamp" + }, + "lit=true": { + "model": "minecraft:block/redstone_lamp_on" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_ore.json new file mode 100644 index 000000000..cc4e3fa06 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/redstone_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_torch.json new file mode 100644 index 000000000..6c765135e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_torch.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/redstone_torch_off" + }, + "lit=true": { + "model": "minecraft:block/redstone_torch" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_wall_torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_wall_torch.json new file mode 100644 index 000000000..de19925cb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_wall_torch.json @@ -0,0 +1,34 @@ +{ + "variants": { + "facing=east,lit=false": { + "model": "minecraft:block/redstone_wall_torch_off" + }, + "facing=east,lit=true": { + "model": "minecraft:block/redstone_wall_torch" + }, + "facing=north,lit=false": { + "model": "minecraft:block/redstone_wall_torch_off", + "y": 270 + }, + "facing=north,lit=true": { + "model": "minecraft:block/redstone_wall_torch", + "y": 270 + }, + "facing=south,lit=false": { + "model": "minecraft:block/redstone_wall_torch_off", + "y": 90 + }, + "facing=south,lit=true": { + "model": "minecraft:block/redstone_wall_torch", + "y": 90 + }, + "facing=west,lit=false": { + "model": "minecraft:block/redstone_wall_torch_off", + "y": 180 + }, + "facing=west,lit=true": { + "model": "minecraft:block/redstone_wall_torch", + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_wire.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_wire.json new file mode 100644 index 000000000..2617c53af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/redstone_wire.json @@ -0,0 +1,104 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/redstone_dust_dot" + }, + "when": { + "OR": [ + { + "east": "none", + "north": "none", + "south": "none", + "west": "none" + }, + { + "east": "side|up", + "north": "side|up" + }, + { + "east": "side|up", + "south": "side|up" + }, + { + "south": "side|up", + "west": "side|up" + }, + { + "north": "side|up", + "west": "side|up" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/redstone_dust_side0" + }, + "when": { + "north": "side|up" + } + }, + { + "apply": { + "model": "minecraft:block/redstone_dust_side_alt0" + }, + "when": { + "south": "side|up" + } + }, + { + "apply": { + "model": "minecraft:block/redstone_dust_side_alt1", + "y": 270 + }, + "when": { + "east": "side|up" + } + }, + { + "apply": { + "model": "minecraft:block/redstone_dust_side1", + "y": 270 + }, + "when": { + "west": "side|up" + } + }, + { + "apply": { + "model": "minecraft:block/redstone_dust_up" + }, + "when": { + "north": "up" + } + }, + { + "apply": { + "model": "minecraft:block/redstone_dust_up", + "y": 90 + }, + "when": { + "east": "up" + } + }, + { + "apply": { + "model": "minecraft:block/redstone_dust_up", + "y": 180 + }, + "when": { + "south": "up" + } + }, + { + "apply": { + "model": "minecraft:block/redstone_dust_up", + "y": 270 + }, + "when": { + "west": "up" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/reinforced_deepslate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/reinforced_deepslate.json new file mode 100644 index 000000000..6c196af12 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/reinforced_deepslate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/reinforced_deepslate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/repeater.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/repeater.json new file mode 100644 index 000000000..4e0ab9ce6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/repeater.json @@ -0,0 +1,244 @@ +{ + "variants": { + "delay=1,facing=east,locked=false,powered=false": { + "model": "minecraft:block/repeater_1tick", + "y": 270 + }, + "delay=1,facing=east,locked=false,powered=true": { + "model": "minecraft:block/repeater_1tick_on", + "y": 270 + }, + "delay=1,facing=east,locked=true,powered=false": { + "model": "minecraft:block/repeater_1tick_locked", + "y": 270 + }, + "delay=1,facing=east,locked=true,powered=true": { + "model": "minecraft:block/repeater_1tick_on_locked", + "y": 270 + }, + "delay=1,facing=north,locked=false,powered=false": { + "model": "minecraft:block/repeater_1tick", + "y": 180 + }, + "delay=1,facing=north,locked=false,powered=true": { + "model": "minecraft:block/repeater_1tick_on", + "y": 180 + }, + "delay=1,facing=north,locked=true,powered=false": { + "model": "minecraft:block/repeater_1tick_locked", + "y": 180 + }, + "delay=1,facing=north,locked=true,powered=true": { + "model": "minecraft:block/repeater_1tick_on_locked", + "y": 180 + }, + "delay=1,facing=south,locked=false,powered=false": { + "model": "minecraft:block/repeater_1tick" + }, + "delay=1,facing=south,locked=false,powered=true": { + "model": "minecraft:block/repeater_1tick_on" + }, + "delay=1,facing=south,locked=true,powered=false": { + "model": "minecraft:block/repeater_1tick_locked" + }, + "delay=1,facing=south,locked=true,powered=true": { + "model": "minecraft:block/repeater_1tick_on_locked" + }, + "delay=1,facing=west,locked=false,powered=false": { + "model": "minecraft:block/repeater_1tick", + "y": 90 + }, + "delay=1,facing=west,locked=false,powered=true": { + "model": "minecraft:block/repeater_1tick_on", + "y": 90 + }, + "delay=1,facing=west,locked=true,powered=false": { + "model": "minecraft:block/repeater_1tick_locked", + "y": 90 + }, + "delay=1,facing=west,locked=true,powered=true": { + "model": "minecraft:block/repeater_1tick_on_locked", + "y": 90 + }, + "delay=2,facing=east,locked=false,powered=false": { + "model": "minecraft:block/repeater_2tick", + "y": 270 + }, + "delay=2,facing=east,locked=false,powered=true": { + "model": "minecraft:block/repeater_2tick_on", + "y": 270 + }, + "delay=2,facing=east,locked=true,powered=false": { + "model": "minecraft:block/repeater_2tick_locked", + "y": 270 + }, + "delay=2,facing=east,locked=true,powered=true": { + "model": "minecraft:block/repeater_2tick_on_locked", + "y": 270 + }, + "delay=2,facing=north,locked=false,powered=false": { + "model": "minecraft:block/repeater_2tick", + "y": 180 + }, + "delay=2,facing=north,locked=false,powered=true": { + "model": "minecraft:block/repeater_2tick_on", + "y": 180 + }, + "delay=2,facing=north,locked=true,powered=false": { + "model": "minecraft:block/repeater_2tick_locked", + "y": 180 + }, + "delay=2,facing=north,locked=true,powered=true": { + "model": "minecraft:block/repeater_2tick_on_locked", + "y": 180 + }, + "delay=2,facing=south,locked=false,powered=false": { + "model": "minecraft:block/repeater_2tick" + }, + "delay=2,facing=south,locked=false,powered=true": { + "model": "minecraft:block/repeater_2tick_on" + }, + "delay=2,facing=south,locked=true,powered=false": { + "model": "minecraft:block/repeater_2tick_locked" + }, + "delay=2,facing=south,locked=true,powered=true": { + "model": "minecraft:block/repeater_2tick_on_locked" + }, + "delay=2,facing=west,locked=false,powered=false": { + "model": "minecraft:block/repeater_2tick", + "y": 90 + }, + "delay=2,facing=west,locked=false,powered=true": { + "model": "minecraft:block/repeater_2tick_on", + "y": 90 + }, + "delay=2,facing=west,locked=true,powered=false": { + "model": "minecraft:block/repeater_2tick_locked", + "y": 90 + }, + "delay=2,facing=west,locked=true,powered=true": { + "model": "minecraft:block/repeater_2tick_on_locked", + "y": 90 + }, + "delay=3,facing=east,locked=false,powered=false": { + "model": "minecraft:block/repeater_3tick", + "y": 270 + }, + "delay=3,facing=east,locked=false,powered=true": { + "model": "minecraft:block/repeater_3tick_on", + "y": 270 + }, + "delay=3,facing=east,locked=true,powered=false": { + "model": "minecraft:block/repeater_3tick_locked", + "y": 270 + }, + "delay=3,facing=east,locked=true,powered=true": { + "model": "minecraft:block/repeater_3tick_on_locked", + "y": 270 + }, + "delay=3,facing=north,locked=false,powered=false": { + "model": "minecraft:block/repeater_3tick", + "y": 180 + }, + "delay=3,facing=north,locked=false,powered=true": { + "model": "minecraft:block/repeater_3tick_on", + "y": 180 + }, + "delay=3,facing=north,locked=true,powered=false": { + "model": "minecraft:block/repeater_3tick_locked", + "y": 180 + }, + "delay=3,facing=north,locked=true,powered=true": { + "model": "minecraft:block/repeater_3tick_on_locked", + "y": 180 + }, + "delay=3,facing=south,locked=false,powered=false": { + "model": "minecraft:block/repeater_3tick" + }, + "delay=3,facing=south,locked=false,powered=true": { + "model": "minecraft:block/repeater_3tick_on" + }, + "delay=3,facing=south,locked=true,powered=false": { + "model": "minecraft:block/repeater_3tick_locked" + }, + "delay=3,facing=south,locked=true,powered=true": { + "model": "minecraft:block/repeater_3tick_on_locked" + }, + "delay=3,facing=west,locked=false,powered=false": { + "model": "minecraft:block/repeater_3tick", + "y": 90 + }, + "delay=3,facing=west,locked=false,powered=true": { + "model": "minecraft:block/repeater_3tick_on", + "y": 90 + }, + "delay=3,facing=west,locked=true,powered=false": { + "model": "minecraft:block/repeater_3tick_locked", + "y": 90 + }, + "delay=3,facing=west,locked=true,powered=true": { + "model": "minecraft:block/repeater_3tick_on_locked", + "y": 90 + }, + "delay=4,facing=east,locked=false,powered=false": { + "model": "minecraft:block/repeater_4tick", + "y": 270 + }, + "delay=4,facing=east,locked=false,powered=true": { + "model": "minecraft:block/repeater_4tick_on", + "y": 270 + }, + "delay=4,facing=east,locked=true,powered=false": { + "model": "minecraft:block/repeater_4tick_locked", + "y": 270 + }, + "delay=4,facing=east,locked=true,powered=true": { + "model": "minecraft:block/repeater_4tick_on_locked", + "y": 270 + }, + "delay=4,facing=north,locked=false,powered=false": { + "model": "minecraft:block/repeater_4tick", + "y": 180 + }, + "delay=4,facing=north,locked=false,powered=true": { + "model": "minecraft:block/repeater_4tick_on", + "y": 180 + }, + "delay=4,facing=north,locked=true,powered=false": { + "model": "minecraft:block/repeater_4tick_locked", + "y": 180 + }, + "delay=4,facing=north,locked=true,powered=true": { + "model": "minecraft:block/repeater_4tick_on_locked", + "y": 180 + }, + "delay=4,facing=south,locked=false,powered=false": { + "model": "minecraft:block/repeater_4tick" + }, + "delay=4,facing=south,locked=false,powered=true": { + "model": "minecraft:block/repeater_4tick_on" + }, + "delay=4,facing=south,locked=true,powered=false": { + "model": "minecraft:block/repeater_4tick_locked" + }, + "delay=4,facing=south,locked=true,powered=true": { + "model": "minecraft:block/repeater_4tick_on_locked" + }, + "delay=4,facing=west,locked=false,powered=false": { + "model": "minecraft:block/repeater_4tick", + "y": 90 + }, + "delay=4,facing=west,locked=false,powered=true": { + "model": "minecraft:block/repeater_4tick_on", + "y": 90 + }, + "delay=4,facing=west,locked=true,powered=false": { + "model": "minecraft:block/repeater_4tick_locked", + "y": 90 + }, + "delay=4,facing=west,locked=true,powered=true": { + "model": "minecraft:block/repeater_4tick_on_locked", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/repeating_command_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/repeating_command_block.json new file mode 100644 index 000000000..2e6ccead9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/repeating_command_block.json @@ -0,0 +1,50 @@ +{ + "variants": { + "conditional=false,facing=down": { + "model": "minecraft:block/repeating_command_block", + "x": 90 + }, + "conditional=false,facing=east": { + "model": "minecraft:block/repeating_command_block", + "y": 90 + }, + "conditional=false,facing=north": { + "model": "minecraft:block/repeating_command_block" + }, + "conditional=false,facing=south": { + "model": "minecraft:block/repeating_command_block", + "y": 180 + }, + "conditional=false,facing=up": { + "model": "minecraft:block/repeating_command_block", + "x": 270 + }, + "conditional=false,facing=west": { + "model": "minecraft:block/repeating_command_block", + "y": 270 + }, + "conditional=true,facing=down": { + "model": "minecraft:block/repeating_command_block_conditional", + "x": 90 + }, + "conditional=true,facing=east": { + "model": "minecraft:block/repeating_command_block_conditional", + "y": 90 + }, + "conditional=true,facing=north": { + "model": "minecraft:block/repeating_command_block_conditional" + }, + "conditional=true,facing=south": { + "model": "minecraft:block/repeating_command_block_conditional", + "y": 180 + }, + "conditional=true,facing=up": { + "model": "minecraft:block/repeating_command_block_conditional", + "x": 270 + }, + "conditional=true,facing=west": { + "model": "minecraft:block/repeating_command_block_conditional", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_block.json new file mode 100644 index 000000000..58a8cbabc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/resin_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_brick_slab.json new file mode 100644 index 000000000..432eaa28f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/resin_brick_slab" + }, + "type=double": { + "model": "minecraft:block/resin_bricks" + }, + "type=top": { + "model": "minecraft:block/resin_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_brick_stairs.json new file mode 100644 index 000000000..638f42eef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/resin_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/resin_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/resin_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/resin_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/resin_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/resin_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/resin_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/resin_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/resin_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/resin_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/resin_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/resin_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_brick_wall.json new file mode 100644 index 000000000..6c0576861 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/resin_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/resin_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/resin_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/resin_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/resin_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/resin_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/resin_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/resin_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/resin_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_bricks.json new file mode 100644 index 000000000..b09851a88 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/resin_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_clump.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_clump.json new file mode 100644 index 000000000..5e9fe5690 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/resin_clump.json @@ -0,0 +1,150 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/resin_clump" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump" + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "y": 90 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "y": 180 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "y": 270 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "x": 270 + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "x": 270 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "true" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/respawn_anchor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/respawn_anchor.json new file mode 100644 index 000000000..fdf950ad4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/respawn_anchor.json @@ -0,0 +1,19 @@ +{ + "variants": { + "charges=0": { + "model": "minecraft:block/respawn_anchor_0" + }, + "charges=1": { + "model": "minecraft:block/respawn_anchor_1" + }, + "charges=2": { + "model": "minecraft:block/respawn_anchor_2" + }, + "charges=3": { + "model": "minecraft:block/respawn_anchor_3" + }, + "charges=4": { + "model": "minecraft:block/respawn_anchor_4" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/rooted_dirt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/rooted_dirt.json new file mode 100644 index 000000000..9361904fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/rooted_dirt.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/rooted_dirt" + }, + { + "model": "minecraft:block/rooted_dirt", + "y": 90 + }, + { + "model": "minecraft:block/rooted_dirt", + "y": 180 + }, + { + "model": "minecraft:block/rooted_dirt", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/rose_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/rose_bush.json new file mode 100644 index 000000000..5eaa364cb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/rose_bush.json @@ -0,0 +1,10 @@ +{ + "variants": { + "half=lower": { + "model": "minecraft:block/rose_bush_bottom" + }, + "half=upper": { + "model": "minecraft:block/rose_bush_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sand.json new file mode 100644 index 000000000..3341c41d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sand.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/sand" + }, + { + "model": "minecraft:block/sand", + "y": 90 + }, + { + "model": "minecraft:block/sand", + "y": 180 + }, + { + "model": "minecraft:block/sand", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sandstone.json new file mode 100644 index 000000000..a3c0d7091 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sandstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/sandstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sandstone_slab.json new file mode 100644 index 000000000..0fabec371 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sandstone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/sandstone_slab" + }, + "type=double": { + "model": "minecraft:block/sandstone" + }, + "type=top": { + "model": "minecraft:block/sandstone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sandstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sandstone_stairs.json new file mode 100644 index 000000000..e69e48fd0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sandstone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/sandstone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/sandstone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/sandstone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/sandstone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/sandstone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/sandstone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/sandstone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/sandstone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/sandstone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sandstone_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sandstone_wall.json new file mode 100644 index 000000000..a5e1ed390 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sandstone_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/sandstone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/sandstone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/sandstone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/sandstone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/sandstone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/sandstone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/sandstone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/sandstone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/sandstone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/scaffolding.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/scaffolding.json new file mode 100644 index 000000000..aca5b491d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/scaffolding.json @@ -0,0 +1,10 @@ +{ + "variants": { + "bottom=false": { + "model": "minecraft:block/scaffolding_stable" + }, + "bottom=true": { + "model": "minecraft:block/scaffolding_unstable" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sculk.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sculk.json new file mode 100644 index 000000000..ba3d6643c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sculk.json @@ -0,0 +1,20 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/sculk" + }, + { + "model": "minecraft:block/sculk_mirrored" + }, + { + "model": "minecraft:block/sculk", + "y": 180 + }, + { + "model": "minecraft:block/sculk_mirrored", + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sculk_catalyst.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sculk_catalyst.json new file mode 100644 index 000000000..589af9907 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sculk_catalyst.json @@ -0,0 +1,10 @@ +{ + "variants": { + "bloom=false": { + "model": "minecraft:block/sculk_catalyst" + }, + "bloom=true": { + "model": "minecraft:block/sculk_catalyst_bloom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sculk_sensor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sculk_sensor.json new file mode 100644 index 000000000..690cb8fba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sculk_sensor.json @@ -0,0 +1,13 @@ +{ + "variants": { + "sculk_sensor_phase=active": { + "model": "minecraft:block/sculk_sensor_active" + }, + "sculk_sensor_phase=cooldown": { + "model": "minecraft:block/sculk_sensor_active" + }, + "sculk_sensor_phase=inactive": { + "model": "minecraft:block/sculk_sensor_inactive" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sculk_shrieker.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sculk_shrieker.json new file mode 100644 index 000000000..f445bc8ff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sculk_shrieker.json @@ -0,0 +1,10 @@ +{ + "variants": { + "can_summon=false": { + "model": "minecraft:block/sculk_shrieker" + }, + "can_summon=true": { + "model": "minecraft:block/sculk_shrieker_can_summon" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sculk_vein.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sculk_vein.json new file mode 100644 index 000000000..557643db8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sculk_vein.json @@ -0,0 +1,150 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/sculk_vein" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein" + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "y": 90 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "y": 180 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "y": 270 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "x": 270 + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "x": 270 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "true" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sea_lantern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sea_lantern.json new file mode 100644 index 000000000..d1231f288 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sea_lantern.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/sea_lantern" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sea_pickle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sea_pickle.json new file mode 100644 index 000000000..89861754e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sea_pickle.json @@ -0,0 +1,140 @@ +{ + "variants": { + "pickles=1,waterlogged=false": [ + { + "model": "minecraft:block/dead_sea_pickle" + }, + { + "model": "minecraft:block/dead_sea_pickle", + "y": 90 + }, + { + "model": "minecraft:block/dead_sea_pickle", + "y": 180 + }, + { + "model": "minecraft:block/dead_sea_pickle", + "y": 270 + } + ], + "pickles=1,waterlogged=true": [ + { + "model": "minecraft:block/sea_pickle" + }, + { + "model": "minecraft:block/sea_pickle", + "y": 90 + }, + { + "model": "minecraft:block/sea_pickle", + "y": 180 + }, + { + "model": "minecraft:block/sea_pickle", + "y": 270 + } + ], + "pickles=2,waterlogged=false": [ + { + "model": "minecraft:block/two_dead_sea_pickles" + }, + { + "model": "minecraft:block/two_dead_sea_pickles", + "y": 90 + }, + { + "model": "minecraft:block/two_dead_sea_pickles", + "y": 180 + }, + { + "model": "minecraft:block/two_dead_sea_pickles", + "y": 270 + } + ], + "pickles=2,waterlogged=true": [ + { + "model": "minecraft:block/two_sea_pickles" + }, + { + "model": "minecraft:block/two_sea_pickles", + "y": 90 + }, + { + "model": "minecraft:block/two_sea_pickles", + "y": 180 + }, + { + "model": "minecraft:block/two_sea_pickles", + "y": 270 + } + ], + "pickles=3,waterlogged=false": [ + { + "model": "minecraft:block/three_dead_sea_pickles" + }, + { + "model": "minecraft:block/three_dead_sea_pickles", + "y": 90 + }, + { + "model": "minecraft:block/three_dead_sea_pickles", + "y": 180 + }, + { + "model": "minecraft:block/three_dead_sea_pickles", + "y": 270 + } + ], + "pickles=3,waterlogged=true": [ + { + "model": "minecraft:block/three_sea_pickles" + }, + { + "model": "minecraft:block/three_sea_pickles", + "y": 90 + }, + { + "model": "minecraft:block/three_sea_pickles", + "y": 180 + }, + { + "model": "minecraft:block/three_sea_pickles", + "y": 270 + } + ], + "pickles=4,waterlogged=false": [ + { + "model": "minecraft:block/four_dead_sea_pickles" + }, + { + "model": "minecraft:block/four_dead_sea_pickles", + "y": 90 + }, + { + "model": "minecraft:block/four_dead_sea_pickles", + "y": 180 + }, + { + "model": "minecraft:block/four_dead_sea_pickles", + "y": 270 + } + ], + "pickles=4,waterlogged=true": [ + { + "model": "minecraft:block/four_sea_pickles" + }, + { + "model": "minecraft:block/four_sea_pickles", + "y": 90 + }, + { + "model": "minecraft:block/four_sea_pickles", + "y": 180 + }, + { + "model": "minecraft:block/four_sea_pickles", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/seagrass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/seagrass.json new file mode 100644 index 000000000..045c721e9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/seagrass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/seagrass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/short_dry_grass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/short_dry_grass.json new file mode 100644 index 000000000..e13569e8e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/short_dry_grass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/short_dry_grass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/short_grass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/short_grass.json new file mode 100644 index 000000000..d065ca080 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/short_grass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/short_grass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/shroomlight.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/shroomlight.json new file mode 100644 index 000000000..300f41e80 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/shroomlight.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/shroomlight" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/shulker_box.json new file mode 100644 index 000000000..7248d53ea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/skeleton_skull.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/skeleton_skull.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/skeleton_skull.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/skeleton_wall_skull.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/skeleton_wall_skull.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/skeleton_wall_skull.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/slime_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/slime_block.json new file mode 100644 index 000000000..b7f071be0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/slime_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/slime_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/small_amethyst_bud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/small_amethyst_bud.json new file mode 100644 index 000000000..aac83ed37 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/small_amethyst_bud.json @@ -0,0 +1,30 @@ +{ + "variants": { + "facing=down": { + "model": "minecraft:block/small_amethyst_bud", + "x": 180 + }, + "facing=east": { + "model": "minecraft:block/small_amethyst_bud", + "x": 90, + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/small_amethyst_bud", + "x": 90 + }, + "facing=south": { + "model": "minecraft:block/small_amethyst_bud", + "x": 90, + "y": 180 + }, + "facing=up": { + "model": "minecraft:block/small_amethyst_bud" + }, + "facing=west": { + "model": "minecraft:block/small_amethyst_bud", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/small_dripleaf.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/small_dripleaf.json new file mode 100644 index 000000000..aa5410e27 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/small_dripleaf.json @@ -0,0 +1,34 @@ +{ + "variants": { + "facing=east,half=lower": { + "model": "minecraft:block/small_dripleaf_bottom", + "y": 90 + }, + "facing=east,half=upper": { + "model": "minecraft:block/small_dripleaf_top", + "y": 90 + }, + "facing=north,half=lower": { + "model": "minecraft:block/small_dripleaf_bottom" + }, + "facing=north,half=upper": { + "model": "minecraft:block/small_dripleaf_top" + }, + "facing=south,half=lower": { + "model": "minecraft:block/small_dripleaf_bottom", + "y": 180 + }, + "facing=south,half=upper": { + "model": "minecraft:block/small_dripleaf_top", + "y": 180 + }, + "facing=west,half=lower": { + "model": "minecraft:block/small_dripleaf_bottom", + "y": 270 + }, + "facing=west,half=upper": { + "model": "minecraft:block/small_dripleaf_top", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smithing_table.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smithing_table.json new file mode 100644 index 000000000..627ae9085 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smithing_table.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/smithing_table" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smoker.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smoker.json new file mode 100644 index 000000000..f0a0fc9ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smoker.json @@ -0,0 +1,34 @@ +{ + "variants": { + "facing=east,lit=false": { + "model": "minecraft:block/smoker", + "y": 90 + }, + "facing=east,lit=true": { + "model": "minecraft:block/smoker_on", + "y": 90 + }, + "facing=north,lit=false": { + "model": "minecraft:block/smoker" + }, + "facing=north,lit=true": { + "model": "minecraft:block/smoker_on" + }, + "facing=south,lit=false": { + "model": "minecraft:block/smoker", + "y": 180 + }, + "facing=south,lit=true": { + "model": "minecraft:block/smoker_on", + "y": 180 + }, + "facing=west,lit=false": { + "model": "minecraft:block/smoker", + "y": 270 + }, + "facing=west,lit=true": { + "model": "minecraft:block/smoker_on", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_basalt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_basalt.json new file mode 100644 index 000000000..6145eb017 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_basalt.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/smooth_basalt" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_quartz.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_quartz.json new file mode 100644 index 000000000..790912d3b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_quartz.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/smooth_quartz" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_quartz_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_quartz_slab.json new file mode 100644 index 000000000..7741145d5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_quartz_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/smooth_quartz_slab" + }, + "type=double": { + "model": "minecraft:block/smooth_quartz" + }, + "type=top": { + "model": "minecraft:block/smooth_quartz_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_quartz_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_quartz_stairs.json new file mode 100644 index 000000000..fb53ef188 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_quartz_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_quartz_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_quartz_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_quartz_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/smooth_quartz_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_quartz_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/smooth_quartz_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_quartz_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_quartz_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_quartz_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/smooth_quartz_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_quartz_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/smooth_quartz_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone.json new file mode 100644 index 000000000..5f441b0f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/smooth_red_sandstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone_slab.json new file mode 100644 index 000000000..49aa61b08 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/smooth_red_sandstone_slab" + }, + "type=double": { + "model": "minecraft:block/smooth_red_sandstone" + }, + "type=top": { + "model": "minecraft:block/smooth_red_sandstone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone_stairs.json new file mode 100644 index 000000000..826979429 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_red_sandstone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/smooth_red_sandstone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_red_sandstone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/smooth_red_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_red_sandstone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/smooth_red_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_red_sandstone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/smooth_red_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_sandstone.json new file mode 100644 index 000000000..fdc28aa98 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_sandstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/smooth_sandstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_sandstone_slab.json new file mode 100644 index 000000000..988733beb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_sandstone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/smooth_sandstone_slab" + }, + "type=double": { + "model": "minecraft:block/smooth_sandstone" + }, + "type=top": { + "model": "minecraft:block/smooth_sandstone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_sandstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_sandstone_stairs.json new file mode 100644 index 000000000..79be22a3e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_sandstone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_sandstone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_sandstone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_sandstone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/smooth_sandstone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_sandstone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/smooth_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_sandstone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_sandstone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_sandstone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/smooth_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_sandstone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/smooth_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_stone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_stone.json new file mode 100644 index 000000000..a2fb9bfee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_stone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/smooth_stone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_stone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_stone_slab.json new file mode 100644 index 000000000..9150d6799 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/smooth_stone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/smooth_stone_slab" + }, + "type=double": { + "model": "minecraft:block/smooth_stone_slab_double" + }, + "type=top": { + "model": "minecraft:block/smooth_stone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sniffer_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sniffer_egg.json new file mode 100644 index 000000000..733fd44e4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sniffer_egg.json @@ -0,0 +1,13 @@ +{ + "variants": { + "hatch=0": { + "model": "minecraft:block/sniffer_egg_not_cracked" + }, + "hatch=1": { + "model": "minecraft:block/sniffer_egg_slightly_cracked" + }, + "hatch=2": { + "model": "minecraft:block/sniffer_egg_very_cracked" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/snow.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/snow.json new file mode 100644 index 000000000..a82cad936 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/snow.json @@ -0,0 +1,28 @@ +{ + "variants": { + "layers=1": { + "model": "minecraft:block/snow_height2" + }, + "layers=2": { + "model": "minecraft:block/snow_height4" + }, + "layers=3": { + "model": "minecraft:block/snow_height6" + }, + "layers=4": { + "model": "minecraft:block/snow_height8" + }, + "layers=5": { + "model": "minecraft:block/snow_height10" + }, + "layers=6": { + "model": "minecraft:block/snow_height12" + }, + "layers=7": { + "model": "minecraft:block/snow_height14" + }, + "layers=8": { + "model": "minecraft:block/snow_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/snow_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/snow_block.json new file mode 100644 index 000000000..eac197319 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/snow_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/snow_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_campfire.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_campfire.json new file mode 100644 index 000000000..9052d211e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_campfire.json @@ -0,0 +1,34 @@ +{ + "variants": { + "facing=east,lit=false": { + "model": "minecraft:block/campfire_off", + "y": 270 + }, + "facing=east,lit=true": { + "model": "minecraft:block/soul_campfire", + "y": 270 + }, + "facing=north,lit=false": { + "model": "minecraft:block/campfire_off", + "y": 180 + }, + "facing=north,lit=true": { + "model": "minecraft:block/soul_campfire", + "y": 180 + }, + "facing=south,lit=false": { + "model": "minecraft:block/campfire_off" + }, + "facing=south,lit=true": { + "model": "minecraft:block/soul_campfire" + }, + "facing=west,lit=false": { + "model": "minecraft:block/campfire_off", + "y": 90 + }, + "facing=west,lit=true": { + "model": "minecraft:block/soul_campfire", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_fire.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_fire.json new file mode 100644 index 000000000..bd637a775 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_fire.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": [ + { + "model": "minecraft:block/soul_fire_floor0" + }, + { + "model": "minecraft:block/soul_fire_floor1" + } + ] + }, + { + "apply": [ + { + "model": "minecraft:block/soul_fire_side0" + }, + { + "model": "minecraft:block/soul_fire_side1" + }, + { + "model": "minecraft:block/soul_fire_side_alt0" + }, + { + "model": "minecraft:block/soul_fire_side_alt1" + } + ] + }, + { + "apply": [ + { + "model": "minecraft:block/soul_fire_side0", + "y": 90 + }, + { + "model": "minecraft:block/soul_fire_side1", + "y": 90 + }, + { + "model": "minecraft:block/soul_fire_side_alt0", + "y": 90 + }, + { + "model": "minecraft:block/soul_fire_side_alt1", + "y": 90 + } + ] + }, + { + "apply": [ + { + "model": "minecraft:block/soul_fire_side0", + "y": 180 + }, + { + "model": "minecraft:block/soul_fire_side1", + "y": 180 + }, + { + "model": "minecraft:block/soul_fire_side_alt0", + "y": 180 + }, + { + "model": "minecraft:block/soul_fire_side_alt1", + "y": 180 + } + ] + }, + { + "apply": [ + { + "model": "minecraft:block/soul_fire_side0", + "y": 270 + }, + { + "model": "minecraft:block/soul_fire_side1", + "y": 270 + }, + { + "model": "minecraft:block/soul_fire_side_alt0", + "y": 270 + }, + { + "model": "minecraft:block/soul_fire_side_alt1", + "y": 270 + } + ] + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_lantern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_lantern.json new file mode 100644 index 000000000..295698d63 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_lantern.json @@ -0,0 +1,10 @@ +{ + "variants": { + "hanging=false": { + "model": "minecraft:block/soul_lantern" + }, + "hanging=true": { + "model": "minecraft:block/soul_lantern_hanging" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_sand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_sand.json new file mode 100644 index 000000000..e28fd5eac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_sand.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/soul_sand" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_soil.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_soil.json new file mode 100644 index 000000000..df0da5f8c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_soil.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/soul_soil" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_torch.json new file mode 100644 index 000000000..be81df743 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_torch.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/soul_torch" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_wall_torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_wall_torch.json new file mode 100644 index 000000000..653ffef84 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/soul_wall_torch.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/soul_wall_torch" + }, + "facing=north": { + "model": "minecraft:block/soul_wall_torch", + "y": 270 + }, + "facing=south": { + "model": "minecraft:block/soul_wall_torch", + "y": 90 + }, + "facing=west": { + "model": "minecraft:block/soul_wall_torch", + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spawner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spawner.json new file mode 100644 index 000000000..9f2f1a052 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spawner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spawner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sponge.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sponge.json new file mode 100644 index 000000000..136e393a8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sponge.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/sponge" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spore_blossom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spore_blossom.json new file mode 100644 index 000000000..0dd005af5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spore_blossom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spore_blossom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_button.json new file mode 100644 index 000000000..9edf5144f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/spruce_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/spruce_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/spruce_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/spruce_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/spruce_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/spruce_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/spruce_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/spruce_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/spruce_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/spruce_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/spruce_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/spruce_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/spruce_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_door.json new file mode 100644 index 000000000..b40806373 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/spruce_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/spruce_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/spruce_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/spruce_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/spruce_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/spruce_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/spruce_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/spruce_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/spruce_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/spruce_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/spruce_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/spruce_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/spruce_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/spruce_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/spruce_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/spruce_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/spruce_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/spruce_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/spruce_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/spruce_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/spruce_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/spruce_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/spruce_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/spruce_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/spruce_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/spruce_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/spruce_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/spruce_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/spruce_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/spruce_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/spruce_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/spruce_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_fence.json new file mode 100644 index 000000000..203048fb1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/spruce_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/spruce_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/spruce_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/spruce_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/spruce_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_fence_gate.json new file mode 100644 index 000000000..a622cdd9a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/spruce_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/spruce_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/spruce_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/spruce_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/spruce_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/spruce_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/spruce_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/spruce_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/spruce_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/spruce_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/spruce_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/spruce_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/spruce_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/spruce_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/spruce_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/spruce_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_hanging_sign.json new file mode 100644 index 000000000..d9674b627 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spruce_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_leaves.json new file mode 100644 index 000000000..c823b6c70 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spruce_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_log.json new file mode 100644 index 000000000..126396ff1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/spruce_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/spruce_log" + }, + "axis=z": { + "model": "minecraft:block/spruce_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_planks.json new file mode 100644 index 000000000..3299e4be2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spruce_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_pressure_plate.json new file mode 100644 index 000000000..9fef636c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/spruce_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/spruce_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_sapling.json new file mode 100644 index 000000000..acecf89b6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spruce_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_sign.json new file mode 100644 index 000000000..ca0883455 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spruce_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_slab.json new file mode 100644 index 000000000..c06bc123d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/spruce_slab" + }, + "type=double": { + "model": "minecraft:block/spruce_planks" + }, + "type=top": { + "model": "minecraft:block/spruce_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_stairs.json new file mode 100644 index 000000000..412698f92 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/spruce_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/spruce_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/spruce_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/spruce_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/spruce_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/spruce_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/spruce_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/spruce_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/spruce_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/spruce_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/spruce_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/spruce_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_trapdoor.json new file mode 100644 index 000000000..4b494ff1c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/spruce_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/spruce_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/spruce_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/spruce_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/spruce_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/spruce_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/spruce_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/spruce_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/spruce_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/spruce_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/spruce_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/spruce_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/spruce_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/spruce_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/spruce_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/spruce_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_wall_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_wall_hanging_sign.json new file mode 100644 index 000000000..d9674b627 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spruce_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_wall_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_wall_sign.json new file mode 100644 index 000000000..ca0883455 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spruce_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_wood.json new file mode 100644 index 000000000..19a9ffb25 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/spruce_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/spruce_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/spruce_wood" + }, + "axis=z": { + "model": "minecraft:block/spruce_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sticky_piston.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sticky_piston.json new file mode 100644 index 000000000..ecd7db037 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sticky_piston.json @@ -0,0 +1,50 @@ +{ + "variants": { + "extended=false,facing=down": { + "model": "minecraft:block/sticky_piston", + "x": 90 + }, + "extended=false,facing=east": { + "model": "minecraft:block/sticky_piston", + "y": 90 + }, + "extended=false,facing=north": { + "model": "minecraft:block/sticky_piston" + }, + "extended=false,facing=south": { + "model": "minecraft:block/sticky_piston", + "y": 180 + }, + "extended=false,facing=up": { + "model": "minecraft:block/sticky_piston", + "x": 270 + }, + "extended=false,facing=west": { + "model": "minecraft:block/sticky_piston", + "y": 270 + }, + "extended=true,facing=down": { + "model": "minecraft:block/piston_base", + "x": 90 + }, + "extended=true,facing=east": { + "model": "minecraft:block/piston_base", + "y": 90 + }, + "extended=true,facing=north": { + "model": "minecraft:block/piston_base" + }, + "extended=true,facing=south": { + "model": "minecraft:block/piston_base", + "y": 180 + }, + "extended=true,facing=up": { + "model": "minecraft:block/piston_base", + "x": 270 + }, + "extended=true,facing=west": { + "model": "minecraft:block/piston_base", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone.json new file mode 100644 index 000000000..c150ec294 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone.json @@ -0,0 +1,20 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/stone" + }, + { + "model": "minecraft:block/stone_mirrored" + }, + { + "model": "minecraft:block/stone", + "y": 180 + }, + { + "model": "minecraft:block/stone_mirrored", + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_brick_slab.json new file mode 100644 index 000000000..bfa864b9a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/stone_brick_slab" + }, + "type=double": { + "model": "minecraft:block/stone_bricks" + }, + "type=top": { + "model": "minecraft:block/stone_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_brick_stairs.json new file mode 100644 index 000000000..1ee811278 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/stone_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/stone_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/stone_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/stone_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/stone_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/stone_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/stone_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/stone_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/stone_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_brick_wall.json new file mode 100644 index 000000000..fc86800b4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/stone_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/stone_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/stone_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/stone_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/stone_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/stone_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/stone_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/stone_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/stone_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_bricks.json new file mode 100644 index 000000000..8a05daf03 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_button.json new file mode 100644 index 000000000..0fb70d990 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/stone_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/stone_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/stone_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/stone_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/stone_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/stone_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/stone_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/stone_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/stone_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/stone_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/stone_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/stone_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/stone_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_pressure_plate.json new file mode 100644 index 000000000..5be1b5ab3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/stone_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/stone_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_slab.json new file mode 100644 index 000000000..f37785eca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/stone_slab" + }, + "type=double": { + "model": "minecraft:block/stone" + }, + "type=top": { + "model": "minecraft:block/stone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_stairs.json new file mode 100644 index 000000000..ac18bfdfd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/stone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/stone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/stone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/stone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/stone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/stone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/stone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/stone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/stone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/stone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/stone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/stone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stonecutter.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stonecutter.json new file mode 100644 index 000000000..c50b85fc7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stonecutter.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/stonecutter", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/stonecutter" + }, + "facing=south": { + "model": "minecraft:block/stonecutter", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/stonecutter", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_acacia_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_acacia_log.json new file mode 100644 index 000000000..53a60c9d4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_acacia_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_acacia_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_acacia_log" + }, + "axis=z": { + "model": "minecraft:block/stripped_acacia_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_acacia_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_acacia_wood.json new file mode 100644 index 000000000..dd8d1f23d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_acacia_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_acacia_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_acacia_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_acacia_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_bamboo_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_bamboo_block.json new file mode 100644 index 000000000..796aa933f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_bamboo_block.json @@ -0,0 +1,13 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_bamboo_block_x" + }, + "axis=y": { + "model": "minecraft:block/stripped_bamboo_block_y" + }, + "axis=z": { + "model": "minecraft:block/stripped_bamboo_block_z" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_birch_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_birch_log.json new file mode 100644 index 000000000..df57a5269 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_birch_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_birch_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_birch_log" + }, + "axis=z": { + "model": "minecraft:block/stripped_birch_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_birch_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_birch_wood.json new file mode 100644 index 000000000..6527d5dfd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_birch_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_birch_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_birch_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_birch_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_cherry_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_cherry_log.json new file mode 100644 index 000000000..977bb1b50 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_cherry_log.json @@ -0,0 +1,13 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_cherry_log_x" + }, + "axis=y": { + "model": "minecraft:block/stripped_cherry_log_y" + }, + "axis=z": { + "model": "minecraft:block/stripped_cherry_log_z" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_cherry_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_cherry_wood.json new file mode 100644 index 000000000..5a8305486 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_cherry_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_cherry_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_cherry_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_cherry_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_crimson_hyphae.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_crimson_hyphae.json new file mode 100644 index 000000000..3a04cefa9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_crimson_hyphae.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_crimson_hyphae", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_crimson_hyphae" + }, + "axis=z": { + "model": "minecraft:block/stripped_crimson_hyphae", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_crimson_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_crimson_stem.json new file mode 100644 index 000000000..b04d30be8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_crimson_stem.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_crimson_stem", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_crimson_stem" + }, + "axis=z": { + "model": "minecraft:block/stripped_crimson_stem", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_dark_oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_dark_oak_log.json new file mode 100644 index 000000000..49d1824a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_dark_oak_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_dark_oak_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_dark_oak_log" + }, + "axis=z": { + "model": "minecraft:block/stripped_dark_oak_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_dark_oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_dark_oak_wood.json new file mode 100644 index 000000000..4bcfd1ead --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_dark_oak_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_dark_oak_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_dark_oak_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_dark_oak_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_jungle_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_jungle_log.json new file mode 100644 index 000000000..b826bf8e4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_jungle_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_jungle_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_jungle_log" + }, + "axis=z": { + "model": "minecraft:block/stripped_jungle_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_jungle_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_jungle_wood.json new file mode 100644 index 000000000..c20987613 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_jungle_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_jungle_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_jungle_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_jungle_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_mangrove_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_mangrove_log.json new file mode 100644 index 000000000..a9a610d44 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_mangrove_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_mangrove_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_mangrove_log" + }, + "axis=z": { + "model": "minecraft:block/stripped_mangrove_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_mangrove_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_mangrove_wood.json new file mode 100644 index 000000000..53a18bd2c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_mangrove_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_mangrove_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_mangrove_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_mangrove_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_oak_log.json new file mode 100644 index 000000000..b4a149bcc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_oak_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_oak_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_oak_log" + }, + "axis=z": { + "model": "minecraft:block/stripped_oak_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_oak_wood.json new file mode 100644 index 000000000..a8098d7c9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_oak_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_oak_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_oak_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_oak_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_pale_oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_pale_oak_log.json new file mode 100644 index 000000000..c49669e0a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_pale_oak_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_pale_oak_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_pale_oak_log" + }, + "axis=z": { + "model": "minecraft:block/stripped_pale_oak_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_pale_oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_pale_oak_wood.json new file mode 100644 index 000000000..07b79a1e9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_pale_oak_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_pale_oak_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_pale_oak_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_pale_oak_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_spruce_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_spruce_log.json new file mode 100644 index 000000000..060308fb7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_spruce_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_spruce_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_spruce_log" + }, + "axis=z": { + "model": "minecraft:block/stripped_spruce_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_spruce_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_spruce_wood.json new file mode 100644 index 000000000..9473be646 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_spruce_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_spruce_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_spruce_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_spruce_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_warped_hyphae.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_warped_hyphae.json new file mode 100644 index 000000000..66fd7e362 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_warped_hyphae.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_warped_hyphae", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_warped_hyphae" + }, + "axis=z": { + "model": "minecraft:block/stripped_warped_hyphae", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_warped_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_warped_stem.json new file mode 100644 index 000000000..2e3fcc425 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/stripped_warped_stem.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_warped_stem", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_warped_stem" + }, + "axis=z": { + "model": "minecraft:block/stripped_warped_stem", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/structure_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/structure_block.json new file mode 100644 index 000000000..8a4c5b4b9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/structure_block.json @@ -0,0 +1,16 @@ +{ + "variants": { + "mode=corner": { + "model": "minecraft:block/structure_block_corner" + }, + "mode=data": { + "model": "minecraft:block/structure_block_data" + }, + "mode=load": { + "model": "minecraft:block/structure_block_load" + }, + "mode=save": { + "model": "minecraft:block/structure_block_save" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/structure_void.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/structure_void.json new file mode 100644 index 000000000..50c9d574a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/structure_void.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/structure_void" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sugar_cane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sugar_cane.json new file mode 100644 index 000000000..3eb914427 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sugar_cane.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/sugar_cane" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sunflower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sunflower.json new file mode 100644 index 000000000..18297b4bb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sunflower.json @@ -0,0 +1,10 @@ +{ + "variants": { + "half=lower": { + "model": "minecraft:block/sunflower_bottom" + }, + "half=upper": { + "model": "minecraft:block/sunflower_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/suspicious_gravel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/suspicious_gravel.json new file mode 100644 index 000000000..a773ba951 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/suspicious_gravel.json @@ -0,0 +1,16 @@ +{ + "variants": { + "dusted=0": { + "model": "minecraft:block/suspicious_gravel_0" + }, + "dusted=1": { + "model": "minecraft:block/suspicious_gravel_1" + }, + "dusted=2": { + "model": "minecraft:block/suspicious_gravel_2" + }, + "dusted=3": { + "model": "minecraft:block/suspicious_gravel_3" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/suspicious_sand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/suspicious_sand.json new file mode 100644 index 000000000..7e75a322e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/suspicious_sand.json @@ -0,0 +1,16 @@ +{ + "variants": { + "dusted=0": { + "model": "minecraft:block/suspicious_sand_0" + }, + "dusted=1": { + "model": "minecraft:block/suspicious_sand_1" + }, + "dusted=2": { + "model": "minecraft:block/suspicious_sand_2" + }, + "dusted=3": { + "model": "minecraft:block/suspicious_sand_3" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sweet_berry_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sweet_berry_bush.json new file mode 100644 index 000000000..131d7a70f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/sweet_berry_bush.json @@ -0,0 +1,16 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/sweet_berry_bush_stage0" + }, + "age=1": { + "model": "minecraft:block/sweet_berry_bush_stage1" + }, + "age=2": { + "model": "minecraft:block/sweet_berry_bush_stage2" + }, + "age=3": { + "model": "minecraft:block/sweet_berry_bush_stage3" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tall_dry_grass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tall_dry_grass.json new file mode 100644 index 000000000..3fa499834 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tall_dry_grass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/tall_dry_grass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tall_grass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tall_grass.json new file mode 100644 index 000000000..b014f0ba4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tall_grass.json @@ -0,0 +1,10 @@ +{ + "variants": { + "half=lower": { + "model": "minecraft:block/tall_grass_bottom" + }, + "half=upper": { + "model": "minecraft:block/tall_grass_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tall_seagrass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tall_seagrass.json new file mode 100644 index 000000000..c20e9a295 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tall_seagrass.json @@ -0,0 +1,10 @@ +{ + "variants": { + "half=lower": { + "model": "minecraft:block/tall_seagrass_bottom" + }, + "half=upper": { + "model": "minecraft:block/tall_seagrass_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/target.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/target.json new file mode 100644 index 000000000..7077459d0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/target.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/target" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/terracotta.json new file mode 100644 index 000000000..985d001a5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/test_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/test_block.json new file mode 100644 index 000000000..45bed9fc4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/test_block.json @@ -0,0 +1,16 @@ +{ + "variants": { + "mode=accept": { + "model": "minecraft:block/test_block_accept" + }, + "mode=fail": { + "model": "minecraft:block/test_block_fail" + }, + "mode=log": { + "model": "minecraft:block/test_block_log" + }, + "mode=start": { + "model": "minecraft:block/test_block_start" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/test_instance_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/test_instance_block.json new file mode 100644 index 000000000..213ba079e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/test_instance_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/test_instance_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tinted_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tinted_glass.json new file mode 100644 index 000000000..c9f85f1a8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tinted_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/tinted_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tnt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tnt.json new file mode 100644 index 000000000..a806a7de6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tnt.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/tnt" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/torch.json new file mode 100644 index 000000000..7d14911ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/torch.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/torch" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/torchflower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/torchflower.json new file mode 100644 index 000000000..ae774f10a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/torchflower.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/torchflower" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/torchflower_crop.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/torchflower_crop.json new file mode 100644 index 000000000..0c13d8fb1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/torchflower_crop.json @@ -0,0 +1,10 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/torchflower_crop_stage0" + }, + "age=1": { + "model": "minecraft:block/torchflower_crop_stage1" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/trapped_chest.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/trapped_chest.json new file mode 100644 index 000000000..fd8d40b19 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/trapped_chest.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/trapped_chest" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/trial_spawner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/trial_spawner.json new file mode 100644 index 000000000..f28215a93 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/trial_spawner.json @@ -0,0 +1,40 @@ +{ + "variants": { + "ominous=false,trial_spawner_state=active": { + "model": "minecraft:block/trial_spawner_active" + }, + "ominous=false,trial_spawner_state=cooldown": { + "model": "minecraft:block/trial_spawner" + }, + "ominous=false,trial_spawner_state=ejecting_reward": { + "model": "minecraft:block/trial_spawner_ejecting_reward" + }, + "ominous=false,trial_spawner_state=inactive": { + "model": "minecraft:block/trial_spawner" + }, + "ominous=false,trial_spawner_state=waiting_for_players": { + "model": "minecraft:block/trial_spawner_active" + }, + "ominous=false,trial_spawner_state=waiting_for_reward_ejection": { + "model": "minecraft:block/trial_spawner_active" + }, + "ominous=true,trial_spawner_state=active": { + "model": "minecraft:block/trial_spawner_active_ominous" + }, + "ominous=true,trial_spawner_state=cooldown": { + "model": "minecraft:block/trial_spawner_inactive_ominous" + }, + "ominous=true,trial_spawner_state=ejecting_reward": { + "model": "minecraft:block/trial_spawner_ejecting_reward_ominous" + }, + "ominous=true,trial_spawner_state=inactive": { + "model": "minecraft:block/trial_spawner_inactive_ominous" + }, + "ominous=true,trial_spawner_state=waiting_for_players": { + "model": "minecraft:block/trial_spawner_active_ominous" + }, + "ominous=true,trial_spawner_state=waiting_for_reward_ejection": { + "model": "minecraft:block/trial_spawner_active_ominous" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tripwire.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tripwire.json new file mode 100644 index 000000000..db2aed53f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tripwire.json @@ -0,0 +1,120 @@ +{ + "variants": { + "attached=false,east=false,north=false,south=false,west=false": { + "model": "minecraft:block/tripwire_ns" + }, + "attached=false,east=false,north=false,south=false,west=true": { + "model": "minecraft:block/tripwire_n", + "y": 270 + }, + "attached=false,east=false,north=false,south=true,west=false": { + "model": "minecraft:block/tripwire_n", + "y": 180 + }, + "attached=false,east=false,north=false,south=true,west=true": { + "model": "minecraft:block/tripwire_ne", + "y": 180 + }, + "attached=false,east=false,north=true,south=false,west=false": { + "model": "minecraft:block/tripwire_n" + }, + "attached=false,east=false,north=true,south=false,west=true": { + "model": "minecraft:block/tripwire_ne", + "y": 270 + }, + "attached=false,east=false,north=true,south=true,west=false": { + "model": "minecraft:block/tripwire_ns" + }, + "attached=false,east=false,north=true,south=true,west=true": { + "model": "minecraft:block/tripwire_nse", + "y": 180 + }, + "attached=false,east=true,north=false,south=false,west=false": { + "model": "minecraft:block/tripwire_n", + "y": 90 + }, + "attached=false,east=true,north=false,south=false,west=true": { + "model": "minecraft:block/tripwire_ns", + "y": 90 + }, + "attached=false,east=true,north=false,south=true,west=false": { + "model": "minecraft:block/tripwire_ne", + "y": 90 + }, + "attached=false,east=true,north=false,south=true,west=true": { + "model": "minecraft:block/tripwire_nse", + "y": 90 + }, + "attached=false,east=true,north=true,south=false,west=false": { + "model": "minecraft:block/tripwire_ne" + }, + "attached=false,east=true,north=true,south=false,west=true": { + "model": "minecraft:block/tripwire_nse", + "y": 270 + }, + "attached=false,east=true,north=true,south=true,west=false": { + "model": "minecraft:block/tripwire_nse" + }, + "attached=false,east=true,north=true,south=true,west=true": { + "model": "minecraft:block/tripwire_nsew" + }, + "attached=true,east=false,north=false,south=false,west=false": { + "model": "minecraft:block/tripwire_attached_ns" + }, + "attached=true,east=false,north=false,south=false,west=true": { + "model": "minecraft:block/tripwire_attached_n", + "y": 270 + }, + "attached=true,east=false,north=false,south=true,west=false": { + "model": "minecraft:block/tripwire_attached_n", + "y": 180 + }, + "attached=true,east=false,north=false,south=true,west=true": { + "model": "minecraft:block/tripwire_attached_ne", + "y": 180 + }, + "attached=true,east=false,north=true,south=false,west=false": { + "model": "minecraft:block/tripwire_attached_n" + }, + "attached=true,east=false,north=true,south=false,west=true": { + "model": "minecraft:block/tripwire_attached_ne", + "y": 270 + }, + "attached=true,east=false,north=true,south=true,west=false": { + "model": "minecraft:block/tripwire_attached_ns" + }, + "attached=true,east=false,north=true,south=true,west=true": { + "model": "minecraft:block/tripwire_attached_nse", + "y": 180 + }, + "attached=true,east=true,north=false,south=false,west=false": { + "model": "minecraft:block/tripwire_attached_n", + "y": 90 + }, + "attached=true,east=true,north=false,south=false,west=true": { + "model": "minecraft:block/tripwire_attached_ns", + "y": 90 + }, + "attached=true,east=true,north=false,south=true,west=false": { + "model": "minecraft:block/tripwire_attached_ne", + "y": 90 + }, + "attached=true,east=true,north=false,south=true,west=true": { + "model": "minecraft:block/tripwire_attached_nse", + "y": 90 + }, + "attached=true,east=true,north=true,south=false,west=false": { + "model": "minecraft:block/tripwire_attached_ne" + }, + "attached=true,east=true,north=true,south=false,west=true": { + "model": "minecraft:block/tripwire_attached_nse", + "y": 270 + }, + "attached=true,east=true,north=true,south=true,west=false": { + "model": "minecraft:block/tripwire_attached_nse" + }, + "attached=true,east=true,north=true,south=true,west=true": { + "model": "minecraft:block/tripwire_attached_nsew" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tripwire_hook.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tripwire_hook.json new file mode 100644 index 000000000..67389727f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tripwire_hook.json @@ -0,0 +1,64 @@ +{ + "variants": { + "attached=false,facing=east,powered=false": { + "model": "minecraft:block/tripwire_hook", + "y": 90 + }, + "attached=false,facing=east,powered=true": { + "model": "minecraft:block/tripwire_hook_on", + "y": 90 + }, + "attached=false,facing=north,powered=false": { + "model": "minecraft:block/tripwire_hook" + }, + "attached=false,facing=north,powered=true": { + "model": "minecraft:block/tripwire_hook_on" + }, + "attached=false,facing=south,powered=false": { + "model": "minecraft:block/tripwire_hook", + "y": 180 + }, + "attached=false,facing=south,powered=true": { + "model": "minecraft:block/tripwire_hook_on", + "y": 180 + }, + "attached=false,facing=west,powered=false": { + "model": "minecraft:block/tripwire_hook", + "y": 270 + }, + "attached=false,facing=west,powered=true": { + "model": "minecraft:block/tripwire_hook_on", + "y": 270 + }, + "attached=true,facing=east,powered=false": { + "model": "minecraft:block/tripwire_hook_attached", + "y": 90 + }, + "attached=true,facing=east,powered=true": { + "model": "minecraft:block/tripwire_hook_attached_on", + "y": 90 + }, + "attached=true,facing=north,powered=false": { + "model": "minecraft:block/tripwire_hook_attached" + }, + "attached=true,facing=north,powered=true": { + "model": "minecraft:block/tripwire_hook_attached_on" + }, + "attached=true,facing=south,powered=false": { + "model": "minecraft:block/tripwire_hook_attached", + "y": 180 + }, + "attached=true,facing=south,powered=true": { + "model": "minecraft:block/tripwire_hook_attached_on", + "y": 180 + }, + "attached=true,facing=west,powered=false": { + "model": "minecraft:block/tripwire_hook_attached", + "y": 270 + }, + "attached=true,facing=west,powered=true": { + "model": "minecraft:block/tripwire_hook_attached_on", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tube_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tube_coral.json new file mode 100644 index 000000000..89f376277 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tube_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/tube_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tube_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tube_coral_block.json new file mode 100644 index 000000000..68894a85a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tube_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/tube_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tube_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tube_coral_fan.json new file mode 100644 index 000000000..518de272b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tube_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/tube_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tube_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tube_coral_wall_fan.json new file mode 100644 index 000000000..31a626a13 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tube_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/tube_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/tube_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/tube_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/tube_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff.json new file mode 100644 index 000000000..eff0d2004 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/tuff" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_brick_slab.json new file mode 100644 index 000000000..e434866ab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/tuff_brick_slab" + }, + "type=double": { + "model": "minecraft:block/tuff_bricks" + }, + "type=top": { + "model": "minecraft:block/tuff_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_brick_stairs.json new file mode 100644 index 000000000..f97344379 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/tuff_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/tuff_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/tuff_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/tuff_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/tuff_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/tuff_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/tuff_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/tuff_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/tuff_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/tuff_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/tuff_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/tuff_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_brick_wall.json new file mode 100644 index 000000000..e82f5f6fd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_bricks.json new file mode 100644 index 000000000..72b99e0c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/tuff_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_slab.json new file mode 100644 index 000000000..f77d48aae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/tuff_slab" + }, + "type=double": { + "model": "minecraft:block/tuff" + }, + "type=top": { + "model": "minecraft:block/tuff_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_stairs.json new file mode 100644 index 000000000..d2175ab52 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/tuff_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/tuff_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/tuff_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/tuff_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/tuff_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/tuff_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/tuff_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/tuff_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/tuff_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/tuff_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/tuff_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/tuff_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_wall.json new file mode 100644 index 000000000..fba231a62 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/tuff_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/tuff_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/turtle_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/turtle_egg.json new file mode 100644 index 000000000..ac5157d6c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/turtle_egg.json @@ -0,0 +1,208 @@ +{ + "variants": { + "eggs=1,hatch=0": [ + { + "model": "minecraft:block/turtle_egg" + }, + { + "model": "minecraft:block/turtle_egg", + "y": 90 + }, + { + "model": "minecraft:block/turtle_egg", + "y": 180 + }, + { + "model": "minecraft:block/turtle_egg", + "y": 270 + } + ], + "eggs=1,hatch=1": [ + { + "model": "minecraft:block/slightly_cracked_turtle_egg" + }, + { + "model": "minecraft:block/slightly_cracked_turtle_egg", + "y": 90 + }, + { + "model": "minecraft:block/slightly_cracked_turtle_egg", + "y": 180 + }, + { + "model": "minecraft:block/slightly_cracked_turtle_egg", + "y": 270 + } + ], + "eggs=1,hatch=2": [ + { + "model": "minecraft:block/very_cracked_turtle_egg" + }, + { + "model": "minecraft:block/very_cracked_turtle_egg", + "y": 90 + }, + { + "model": "minecraft:block/very_cracked_turtle_egg", + "y": 180 + }, + { + "model": "minecraft:block/very_cracked_turtle_egg", + "y": 270 + } + ], + "eggs=2,hatch=0": [ + { + "model": "minecraft:block/two_turtle_eggs" + }, + { + "model": "minecraft:block/two_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/two_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/two_turtle_eggs", + "y": 270 + } + ], + "eggs=2,hatch=1": [ + { + "model": "minecraft:block/two_slightly_cracked_turtle_eggs" + }, + { + "model": "minecraft:block/two_slightly_cracked_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/two_slightly_cracked_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/two_slightly_cracked_turtle_eggs", + "y": 270 + } + ], + "eggs=2,hatch=2": [ + { + "model": "minecraft:block/two_very_cracked_turtle_eggs" + }, + { + "model": "minecraft:block/two_very_cracked_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/two_very_cracked_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/two_very_cracked_turtle_eggs", + "y": 270 + } + ], + "eggs=3,hatch=0": [ + { + "model": "minecraft:block/three_turtle_eggs" + }, + { + "model": "minecraft:block/three_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/three_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/three_turtle_eggs", + "y": 270 + } + ], + "eggs=3,hatch=1": [ + { + "model": "minecraft:block/three_slightly_cracked_turtle_eggs" + }, + { + "model": "minecraft:block/three_slightly_cracked_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/three_slightly_cracked_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/three_slightly_cracked_turtle_eggs", + "y": 270 + } + ], + "eggs=3,hatch=2": [ + { + "model": "minecraft:block/three_very_cracked_turtle_eggs" + }, + { + "model": "minecraft:block/three_very_cracked_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/three_very_cracked_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/three_very_cracked_turtle_eggs", + "y": 270 + } + ], + "eggs=4,hatch=0": [ + { + "model": "minecraft:block/four_turtle_eggs" + }, + { + "model": "minecraft:block/four_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/four_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/four_turtle_eggs", + "y": 270 + } + ], + "eggs=4,hatch=1": [ + { + "model": "minecraft:block/four_slightly_cracked_turtle_eggs" + }, + { + "model": "minecraft:block/four_slightly_cracked_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/four_slightly_cracked_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/four_slightly_cracked_turtle_eggs", + "y": 270 + } + ], + "eggs=4,hatch=2": [ + { + "model": "minecraft:block/four_very_cracked_turtle_eggs" + }, + { + "model": "minecraft:block/four_very_cracked_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/four_very_cracked_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/four_very_cracked_turtle_eggs", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/twisting_vines.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/twisting_vines.json new file mode 100644 index 000000000..baef54f88 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/twisting_vines.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/twisting_vines" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/twisting_vines_plant.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/twisting_vines_plant.json new file mode 100644 index 000000000..83020268b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/twisting_vines_plant.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/twisting_vines_plant" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/vault.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/vault.json new file mode 100644 index 000000000..ae4ad7669 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/vault.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,ominous=false,vault_state=active": { + "model": "minecraft:block/vault_active", + "y": 90 + }, + "facing=east,ominous=false,vault_state=ejecting": { + "model": "minecraft:block/vault_ejecting_reward", + "y": 90 + }, + "facing=east,ominous=false,vault_state=inactive": { + "model": "minecraft:block/vault", + "y": 90 + }, + "facing=east,ominous=false,vault_state=unlocking": { + "model": "minecraft:block/vault_unlocking", + "y": 90 + }, + "facing=east,ominous=true,vault_state=active": { + "model": "minecraft:block/vault_active_ominous", + "y": 90 + }, + "facing=east,ominous=true,vault_state=ejecting": { + "model": "minecraft:block/vault_ejecting_reward_ominous", + "y": 90 + }, + "facing=east,ominous=true,vault_state=inactive": { + "model": "minecraft:block/vault_ominous", + "y": 90 + }, + "facing=east,ominous=true,vault_state=unlocking": { + "model": "minecraft:block/vault_unlocking_ominous", + "y": 90 + }, + "facing=north,ominous=false,vault_state=active": { + "model": "minecraft:block/vault_active" + }, + "facing=north,ominous=false,vault_state=ejecting": { + "model": "minecraft:block/vault_ejecting_reward" + }, + "facing=north,ominous=false,vault_state=inactive": { + "model": "minecraft:block/vault" + }, + "facing=north,ominous=false,vault_state=unlocking": { + "model": "minecraft:block/vault_unlocking" + }, + "facing=north,ominous=true,vault_state=active": { + "model": "minecraft:block/vault_active_ominous" + }, + "facing=north,ominous=true,vault_state=ejecting": { + "model": "minecraft:block/vault_ejecting_reward_ominous" + }, + "facing=north,ominous=true,vault_state=inactive": { + "model": "minecraft:block/vault_ominous" + }, + "facing=north,ominous=true,vault_state=unlocking": { + "model": "minecraft:block/vault_unlocking_ominous" + }, + "facing=south,ominous=false,vault_state=active": { + "model": "minecraft:block/vault_active", + "y": 180 + }, + "facing=south,ominous=false,vault_state=ejecting": { + "model": "minecraft:block/vault_ejecting_reward", + "y": 180 + }, + "facing=south,ominous=false,vault_state=inactive": { + "model": "minecraft:block/vault", + "y": 180 + }, + "facing=south,ominous=false,vault_state=unlocking": { + "model": "minecraft:block/vault_unlocking", + "y": 180 + }, + "facing=south,ominous=true,vault_state=active": { + "model": "minecraft:block/vault_active_ominous", + "y": 180 + }, + "facing=south,ominous=true,vault_state=ejecting": { + "model": "minecraft:block/vault_ejecting_reward_ominous", + "y": 180 + }, + "facing=south,ominous=true,vault_state=inactive": { + "model": "minecraft:block/vault_ominous", + "y": 180 + }, + "facing=south,ominous=true,vault_state=unlocking": { + "model": "minecraft:block/vault_unlocking_ominous", + "y": 180 + }, + "facing=west,ominous=false,vault_state=active": { + "model": "minecraft:block/vault_active", + "y": 270 + }, + "facing=west,ominous=false,vault_state=ejecting": { + "model": "minecraft:block/vault_ejecting_reward", + "y": 270 + }, + "facing=west,ominous=false,vault_state=inactive": { + "model": "minecraft:block/vault", + "y": 270 + }, + "facing=west,ominous=false,vault_state=unlocking": { + "model": "minecraft:block/vault_unlocking", + "y": 270 + }, + "facing=west,ominous=true,vault_state=active": { + "model": "minecraft:block/vault_active_ominous", + "y": 270 + }, + "facing=west,ominous=true,vault_state=ejecting": { + "model": "minecraft:block/vault_ejecting_reward_ominous", + "y": 270 + }, + "facing=west,ominous=true,vault_state=inactive": { + "model": "minecraft:block/vault_ominous", + "y": 270 + }, + "facing=west,ominous=true,vault_state=unlocking": { + "model": "minecraft:block/vault_unlocking_ominous", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/verdant_froglight.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/verdant_froglight.json new file mode 100644 index 000000000..496c19c18 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/verdant_froglight.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/verdant_froglight_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/verdant_froglight" + }, + "axis=z": { + "model": "minecraft:block/verdant_froglight_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/vine.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/vine.json new file mode 100644 index 000000000..66222182c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/vine.json @@ -0,0 +1,120 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/vine" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/vine" + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/vine", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/vine", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/vine", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/vine", + "uvlock": true, + "y": 180 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/vine", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/vine", + "uvlock": true, + "y": 270 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/vine", + "uvlock": true, + "x": 270 + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/vine", + "uvlock": true, + "x": 270 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/void_air.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/void_air.json new file mode 100644 index 000000000..2c8f02f06 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/void_air.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/air" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wall_torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wall_torch.json new file mode 100644 index 000000000..7314344ca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wall_torch.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/wall_torch" + }, + "facing=north": { + "model": "minecraft:block/wall_torch", + "y": 270 + }, + "facing=south": { + "model": "minecraft:block/wall_torch", + "y": 90 + }, + "facing=west": { + "model": "minecraft:block/wall_torch", + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_button.json new file mode 100644 index 000000000..7f0a2e67e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/warped_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/warped_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/warped_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/warped_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/warped_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/warped_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/warped_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/warped_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/warped_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/warped_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/warped_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/warped_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/warped_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_door.json new file mode 100644 index 000000000..0870eaa45 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/warped_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/warped_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/warped_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/warped_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/warped_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/warped_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/warped_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/warped_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/warped_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/warped_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/warped_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/warped_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/warped_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/warped_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/warped_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/warped_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/warped_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/warped_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/warped_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/warped_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/warped_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/warped_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/warped_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/warped_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/warped_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/warped_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/warped_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/warped_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/warped_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/warped_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/warped_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/warped_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_fence.json new file mode 100644 index 000000000..964b26f8b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/warped_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/warped_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/warped_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/warped_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/warped_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_fence_gate.json new file mode 100644 index 000000000..2688cc955 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/warped_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/warped_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/warped_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/warped_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/warped_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/warped_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/warped_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/warped_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/warped_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/warped_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/warped_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/warped_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/warped_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/warped_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/warped_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/warped_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_fungus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_fungus.json new file mode 100644 index 000000000..49ebfb005 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_fungus.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_fungus" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_hanging_sign.json new file mode 100644 index 000000000..512f8e6c5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_hyphae.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_hyphae.json new file mode 100644 index 000000000..a96fcb852 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_hyphae.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/warped_hyphae", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/warped_hyphae" + }, + "axis=z": { + "model": "minecraft:block/warped_hyphae", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_nylium.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_nylium.json new file mode 100644 index 000000000..f9f4ca89e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_nylium.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_nylium" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_planks.json new file mode 100644 index 000000000..e2d95a728 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_pressure_plate.json new file mode 100644 index 000000000..9c3d2d39d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/warped_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/warped_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_roots.json new file mode 100644 index 000000000..7e575051c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_roots.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_roots" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_sign.json new file mode 100644 index 000000000..73befe6b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_slab.json new file mode 100644 index 000000000..012d24708 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/warped_slab" + }, + "type=double": { + "model": "minecraft:block/warped_planks" + }, + "type=top": { + "model": "minecraft:block/warped_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_stairs.json new file mode 100644 index 000000000..a94c42ec9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/warped_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/warped_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/warped_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/warped_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/warped_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/warped_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/warped_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/warped_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/warped_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/warped_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/warped_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/warped_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_stem.json new file mode 100644 index 000000000..5726b9a45 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_stem.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/warped_stem", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/warped_stem" + }, + "axis=z": { + "model": "minecraft:block/warped_stem", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_trapdoor.json new file mode 100644 index 000000000..16d8a5ee1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/warped_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/warped_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/warped_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/warped_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/warped_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/warped_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/warped_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/warped_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/warped_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/warped_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/warped_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/warped_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/warped_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/warped_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/warped_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/warped_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_wall_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_wall_hanging_sign.json new file mode 100644 index 000000000..512f8e6c5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_wall_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_wall_sign.json new file mode 100644 index 000000000..73befe6b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_wart_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_wart_block.json new file mode 100644 index 000000000..6ebede614 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/warped_wart_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_wart_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/water.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/water.json new file mode 100644 index 000000000..99fd360b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/water.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/water" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/water_cauldron.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/water_cauldron.json new file mode 100644 index 000000000..130d7b6b9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/water_cauldron.json @@ -0,0 +1,13 @@ +{ + "variants": { + "level=1": { + "model": "minecraft:block/water_cauldron_level1" + }, + "level=2": { + "model": "minecraft:block/water_cauldron_level2" + }, + "level=3": { + "model": "minecraft:block/water_cauldron_full" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_chiseled_copper.json new file mode 100644 index 000000000..6b2ccc853 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_chiseled_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_copper_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_copper_block.json new file mode 100644 index 000000000..b440184df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_copper_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/copper_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_copper_bulb.json new file mode 100644 index 000000000..5929d9b4f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_copper_bulb.json @@ -0,0 +1,16 @@ +{ + "variants": { + "lit=false,powered=false": { + "model": "minecraft:block/copper_bulb" + }, + "lit=false,powered=true": { + "model": "minecraft:block/copper_bulb_powered" + }, + "lit=true,powered=false": { + "model": "minecraft:block/copper_bulb_lit" + }, + "lit=true,powered=true": { + "model": "minecraft:block/copper_bulb_lit_powered" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_copper_door.json new file mode 100644 index 000000000..44dcbdef4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_copper_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/copper_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/copper_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/copper_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/copper_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/copper_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/copper_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/copper_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/copper_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/copper_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/copper_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/copper_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/copper_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/copper_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/copper_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/copper_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/copper_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/copper_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/copper_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/copper_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/copper_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/copper_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/copper_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/copper_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/copper_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/copper_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/copper_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/copper_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/copper_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/copper_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/copper_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/copper_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/copper_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_copper_grate.json new file mode 100644 index 000000000..2f7bc9ec3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_copper_grate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/copper_grate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_copper_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_copper_trapdoor.json new file mode 100644 index 000000000..837c01b9e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_copper_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/copper_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/copper_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/copper_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/copper_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/copper_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/copper_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/copper_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/copper_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/copper_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/copper_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper.json new file mode 100644 index 000000000..2105f293c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cut_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper_slab.json new file mode 100644 index 000000000..31d149b52 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/cut_copper_slab" + }, + "type=double": { + "model": "minecraft:block/cut_copper" + }, + "type=top": { + "model": "minecraft:block/cut_copper_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper_stairs.json new file mode 100644 index 000000000..95160aaf1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/cut_copper_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_chiseled_copper.json new file mode 100644 index 000000000..3b87926a4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_chiseled_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper.json new file mode 100644 index 000000000..ed711e799 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_bulb.json new file mode 100644 index 000000000..203fd0f56 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_bulb.json @@ -0,0 +1,16 @@ +{ + "variants": { + "lit=false,powered=false": { + "model": "minecraft:block/exposed_copper_bulb" + }, + "lit=false,powered=true": { + "model": "minecraft:block/exposed_copper_bulb_powered" + }, + "lit=true,powered=false": { + "model": "minecraft:block/exposed_copper_bulb_lit" + }, + "lit=true,powered=true": { + "model": "minecraft:block/exposed_copper_bulb_lit_powered" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_door.json new file mode 100644 index 000000000..f4f304897 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_grate.json new file mode 100644 index 000000000..49a6446fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_grate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_copper_grate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_trapdoor.json new file mode 100644 index 000000000..e8734ba35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper.json new file mode 100644 index 000000000..3b465b0bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_cut_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper_slab.json new file mode 100644 index 000000000..81b09c734 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/exposed_cut_copper_slab" + }, + "type=double": { + "model": "minecraft:block/exposed_cut_copper" + }, + "type=top": { + "model": "minecraft:block/exposed_cut_copper_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper_stairs.json new file mode 100644 index 000000000..f9863f6c8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_chiseled_copper.json new file mode 100644 index 000000000..ea362c155 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_chiseled_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper.json new file mode 100644 index 000000000..d7ce62512 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_bulb.json new file mode 100644 index 000000000..1e58f046b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_bulb.json @@ -0,0 +1,16 @@ +{ + "variants": { + "lit=false,powered=false": { + "model": "minecraft:block/oxidized_copper_bulb" + }, + "lit=false,powered=true": { + "model": "minecraft:block/oxidized_copper_bulb_powered" + }, + "lit=true,powered=false": { + "model": "minecraft:block/oxidized_copper_bulb_lit" + }, + "lit=true,powered=true": { + "model": "minecraft:block/oxidized_copper_bulb_lit_powered" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_door.json new file mode 100644 index 000000000..2cb098048 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_grate.json new file mode 100644 index 000000000..e8039a9a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_grate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_copper_grate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_trapdoor.json new file mode 100644 index 000000000..c5ceb4cd7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper.json new file mode 100644 index 000000000..58bf24a1c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_cut_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper_slab.json new file mode 100644 index 000000000..e91b8c962 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/oxidized_cut_copper_slab" + }, + "type=double": { + "model": "minecraft:block/oxidized_cut_copper" + }, + "type=top": { + "model": "minecraft:block/oxidized_cut_copper_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper_stairs.json new file mode 100644 index 000000000..5b79a1e8b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_chiseled_copper.json new file mode 100644 index 000000000..473fa8cba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_chiseled_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper.json new file mode 100644 index 000000000..a1be23f64 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_bulb.json new file mode 100644 index 000000000..9a5a6847f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_bulb.json @@ -0,0 +1,16 @@ +{ + "variants": { + "lit=false,powered=false": { + "model": "minecraft:block/weathered_copper_bulb" + }, + "lit=false,powered=true": { + "model": "minecraft:block/weathered_copper_bulb_powered" + }, + "lit=true,powered=false": { + "model": "minecraft:block/weathered_copper_bulb_lit" + }, + "lit=true,powered=true": { + "model": "minecraft:block/weathered_copper_bulb_lit_powered" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_door.json new file mode 100644 index 000000000..168213cd4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_grate.json new file mode 100644 index 000000000..cb7e161ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_grate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_copper_grate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_trapdoor.json new file mode 100644 index 000000000..3143d484a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper.json new file mode 100644 index 000000000..397060505 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_cut_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper_slab.json new file mode 100644 index 000000000..d13942edd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/weathered_cut_copper_slab" + }, + "type=double": { + "model": "minecraft:block/weathered_cut_copper" + }, + "type=top": { + "model": "minecraft:block/weathered_cut_copper_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper_stairs.json new file mode 100644 index 000000000..aff6eadd9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_chiseled_copper.json new file mode 100644 index 000000000..473fa8cba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_chiseled_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_copper.json new file mode 100644 index 000000000..a1be23f64 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_copper_bulb.json new file mode 100644 index 000000000..9a5a6847f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_copper_bulb.json @@ -0,0 +1,16 @@ +{ + "variants": { + "lit=false,powered=false": { + "model": "minecraft:block/weathered_copper_bulb" + }, + "lit=false,powered=true": { + "model": "minecraft:block/weathered_copper_bulb_powered" + }, + "lit=true,powered=false": { + "model": "minecraft:block/weathered_copper_bulb_lit" + }, + "lit=true,powered=true": { + "model": "minecraft:block/weathered_copper_bulb_lit_powered" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_copper_door.json new file mode 100644 index 000000000..168213cd4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_copper_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_copper_grate.json new file mode 100644 index 000000000..cb7e161ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_copper_grate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_copper_grate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_copper_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_copper_trapdoor.json new file mode 100644 index 000000000..3143d484a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_copper_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper.json new file mode 100644 index 000000000..397060505 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_cut_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper_slab.json new file mode 100644 index 000000000..d13942edd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/weathered_cut_copper_slab" + }, + "type=double": { + "model": "minecraft:block/weathered_cut_copper" + }, + "type=top": { + "model": "minecraft:block/weathered_cut_copper_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper_stairs.json new file mode 100644 index 000000000..aff6eadd9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weeping_vines.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weeping_vines.json new file mode 100644 index 000000000..cbcbec387 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weeping_vines.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weeping_vines" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weeping_vines_plant.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weeping_vines_plant.json new file mode 100644 index 000000000..ff13a3d4b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/weeping_vines_plant.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weeping_vines_plant" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wet_sponge.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wet_sponge.json new file mode 100644 index 000000000..2a448bf72 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wet_sponge.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/wet_sponge" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wheat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wheat.json new file mode 100644 index 000000000..79f427397 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wheat.json @@ -0,0 +1,28 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/wheat_stage0" + }, + "age=1": { + "model": "minecraft:block/wheat_stage1" + }, + "age=2": { + "model": "minecraft:block/wheat_stage2" + }, + "age=3": { + "model": "minecraft:block/wheat_stage3" + }, + "age=4": { + "model": "minecraft:block/wheat_stage4" + }, + "age=5": { + "model": "minecraft:block/wheat_stage5" + }, + "age=6": { + "model": "minecraft:block/wheat_stage6" + }, + "age=7": { + "model": "minecraft:block/wheat_stage7" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_candle.json new file mode 100644 index 000000000..a42b36c9a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/white_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/white_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/white_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/white_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/white_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/white_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/white_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/white_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_candle_cake.json new file mode 100644 index 000000000..e50830a6b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/white_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/white_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_carpet.json new file mode 100644 index 000000000..afde63818 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/white_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_concrete.json new file mode 100644 index 000000000..5ce10cd26 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/white_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_concrete_powder.json new file mode 100644 index 000000000..66cfe5e10 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/white_concrete_powder" + }, + { + "model": "minecraft:block/white_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/white_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/white_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_glazed_terracotta.json new file mode 100644 index 000000000..8c64ce09f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/white_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/white_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/white_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/white_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_shulker_box.json new file mode 100644 index 000000000..36973a4db --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/white_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_stained_glass.json new file mode 100644 index 000000000..2fc6c58c9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/white_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_stained_glass_pane.json new file mode 100644 index 000000000..247883a67 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_terracotta.json new file mode 100644 index 000000000..184ea8087 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/white_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_tulip.json new file mode 100644 index 000000000..a5d01edbe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_tulip.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/white_tulip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_wall_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_wool.json new file mode 100644 index 000000000..3c23fc093 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/white_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/white_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wildflowers.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wildflowers.json new file mode 100644 index 000000000..3a2829ef2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wildflowers.json @@ -0,0 +1,156 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/wildflowers_1" + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_1", + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_1", + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_1", + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_2" + }, + "when": { + "facing": "north", + "flower_amount": "2|3|4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_2", + "y": 90 + }, + "when": { + "facing": "east", + "flower_amount": "2|3|4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_2", + "y": 180 + }, + "when": { + "facing": "south", + "flower_amount": "2|3|4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_2", + "y": 270 + }, + "when": { + "facing": "west", + "flower_amount": "2|3|4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_3" + }, + "when": { + "facing": "north", + "flower_amount": "3|4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_3", + "y": 90 + }, + "when": { + "facing": "east", + "flower_amount": "3|4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_3", + "y": 180 + }, + "when": { + "facing": "south", + "flower_amount": "3|4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_3", + "y": 270 + }, + "when": { + "facing": "west", + "flower_amount": "3|4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_4" + }, + "when": { + "facing": "north", + "flower_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_4", + "y": 90 + }, + "when": { + "facing": "east", + "flower_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_4", + "y": 180 + }, + "when": { + "facing": "south", + "flower_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_4", + "y": 270 + }, + "when": { + "facing": "west", + "flower_amount": "4" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wither_rose.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wither_rose.json new file mode 100644 index 000000000..f0175194a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wither_rose.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/wither_rose" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wither_skeleton_skull.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wither_skeleton_skull.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wither_skeleton_skull.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wither_skeleton_wall_skull.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wither_skeleton_wall_skull.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/wither_skeleton_wall_skull.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_candle.json new file mode 100644 index 000000000..afe85e3c8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/yellow_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/yellow_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/yellow_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/yellow_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/yellow_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/yellow_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/yellow_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/yellow_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_candle_cake.json new file mode 100644 index 000000000..c0e90bf14 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/yellow_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/yellow_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_carpet.json new file mode 100644 index 000000000..3586a2774 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/yellow_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_concrete.json new file mode 100644 index 000000000..92ca5a202 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/yellow_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_concrete_powder.json new file mode 100644 index 000000000..7b103da42 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/yellow_concrete_powder" + }, + { + "model": "minecraft:block/yellow_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/yellow_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/yellow_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_glazed_terracotta.json new file mode 100644 index 000000000..d4f7be2c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/yellow_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/yellow_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/yellow_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/yellow_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_shulker_box.json new file mode 100644 index 000000000..c2b02b98e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/yellow_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_stained_glass.json new file mode 100644 index 000000000..fdf0757ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/yellow_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_stained_glass_pane.json new file mode 100644 index 000000000..24cbfa52e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_terracotta.json new file mode 100644 index 000000000..4a2aca6bd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/yellow_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_wall_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_wool.json new file mode 100644 index 000000000..1392ae513 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/yellow_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/yellow_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/zombie_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/zombie_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/zombie_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/zombie_wall_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/zombie_wall_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/blockstates/zombie_wall_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/armadillo_scute.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/armadillo_scute.json new file mode 100644 index 000000000..37f47b7d5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/armadillo_scute.json @@ -0,0 +1,13 @@ +{ + "layers": { + "wolf_body": [ + { + "texture": "minecraft:armadillo_scute" + }, + { + "dyeable": {}, + "texture": "minecraft:armadillo_scute_overlay" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/black_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/black_carpet.json new file mode 100644 index 000000000..effa588ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/black_carpet.json @@ -0,0 +1,9 @@ +{ + "layers": { + "llama_body": [ + { + "texture": "minecraft:black" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/black_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/black_harness.json new file mode 100644 index 000000000..5d9f10a08 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/black_harness.json @@ -0,0 +1,9 @@ +{ + "layers": { + "happy_ghast_body": [ + { + "texture": "minecraft:black_harness" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/blue_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/blue_carpet.json new file mode 100644 index 000000000..693be95a4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/blue_carpet.json @@ -0,0 +1,9 @@ +{ + "layers": { + "llama_body": [ + { + "texture": "minecraft:blue" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/blue_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/blue_harness.json new file mode 100644 index 000000000..e1022efa6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/blue_harness.json @@ -0,0 +1,9 @@ +{ + "layers": { + "happy_ghast_body": [ + { + "texture": "minecraft:blue_harness" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/brown_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/brown_carpet.json new file mode 100644 index 000000000..20f604988 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/brown_carpet.json @@ -0,0 +1,9 @@ +{ + "layers": { + "llama_body": [ + { + "texture": "minecraft:brown" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/brown_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/brown_harness.json new file mode 100644 index 000000000..59607ff76 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/brown_harness.json @@ -0,0 +1,9 @@ +{ + "layers": { + "happy_ghast_body": [ + { + "texture": "minecraft:brown_harness" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/chainmail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/chainmail.json new file mode 100644 index 000000000..f2aab0f59 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/chainmail.json @@ -0,0 +1,14 @@ +{ + "layers": { + "humanoid": [ + { + "texture": "minecraft:chainmail" + } + ], + "humanoid_leggings": [ + { + "texture": "minecraft:chainmail" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/cyan_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/cyan_carpet.json new file mode 100644 index 000000000..20bb1e352 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/cyan_carpet.json @@ -0,0 +1,9 @@ +{ + "layers": { + "llama_body": [ + { + "texture": "minecraft:cyan" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/cyan_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/cyan_harness.json new file mode 100644 index 000000000..e80cbca36 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/cyan_harness.json @@ -0,0 +1,9 @@ +{ + "layers": { + "happy_ghast_body": [ + { + "texture": "minecraft:cyan_harness" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/diamond.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/diamond.json new file mode 100644 index 000000000..0fbf43ec5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/diamond.json @@ -0,0 +1,19 @@ +{ + "layers": { + "horse_body": [ + { + "texture": "minecraft:diamond" + } + ], + "humanoid": [ + { + "texture": "minecraft:diamond" + } + ], + "humanoid_leggings": [ + { + "texture": "minecraft:diamond" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/elytra.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/elytra.json new file mode 100644 index 000000000..2a6806f5c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/elytra.json @@ -0,0 +1,10 @@ +{ + "layers": { + "wings": [ + { + "texture": "minecraft:elytra", + "use_player_texture": true + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/gold.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/gold.json new file mode 100644 index 000000000..477deb655 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/gold.json @@ -0,0 +1,19 @@ +{ + "layers": { + "horse_body": [ + { + "texture": "minecraft:gold" + } + ], + "humanoid": [ + { + "texture": "minecraft:gold" + } + ], + "humanoid_leggings": [ + { + "texture": "minecraft:gold" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/gray_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/gray_carpet.json new file mode 100644 index 000000000..aa9383165 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/gray_carpet.json @@ -0,0 +1,9 @@ +{ + "layers": { + "llama_body": [ + { + "texture": "minecraft:gray" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/gray_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/gray_harness.json new file mode 100644 index 000000000..f7dce6815 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/gray_harness.json @@ -0,0 +1,9 @@ +{ + "layers": { + "happy_ghast_body": [ + { + "texture": "minecraft:gray_harness" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/green_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/green_carpet.json new file mode 100644 index 000000000..a91f5518f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/green_carpet.json @@ -0,0 +1,9 @@ +{ + "layers": { + "llama_body": [ + { + "texture": "minecraft:green" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/green_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/green_harness.json new file mode 100644 index 000000000..71797ca31 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/green_harness.json @@ -0,0 +1,9 @@ +{ + "layers": { + "happy_ghast_body": [ + { + "texture": "minecraft:green_harness" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/iron.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/iron.json new file mode 100644 index 000000000..e5777d8e3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/iron.json @@ -0,0 +1,19 @@ +{ + "layers": { + "horse_body": [ + { + "texture": "minecraft:iron" + } + ], + "humanoid": [ + { + "texture": "minecraft:iron" + } + ], + "humanoid_leggings": [ + { + "texture": "minecraft:iron" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/leather.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/leather.json new file mode 100644 index 000000000..f5901c3b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/leather.json @@ -0,0 +1,34 @@ +{ + "layers": { + "horse_body": [ + { + "dyeable": { + "color_when_undyed": -6265536 + }, + "texture": "minecraft:leather" + } + ], + "humanoid": [ + { + "dyeable": { + "color_when_undyed": -6265536 + }, + "texture": "minecraft:leather" + }, + { + "texture": "minecraft:leather_overlay" + } + ], + "humanoid_leggings": [ + { + "dyeable": { + "color_when_undyed": -6265536 + }, + "texture": "minecraft:leather" + }, + { + "texture": "minecraft:leather_overlay" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/light_blue_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/light_blue_carpet.json new file mode 100644 index 000000000..2ba39a440 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/light_blue_carpet.json @@ -0,0 +1,9 @@ +{ + "layers": { + "llama_body": [ + { + "texture": "minecraft:light_blue" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/light_blue_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/light_blue_harness.json new file mode 100644 index 000000000..37d50d47d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/light_blue_harness.json @@ -0,0 +1,9 @@ +{ + "layers": { + "happy_ghast_body": [ + { + "texture": "minecraft:light_blue_harness" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/light_gray_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/light_gray_carpet.json new file mode 100644 index 000000000..12e5d2dd7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/light_gray_carpet.json @@ -0,0 +1,9 @@ +{ + "layers": { + "llama_body": [ + { + "texture": "minecraft:light_gray" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/light_gray_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/light_gray_harness.json new file mode 100644 index 000000000..14322de9d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/light_gray_harness.json @@ -0,0 +1,9 @@ +{ + "layers": { + "happy_ghast_body": [ + { + "texture": "minecraft:light_gray_harness" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/lime_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/lime_carpet.json new file mode 100644 index 000000000..cc48b804d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/lime_carpet.json @@ -0,0 +1,9 @@ +{ + "layers": { + "llama_body": [ + { + "texture": "minecraft:lime" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/lime_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/lime_harness.json new file mode 100644 index 000000000..6571bf659 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/lime_harness.json @@ -0,0 +1,9 @@ +{ + "layers": { + "happy_ghast_body": [ + { + "texture": "minecraft:lime_harness" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/magenta_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/magenta_carpet.json new file mode 100644 index 000000000..20a76870d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/magenta_carpet.json @@ -0,0 +1,9 @@ +{ + "layers": { + "llama_body": [ + { + "texture": "minecraft:magenta" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/magenta_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/magenta_harness.json new file mode 100644 index 000000000..3289e42bd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/magenta_harness.json @@ -0,0 +1,9 @@ +{ + "layers": { + "happy_ghast_body": [ + { + "texture": "minecraft:magenta_harness" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/netherite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/netherite.json new file mode 100644 index 000000000..29b42d82d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/netherite.json @@ -0,0 +1,14 @@ +{ + "layers": { + "humanoid": [ + { + "texture": "minecraft:netherite" + } + ], + "humanoid_leggings": [ + { + "texture": "minecraft:netherite" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/orange_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/orange_carpet.json new file mode 100644 index 000000000..8d0824c0e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/orange_carpet.json @@ -0,0 +1,9 @@ +{ + "layers": { + "llama_body": [ + { + "texture": "minecraft:orange" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/orange_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/orange_harness.json new file mode 100644 index 000000000..a36917ec5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/orange_harness.json @@ -0,0 +1,9 @@ +{ + "layers": { + "happy_ghast_body": [ + { + "texture": "minecraft:orange_harness" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/pink_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/pink_carpet.json new file mode 100644 index 000000000..a2c57c699 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/pink_carpet.json @@ -0,0 +1,9 @@ +{ + "layers": { + "llama_body": [ + { + "texture": "minecraft:pink" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/pink_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/pink_harness.json new file mode 100644 index 000000000..bff56cbfd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/pink_harness.json @@ -0,0 +1,9 @@ +{ + "layers": { + "happy_ghast_body": [ + { + "texture": "minecraft:pink_harness" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/purple_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/purple_carpet.json new file mode 100644 index 000000000..bf304d208 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/purple_carpet.json @@ -0,0 +1,9 @@ +{ + "layers": { + "llama_body": [ + { + "texture": "minecraft:purple" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/purple_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/purple_harness.json new file mode 100644 index 000000000..e13774119 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/purple_harness.json @@ -0,0 +1,9 @@ +{ + "layers": { + "happy_ghast_body": [ + { + "texture": "minecraft:purple_harness" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/red_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/red_carpet.json new file mode 100644 index 000000000..47f48ed68 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/red_carpet.json @@ -0,0 +1,9 @@ +{ + "layers": { + "llama_body": [ + { + "texture": "minecraft:red" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/red_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/red_harness.json new file mode 100644 index 000000000..636c174d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/red_harness.json @@ -0,0 +1,9 @@ +{ + "layers": { + "happy_ghast_body": [ + { + "texture": "minecraft:red_harness" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/saddle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/saddle.json new file mode 100644 index 000000000..ef229b4c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/saddle.json @@ -0,0 +1,44 @@ +{ + "layers": { + "camel_saddle": [ + { + "texture": "minecraft:saddle" + } + ], + "donkey_saddle": [ + { + "texture": "minecraft:saddle" + } + ], + "horse_saddle": [ + { + "texture": "minecraft:saddle" + } + ], + "mule_saddle": [ + { + "texture": "minecraft:saddle" + } + ], + "pig_saddle": [ + { + "texture": "minecraft:saddle" + } + ], + "skeleton_horse_saddle": [ + { + "texture": "minecraft:saddle" + } + ], + "strider_saddle": [ + { + "texture": "minecraft:saddle" + } + ], + "zombie_horse_saddle": [ + { + "texture": "minecraft:saddle" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/trader_llama.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/trader_llama.json new file mode 100644 index 000000000..47deaf6b9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/trader_llama.json @@ -0,0 +1,9 @@ +{ + "layers": { + "llama_body": [ + { + "texture": "minecraft:trader_llama" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/turtle_scute.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/turtle_scute.json new file mode 100644 index 000000000..65fe733cf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/turtle_scute.json @@ -0,0 +1,9 @@ +{ + "layers": { + "humanoid": [ + { + "texture": "minecraft:turtle_scute" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/white_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/white_carpet.json new file mode 100644 index 000000000..3a9c28967 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/white_carpet.json @@ -0,0 +1,9 @@ +{ + "layers": { + "llama_body": [ + { + "texture": "minecraft:white" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/white_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/white_harness.json new file mode 100644 index 000000000..82275b41c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/white_harness.json @@ -0,0 +1,9 @@ +{ + "layers": { + "happy_ghast_body": [ + { + "texture": "minecraft:white_harness" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/yellow_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/yellow_carpet.json new file mode 100644 index 000000000..dc478a4ab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/yellow_carpet.json @@ -0,0 +1,9 @@ +{ + "layers": { + "llama_body": [ + { + "texture": "minecraft:yellow" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/yellow_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/yellow_harness.json new file mode 100644 index 000000000..f0a7a82d8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/equipment/yellow_harness.json @@ -0,0 +1,9 @@ +{ + "layers": { + "happy_ghast_body": [ + { + "texture": "minecraft:yellow_harness" + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/alt.json new file mode 100644 index 000000000..0c7f8f38f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/alt.json @@ -0,0 +1,31 @@ +{ + "providers": [ + { + "type": "reference", + "id": "minecraft:include/space" + }, + { + "type": "bitmap", + "file": "minecraft:font/ascii_sga.png", + "ascent": 7, + "chars": [ + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0041\u0042\u0043\u0044\u0045\u0046\u0047\u0048\u0049\u004A\u004B\u004C\u004D\u004E\u004F", + "\u0050\u0051\u0052\u0053\u0054\u0055\u0056\u0057\u0058\u0059\u005A\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0061\u0062\u0063\u0064\u0065\u0066\u0067\u0068\u0069\u006A\u006B\u006C\u006D\u006E\u006F", + "\u0070\u0071\u0072\u0073\u0074\u0075\u0076\u0077\u0078\u0079\u007A\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + ] + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/default.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/default.json new file mode 100644 index 000000000..02db6465d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/default.json @@ -0,0 +1,19 @@ +{ + "providers": [ + { + "type": "reference", + "id": "minecraft:include/space" + }, + { + "type": "reference", + "id": "minecraft:include/default", + "filter": { + "uniform": false + } + }, + { + "type": "reference", + "id": "minecraft:include/unifont" + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/illageralt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/illageralt.json new file mode 100644 index 000000000..a2db2cd8d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/illageralt.json @@ -0,0 +1,20 @@ +{ + "providers": [ + { + "type": "reference", + "id": "minecraft:include/space" + }, + { + "type": "bitmap", + "file": "minecraft:font/asciillager.png", + "ascent": 7, + "chars": [ + "\u0021\u002C\u002D\u002E\u0030\u0031\u0032\u0033\u0034\u0035\u0036\u0037\u0038\u0039\u003F\u0061", + "\u0062\u0063\u0064\u0065\u0066\u0067\u0068\u0069\u006A\u006B\u006C\u006D\u006E\u006F\u0070\u0071", + "\u0072\u0073\u0074\u0075\u0076\u0077\u0078\u0079\u007A\u0041\u0042\u0043\u0044\u0045\u0046\u0047", + "\u0048\u0049\u004A\u004B\u004C\u004D\u004E\u004F\u0050\u0051\u0052\u0053\u0054\u0055\u0056\u0057", + "\u0058\u0059\u005A\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + ] + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/include/default.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/include/default.json new file mode 100644 index 000000000..65c200eb1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/include/default.json @@ -0,0 +1,184 @@ +{ + "providers": [ + { + "type": "bitmap", + "file": "minecraft:font/nonlatin_european.png", + "ascent": 7, + "chars": [ + "\u00a1\u2030\u00ad\u00b7\u20b4\u2260\u00bf\u00d7\u00d8\u00de\u04bb\u00f0\u00f8\u00fe\u0391\u0392", + "\u0393\u0394\u0395\u0396\u0397\u0398\u0399\u039a\u039b\u039c\u039d\u039e\u039f\u03a0\u03a1\u03a3", + "\u03a4\u03a5\u03a6\u03a7\u03a8\u03a9\u03b1\u03b2\u03b3\u03b4\u03b5\u03b6\u03b7\u03b8\u03b9\u03ba", + "\u03bb\u03bc\u03bd\u03be\u03bf\u03c0\u03c1\u03c2\u03c3\u03c4\u03c5\u03c6\u03c7\u03c8\u03c9\u0402", + "\u0405\u0406\u0408\u0409\u040a\u040b\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u041a", + "\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a", + "\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u043a\u043b", + "\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b", + "\u044c\u044d\u044e\u044f\u0454\u0455\u0456\u0458\u0459\u045a\u2013\u2014\u2018\u2019\u201c\u201d", + "\u201e\u2026\u204a\u2190\u2191\u2192\u2193\u21c4\uff0b\u018f\u0259\u025b\u026a\u04ae\u04af\u04e8", + "\u04e9\u02bb\u02cc\u037e\u0138\u1e9e\u00df\u20bd\u20ac\u0462\u0463\u0474\u0475\u04c0\u0472\u0473", + "\u2070\u00b9\u00b3\u2074\u2075\u2076\u2077\u2078\u2079\u207a\u207b\u207c\u207d\u207e\u2071\u2122", + "\u0294\u0295\u29c8\u2694\u2620\u049a\u049b\u0492\u0493\u04b0\u04b1\u04d8\u04d9\u0496\u0497\u04a2", + "\u04a3\u04ba\u05d0\u05d1\u05d2\u05d3\u05d4\u05d5\u05d6\u05d7\u05d8\u05d9\u05db\u05dc\u05de\u05dd", + "\u05e0\u05df\u05e1\u05e2\u05e4\u05e3\u05e6\u05e5\u05e7\u05e8\u00a2\u00a4\u00a5\u00a9\u00ae\u00b5", + "\u00b6\u00bc\u00bd\u00be\u0387\u2010\u201a\u2020\u2021\u2022\u2031\u2032\u2033\u2034\u2035\u2036", + "\u2037\u2039\u203a\u203b\u203c\u203d\u2042\u2048\u2049\u204b\u204e\u204f\u2051\u2052\u2057\u2117", + "\u2212\u2213\u221e\u2600\u2601\u2608\u0404\u2632\u2635\u263d\u2640\u2642\u26a5\u2660\u2663\u2665", + "\u2666\u2669\u266a\u266b\u266c\u266d\u266e\u266f\u2680\u2681\u2682\u2683\u2684\u2685\u02ac\u26a1", + "\u26cf\u2714\u2744\u274c\u2764\u2b50\u2e18\u2e2e\u2e35\u2e38\u2e41\u2e4b\u295d\u1614\u0190\u07c8", + "\u03db\u3125\u2c6f\u15fa\u0186\u15e1\u018e\u2132\u2141\ua7b0\ua780\u0500\ua779\u1d1a\u27d8\u2229", + "\u0245\u2144\u0250\u0254\u01dd\u025f\u1d77\u0265\u1d09\u027e\u029e\ua781\u026f\u0279\u0287\u028c", + "\u028d\u028e\u0531\u0532\u0533\u0534\u0536\u0537\u0539\u053a\u053b\u053c\u053d\u053e\u053f\u0540", + "\u0541\u0542\u0543\u0544\u0545\u0546\u0547\u0548\u0549\u054b\u054c\u054d\u054e\u054f\u0550\u0551", + "\u0552\u0553\u0554\u0555\u0556\u0559\u0561\u0562\u0563\u0564\u0565\u0566\u0567\u0568\u0569\u056a", + "\u056b\u056c\u056d\u056e\u056f\u0570\u0571\u0572\u0573\u0574\u0575\u0576\u0577\u0578\u0579\u057a", + "\u057b\u057c\u057d\u057e\u057f\u0580\u0581\u0582\u0583\u0584\u0585\u0586\u0587\u05e9\u05ea\u0538", + "\u055a\u055b\u055c\u055d\u055e\u055f\u0560\u0588\u058f\u00af\u017f\u01b7\u0292\u01f7\u01bf\u021c", + "\u021d\u0224\u0225\u02d9\ua75a\ua75b\u2011\u214b\u23cf\u23e9\u23ea\u23ed\u23ee\u23ef\u23f4\u23f5", + "\u23f6\u23f7\u23f8\u23f9\u23fa\u23fb\u23fc\u23fd\u2b58\u25b2\u25b6\u25bc\u25c0\u25cf\u25e6\u25d8", + "\u2693\u26e8\u0132\u0133\u01c9\ua728\ua729\ua739\ua73b\ufb00\ufb01\ufb02\ufb03\ufb05\ufffd\u0535", + "\u054a\u16a0\u16a2\u16a3\u16a4\u16a5\u16a6\u16a7\u16a8\u16a9\u16aa\u16ab\u16ac\u16ad\u16ae\u16af", + "\u16b0\u16b1\u16b2\u16b3\u16b4\u16b6\u16b7\u16b8\u16b9\u16ba\u16bb\u16bc\u16bd\u16be\u16bf\u16c0", + "\u16c1\u16c2\u16c3\u16c4\u16c5\u16c6\u16c7\u16c8\u16c9\u16ca\u16cb\u16cc\u16cd\u16ce\u16cf\u16d0", + "\u16d1\u16d2\u16d3\u16d4\u16d5\u16d6\u16d7\u16d8\u16d9\u16da\u16db\u16dc\u16dd\u16de\u16df\u16e0", + "\u16e1\u16e2\u16e3\u16e4\u16e5\u16e6\u16e7\u16e8\u16e9\u16ea\u16eb\u16ec\u16ed\u16ee\u16ef\u16f0", + "\u16f1\u16f2\u16f3\u16f4\u16f5\u16f6\u16f7\u16f8\u263a\u263b\u00a6\u2639\u05da\u05f3\u05f4\u05f0", + "\u05f1\u05f2\u05be\u05c3\u05c6\u00b4\u00a8\u1d00\u0299\u1d04\u1d05\u1d07\ua730\u0262\u029c\u1d0a", + "\u1d0b\u029f\u1d0d\u0274\u1d0f\u1d18\ua7af\u0280\ua731\u1d1b\u1d1c\u1d20\u1d21\u028f\u1d22\u00a7", + "\u0271\u0273\u0272\u0288\u0256\u0261\u02a1\u0255\u0291\u0278\u029d\u02a2\u027b\u0281\u0266\u028b", + "\u0270\u026c\u026e\u0298\u01c0\u01c3\u01c2\u01c1\u0253\u0257\u1d91\u0284\u0260\u029b\u0267\u026b", + "\u0268\u0289\u028a\u0258\u0275\u0264\u025c\u025e\u0251\u0252\u025a\u025d\u0181\u0189\u0191\u01a9", + "\u01b2\u10a0\u10a1\u10a2\u10a3\u10a4\u10a5\u10a6\u10a7\u10a8\u10a9\u10aa\u10ab\u10ac\u10ad\u10ae", + "\u10af\u10b0\u10b1\u10b2\u10b3\u10b4\u10b5\u10b6\u10b7\u10b8\u10b9\u10ba\u10bb\u10bc\u10bd\u10be", + "\u10bf\u10c0\u10c1\u10c2\u10c3\u10c4\u10c5\u10c7\u10cd\u10d0\u10d1\u10d2\u10d3\u10d4\u10d5\u10d6", + "\u10d7\u10d8\u10d9\u10da\u10db\u10dc\u10dd\u10de\u10df\u10e0\u10e1\u10e2\u10e3\u10e4\u10e5\u10e6", + "\u10e7\u10e8\u10e9\u10ea\u10eb\u10ec\u10ed\u10ee\u10ef\u10f0\u10f1\u10f2\u10f3\u10f4\u10f5\u10f6", + "\u10f7\u10f8\u10f9\u10fa\u10fb\u10fc\u10fd\u10fe\u10ff\ufb4a\ufb2b\ufb4e\ufb44\ufb3b\ufb1f\ufb1d", + "\ufb4b\ufb35\ufb4c\ufb31\ua727\ua726\u027a\u2c71\u02a0\u0297\u0296\u026d\u0277\u027f\u0285\u0286", + "\u0293\u029a\u20aa\u20be\u058a\u2d00\u2d01\u2d02\u2d03\u2d04\u2d05\u2d06\u2d21\u2d07\u2d08\u2d09", + "\u2d0a\u2d0b\u2d0c\u2d22\u2d0d\u2d0e\u2d0f\u2d10\u2d11\u2d12\u2d23\u2d13\u2d14\u2d15\u2d16\u2d17", + "\u2d18\u2d19\u2d1a\u2d1b\u2d1c\u2d1d\u2d1e\u2d24\u2d1f\u2d20\u2d25\u215b\u215c\u215d\u215e\u2153", + "\u2154\u2709\u2602\u2614\u2604\u26c4\u2603\u231b\u231a\u2690\u270e\u2763\u2664\u2667\u2661\u2662", + "\u26c8\u2630\u2631\u2633\u2634\u2636\u2637\u2194\u21d2\u21cf\u21d4\u21f5\u2200\u2203\u2204\u2209", + "\u220b\u220c\u2282\u2283\u2284\u2285\u2227\u2228\u22bb\u22bc\u22bd\u2225\u2262\u22c6\u2211\u22a4", + "\u22a5\u22a2\u22a8\u2254\u2201\u2234\u2235\u221b\u221c\u2202\u22c3\u2286\u2287\u25a1\u25b3\u25b7", + "\u25bd\u25c1\u25c6\u25c7\u25cb\u25ce\u2606\u2605\u2718\u2080\u2081\u2082\u2083\u2084\u2085\u2086", + "\u2087\u2088\u2089\u208a\u208b\u208c\u208d\u208e\u222b\u222e\u221d\u2300\u2302\u2318\u3012\u027c", + "\u0184\u0185\u1e9f\u023d\u019a\u019b\u0220\u019e\u019f\u01a7\u01a8\u01aa\u01b8\u01b9\u01bb\u01bc", + "\u01bd\u01be\u0221\u0234\u0235\u0236\u023a\u2c65\u023b\u023c\u0246\u0247\u023e\u2c66\u0241\u0242", + "\u0243\u0244\u0248\u0249\u024a\u024b\u024c\u024d\u024e\u024f\u1e9c\u1e9d\u1efc\u1efd\u1efe\u1eff", + "\ua7a8\ua7a9\ud800\udf30\ud800\udf31\ud800\udf32\ud800\udf33\ud800\udf34\ud800\udf35\ud800\udf36\ud800\udf37\ud800\udf38\ud800\udf39\ud800\udf3a\ud800\udf3b\ud800\udf3c\ud800\udf3d", + "\ud800\udf3e\ud800\udf3f\ud800\udf40\ud800\udf41\ud800\udf42\ud800\udf43\ud800\udf44\ud800\udf45\ud800\udf46\ud800\udf47\ud800\udf48\ud800\udf49\ud800\udf4a\ud83c\udf27\ud83d\udd25\ud83c\udf0a", + "\u2150\u2151\u2155\u2156\u2157\u2159\u215a\u215f\u2189\ud83d\udde1\ud83c\udff9\ud83e\ude93\ud83d\udd31\ud83c\udfa3\ud83e\uddea\u2697", + "\u2bea\u2beb\u2c6d\ud83d\udee1\u2702\ud83c\udf56\ud83e\udea3\ud83d\udd14\u23f3\u2691\u20a0\u20a1\u20a2\u20a3\u20a4\u20a5", + "\u20a6\u20a9\u20ab\u20ad\u20ae\u20b0\u20b1\u20b2\u20b3\u20b5\u20b6\u20b7\u20b8\u20b9\u20ba\u20bb", + "\u20bc\u20bf\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/accented.png", + "height": 12, + "ascent": 10, + "chars": [ + "\u00c0\u00c1\u00c2\u00c3\u00c4\u00c5\u00c6\u00c7\u00c8\u00c9\u00ca\u00cb\u00cc\u00cd\u00ce\u00cf", + "\u00d0\u00d1\u00d2\u00d3\u00d4\u00d5\u00d6\u00d9\u00da\u00db\u00dc\u00dd\u00e0\u00e1\u00e2\u00e3", + "\u00e4\u00e5\u00e6\u00e7\u00ec\u00ed\u00ee\u00ef\u00f1\u00f2\u00f3\u00f4\u00f5\u00f6\u00f9\u00fa", + "\u00fb\u00fc\u00fd\u00ff\u0100\u0101\u0102\u0103\u0104\u0105\u0106\u0107\u0108\u0109\u010a\u010b", + "\u010c\u010d\u010e\u010f\u0110\u0111\u0112\u0113\u0114\u0115\u0116\u0117\u0118\u0119\u011a\u011b", + "\u011c\u011d\u1e20\u1e21\u011e\u011f\u0120\u0121\u0122\u0123\u0124\u0125\u0126\u0127\u0128\u0129", + "\u012a\u012b\u012c\u012d\u012e\u012f\u0130\u0131\u0134\u0135\u0136\u0137\u0139\u013a\u013b\u013c", + "\u013d\u013e\u013f\u0140\u0141\u0142\u0143\u0144\u0145\u0146\u0147\u0148\u014a\u014b\u014c\u014d", + "\u014e\u014f\u0150\u0151\u0152\u0153\u0154\u0155\u0156\u0157\u0158\u0159\u015a\u015b\u015c\u015d", + "\u015e\u015f\u0160\u0161\u0162\u0163\u0164\u0165\u0166\u0167\u0168\u0169\u016a\u016b\u016c\u016d", + "\u016e\u016f\u0170\u0171\u0172\u0173\u0174\u0175\u0176\u0177\u0178\u0179\u017a\u017b\u017c\u017d", + "\u017e\u01fc\u01fd\u01fe\u01ff\u0218\u0219\u021a\u021b\u0386\u0388\u0389\u038a\u038c\u038e\u038f", + "\u0390\u03aa\u03ab\u03ac\u03ad\u03ae\u03af\u03b0\u03ca\u03cb\u03cc\u03cd\u03ce\u0400\u0401\u0403", + "\u0407\u040c\u040d\u040e\u0419\u0439\u0450\u0451\u0452\u0453\u0457\u045b\u045c\u045d\u045e\u045f", + "\u0490\u0491\u1e02\u1e03\u1e0a\u1e0b\u1e1e\u1e1f\u1e22\u1e23\u1e30\u1e31\u1e40\u1e41\u1e56\u1e57", + "\u1e60\u1e61\u1e6a\u1e6b\u1e80\u1e81\u1e82\u1e83\u1e84\u1e85\u1ef2\u1ef3\u00e8\u00e9\u00ea\u00eb", + "\u0149\u01e7\u01eb\u040f\u1e0d\u1e25\u1e5b\u1e6d\u1e92\u1eca\u1ecb\u1ecc\u1ecd\u1ee4\u1ee5\u2116", + "\u0207\u0194\u0263\u0283\u2047\u01f1\u01f2\u01f3\u01c4\u01c5\u01c6\u01c7\u01c8\u01ca\u01cb\u01cc", + "\u2139\u1d6b\ua732\ua733\ua734\ua735\ua736\ua737\ua738\ua73a\ua73c\ua73d\ua74e\ua74f\ua760\ua761", + "\ufb04\ufb06\u16a1\u16b5\u01a0\u01a1\u01af\u01b0\u1eae\u1eaf\u1ea4\u1ea5\u1ebe\u1ebf\u1ed1\u1eda", + "\u1edb\u1ee8\u1ee9\u1eb0\u1eb1\u1ea6\u1ea7\u1ec0\u1ec1\u1ed3\u1edc\u1edd\u1eea\u1eeb\u1ea2\u1ea3", + "\u1eb2\u1eb3\u1ea8\u1ea9\u1eba\u1ebb\u1ed5\u1ede\u1ec2\u1ec3\u1ec8\u1ec9\u1ece\u1ecf\u1ed4\u1edf", + "\u1ee6\u1ee7\u1eec\u1eed\u1ef6\u1ef7\u1ea0\u1ea1\u1eb6\u1eb7\u1eac\u1ead\u1eb8\u1eb9\u1ec6\u1ec7", + "\u1ed8\u1ed9\u1ee2\u1ee3\u1ef0\u1ef1\u1ef4\u1ef5\u1ed0\u0195\u1eaa\u1eab\u1ed6\u1ed7\u1eef\u261e", + "\u261c\u262e\u1eb4\u1eb5\u1ebc\u1ebd\u1ec4\u1ec5\u1ed2\u1ee0\u1ee1\u1eee\u1ef8\u1ef9\u0498\u0499", + "\u04a0\u04a1\u04aa\u04ab\u01f6\u26a0\u24ea\u2460\u2461\u2462\u2463\u2464\u2465\u2466\u2467\u2468", + "\u2469\u246a\u246b\u246c\u246d\u246e\u246f\u2470\u2471\u2472\u2473\u24b6\u24b7\u24b8\u24b9\u24ba", + "\u24bb\u24bc\u24bd\u24be\u24bf\u24c0\u24c1\u24c2\u24c3\u24c4\u24c5\u24c6\u24c7\u24c8\u24c9\u24ca", + "\u24cb\u24cc\u24cd\u24ce\u24cf\u24d0\u24d1\u24d2\u24d3\u24d4\u24d5\u24d6\u24d7\u24d8\u24d9\u24da", + "\u24db\u24dc\u24dd\u24de\u24df\u24e0\u24e1\u24e2\u24e3\u24e4\u24e5\u24e6\u24e7\u24e8\u24e9\u0327", + "\u0282\u0290\u0276\u01cd\u01ce\u01de\u01df\u01fa\u01fb\u0202\u0203\u0226\u0227\u01e0\u01e1\u1e00", + "\u1e01\u0200\u0201\u1e06\u1e07\u1e04\u1e05\u1d6c\u1e08\u1e09\u1e10\u1e11\u1e12\u1e13\u1e0e\u1e0f", + "\u1e0c\u1d6d\u1e14\u1e15\u1e16\u1e17\u1e18\u1e19\u1e1c\u1e1d\u0228\u0229\u1e1a\u1e1b\u0204\u0205", + "\u0206\u1d6e\u01f4\u01f5\u01e6\u1e26\u1e27\u1e28\u1e29\u1e2a\u1e2b\u021e\u021f\u1e24\u1e96\u1e2e", + "\u1e2f\u020a\u020b\u01cf\u01d0\u0208\u0209\u1e2c\u1e2d\u01f0\u0237\u01e8\u01e9\u1e32\u1e33\u1e34", + "\u1e35\u1e3a\u1e3b\u1e3c\u1e3d\u1e36\u1e37\u1e38\u1e39\u2c62\u1e3e\u1e3f\u1e42\u1e43\u1d6f\u1e44", + "\u1e45\u1e46\u1e47\u1e4a\u1e4b\u01f8\u01f9\u1e48\u1e49\u1d70\u01ec\u01ed\u022c\u022d\u1e4c\u1e4d", + "\u1e4e\u1e4f\u1e50\u1e51\u1e52\u1e53\u020e\u020f\u022a\u022b\u01d1\u01d2\u022e\u022f\u0230\u0231", + "\u020c\u020d\u01ea\u1e54\u1e55\u1d71\u0212\u0213\u1e58\u1e59\u1e5c\u1e5d\u1e5e\u1e5f\u0210\u0211", + "\u1e5a\u1d73\u1d72\u1e64\u1e65\u1e66\u1e67\u1e62\u1e63\u1e68\u1e69\u1d74\u1e70\u1e71\u1e6e\u1e6f", + "\u1e6c\u1e97\u1d75\u1e72\u1e73\u1e76\u1e77\u1e78\u1e79\u1e7a\u1e7b\u01d3\u01d4\u01d5\u01d6\u01d7", + "\u01d8\u01d9\u01da\u01db\u01dc\u1e74\u1e75\u0214\u0215\u0216\u1e7e\u1e7f\u1e7c\u1e7d\u1e86\u1e87", + "\u1e88\u1e89\u1e98\u1e8c\u1e8d\u1e8a\u1e8b\u0232\u0233\u1e8e\u1e8f\u1e99\u1e94\u1e95\u1e90\u1e91", + "\u1e93\u1d76\u01ee\u01ef\u1e9b\ua73e\ua73f\u01e2\u01e3\u1d7a\u1efb\u1d02\u1d14\uab63\u0238\u02a3", + "\u02a5\u02a4\u02a9\u02aa\u02ab\u0239\u02a8\u02a6\u02a7\uab50\uab51\u20a7\u1efa\ufb2e\ufb2f\u0180", + "\u0182\u0183\u0187\u0188\u018a\u018b\u018c\u0193\u01e4\u01e5\u0197\u0196\u0269\u0198\u0199\u019d", + "\u01a4\u01a5\u027d\u01a6\u01ac\u01ad\u01ab\u01ae\u0217\u01b1\u019c\u01b3\u01b4\u01b5\u01b6\u01a2", + "\u01a3\u0222\u0223\u02ad\u02ae\u02af\ufb14\ufb15\ufb17\ufb16\ufb13\u04d0\u04d1\u04d2\u04d3\u04f6", + "\u04f7\u0494\u0495\u04d6\u04d7\u04bc\u04bd\u04be\u04bf\u04da\u04db\u04dc\u04dd\u04c1\u04c2\u04de", + "\u04df\u04e2\u04e3\u04e4\u04e5\u04e6\u04e7\u04ea\u04eb\u04f0\u04f1\u04ee\u04ef\u04f2\u04f3\u04f4", + "\u04f5\u04f8\u04f9\u04ec\u04ed\u0476\u0477\u04d4\u04fa\u0502\ua682\ua680\ua688\u052a\u052c\ua684", + "\u0504\u0510\u04e0\u0506\u048a\u04c3\u049e\u049c\u051e\u051a\u04c5\u052e\u0512\u0520\u0508\u0514", + "\u04cd\u04c9\u0528\u04c7\u04a4\u0522\u050a\u04a8\u0524\u04a6\u048e\u0516\u050c\ua690\u04ac\ua68a", + "\ua68c\u050e\u04b2\u04fc\u04fe\u0526\ua694\u04b4\ua68e\u04b6\u04cb\u04b8\ua692\ua696\ua686\u048c", + "\u0518\u051c\u04d5\u04fb\u0503\ua683\ua681\ua689\u052b\u052d\ua685\u0505\u0511\u04e1\u0507\u048b", + "\u04c4\u049f\u049d\u051f\u051b\u04c6\u052f\u0513\u0521\u0509\u0515\u04ce\u04ca\u0529\u04c8\u04a5", + "\u0523\u050b\u04a9\u0525\u04a7\u048f\u0517\u050d\ua691\u04ad\ua68b\ua68d\u050f\u04b3\u04fd\u04ff", + "\u0527\ua695\u04b5\ua68f\u04b7\u04cc\u04b9\ua693\ua697\ua687\u048d\u0519\u051d\u1f08\u1f00\u1f09", + "\u1f01\u1f0a\u1f02\u1f0b\u1f03\u1f0c\u1f04\u1f0d\u1f05\u1f0e\u1f06\u1f0f\u1f07\u1fba\u1f70\u1fb8", + "\u1fb0\u1fb9\u1fb1\u1fbb\u1f71\u1f88\u1f80\u1f89\u1f81\u1f8a\u1f82\u1f8b\u1f83\u1f8c\u1f84\u1f8d", + "\u1f85\u1f8e\u1f86\u1f8f\u1f87\u1fbc\u1fb4\u1fb6\u1fb7\u1fb2\u1fb3\u1f18\u1f10\u1f19\u1f11\u1f1a", + "\u1f12\u1f1b\u1f13\u1f1c\u1f14\u1f1d\u1f15\u1fc8\u1fc9\u1f72\u1f73\u1f28\u1f20\u1fca\u1f74\u1f29", + "\u1f21\u1f2a\u1f22\u1f2b\u1f23\u1f2c\u1f24\u1f2d\u1f25\u1f2e\u1f26\u1f2f\u1f27\u1f98\u1f90\u1f99", + "\u1f91\u1f9a\u1f92\u1f9b\u1f93\u1f9c\u1f94\u1f9d\u1f95\u1f9e\u1f96\u1f9f\u1f97\u1fcb\u1f75\u1fcc", + "\u1fc3\u1fc2\u1fc4\u1fc6\u1fc7\u1fda\u1f76\u1fdb\u1f77\u1f38\u1f30\u1f39\u1f31\u1f3a\u1f32\u1f3b", + "\u1f33\u1f3c\u1f34\u1f3d\u1f35\u1f3e\u1f36\u1f3f\u1f37\u1fd8\u1fd0\u1fd9\u1fd1\u1fd2\u1fd3\u1fd6", + "\u1fd7\u1ff8\u1f78\u1ff9\u1f79\u1f48\u1f40\u1f49\u1f41\u1f4a\u1f42\u1f4b\u1f43\u1f4c\u1f44\u1f4d", + "\u1f45\u1fec\u1fe4\u1fe5\u1fea\u1f7a\u1feb\u1f7b\u1f59\u1f51\u1f5b\u1f53\u1f5d\u1f55\u1f5f\u1f57", + "\u1fe8\u1fe0\u1fe9\u1fe1\u03d3\u03d4\u1fe2\u1fe3\u1fe7\u1f50\u1f52\u1f54\u1fe6\u1f56\u1ffa\u1f7c", + "\u1ffb\u1f7d\u1f68\u1f60\u1f69\u1f61\u1f6a\u1f62\u1f6b\u1f63\u1f6c\u1f64\u1f6d\u1f65\u1f6e\u1f66", + "\u1f6f\u1f67\u1fa8\u1fa0\u1fa9\u1fa1\u1faa\u1fa2\u1fab\u1fa3\u1fac\u1fa4\u1fad\u1fa5\u1fae\u1fa6", + "\u1faf\u1fa7\u1ffc\u1ff3\u1ff2\u1ff4\u1ff6\u1ff7\u262f\u2610\u2611\u2612\u018d\u01ba\u2c7e\u023f", + "\u2c7f\u0240\u1d80\ua7c4\ua794\u1d81\u1d82\u1d83\ua795\u1d84\u1d85\u1d86\u1d87\u1d88\u1d89\u1d8a", + "\u1d8b\u1d8c\u1d8d\ua7c6\u1d8e\u1d8f\u1d90\u1d92\u1d93\u1d94\u1d95\u1d96\u1d97\u1d98\u1d99\u1d9a", + "\u1e9a\u2152\u2158\u20a8\u20af\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/ascii.png", + "ascent": 7, + "chars": [ + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0020\u0021\u0022\u0023\u0024\u0025\u0026\u0027\u0028\u0029\u002a\u002b\u002c\u002d\u002e\u002f", + "\u0030\u0031\u0032\u0033\u0034\u0035\u0036\u0037\u0038\u0039\u003a\u003b\u003c\u003d\u003e\u003f", + "\u0040\u0041\u0042\u0043\u0044\u0045\u0046\u0047\u0048\u0049\u004a\u004b\u004c\u004d\u004e\u004f", + "\u0050\u0051\u0052\u0053\u0054\u0055\u0056\u0057\u0058\u0059\u005a\u005b\u005c\u005d\u005e\u005f", + "\u0060\u0061\u0062\u0063\u0064\u0065\u0066\u0067\u0068\u0069\u006a\u006b\u006c\u006d\u006e\u006f", + "\u0070\u0071\u0072\u0073\u0074\u0075\u0076\u0077\u0078\u0079\u007a\u007b\u007c\u007d\u007e\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00a3\u0000\u0000\u0192", + "\u0000\u0000\u0000\u0000\u0000\u0000\u00aa\u00ba\u0000\u0000\u00ac\u0000\u0000\u0000\u00ab\u00bb", + "\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510", + "\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567", + "\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u2205\u2208\u0000", + "\u2261\u00b1\u2265\u2264\u2320\u2321\u00f7\u2248\u00b0\u2219\u0000\u221a\u207f\u00b2\u25a0\u0000" + ] + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/include/space.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/include/space.json new file mode 100644 index 000000000..788cbf18e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/include/space.json @@ -0,0 +1,11 @@ +{ + "providers": [ + { + "type": "space", + "advances": { + " ": 4, + "\u200c": 0 + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/include/unifont.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/include/unifont.json new file mode 100644 index 000000000..3d4f26711 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/include/unifont.json @@ -0,0 +1,4 @@ +{ + "providers": [ + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/uniform.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/uniform.json new file mode 100644 index 000000000..27e9e36bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/font/uniform.json @@ -0,0 +1,12 @@ +{ + "providers": [ + { + "type": "reference", + "id": "minecraft:include/space" + }, + { + "type": "reference", + "id": "minecraft:include/unifont" + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/gpu_warnlist.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/gpu_warnlist.json new file mode 100644 index 000000000..291f55e96 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/gpu_warnlist.json @@ -0,0 +1,7 @@ +{ + "renderer" : [], + "version" : [ + "\\bMetal\\b" + ], + "vendor" : [] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_boat.json new file mode 100644 index 000000000..40c386d3a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/acacia_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_button.json new file mode 100644 index 000000000..a3dcd423c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_button.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/acacia_button_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_chest_boat.json new file mode 100644 index 000000000..671be37c6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_chest_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/acacia_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_door.json new file mode 100644 index 000000000..43b8d7c6b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/acacia_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_fence.json new file mode 100644 index 000000000..c9d21e600 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_fence.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/acacia_fence_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_fence_gate.json new file mode 100644 index 000000000..59094a4ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_fence_gate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/acacia_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_hanging_sign.json new file mode 100644 index 000000000..1c4ec4e65 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/acacia_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_leaves.json new file mode 100644 index 000000000..bbbab39ca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_leaves.json @@ -0,0 +1,12 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/acacia_leaves", + "tints": [ + { + "type": "minecraft:constant", + "value": -12012264 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_log.json new file mode 100644 index 000000000..d377ce70d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_planks.json new file mode 100644 index 000000000..017452be8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_planks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_pressure_plate.json new file mode 100644 index 000000000..bf4e9fdcd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/acacia_pressure_plate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_sapling.json new file mode 100644 index 000000000..ec95e0f59 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/acacia_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_sign.json new file mode 100644 index 000000000..6b572ed38 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/acacia_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_slab.json new file mode 100644 index 000000000..05c1a0ba5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/acacia_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_stairs.json new file mode 100644 index 000000000..69e95274c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/acacia_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_trapdoor.json new file mode 100644 index 000000000..29314826c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/acacia_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_wood.json new file mode 100644 index 000000000..8368b4cea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/acacia_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/acacia_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/activator_rail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/activator_rail.json new file mode 100644 index 000000000..855d961a3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/activator_rail.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/activator_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/air.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/air.json new file mode 100644 index 000000000..f0727913c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/air.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/air" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/allay_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/allay_spawn_egg.json new file mode 100644 index 000000000..6d6687339 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/allay_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/allay_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/allium.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/allium.json new file mode 100644 index 000000000..3ba9a1a7f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/allium.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/allium" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/amethyst_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/amethyst_block.json new file mode 100644 index 000000000..5a655def4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/amethyst_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/amethyst_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/amethyst_cluster.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/amethyst_cluster.json new file mode 100644 index 000000000..c8bb8bea0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/amethyst_cluster.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/amethyst_cluster" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/amethyst_shard.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/amethyst_shard.json new file mode 100644 index 000000000..47232b2bc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/amethyst_shard.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/amethyst_shard" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ancient_debris.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ancient_debris.json new file mode 100644 index 000000000..f3e196500 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ancient_debris.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/ancient_debris" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/andesite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/andesite.json new file mode 100644 index 000000000..3f68917ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/andesite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/andesite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/andesite_slab.json new file mode 100644 index 000000000..66a9a022b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/andesite_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/andesite_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/andesite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/andesite_stairs.json new file mode 100644 index 000000000..fb742015a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/andesite_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/andesite_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/andesite_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/andesite_wall.json new file mode 100644 index 000000000..c95364641 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/andesite_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/andesite_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/angler_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/angler_pottery_sherd.json new file mode 100644 index 000000000..61083360b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/angler_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/angler_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/anvil.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/anvil.json new file mode 100644 index 000000000..8dcd36b0b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/anvil.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/anvil" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/apple.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/apple.json new file mode 100644 index 000000000..775daabba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/apple.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/apple" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/archer_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/archer_pottery_sherd.json new file mode 100644 index 000000000..575adb29c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/archer_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/archer_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/armadillo_scute.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/armadillo_scute.json new file mode 100644 index 000000000..90f7a5304 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/armadillo_scute.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/armadillo_scute" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/armadillo_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/armadillo_spawn_egg.json new file mode 100644 index 000000000..cd895181b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/armadillo_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/armadillo_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/armor_stand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/armor_stand.json new file mode 100644 index 000000000..43398b3e7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/armor_stand.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/armor_stand" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/arms_up_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/arms_up_pottery_sherd.json new file mode 100644 index 000000000..45ae4d926 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/arms_up_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/arms_up_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/arrow.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/arrow.json new file mode 100644 index 000000000..5915e01ea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/arrow.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/arrow" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/axolotl_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/axolotl_bucket.json new file mode 100644 index 000000000..1fe9963c9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/axolotl_bucket.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/axolotl_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/axolotl_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/axolotl_spawn_egg.json new file mode 100644 index 000000000..7f2bd75f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/axolotl_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/axolotl_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/azalea.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/azalea.json new file mode 100644 index 000000000..5c538e74f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/azalea.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/azalea" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/azalea_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/azalea_leaves.json new file mode 100644 index 000000000..107c301f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/azalea_leaves.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/azalea_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/azure_bluet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/azure_bluet.json new file mode 100644 index 000000000..11b192af6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/azure_bluet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/azure_bluet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/baked_potato.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/baked_potato.json new file mode 100644 index 000000000..3553c526c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/baked_potato.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/baked_potato" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo.json new file mode 100644 index 000000000..30d6b5590 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bamboo" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_block.json new file mode 100644 index 000000000..8dc88463a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_button.json new file mode 100644 index 000000000..57d5c8126 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_button.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bamboo_button_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_chest_raft.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_chest_raft.json new file mode 100644 index 000000000..a7b219b2f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_chest_raft.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bamboo_chest_raft" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_door.json new file mode 100644 index 000000000..8728a4db7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bamboo_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_fence.json new file mode 100644 index 000000000..9e8424db8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_fence.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bamboo_fence_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_fence_gate.json new file mode 100644 index 000000000..8db169324 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_fence_gate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bamboo_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_hanging_sign.json new file mode 100644 index 000000000..7e6b5d512 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bamboo_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_mosaic.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_mosaic.json new file mode 100644 index 000000000..49b0ddaed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_mosaic.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bamboo_mosaic" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_mosaic_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_mosaic_slab.json new file mode 100644 index 000000000..d475b36ae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_mosaic_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bamboo_mosaic_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_mosaic_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_mosaic_stairs.json new file mode 100644 index 000000000..e59cde5cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_mosaic_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bamboo_mosaic_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_planks.json new file mode 100644 index 000000000..a73c8d159 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_planks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_pressure_plate.json new file mode 100644 index 000000000..490046fd2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bamboo_pressure_plate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_raft.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_raft.json new file mode 100644 index 000000000..9e224bcad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_raft.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bamboo_raft" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_sign.json new file mode 100644 index 000000000..c916c6a7f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bamboo_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_slab.json new file mode 100644 index 000000000..496f820b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bamboo_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_stairs.json new file mode 100644 index 000000000..65326e0ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bamboo_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_trapdoor.json new file mode 100644 index 000000000..0855c71f5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bamboo_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bamboo_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/barrel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/barrel.json new file mode 100644 index 000000000..8f362a2f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/barrel.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/barrel" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/barrier.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/barrier.json new file mode 100644 index 000000000..75cc3b337 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/barrier.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/barrier" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/basalt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/basalt.json new file mode 100644 index 000000000..33a70621f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/basalt.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/basalt" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bat_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bat_spawn_egg.json new file mode 100644 index 000000000..d475496bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bat_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bat_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beacon.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beacon.json new file mode 100644 index 000000000..814878e5d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beacon.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/beacon" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bedrock.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bedrock.json new file mode 100644 index 000000000..89f068fe7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bedrock.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bedrock" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bee_nest.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bee_nest.json new file mode 100644 index 000000000..cb918fe0f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bee_nest.json @@ -0,0 +1,20 @@ +{ + "model": { + "type": "minecraft:select", + "block_state_property": "honey_level", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bee_nest_honey" + }, + "when": "5" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:block/bee_nest_empty" + }, + "property": "minecraft:block_state" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bee_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bee_spawn_egg.json new file mode 100644 index 000000000..a0a8cb0e5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bee_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bee_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beef.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beef.json new file mode 100644 index 000000000..d1bf5b046 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beef.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/beef" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beehive.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beehive.json new file mode 100644 index 000000000..279dc4b8f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beehive.json @@ -0,0 +1,20 @@ +{ + "model": { + "type": "minecraft:select", + "block_state_property": "honey_level", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:block/beehive_honey" + }, + "when": "5" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:block/beehive_empty" + }, + "property": "minecraft:block_state" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beetroot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beetroot.json new file mode 100644 index 000000000..fc7949949 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beetroot.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/beetroot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beetroot_seeds.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beetroot_seeds.json new file mode 100644 index 000000000..e2742c167 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beetroot_seeds.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/beetroot_seeds" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beetroot_soup.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beetroot_soup.json new file mode 100644 index 000000000..ebbea11d0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/beetroot_soup.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/beetroot_soup" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bell.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bell.json new file mode 100644 index 000000000..15fece84e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bell.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bell" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/big_dripleaf.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/big_dripleaf.json new file mode 100644 index 000000000..aa47d6198 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/big_dripleaf.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/big_dripleaf" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_boat.json new file mode 100644 index 000000000..261a254df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/birch_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_button.json new file mode 100644 index 000000000..3eaece396 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_button.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/birch_button_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_chest_boat.json new file mode 100644 index 000000000..37eaf2fe3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_chest_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/birch_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_door.json new file mode 100644 index 000000000..bfc2721b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/birch_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_fence.json new file mode 100644 index 000000000..8963c9d29 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_fence.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/birch_fence_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_fence_gate.json new file mode 100644 index 000000000..923244ff1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_fence_gate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/birch_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_hanging_sign.json new file mode 100644 index 000000000..fd062e231 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/birch_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_leaves.json new file mode 100644 index 000000000..f06b0a4ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_leaves.json @@ -0,0 +1,12 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/birch_leaves", + "tints": [ + { + "type": "minecraft:constant", + "value": -8345771 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_log.json new file mode 100644 index 000000000..f4bf68832 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_planks.json new file mode 100644 index 000000000..7dab521e4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_planks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_pressure_plate.json new file mode 100644 index 000000000..708ec1bcb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/birch_pressure_plate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_sapling.json new file mode 100644 index 000000000..b4cfced3d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/birch_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_sign.json new file mode 100644 index 000000000..a160ed646 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/birch_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_slab.json new file mode 100644 index 000000000..b4cb850ae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/birch_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_stairs.json new file mode 100644 index 000000000..c5e8e4429 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/birch_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_trapdoor.json new file mode 100644 index 000000000..db2d3a91e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/birch_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_wood.json new file mode 100644 index 000000000..f1f5d1ea8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/birch_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/birch_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_banner.json new file mode 100644 index 000000000..62bbb531e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_banner.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_banner", + "model": { + "type": "minecraft:banner", + "color": "black" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_bed.json new file mode 100644 index 000000000..04d7e3561 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_bed.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/black_bed", + "model": { + "type": "minecraft:bed", + "texture": "minecraft:black" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_bundle.json new file mode 100644 index 000000000..066707b5a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_bundle.json @@ -0,0 +1,39 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/black_bundle" + }, + "on_true": { + "type": "minecraft:composite", + "models": [ + { + "type": "minecraft:model", + "model": "minecraft:item/black_bundle_open_back" + }, + { + "type": "minecraft:bundle/selected_item" + }, + { + "type": "minecraft:model", + "model": "minecraft:item/black_bundle_open_front" + } + ] + }, + "property": "minecraft:bundle/has_selected_item" + }, + "when": "gui" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/black_bundle" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_candle.json new file mode 100644 index 000000000..9c28b4440 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_candle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/black_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_carpet.json new file mode 100644 index 000000000..c80c9be56 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/black_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_concrete.json new file mode 100644 index 000000000..88adfa331 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_concrete.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/black_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_concrete_powder.json new file mode 100644 index 000000000..0af5716a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/black_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_dye.json new file mode 100644 index 000000000..a5851c21d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_dye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/black_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_glazed_terracotta.json new file mode 100644 index 000000000..02d6d5e50 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/black_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_harness.json new file mode 100644 index 000000000..245f3c6dd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_harness.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/black_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_shulker_box.json new file mode 100644 index 000000000..46fa3e1f8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_shulker_box.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/black_shulker_box", + "model": { + "type": "minecraft:shulker_box", + "texture": "minecraft:shulker_black" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_stained_glass.json new file mode 100644 index 000000000..a87c5feaa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_stained_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/black_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_stained_glass_pane.json new file mode 100644 index 000000000..f37e68005 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/black_stained_glass_pane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_terracotta.json new file mode 100644 index 000000000..0b8b26b79 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/black_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_wool.json new file mode 100644 index 000000000..178340d47 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/black_wool.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/black_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blackstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blackstone.json new file mode 100644 index 000000000..142bcb059 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blackstone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blackstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blackstone_slab.json new file mode 100644 index 000000000..130a89057 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blackstone_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/blackstone_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blackstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blackstone_stairs.json new file mode 100644 index 000000000..85d2c1aa1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blackstone_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/blackstone_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blackstone_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blackstone_wall.json new file mode 100644 index 000000000..9d569e06f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blackstone_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/blackstone_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blade_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blade_pottery_sherd.json new file mode 100644 index 000000000..4d1933846 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blade_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/blade_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blast_furnace.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blast_furnace.json new file mode 100644 index 000000000..b28606354 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blast_furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/blast_furnace" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blaze_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blaze_powder.json new file mode 100644 index 000000000..812d76c01 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blaze_powder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/blaze_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blaze_rod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blaze_rod.json new file mode 100644 index 000000000..b2db009a3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blaze_rod.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/blaze_rod" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blaze_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blaze_spawn_egg.json new file mode 100644 index 000000000..db15e7725 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blaze_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/blaze_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_banner.json new file mode 100644 index 000000000..d985ba59a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_banner.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_banner", + "model": { + "type": "minecraft:banner", + "color": "blue" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_bed.json new file mode 100644 index 000000000..73a9afb51 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_bed.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/blue_bed", + "model": { + "type": "minecraft:bed", + "texture": "minecraft:blue" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_bundle.json new file mode 100644 index 000000000..57437107a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_bundle.json @@ -0,0 +1,39 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/blue_bundle" + }, + "on_true": { + "type": "minecraft:composite", + "models": [ + { + "type": "minecraft:model", + "model": "minecraft:item/blue_bundle_open_back" + }, + { + "type": "minecraft:bundle/selected_item" + }, + { + "type": "minecraft:model", + "model": "minecraft:item/blue_bundle_open_front" + } + ] + }, + "property": "minecraft:bundle/has_selected_item" + }, + "when": "gui" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/blue_bundle" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_candle.json new file mode 100644 index 000000000..5cfe77a55 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_candle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_carpet.json new file mode 100644 index 000000000..1a620a576 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/blue_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_concrete.json new file mode 100644 index 000000000..cc0b5b9dc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_concrete.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/blue_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_concrete_powder.json new file mode 100644 index 000000000..3b981e85e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/blue_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_dye.json new file mode 100644 index 000000000..381b71e98 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_dye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/blue_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_egg.json new file mode 100644 index 000000000..80876a264 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/blue_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_glazed_terracotta.json new file mode 100644 index 000000000..5cf3c1c91 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/blue_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_harness.json new file mode 100644 index 000000000..6f4dada3d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_harness.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/blue_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_ice.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_ice.json new file mode 100644 index 000000000..7f2160ded --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_ice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/blue_ice" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_orchid.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_orchid.json new file mode 100644 index 000000000..f76d09633 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_orchid.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/blue_orchid" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_shulker_box.json new file mode 100644 index 000000000..299c77253 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_shulker_box.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/blue_shulker_box", + "model": { + "type": "minecraft:shulker_box", + "texture": "minecraft:shulker_blue" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_stained_glass.json new file mode 100644 index 000000000..c343d93ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_stained_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_stained_glass_pane.json new file mode 100644 index 000000000..941daad69 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/blue_stained_glass_pane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_terracotta.json new file mode 100644 index 000000000..db5cdb28e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/blue_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_wool.json new file mode 100644 index 000000000..171f1db04 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/blue_wool.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/blue_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bogged_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bogged_spawn_egg.json new file mode 100644 index 000000000..d9807d44a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bogged_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bogged_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bolt_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bolt_armor_trim_smithing_template.json new file mode 100644 index 000000000..9745ca12e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bolt_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bolt_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bone.json new file mode 100644 index 000000000..fea2360cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bone_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bone_block.json new file mode 100644 index 000000000..b949a94e7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bone_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bone_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bone_meal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bone_meal.json new file mode 100644 index 000000000..7b1eb0641 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bone_meal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bone_meal" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/book.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/book.json new file mode 100644 index 000000000..c36707130 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/book.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/book" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bookshelf.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bookshelf.json new file mode 100644 index 000000000..18c77821d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bookshelf.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bookshelf" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bordure_indented_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bordure_indented_banner_pattern.json new file mode 100644 index 000000000..fb2684f67 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bordure_indented_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bordure_indented_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bow.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bow.json new file mode 100644 index 000000000..fa7071ce5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bow.json @@ -0,0 +1,35 @@ +{ + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/bow" + }, + "on_true": { + "type": "minecraft:range_dispatch", + "entries": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bow_pulling_1" + }, + "threshold": 0.65 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bow_pulling_2" + }, + "threshold": 0.9 + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/bow_pulling_0" + }, + "property": "minecraft:use_duration", + "scale": 0.05 + }, + "property": "minecraft:using_item" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bowl.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bowl.json new file mode 100644 index 000000000..99459cf66 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bowl.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bowl" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brain_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brain_coral.json new file mode 100644 index 000000000..fa8e2eb6a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brain_coral.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/brain_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brain_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brain_coral_block.json new file mode 100644 index 000000000..ab2ce2127 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brain_coral_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/brain_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brain_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brain_coral_fan.json new file mode 100644 index 000000000..2851549f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brain_coral_fan.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/brain_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bread.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bread.json new file mode 100644 index 000000000..a90e33b52 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bread.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bread" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/breeze_rod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/breeze_rod.json new file mode 100644 index 000000000..ef08b38a0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/breeze_rod.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/breeze_rod" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/breeze_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/breeze_spawn_egg.json new file mode 100644 index 000000000..26ef8484f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/breeze_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/breeze_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brewer_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brewer_pottery_sherd.json new file mode 100644 index 000000000..0bd69ad47 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brewer_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/brewer_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brewing_stand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brewing_stand.json new file mode 100644 index 000000000..823cf558d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brewing_stand.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/brewing_stand" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brick.json new file mode 100644 index 000000000..7e6be5152 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/brick" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brick_slab.json new file mode 100644 index 000000000..6afe9425e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/brick_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brick_stairs.json new file mode 100644 index 000000000..782ee48d5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/brick_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brick_wall.json new file mode 100644 index 000000000..7acc8f3e5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/brick_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bricks.json new file mode 100644 index 000000000..45bb895ca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_banner.json new file mode 100644 index 000000000..21b2d0bfc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_banner.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_banner", + "model": { + "type": "minecraft:banner", + "color": "brown" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_bed.json new file mode 100644 index 000000000..42492f517 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_bed.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/brown_bed", + "model": { + "type": "minecraft:bed", + "texture": "minecraft:brown" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_bundle.json new file mode 100644 index 000000000..deb8d4ebd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_bundle.json @@ -0,0 +1,39 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/brown_bundle" + }, + "on_true": { + "type": "minecraft:composite", + "models": [ + { + "type": "minecraft:model", + "model": "minecraft:item/brown_bundle_open_back" + }, + { + "type": "minecraft:bundle/selected_item" + }, + { + "type": "minecraft:model", + "model": "minecraft:item/brown_bundle_open_front" + } + ] + }, + "property": "minecraft:bundle/has_selected_item" + }, + "when": "gui" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/brown_bundle" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_candle.json new file mode 100644 index 000000000..d7d461486 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_candle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/brown_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_carpet.json new file mode 100644 index 000000000..d32721af4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/brown_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_concrete.json new file mode 100644 index 000000000..9e045cf4e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_concrete.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/brown_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_concrete_powder.json new file mode 100644 index 000000000..90f379579 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/brown_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_dye.json new file mode 100644 index 000000000..4d6d06180 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_dye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/brown_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_egg.json new file mode 100644 index 000000000..b1f82ae38 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/brown_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_glazed_terracotta.json new file mode 100644 index 000000000..cca7ba048 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/brown_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_harness.json new file mode 100644 index 000000000..c9b874f2e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_harness.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/brown_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_mushroom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_mushroom.json new file mode 100644 index 000000000..6a960e06a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_mushroom.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/brown_mushroom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_mushroom_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_mushroom_block.json new file mode 100644 index 000000000..7c2d92c67 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_mushroom_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/brown_mushroom_block_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_shulker_box.json new file mode 100644 index 000000000..a2be2cc43 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_shulker_box.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/brown_shulker_box", + "model": { + "type": "minecraft:shulker_box", + "texture": "minecraft:shulker_brown" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_stained_glass.json new file mode 100644 index 000000000..f59814e67 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_stained_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/brown_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_stained_glass_pane.json new file mode 100644 index 000000000..43c1d708f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/brown_stained_glass_pane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_terracotta.json new file mode 100644 index 000000000..fee80a482 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/brown_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_wool.json new file mode 100644 index 000000000..5e4b51ac4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brown_wool.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/brown_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brush.json new file mode 100644 index 000000000..a4abc74ae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/brush.json @@ -0,0 +1,35 @@ +{ + "model": { + "type": "minecraft:range_dispatch", + "entries": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/brush_brushing_0" + }, + "threshold": 0.25 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/brush_brushing_1" + }, + "threshold": 0.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/brush_brushing_2" + }, + "threshold": 0.75 + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/brush" + }, + "period": 10.0, + "property": "minecraft:use_cycle", + "scale": 0.1 + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bubble_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bubble_coral.json new file mode 100644 index 000000000..49349d69f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bubble_coral.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bubble_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bubble_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bubble_coral_block.json new file mode 100644 index 000000000..c400e05fa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bubble_coral_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/bubble_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bubble_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bubble_coral_fan.json new file mode 100644 index 000000000..893c6efe2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bubble_coral_fan.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bubble_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bucket.json new file mode 100644 index 000000000..f8209d332 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bucket.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/budding_amethyst.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/budding_amethyst.json new file mode 100644 index 000000000..407a4799e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/budding_amethyst.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/budding_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bundle.json new file mode 100644 index 000000000..dfeec3e91 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bundle.json @@ -0,0 +1,39 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/bundle" + }, + "on_true": { + "type": "minecraft:composite", + "models": [ + { + "type": "minecraft:model", + "model": "minecraft:item/bundle_open_back" + }, + { + "type": "minecraft:bundle/selected_item" + }, + { + "type": "minecraft:model", + "model": "minecraft:item/bundle_open_front" + } + ] + }, + "property": "minecraft:bundle/has_selected_item" + }, + "when": "gui" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/bundle" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/burn_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/burn_pottery_sherd.json new file mode 100644 index 000000000..3c39cfc76 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/burn_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/burn_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bush.json new file mode 100644 index 000000000..9188c7be3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/bush.json @@ -0,0 +1,13 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/bush", + "tints": [ + { + "type": "minecraft:grass", + "downfall": 1.0, + "temperature": 0.5 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cactus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cactus.json new file mode 100644 index 000000000..2b48cc4fa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cactus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cactus" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cactus_flower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cactus_flower.json new file mode 100644 index 000000000..1eebbc51c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cactus_flower.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cactus_flower" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cake.json new file mode 100644 index 000000000..9488638c2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cake.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cake" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/calcite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/calcite.json new file mode 100644 index 000000000..ac9e7ea25 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/calcite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/calcite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/calibrated_sculk_sensor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/calibrated_sculk_sensor.json new file mode 100644 index 000000000..dfe5e99bc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/calibrated_sculk_sensor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/calibrated_sculk_sensor_inactive" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/camel_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/camel_spawn_egg.json new file mode 100644 index 000000000..f91efe253 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/camel_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/camel_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/campfire.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/campfire.json new file mode 100644 index 000000000..9732767ec --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/campfire.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/campfire" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/candle.json new file mode 100644 index 000000000..5fc19d0fa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/candle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/carrot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/carrot.json new file mode 100644 index 000000000..dc4518072 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/carrot.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/carrot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/carrot_on_a_stick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/carrot_on_a_stick.json new file mode 100644 index 000000000..a4105477a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/carrot_on_a_stick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/carrot_on_a_stick" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cartography_table.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cartography_table.json new file mode 100644 index 000000000..7b67cc843 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cartography_table.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cartography_table" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/carved_pumpkin.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/carved_pumpkin.json new file mode 100644 index 000000000..433ef242c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/carved_pumpkin.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/carved_pumpkin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cat_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cat_spawn_egg.json new file mode 100644 index 000000000..04f30f132 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cat_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cat_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cauldron.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cauldron.json new file mode 100644 index 000000000..2d4a84c9b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cauldron.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cauldron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cave_spider_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cave_spider_spawn_egg.json new file mode 100644 index 000000000..203d04b46 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cave_spider_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cave_spider_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chain.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chain.json new file mode 100644 index 000000000..a8abebe6d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chain.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chain" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chain_command_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chain_command_block.json new file mode 100644 index 000000000..068829ed9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chain_command_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chain_command_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chainmail_boots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chainmail_boots.json new file mode 100644 index 000000000..991ffb60a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chainmail_boots.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_boots_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_boots_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_boots_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_boots_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_boots_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_boots_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_boots_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_boots_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_boots_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_boots_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_boots_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_boots" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chainmail_chestplate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chainmail_chestplate.json new file mode 100644 index 000000000..6f9019861 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chainmail_chestplate.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_chestplate_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_chestplate_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_chestplate_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_chestplate_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_chestplate_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_chestplate_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_chestplate_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_chestplate_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_chestplate_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_chestplate_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_chestplate_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_chestplate" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chainmail_helmet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chainmail_helmet.json new file mode 100644 index 000000000..7f88b1a35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chainmail_helmet.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_helmet_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_helmet_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_helmet_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_helmet_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_helmet_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_helmet_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_helmet_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_helmet_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_helmet_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_helmet_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_helmet_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_helmet" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chainmail_leggings.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chainmail_leggings.json new file mode 100644 index 000000000..7baa08494 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chainmail_leggings.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_leggings_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_leggings_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_leggings_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_leggings_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_leggings_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_leggings_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_leggings_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_leggings_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_leggings_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_leggings_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_leggings_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/chainmail_leggings" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/charcoal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/charcoal.json new file mode 100644 index 000000000..7e2650ad1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/charcoal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/charcoal" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_boat.json new file mode 100644 index 000000000..97018953a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cherry_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_button.json new file mode 100644 index 000000000..51ac6149f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_button.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cherry_button_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_chest_boat.json new file mode 100644 index 000000000..b40831e0b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_chest_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cherry_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_door.json new file mode 100644 index 000000000..214c05e67 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cherry_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_fence.json new file mode 100644 index 000000000..d96d0654c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_fence.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cherry_fence_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_fence_gate.json new file mode 100644 index 000000000..90201f4ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_fence_gate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cherry_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_hanging_sign.json new file mode 100644 index 000000000..5088fec86 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cherry_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_leaves.json new file mode 100644 index 000000000..dac17a9cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_leaves.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cherry_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_log.json new file mode 100644 index 000000000..a0a2dfb89 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_planks.json new file mode 100644 index 000000000..e1b9f3646 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_planks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_pressure_plate.json new file mode 100644 index 000000000..de6054bfa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cherry_pressure_plate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_sapling.json new file mode 100644 index 000000000..7943de2b4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cherry_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_sign.json new file mode 100644 index 000000000..a43d71ada --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cherry_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_slab.json new file mode 100644 index 000000000..91dcbb80c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cherry_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_stairs.json new file mode 100644 index 000000000..e7f74ae1e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cherry_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_trapdoor.json new file mode 100644 index 000000000..4b09f105e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cherry_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_wood.json new file mode 100644 index 000000000..f23d6a629 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cherry_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cherry_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chest.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chest.json new file mode 100644 index 000000000..5e4ef78c0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chest.json @@ -0,0 +1,32 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:special", + "base": "minecraft:item/chest", + "model": { + "type": "minecraft:chest", + "texture": "minecraft:christmas" + } + }, + "when": [ + "12-24", + "12-25", + "12-26" + ] + } + ], + "fallback": { + "type": "minecraft:special", + "base": "minecraft:item/chest", + "model": { + "type": "minecraft:chest", + "texture": "minecraft:normal" + } + }, + "pattern": "MM-dd", + "property": "minecraft:local_time" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chest_minecart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chest_minecart.json new file mode 100644 index 000000000..3711836ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chest_minecart.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chest_minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chicken.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chicken.json new file mode 100644 index 000000000..908f6d531 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chicken.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chicken" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chicken_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chicken_spawn_egg.json new file mode 100644 index 000000000..170a6400a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chicken_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chicken_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chipped_anvil.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chipped_anvil.json new file mode 100644 index 000000000..868455686 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chipped_anvil.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chipped_anvil" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_bookshelf.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_bookshelf.json new file mode 100644 index 000000000..9ba95e03c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_bookshelf.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chiseled_bookshelf_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_copper.json new file mode 100644 index 000000000..99d4996d5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chiseled_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_deepslate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_deepslate.json new file mode 100644 index 000000000..116f921f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_deepslate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chiseled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_nether_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_nether_bricks.json new file mode 100644 index 000000000..95709a06c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_nether_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chiseled_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_polished_blackstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_polished_blackstone.json new file mode 100644 index 000000000..1d9b8c735 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_polished_blackstone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chiseled_polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_quartz_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_quartz_block.json new file mode 100644 index 000000000..508004a59 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_quartz_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chiseled_quartz_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_red_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_red_sandstone.json new file mode 100644 index 000000000..cb5409ac9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_red_sandstone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chiseled_red_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_resin_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_resin_bricks.json new file mode 100644 index 000000000..26416f11c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_resin_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chiseled_resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_sandstone.json new file mode 100644 index 000000000..c893eed63 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_sandstone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chiseled_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_stone_bricks.json new file mode 100644 index 000000000..0001e6708 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_stone_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chiseled_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_tuff.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_tuff.json new file mode 100644 index 000000000..85401994a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_tuff.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chiseled_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_tuff_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_tuff_bricks.json new file mode 100644 index 000000000..94632a0f8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chiseled_tuff_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chiseled_tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chorus_flower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chorus_flower.json new file mode 100644 index 000000000..a33bde47d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chorus_flower.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chorus_flower" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chorus_fruit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chorus_fruit.json new file mode 100644 index 000000000..65ad83c5a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chorus_fruit.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/chorus_fruit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chorus_plant.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chorus_plant.json new file mode 100644 index 000000000..21a15f44a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/chorus_plant.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chorus_plant" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/clay.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/clay.json new file mode 100644 index 000000000..bacfc9378 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/clay.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/clay" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/clay_ball.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/clay_ball.json new file mode 100644 index 000000000..e8f64c098 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/clay_ball.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clay_ball" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/clock.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/clock.json new file mode 100644 index 000000000..0d6f44d8f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/clock.json @@ -0,0 +1,937 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:range_dispatch", + "entries": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_00" + }, + "threshold": 0.0 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_01" + }, + "threshold": 0.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_02" + }, + "threshold": 1.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_03" + }, + "threshold": 2.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_04" + }, + "threshold": 3.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_05" + }, + "threshold": 4.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_06" + }, + "threshold": 5.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_07" + }, + "threshold": 6.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_08" + }, + "threshold": 7.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_09" + }, + "threshold": 8.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_10" + }, + "threshold": 9.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_11" + }, + "threshold": 10.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_12" + }, + "threshold": 11.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_13" + }, + "threshold": 12.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_14" + }, + "threshold": 13.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_15" + }, + "threshold": 14.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_16" + }, + "threshold": 15.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_17" + }, + "threshold": 16.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_18" + }, + "threshold": 17.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_19" + }, + "threshold": 18.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_20" + }, + "threshold": 19.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_21" + }, + "threshold": 20.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_22" + }, + "threshold": 21.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_23" + }, + "threshold": 22.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_24" + }, + "threshold": 23.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_25" + }, + "threshold": 24.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_26" + }, + "threshold": 25.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_27" + }, + "threshold": 26.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_28" + }, + "threshold": 27.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_29" + }, + "threshold": 28.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_30" + }, + "threshold": 29.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_31" + }, + "threshold": 30.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_32" + }, + "threshold": 31.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_33" + }, + "threshold": 32.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_34" + }, + "threshold": 33.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_35" + }, + "threshold": 34.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_36" + }, + "threshold": 35.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_37" + }, + "threshold": 36.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_38" + }, + "threshold": 37.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_39" + }, + "threshold": 38.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_40" + }, + "threshold": 39.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_41" + }, + "threshold": 40.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_42" + }, + "threshold": 41.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_43" + }, + "threshold": 42.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_44" + }, + "threshold": 43.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_45" + }, + "threshold": 44.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_46" + }, + "threshold": 45.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_47" + }, + "threshold": 46.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_48" + }, + "threshold": 47.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_49" + }, + "threshold": 48.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_50" + }, + "threshold": 49.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_51" + }, + "threshold": 50.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_52" + }, + "threshold": 51.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_53" + }, + "threshold": 52.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_54" + }, + "threshold": 53.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_55" + }, + "threshold": 54.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_56" + }, + "threshold": 55.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_57" + }, + "threshold": 56.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_58" + }, + "threshold": 57.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_59" + }, + "threshold": 58.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_60" + }, + "threshold": 59.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_61" + }, + "threshold": 60.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_62" + }, + "threshold": 61.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_63" + }, + "threshold": 62.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_00" + }, + "threshold": 63.5 + } + ], + "property": "minecraft:time", + "scale": 64.0, + "source": "daytime" + }, + "when": "minecraft:overworld" + } + ], + "fallback": { + "type": "minecraft:range_dispatch", + "entries": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_00" + }, + "threshold": 0.0 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_01" + }, + "threshold": 0.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_02" + }, + "threshold": 1.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_03" + }, + "threshold": 2.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_04" + }, + "threshold": 3.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_05" + }, + "threshold": 4.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_06" + }, + "threshold": 5.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_07" + }, + "threshold": 6.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_08" + }, + "threshold": 7.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_09" + }, + "threshold": 8.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_10" + }, + "threshold": 9.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_11" + }, + "threshold": 10.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_12" + }, + "threshold": 11.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_13" + }, + "threshold": 12.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_14" + }, + "threshold": 13.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_15" + }, + "threshold": 14.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_16" + }, + "threshold": 15.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_17" + }, + "threshold": 16.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_18" + }, + "threshold": 17.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_19" + }, + "threshold": 18.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_20" + }, + "threshold": 19.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_21" + }, + "threshold": 20.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_22" + }, + "threshold": 21.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_23" + }, + "threshold": 22.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_24" + }, + "threshold": 23.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_25" + }, + "threshold": 24.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_26" + }, + "threshold": 25.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_27" + }, + "threshold": 26.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_28" + }, + "threshold": 27.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_29" + }, + "threshold": 28.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_30" + }, + "threshold": 29.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_31" + }, + "threshold": 30.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_32" + }, + "threshold": 31.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_33" + }, + "threshold": 32.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_34" + }, + "threshold": 33.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_35" + }, + "threshold": 34.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_36" + }, + "threshold": 35.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_37" + }, + "threshold": 36.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_38" + }, + "threshold": 37.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_39" + }, + "threshold": 38.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_40" + }, + "threshold": 39.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_41" + }, + "threshold": 40.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_42" + }, + "threshold": 41.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_43" + }, + "threshold": 42.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_44" + }, + "threshold": 43.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_45" + }, + "threshold": 44.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_46" + }, + "threshold": 45.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_47" + }, + "threshold": 46.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_48" + }, + "threshold": 47.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_49" + }, + "threshold": 48.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_50" + }, + "threshold": 49.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_51" + }, + "threshold": 50.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_52" + }, + "threshold": 51.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_53" + }, + "threshold": 52.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_54" + }, + "threshold": 53.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_55" + }, + "threshold": 54.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_56" + }, + "threshold": 55.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_57" + }, + "threshold": 56.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_58" + }, + "threshold": 57.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_59" + }, + "threshold": 58.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_60" + }, + "threshold": 59.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_61" + }, + "threshold": 60.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_62" + }, + "threshold": 61.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_63" + }, + "threshold": 62.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/clock_00" + }, + "threshold": 63.5 + } + ], + "property": "minecraft:time", + "scale": 64.0, + "source": "random" + }, + "property": "minecraft:context_dimension" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/closed_eyeblossom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/closed_eyeblossom.json new file mode 100644 index 000000000..136145b5c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/closed_eyeblossom.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/closed_eyeblossom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/coal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/coal.json new file mode 100644 index 000000000..0566981fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/coal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/coal" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/coal_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/coal_block.json new file mode 100644 index 000000000..f970b5e87 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/coal_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/coal_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/coal_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/coal_ore.json new file mode 100644 index 000000000..fe51726ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/coal_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/coal_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/coarse_dirt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/coarse_dirt.json new file mode 100644 index 000000000..03a9d9845 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/coarse_dirt.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/coarse_dirt" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/coast_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/coast_armor_trim_smithing_template.json new file mode 100644 index 000000000..9e34212cc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/coast_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/coast_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobbled_deepslate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobbled_deepslate.json new file mode 100644 index 000000000..ff8306379 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobbled_deepslate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobbled_deepslate_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobbled_deepslate_slab.json new file mode 100644 index 000000000..c3ac1ae1f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobbled_deepslate_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cobbled_deepslate_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobbled_deepslate_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobbled_deepslate_stairs.json new file mode 100644 index 000000000..3ee9e6fdf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobbled_deepslate_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cobbled_deepslate_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobbled_deepslate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobbled_deepslate_wall.json new file mode 100644 index 000000000..97c02a347 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobbled_deepslate_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cobbled_deepslate_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobblestone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobblestone.json new file mode 100644 index 000000000..3bee3d364 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobblestone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobblestone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobblestone_slab.json new file mode 100644 index 000000000..36c47e67d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobblestone_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cobblestone_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobblestone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobblestone_stairs.json new file mode 100644 index 000000000..44b025616 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobblestone_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cobblestone_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobblestone_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobblestone_wall.json new file mode 100644 index 000000000..edc14d448 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobblestone_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cobblestone_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobweb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobweb.json new file mode 100644 index 000000000..ce2319b78 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cobweb.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cobweb" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cocoa_beans.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cocoa_beans.json new file mode 100644 index 000000000..a3c054a4c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cocoa_beans.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cocoa_beans" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cod.json new file mode 100644 index 000000000..3f0aac7af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cod.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cod" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cod_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cod_bucket.json new file mode 100644 index 000000000..967b87f18 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cod_bucket.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cod_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cod_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cod_spawn_egg.json new file mode 100644 index 000000000..7acc524f9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cod_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cod_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/command_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/command_block.json new file mode 100644 index 000000000..7e5c23d2d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/command_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/command_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/command_block_minecart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/command_block_minecart.json new file mode 100644 index 000000000..2ce1c002d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/command_block_minecart.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/command_block_minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/comparator.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/comparator.json new file mode 100644 index 000000000..cc2d4f1fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/comparator.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/comparator" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/compass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/compass.json new file mode 100644 index 000000000..96043c807 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/compass.json @@ -0,0 +1,733 @@ +{ + "model": { + "type": "minecraft:condition", + "component": "minecraft:lodestone_tracker", + "on_false": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:range_dispatch", + "entries": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_16" + }, + "threshold": 0.0 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_17" + }, + "threshold": 0.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_18" + }, + "threshold": 1.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_19" + }, + "threshold": 2.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_20" + }, + "threshold": 3.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_21" + }, + "threshold": 4.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_22" + }, + "threshold": 5.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_23" + }, + "threshold": 6.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_24" + }, + "threshold": 7.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_25" + }, + "threshold": 8.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_26" + }, + "threshold": 9.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_27" + }, + "threshold": 10.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_28" + }, + "threshold": 11.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_29" + }, + "threshold": 12.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_30" + }, + "threshold": 13.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_31" + }, + "threshold": 14.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_00" + }, + "threshold": 15.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_01" + }, + "threshold": 16.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_02" + }, + "threshold": 17.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_03" + }, + "threshold": 18.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_04" + }, + "threshold": 19.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_05" + }, + "threshold": 20.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_06" + }, + "threshold": 21.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_07" + }, + "threshold": 22.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_08" + }, + "threshold": 23.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_09" + }, + "threshold": 24.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_10" + }, + "threshold": 25.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_11" + }, + "threshold": 26.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_12" + }, + "threshold": 27.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_13" + }, + "threshold": 28.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_14" + }, + "threshold": 29.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_15" + }, + "threshold": 30.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_16" + }, + "threshold": 31.5 + } + ], + "property": "minecraft:compass", + "scale": 32.0, + "target": "spawn" + }, + "when": "minecraft:overworld" + } + ], + "fallback": { + "type": "minecraft:range_dispatch", + "entries": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_16" + }, + "threshold": 0.0 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_17" + }, + "threshold": 0.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_18" + }, + "threshold": 1.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_19" + }, + "threshold": 2.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_20" + }, + "threshold": 3.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_21" + }, + "threshold": 4.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_22" + }, + "threshold": 5.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_23" + }, + "threshold": 6.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_24" + }, + "threshold": 7.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_25" + }, + "threshold": 8.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_26" + }, + "threshold": 9.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_27" + }, + "threshold": 10.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_28" + }, + "threshold": 11.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_29" + }, + "threshold": 12.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_30" + }, + "threshold": 13.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_31" + }, + "threshold": 14.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_00" + }, + "threshold": 15.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_01" + }, + "threshold": 16.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_02" + }, + "threshold": 17.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_03" + }, + "threshold": 18.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_04" + }, + "threshold": 19.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_05" + }, + "threshold": 20.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_06" + }, + "threshold": 21.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_07" + }, + "threshold": 22.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_08" + }, + "threshold": 23.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_09" + }, + "threshold": 24.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_10" + }, + "threshold": 25.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_11" + }, + "threshold": 26.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_12" + }, + "threshold": 27.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_13" + }, + "threshold": 28.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_14" + }, + "threshold": 29.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_15" + }, + "threshold": 30.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_16" + }, + "threshold": 31.5 + } + ], + "property": "minecraft:compass", + "scale": 32.0, + "target": "none" + }, + "property": "minecraft:context_dimension" + }, + "on_true": { + "type": "minecraft:range_dispatch", + "entries": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_16" + }, + "threshold": 0.0 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_17" + }, + "threshold": 0.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_18" + }, + "threshold": 1.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_19" + }, + "threshold": 2.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_20" + }, + "threshold": 3.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_21" + }, + "threshold": 4.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_22" + }, + "threshold": 5.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_23" + }, + "threshold": 6.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_24" + }, + "threshold": 7.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_25" + }, + "threshold": 8.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_26" + }, + "threshold": 9.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_27" + }, + "threshold": 10.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_28" + }, + "threshold": 11.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_29" + }, + "threshold": 12.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_30" + }, + "threshold": 13.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_31" + }, + "threshold": 14.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_00" + }, + "threshold": 15.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_01" + }, + "threshold": 16.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_02" + }, + "threshold": 17.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_03" + }, + "threshold": 18.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_04" + }, + "threshold": 19.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_05" + }, + "threshold": 20.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_06" + }, + "threshold": 21.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_07" + }, + "threshold": 22.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_08" + }, + "threshold": 23.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_09" + }, + "threshold": 24.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_10" + }, + "threshold": 25.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_11" + }, + "threshold": 26.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_12" + }, + "threshold": 27.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_13" + }, + "threshold": 28.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_14" + }, + "threshold": 29.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_15" + }, + "threshold": 30.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/compass_16" + }, + "threshold": 31.5 + } + ], + "property": "minecraft:compass", + "scale": 32.0, + "target": "lodestone" + }, + "property": "minecraft:has_component" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/composter.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/composter.json new file mode 100644 index 000000000..875bef79a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/composter.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/composter" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/conduit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/conduit.json new file mode 100644 index 000000000..d5c87e900 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/conduit.json @@ -0,0 +1,9 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/conduit", + "model": { + "type": "minecraft:conduit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_beef.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_beef.json new file mode 100644 index 000000000..cc5cb0215 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_beef.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cooked_beef" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_chicken.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_chicken.json new file mode 100644 index 000000000..3020db999 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_chicken.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cooked_chicken" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_cod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_cod.json new file mode 100644 index 000000000..4797e5788 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_cod.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cooked_cod" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_mutton.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_mutton.json new file mode 100644 index 000000000..3171e1c22 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_mutton.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cooked_mutton" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_porkchop.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_porkchop.json new file mode 100644 index 000000000..57146f2e0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_porkchop.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cooked_porkchop" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_rabbit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_rabbit.json new file mode 100644 index 000000000..1284ba18e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_rabbit.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cooked_rabbit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_salmon.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_salmon.json new file mode 100644 index 000000000..7a6c01056 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cooked_salmon.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cooked_salmon" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cookie.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cookie.json new file mode 100644 index 000000000..de14c9c80 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cookie.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cookie" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_block.json new file mode 100644 index 000000000..5060ed21a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/copper_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_bulb.json new file mode 100644 index 000000000..feafbf2c1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_bulb.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/copper_bulb" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_door.json new file mode 100644 index 000000000..6bc75ee4d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/copper_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_grate.json new file mode 100644 index 000000000..7d9789bce --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_grate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/copper_grate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_ingot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_ingot.json new file mode 100644 index 000000000..e96004782 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_ingot.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/copper_ingot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_ore.json new file mode 100644 index 000000000..1e6e607a9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/copper_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_trapdoor.json new file mode 100644 index 000000000..03981dc9b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/copper_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/copper_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cornflower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cornflower.json new file mode 100644 index 000000000..d2574a752 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cornflower.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cornflower" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cow_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cow_spawn_egg.json new file mode 100644 index 000000000..6b96bbc44 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cow_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cow_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cracked_deepslate_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cracked_deepslate_bricks.json new file mode 100644 index 000000000..65f9968cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cracked_deepslate_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cracked_deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cracked_deepslate_tiles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cracked_deepslate_tiles.json new file mode 100644 index 000000000..6776f026f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cracked_deepslate_tiles.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cracked_deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cracked_nether_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cracked_nether_bricks.json new file mode 100644 index 000000000..17b2f4a21 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cracked_nether_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cracked_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cracked_polished_blackstone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cracked_polished_blackstone_bricks.json new file mode 100644 index 000000000..c62bb99cf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cracked_polished_blackstone_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cracked_polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cracked_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cracked_stone_bricks.json new file mode 100644 index 000000000..0d27cdde0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cracked_stone_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cracked_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crafter.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crafter.json new file mode 100644 index 000000000..946645919 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crafter.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/crafter" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crafting_table.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crafting_table.json new file mode 100644 index 000000000..4b3440108 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crafting_table.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/crafting_table" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/creaking_heart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/creaking_heart.json new file mode 100644 index 000000000..9948ea1c6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/creaking_heart.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/creaking_heart" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/creaking_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/creaking_spawn_egg.json new file mode 100644 index 000000000..28d9c05f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/creaking_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/creaking_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/creeper_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/creeper_banner_pattern.json new file mode 100644 index 000000000..27a4d07e8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/creeper_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/creeper_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/creeper_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/creeper_head.json new file mode 100644 index 000000000..f6f751723 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/creeper_head.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_skull", + "model": { + "type": "minecraft:head", + "kind": "creeper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/creeper_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/creeper_spawn_egg.json new file mode 100644 index 000000000..902e2a5d4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/creeper_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/creeper_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_button.json new file mode 100644 index 000000000..2cdecbd06 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_button.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/crimson_button_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_door.json new file mode 100644 index 000000000..1240cf332 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/crimson_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_fence.json new file mode 100644 index 000000000..812852a24 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_fence.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/crimson_fence_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_fence_gate.json new file mode 100644 index 000000000..88baf9086 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_fence_gate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/crimson_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_fungus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_fungus.json new file mode 100644 index 000000000..b6a089cc2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_fungus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/crimson_fungus" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_hanging_sign.json new file mode 100644 index 000000000..04e82b760 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/crimson_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_hyphae.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_hyphae.json new file mode 100644 index 000000000..7f024ebf2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_hyphae.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/crimson_hyphae" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_nylium.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_nylium.json new file mode 100644 index 000000000..75856f32a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_nylium.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/crimson_nylium" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_planks.json new file mode 100644 index 000000000..e56ca28b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_planks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_pressure_plate.json new file mode 100644 index 000000000..ca86d5950 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/crimson_pressure_plate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_roots.json new file mode 100644 index 000000000..80a592a71 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_roots.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/crimson_roots" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_sign.json new file mode 100644 index 000000000..3d72a4816 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/crimson_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_slab.json new file mode 100644 index 000000000..816e9385e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/crimson_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_stairs.json new file mode 100644 index 000000000..205a62f9e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/crimson_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_stem.json new file mode 100644 index 000000000..4658241ca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_stem.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_trapdoor.json new file mode 100644 index 000000000..c11a4fd81 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crimson_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/crimson_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crossbow.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crossbow.json new file mode 100644 index 000000000..f5ca31528 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crossbow.json @@ -0,0 +1,54 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/crossbow_arrow" + }, + "when": "arrow" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/crossbow_firework" + }, + "when": "rocket" + } + ], + "fallback": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/crossbow" + }, + "on_true": { + "type": "minecraft:range_dispatch", + "entries": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/crossbow_pulling_1" + }, + "threshold": 0.58 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/crossbow_pulling_2" + }, + "threshold": 1.0 + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/crossbow_pulling_0" + }, + "property": "minecraft:crossbow/pull" + }, + "property": "minecraft:using_item" + }, + "property": "minecraft:charge_type" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crying_obsidian.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crying_obsidian.json new file mode 100644 index 000000000..146f8de50 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/crying_obsidian.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/crying_obsidian" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_copper.json new file mode 100644 index 000000000..69a734c6b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_copper_slab.json new file mode 100644 index 000000000..1f8c61975 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_copper_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cut_copper_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_copper_stairs.json new file mode 100644 index 000000000..d63128c1a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_copper_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cut_copper_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_red_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_red_sandstone.json new file mode 100644 index 000000000..ea4701a34 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_red_sandstone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cut_red_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_red_sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_red_sandstone_slab.json new file mode 100644 index 000000000..fc25924e7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_red_sandstone_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cut_red_sandstone_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_sandstone.json new file mode 100644 index 000000000..2f1fe0cad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_sandstone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cut_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_sandstone_slab.json new file mode 100644 index 000000000..bcfef093d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cut_sandstone_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cut_sandstone_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_banner.json new file mode 100644 index 000000000..d7c7b2ce4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_banner.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_banner", + "model": { + "type": "minecraft:banner", + "color": "cyan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_bed.json new file mode 100644 index 000000000..cde65b26c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_bed.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/cyan_bed", + "model": { + "type": "minecraft:bed", + "texture": "minecraft:cyan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_bundle.json new file mode 100644 index 000000000..47e027450 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_bundle.json @@ -0,0 +1,39 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/cyan_bundle" + }, + "on_true": { + "type": "minecraft:composite", + "models": [ + { + "type": "minecraft:model", + "model": "minecraft:item/cyan_bundle_open_back" + }, + { + "type": "minecraft:bundle/selected_item" + }, + { + "type": "minecraft:model", + "model": "minecraft:item/cyan_bundle_open_front" + } + ] + }, + "property": "minecraft:bundle/has_selected_item" + }, + "when": "gui" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/cyan_bundle" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_candle.json new file mode 100644 index 000000000..129135ed4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_candle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cyan_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_carpet.json new file mode 100644 index 000000000..3bf293b85 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cyan_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_concrete.json new file mode 100644 index 000000000..61b934e07 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_concrete.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cyan_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_concrete_powder.json new file mode 100644 index 000000000..884f433c6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cyan_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_dye.json new file mode 100644 index 000000000..d7e89cb52 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_dye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cyan_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_glazed_terracotta.json new file mode 100644 index 000000000..a748751d9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cyan_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_harness.json new file mode 100644 index 000000000..282a58d01 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_harness.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cyan_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_shulker_box.json new file mode 100644 index 000000000..7f58255e7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_shulker_box.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/cyan_shulker_box", + "model": { + "type": "minecraft:shulker_box", + "texture": "minecraft:shulker_cyan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_stained_glass.json new file mode 100644 index 000000000..c9ef053ab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_stained_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cyan_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_stained_glass_pane.json new file mode 100644 index 000000000..b1ea0bd46 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/cyan_stained_glass_pane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_terracotta.json new file mode 100644 index 000000000..f93b202d3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cyan_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_wool.json new file mode 100644 index 000000000..f9ef9a366 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/cyan_wool.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cyan_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/damaged_anvil.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/damaged_anvil.json new file mode 100644 index 000000000..afd397f7b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/damaged_anvil.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/damaged_anvil" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dandelion.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dandelion.json new file mode 100644 index 000000000..382f6e83c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dandelion.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dandelion" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/danger_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/danger_pottery_sherd.json new file mode 100644 index 000000000..b18e7728d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/danger_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/danger_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_boat.json new file mode 100644 index 000000000..1952ebc3f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dark_oak_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_button.json new file mode 100644 index 000000000..3164e1b14 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_button.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dark_oak_button_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_chest_boat.json new file mode 100644 index 000000000..36fe0c084 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_chest_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dark_oak_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_door.json new file mode 100644 index 000000000..91274e3e9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dark_oak_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_fence.json new file mode 100644 index 000000000..b84fa9384 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_fence.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dark_oak_fence_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_fence_gate.json new file mode 100644 index 000000000..890a14c35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_fence_gate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dark_oak_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_hanging_sign.json new file mode 100644 index 000000000..d0ec9e729 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dark_oak_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_leaves.json new file mode 100644 index 000000000..361a25da5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_leaves.json @@ -0,0 +1,12 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dark_oak_leaves", + "tints": [ + { + "type": "minecraft:constant", + "value": -12012264 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_log.json new file mode 100644 index 000000000..3cbf4ecdb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_planks.json new file mode 100644 index 000000000..acd7c7548 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_planks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_pressure_plate.json new file mode 100644 index 000000000..1deb44857 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dark_oak_pressure_plate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_sapling.json new file mode 100644 index 000000000..3e9a56994 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dark_oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_sign.json new file mode 100644 index 000000000..5f48fb976 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dark_oak_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_slab.json new file mode 100644 index 000000000..f1ecf6324 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dark_oak_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_stairs.json new file mode 100644 index 000000000..97fd5d60a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dark_oak_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_trapdoor.json new file mode 100644 index 000000000..0c69766d2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dark_oak_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_wood.json new file mode 100644 index 000000000..7d4be143c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_oak_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dark_oak_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_prismarine.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_prismarine.json new file mode 100644 index 000000000..dbba47193 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_prismarine.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dark_prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_prismarine_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_prismarine_slab.json new file mode 100644 index 000000000..ee4f6a9e3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_prismarine_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dark_prismarine_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_prismarine_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_prismarine_stairs.json new file mode 100644 index 000000000..1812a3a18 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dark_prismarine_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dark_prismarine_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/daylight_detector.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/daylight_detector.json new file mode 100644 index 000000000..fc5cdd096 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/daylight_detector.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/daylight_detector" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_brain_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_brain_coral.json new file mode 100644 index 000000000..b1993918b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_brain_coral.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dead_brain_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_brain_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_brain_coral_block.json new file mode 100644 index 000000000..18a18322b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_brain_coral_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dead_brain_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_brain_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_brain_coral_fan.json new file mode 100644 index 000000000..797dee12c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_brain_coral_fan.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dead_brain_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_bubble_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_bubble_coral.json new file mode 100644 index 000000000..1bed424d0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_bubble_coral.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dead_bubble_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_bubble_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_bubble_coral_block.json new file mode 100644 index 000000000..df88e21cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_bubble_coral_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dead_bubble_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_bubble_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_bubble_coral_fan.json new file mode 100644 index 000000000..ce5bb921f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_bubble_coral_fan.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dead_bubble_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_bush.json new file mode 100644 index 000000000..32b706c4b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_bush.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dead_bush" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_fire_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_fire_coral.json new file mode 100644 index 000000000..97d7a23db --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_fire_coral.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dead_fire_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_fire_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_fire_coral_block.json new file mode 100644 index 000000000..6a4dc6c8e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_fire_coral_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dead_fire_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_fire_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_fire_coral_fan.json new file mode 100644 index 000000000..3fccaf45a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_fire_coral_fan.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dead_fire_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_horn_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_horn_coral.json new file mode 100644 index 000000000..cbd3d5b47 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_horn_coral.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dead_horn_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_horn_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_horn_coral_block.json new file mode 100644 index 000000000..b3ddffcfb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_horn_coral_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dead_horn_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_horn_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_horn_coral_fan.json new file mode 100644 index 000000000..9a918b171 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_horn_coral_fan.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dead_horn_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_tube_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_tube_coral.json new file mode 100644 index 000000000..22b39b2cc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_tube_coral.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dead_tube_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_tube_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_tube_coral_block.json new file mode 100644 index 000000000..07d1be184 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_tube_coral_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dead_tube_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_tube_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_tube_coral_fan.json new file mode 100644 index 000000000..a5e9f8ef2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dead_tube_coral_fan.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dead_tube_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/debug_stick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/debug_stick.json new file mode 100644 index 000000000..de806dede --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/debug_stick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/debug_stick" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/decorated_pot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/decorated_pot.json new file mode 100644 index 000000000..24c90d56a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/decorated_pot.json @@ -0,0 +1,9 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/decorated_pot", + "model": { + "type": "minecraft:decorated_pot" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate.json new file mode 100644 index 000000000..77255c70c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_brick_slab.json new file mode 100644 index 000000000..bbc99bad2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate_brick_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_brick_stairs.json new file mode 100644 index 000000000..96502eaf5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate_brick_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_brick_wall.json new file mode 100644 index 000000000..738c6fe1e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate_brick_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_bricks.json new file mode 100644 index 000000000..fbd9457a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_coal_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_coal_ore.json new file mode 100644 index 000000000..1f90c2541 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_coal_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate_coal_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_copper_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_copper_ore.json new file mode 100644 index 000000000..3f26206e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_copper_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate_copper_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_diamond_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_diamond_ore.json new file mode 100644 index 000000000..848916bf5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_diamond_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate_diamond_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_emerald_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_emerald_ore.json new file mode 100644 index 000000000..aea0b2973 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_emerald_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate_emerald_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_gold_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_gold_ore.json new file mode 100644 index 000000000..c9f3f73b6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_gold_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate_gold_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_iron_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_iron_ore.json new file mode 100644 index 000000000..0a9817bef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_iron_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate_iron_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_lapis_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_lapis_ore.json new file mode 100644 index 000000000..d70b96607 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_lapis_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate_lapis_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_redstone_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_redstone_ore.json new file mode 100644 index 000000000..630e4e933 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_redstone_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate_redstone_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_tile_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_tile_slab.json new file mode 100644 index 000000000..8a2479805 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_tile_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate_tile_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_tile_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_tile_stairs.json new file mode 100644 index 000000000..dbd7c39f8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_tile_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate_tile_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_tile_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_tile_wall.json new file mode 100644 index 000000000..e1b441524 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_tile_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate_tile_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_tiles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_tiles.json new file mode 100644 index 000000000..b2bd01fa2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/deepslate_tiles.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/detector_rail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/detector_rail.json new file mode 100644 index 000000000..0f427f97d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/detector_rail.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/detector_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond.json new file mode 100644 index 000000000..02943ce17 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_axe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_axe.json new file mode 100644 index 000000000..977851810 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_block.json new file mode 100644 index 000000000..05528085b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/diamond_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_boots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_boots.json new file mode 100644 index 000000000..6e9f7f195 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_boots.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_boots_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_boots_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_boots_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_boots_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_boots_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_boots_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_boots_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_boots_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_boots_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_boots_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_boots_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_boots" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_chestplate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_chestplate.json new file mode 100644 index 000000000..792fcdc85 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_chestplate.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_chestplate_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_chestplate_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_chestplate_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_chestplate_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_chestplate_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_chestplate_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_chestplate_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_chestplate_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_chestplate_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_chestplate_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_chestplate_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_chestplate" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_helmet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_helmet.json new file mode 100644 index 000000000..e972bdca9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_helmet.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_helmet_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_helmet_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_helmet_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_helmet_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_helmet_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_helmet_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_helmet_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_helmet_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_helmet_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_helmet_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_helmet_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_helmet" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_hoe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_hoe.json new file mode 100644 index 000000000..e870e0233 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_horse_armor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_horse_armor.json new file mode 100644 index 000000000..0cb3d2efe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_horse_armor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_horse_armor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_leggings.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_leggings.json new file mode 100644 index 000000000..b56966d3d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_leggings.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_leggings_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_leggings_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_leggings_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_leggings_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_leggings_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_leggings_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_leggings_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_leggings_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_leggings_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_leggings_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_leggings_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_leggings" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_ore.json new file mode 100644 index 000000000..21cfe182a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/diamond_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_pickaxe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_pickaxe.json new file mode 100644 index 000000000..bb25d0e69 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_shovel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_shovel.json new file mode 100644 index 000000000..8a66cef5e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_shovel.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_sword.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_sword.json new file mode 100644 index 000000000..feaff1754 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diamond_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/diamond_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diorite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diorite.json new file mode 100644 index 000000000..c46df5c36 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diorite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diorite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diorite_slab.json new file mode 100644 index 000000000..2970c9d87 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diorite_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/diorite_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diorite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diorite_stairs.json new file mode 100644 index 000000000..35afcd780 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diorite_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/diorite_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diorite_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diorite_wall.json new file mode 100644 index 000000000..e6f625f87 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/diorite_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/diorite_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dirt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dirt.json new file mode 100644 index 000000000..2a743f35c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dirt.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dirt" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dirt_path.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dirt_path.json new file mode 100644 index 000000000..5acab8917 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dirt_path.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dirt_path" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/disc_fragment_5.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/disc_fragment_5.json new file mode 100644 index 000000000..bd88e9b05 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/disc_fragment_5.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/disc_fragment_5" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dispenser.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dispenser.json new file mode 100644 index 000000000..3976f3461 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dispenser.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dispenser" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dolphin_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dolphin_spawn_egg.json new file mode 100644 index 000000000..d62c77437 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dolphin_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dolphin_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/donkey_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/donkey_spawn_egg.json new file mode 100644 index 000000000..08084f196 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/donkey_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/donkey_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dragon_breath.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dragon_breath.json new file mode 100644 index 000000000..781929042 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dragon_breath.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dragon_breath" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dragon_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dragon_egg.json new file mode 100644 index 000000000..694567c09 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dragon_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dragon_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dragon_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dragon_head.json new file mode 100644 index 000000000..71017923e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dragon_head.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/dragon_head", + "model": { + "type": "minecraft:head", + "kind": "dragon" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dried_ghast.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dried_ghast.json new file mode 100644 index 000000000..4bd0466e8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dried_ghast.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dried_ghast_hydration_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dried_kelp.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dried_kelp.json new file mode 100644 index 000000000..497ffaac7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dried_kelp.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dried_kelp" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dried_kelp_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dried_kelp_block.json new file mode 100644 index 000000000..6f9f27b8e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dried_kelp_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dried_kelp_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dripstone_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dripstone_block.json new file mode 100644 index 000000000..de199adae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dripstone_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dripstone_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dropper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dropper.json new file mode 100644 index 000000000..0e5ba841f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dropper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/dropper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/drowned_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/drowned_spawn_egg.json new file mode 100644 index 000000000..f5a68e33a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/drowned_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/drowned_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dune_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dune_armor_trim_smithing_template.json new file mode 100644 index 000000000..b59a172b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/dune_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/dune_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/echo_shard.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/echo_shard.json new file mode 100644 index 000000000..c1f986f23 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/echo_shard.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/echo_shard" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/egg.json new file mode 100644 index 000000000..39c588275 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/elder_guardian_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/elder_guardian_spawn_egg.json new file mode 100644 index 000000000..c8fb7e155 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/elder_guardian_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/elder_guardian_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/elytra.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/elytra.json new file mode 100644 index 000000000..2ec75b20c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/elytra.json @@ -0,0 +1,14 @@ +{ + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/elytra" + }, + "on_true": { + "type": "minecraft:model", + "model": "minecraft:item/elytra_broken" + }, + "property": "minecraft:broken" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/emerald.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/emerald.json new file mode 100644 index 000000000..1bb686430 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/emerald.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/emerald_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/emerald_block.json new file mode 100644 index 000000000..1cdd248ae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/emerald_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/emerald_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/emerald_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/emerald_ore.json new file mode 100644 index 000000000..fee596cc9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/emerald_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/emerald_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/enchanted_book.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/enchanted_book.json new file mode 100644 index 000000000..d040f8bb6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/enchanted_book.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/enchanted_book" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/enchanted_golden_apple.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/enchanted_golden_apple.json new file mode 100644 index 000000000..824327a4b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/enchanted_golden_apple.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/enchanted_golden_apple" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/enchanting_table.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/enchanting_table.json new file mode 100644 index 000000000..6cfff24f8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/enchanting_table.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/enchanting_table" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_crystal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_crystal.json new file mode 100644 index 000000000..871b593cb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_crystal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/end_crystal" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_portal_frame.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_portal_frame.json new file mode 100644 index 000000000..764c8d353 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_portal_frame.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/end_portal_frame" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_rod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_rod.json new file mode 100644 index 000000000..f7d7c6347 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_rod.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/end_rod" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_stone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_stone.json new file mode 100644 index 000000000..86ea9e802 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_stone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/end_stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_stone_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_stone_brick_slab.json new file mode 100644 index 000000000..5e7dc44b5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_stone_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/end_stone_brick_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_stone_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_stone_brick_stairs.json new file mode 100644 index 000000000..4de71c7c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_stone_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/end_stone_brick_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_stone_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_stone_brick_wall.json new file mode 100644 index 000000000..479e30114 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_stone_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/end_stone_brick_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_stone_bricks.json new file mode 100644 index 000000000..d66988536 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/end_stone_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ender_chest.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ender_chest.json new file mode 100644 index 000000000..54793a77e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ender_chest.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/ender_chest", + "model": { + "type": "minecraft:chest", + "texture": "minecraft:ender" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ender_dragon_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ender_dragon_spawn_egg.json new file mode 100644 index 000000000..7d82e2205 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ender_dragon_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/ender_dragon_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ender_eye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ender_eye.json new file mode 100644 index 000000000..cfa768b76 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ender_eye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/ender_eye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ender_pearl.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ender_pearl.json new file mode 100644 index 000000000..b7bfc1508 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ender_pearl.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/ender_pearl" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/enderman_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/enderman_spawn_egg.json new file mode 100644 index 000000000..475b46848 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/enderman_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/enderman_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/endermite_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/endermite_spawn_egg.json new file mode 100644 index 000000000..cc26c7ccd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/endermite_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/endermite_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/evoker_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/evoker_spawn_egg.json new file mode 100644 index 000000000..e1eff9966 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/evoker_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/evoker_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/experience_bottle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/experience_bottle.json new file mode 100644 index 000000000..08f831b3b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/experience_bottle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/experience_bottle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/explorer_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/explorer_pottery_sherd.json new file mode 100644 index 000000000..fdae35328 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/explorer_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/explorer_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_chiseled_copper.json new file mode 100644 index 000000000..22657b6a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_chiseled_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_copper.json new file mode 100644 index 000000000..632da6748 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/exposed_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_copper_bulb.json new file mode 100644 index 000000000..d54e63062 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_copper_bulb.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/exposed_copper_bulb" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_copper_door.json new file mode 100644 index 000000000..0ca6e2ca8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_copper_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/exposed_copper_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_copper_grate.json new file mode 100644 index 000000000..07c561b46 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_copper_grate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/exposed_copper_grate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_copper_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_copper_trapdoor.json new file mode 100644 index 000000000..260b680ea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_copper_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_cut_copper.json new file mode 100644 index 000000000..35932366f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_cut_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/exposed_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_cut_copper_slab.json new file mode 100644 index 000000000..818f88602 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_cut_copper_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/exposed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_cut_copper_stairs.json new file mode 100644 index 000000000..54f5c1f06 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/exposed_cut_copper_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/exposed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/eye_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/eye_armor_trim_smithing_template.json new file mode 100644 index 000000000..1c5d86eae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/eye_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/eye_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/farmland.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/farmland.json new file mode 100644 index 000000000..394f6a5a5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/farmland.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/farmland" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/feather.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/feather.json new file mode 100644 index 000000000..809e75b90 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/feather.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/feather" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fermented_spider_eye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fermented_spider_eye.json new file mode 100644 index 000000000..5bce62ffb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fermented_spider_eye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/fermented_spider_eye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fern.json new file mode 100644 index 000000000..fc6e75168 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fern.json @@ -0,0 +1,13 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/fern", + "tints": [ + { + "type": "minecraft:grass", + "downfall": 1.0, + "temperature": 0.5 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/field_masoned_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/field_masoned_banner_pattern.json new file mode 100644 index 000000000..c6fd6ad8a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/field_masoned_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/field_masoned_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/filled_map.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/filled_map.json new file mode 100644 index 000000000..9152f37cf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/filled_map.json @@ -0,0 +1,16 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/filled_map", + "tints": [ + { + "type": "minecraft:constant", + "value": -1 + }, + { + "type": "minecraft:map_color", + "default": 4603950 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fire_charge.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fire_charge.json new file mode 100644 index 000000000..8326bf8d3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fire_charge.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/fire_charge" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fire_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fire_coral.json new file mode 100644 index 000000000..835c481f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fire_coral.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/fire_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fire_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fire_coral_block.json new file mode 100644 index 000000000..027c9f9c6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fire_coral_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/fire_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fire_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fire_coral_fan.json new file mode 100644 index 000000000..5746686fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fire_coral_fan.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/fire_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/firefly_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/firefly_bush.json new file mode 100644 index 000000000..a60a20fed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/firefly_bush.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/firefly_bush" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/firework_rocket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/firework_rocket.json new file mode 100644 index 000000000..98341aa0f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/firework_rocket.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/firework_rocket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/firework_star.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/firework_star.json new file mode 100644 index 000000000..deec259f8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/firework_star.json @@ -0,0 +1,16 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/firework_star", + "tints": [ + { + "type": "minecraft:constant", + "value": -1 + }, + { + "type": "minecraft:firework", + "default": -7697782 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fishing_rod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fishing_rod.json new file mode 100644 index 000000000..e22968886 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fishing_rod.json @@ -0,0 +1,14 @@ +{ + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/fishing_rod" + }, + "on_true": { + "type": "minecraft:model", + "model": "minecraft:item/fishing_rod_cast" + }, + "property": "minecraft:fishing_rod/cast" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fletching_table.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fletching_table.json new file mode 100644 index 000000000..f92820f73 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fletching_table.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/fletching_table" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flint.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flint.json new file mode 100644 index 000000000..a1741a1ff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flint.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/flint" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flint_and_steel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flint_and_steel.json new file mode 100644 index 000000000..279808b9e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flint_and_steel.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/flint_and_steel" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flow_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flow_armor_trim_smithing_template.json new file mode 100644 index 000000000..cf915b314 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flow_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/flow_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flow_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flow_banner_pattern.json new file mode 100644 index 000000000..bd51343af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flow_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/flow_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flow_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flow_pottery_sherd.json new file mode 100644 index 000000000..2c4cd8102 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flow_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/flow_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flower_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flower_banner_pattern.json new file mode 100644 index 000000000..000a7be87 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flower_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/flower_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flower_pot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flower_pot.json new file mode 100644 index 000000000..619a80d37 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flower_pot.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/flower_pot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flowering_azalea.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flowering_azalea.json new file mode 100644 index 000000000..778616a96 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flowering_azalea.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/flowering_azalea" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flowering_azalea_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flowering_azalea_leaves.json new file mode 100644 index 000000000..35fe16d99 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/flowering_azalea_leaves.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/flowering_azalea_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fox_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fox_spawn_egg.json new file mode 100644 index 000000000..36a8475cf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/fox_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/fox_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/friend_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/friend_pottery_sherd.json new file mode 100644 index 000000000..a5aef4bdc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/friend_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/friend_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/frog_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/frog_spawn_egg.json new file mode 100644 index 000000000..0f6f0d48a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/frog_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/frog_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/frogspawn.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/frogspawn.json new file mode 100644 index 000000000..c78393f55 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/frogspawn.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/frogspawn" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/furnace.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/furnace.json new file mode 100644 index 000000000..6449afc3c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/furnace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/furnace" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/furnace_minecart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/furnace_minecart.json new file mode 100644 index 000000000..26139fe1e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/furnace_minecart.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/furnace_minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ghast_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ghast_spawn_egg.json new file mode 100644 index 000000000..6884ad423 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ghast_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/ghast_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ghast_tear.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ghast_tear.json new file mode 100644 index 000000000..fabdd2d84 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ghast_tear.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/ghast_tear" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gilded_blackstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gilded_blackstone.json new file mode 100644 index 000000000..0ccb924d6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gilded_blackstone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/gilded_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glass.json new file mode 100644 index 000000000..85664175d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glass_bottle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glass_bottle.json new file mode 100644 index 000000000..04f3032eb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glass_bottle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/glass_bottle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glass_pane.json new file mode 100644 index 000000000..9639bbc65 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glass_pane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/glass_pane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glistering_melon_slice.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glistering_melon_slice.json new file mode 100644 index 000000000..843758321 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glistering_melon_slice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/glistering_melon_slice" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/globe_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/globe_banner_pattern.json new file mode 100644 index 000000000..48bb79dbe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/globe_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/globe_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glow_berries.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glow_berries.json new file mode 100644 index 000000000..01214a8b4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glow_berries.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/glow_berries" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glow_ink_sac.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glow_ink_sac.json new file mode 100644 index 000000000..f4b136c79 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glow_ink_sac.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/glow_ink_sac" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glow_item_frame.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glow_item_frame.json new file mode 100644 index 000000000..1f30da645 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glow_item_frame.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/glow_item_frame" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glow_lichen.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glow_lichen.json new file mode 100644 index 000000000..d89ad87b5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glow_lichen.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/glow_lichen" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glow_squid_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glow_squid_spawn_egg.json new file mode 100644 index 000000000..00c1f03c8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glow_squid_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/glow_squid_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glowstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glowstone.json new file mode 100644 index 000000000..5fde95210 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glowstone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/glowstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glowstone_dust.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glowstone_dust.json new file mode 100644 index 000000000..41e727715 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/glowstone_dust.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/glowstone_dust" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/goat_horn.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/goat_horn.json new file mode 100644 index 000000000..d2db83824 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/goat_horn.json @@ -0,0 +1,14 @@ +{ + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/goat_horn" + }, + "on_true": { + "type": "minecraft:model", + "model": "minecraft:item/tooting_goat_horn" + }, + "property": "minecraft:using_item" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/goat_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/goat_spawn_egg.json new file mode 100644 index 000000000..b1f39c6b4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/goat_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/goat_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gold_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gold_block.json new file mode 100644 index 000000000..a03cc3643 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gold_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/gold_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gold_ingot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gold_ingot.json new file mode 100644 index 000000000..b9d3fdd7b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gold_ingot.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/gold_ingot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gold_nugget.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gold_nugget.json new file mode 100644 index 000000000..f88f872e5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gold_nugget.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/gold_nugget" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gold_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gold_ore.json new file mode 100644 index 000000000..d2c6805b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gold_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/gold_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_apple.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_apple.json new file mode 100644 index 000000000..1cab81edb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_apple.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_apple" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_axe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_axe.json new file mode 100644 index 000000000..899c0e74a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_boots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_boots.json new file mode 100644 index 000000000..245b3420e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_boots.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_boots_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_boots_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_boots_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_boots_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_boots_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_boots_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_boots_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_boots_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_boots_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_boots_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_boots_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/golden_boots" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_carrot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_carrot.json new file mode 100644 index 000000000..b6f042872 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_carrot.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_carrot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_chestplate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_chestplate.json new file mode 100644 index 000000000..7478fd9a5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_chestplate.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_chestplate_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_chestplate_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_chestplate_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_chestplate_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_chestplate_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_chestplate_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_chestplate_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_chestplate_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_chestplate_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_chestplate_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_chestplate_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/golden_chestplate" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_helmet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_helmet.json new file mode 100644 index 000000000..2c999700f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_helmet.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_helmet_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_helmet_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_helmet_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_helmet_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_helmet_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_helmet_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_helmet_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_helmet_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_helmet_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_helmet_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_helmet_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/golden_helmet" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_hoe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_hoe.json new file mode 100644 index 000000000..9efc7f14f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_horse_armor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_horse_armor.json new file mode 100644 index 000000000..31f2e4586 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_horse_armor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_horse_armor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_leggings.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_leggings.json new file mode 100644 index 000000000..59eba297f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_leggings.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_leggings_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_leggings_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_leggings_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_leggings_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_leggings_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_leggings_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_leggings_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_leggings_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_leggings_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_leggings_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_leggings_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/golden_leggings" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_pickaxe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_pickaxe.json new file mode 100644 index 000000000..87fcc70c5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_shovel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_shovel.json new file mode 100644 index 000000000..88425bcd7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_shovel.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_sword.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_sword.json new file mode 100644 index 000000000..2f2de3b6f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/golden_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/golden_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/granite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/granite.json new file mode 100644 index 000000000..2ca226ebd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/granite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/granite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/granite_slab.json new file mode 100644 index 000000000..fe961ead1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/granite_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/granite_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/granite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/granite_stairs.json new file mode 100644 index 000000000..0ce2b72ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/granite_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/granite_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/granite_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/granite_wall.json new file mode 100644 index 000000000..e6c7d512b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/granite_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/granite_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/grass_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/grass_block.json new file mode 100644 index 000000000..78f1969c5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/grass_block.json @@ -0,0 +1,13 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/grass_block", + "tints": [ + { + "type": "minecraft:grass", + "downfall": 1.0, + "temperature": 0.5 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gravel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gravel.json new file mode 100644 index 000000000..2026e5445 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gravel.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/gravel" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_banner.json new file mode 100644 index 000000000..8949b04ff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_banner.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_banner", + "model": { + "type": "minecraft:banner", + "color": "gray" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_bed.json new file mode 100644 index 000000000..79e938173 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_bed.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/gray_bed", + "model": { + "type": "minecraft:bed", + "texture": "minecraft:gray" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_bundle.json new file mode 100644 index 000000000..631b36637 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_bundle.json @@ -0,0 +1,39 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/gray_bundle" + }, + "on_true": { + "type": "minecraft:composite", + "models": [ + { + "type": "minecraft:model", + "model": "minecraft:item/gray_bundle_open_back" + }, + { + "type": "minecraft:bundle/selected_item" + }, + { + "type": "minecraft:model", + "model": "minecraft:item/gray_bundle_open_front" + } + ] + }, + "property": "minecraft:bundle/has_selected_item" + }, + "when": "gui" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/gray_bundle" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_candle.json new file mode 100644 index 000000000..343de6d50 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_candle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_carpet.json new file mode 100644 index 000000000..640d832b3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/gray_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_concrete.json new file mode 100644 index 000000000..5c85b853a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_concrete.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/gray_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_concrete_powder.json new file mode 100644 index 000000000..2db1dc072 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/gray_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_dye.json new file mode 100644 index 000000000..979ccdb56 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_dye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/gray_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_glazed_terracotta.json new file mode 100644 index 000000000..30de14b8a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/gray_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_harness.json new file mode 100644 index 000000000..f14c87ccf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_harness.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/gray_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_shulker_box.json new file mode 100644 index 000000000..50b2e1f6e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_shulker_box.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/gray_shulker_box", + "model": { + "type": "minecraft:shulker_box", + "texture": "minecraft:shulker_gray" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_stained_glass.json new file mode 100644 index 000000000..a96dd88e4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_stained_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_stained_glass_pane.json new file mode 100644 index 000000000..6443b917e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/gray_stained_glass_pane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_terracotta.json new file mode 100644 index 000000000..b0e977fb3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/gray_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_wool.json new file mode 100644 index 000000000..34a97462a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gray_wool.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/gray_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_banner.json new file mode 100644 index 000000000..22e57d532 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_banner.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_banner", + "model": { + "type": "minecraft:banner", + "color": "green" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_bed.json new file mode 100644 index 000000000..7658b76c7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_bed.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/green_bed", + "model": { + "type": "minecraft:bed", + "texture": "minecraft:green" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_bundle.json new file mode 100644 index 000000000..59bf89dc9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_bundle.json @@ -0,0 +1,39 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/green_bundle" + }, + "on_true": { + "type": "minecraft:composite", + "models": [ + { + "type": "minecraft:model", + "model": "minecraft:item/green_bundle_open_back" + }, + { + "type": "minecraft:bundle/selected_item" + }, + { + "type": "minecraft:model", + "model": "minecraft:item/green_bundle_open_front" + } + ] + }, + "property": "minecraft:bundle/has_selected_item" + }, + "when": "gui" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/green_bundle" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_candle.json new file mode 100644 index 000000000..6a9b8254c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_candle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/green_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_carpet.json new file mode 100644 index 000000000..c1483ea33 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/green_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_concrete.json new file mode 100644 index 000000000..c8a3f219d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_concrete.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/green_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_concrete_powder.json new file mode 100644 index 000000000..28a51e628 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/green_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_dye.json new file mode 100644 index 000000000..54496b266 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_dye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/green_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_glazed_terracotta.json new file mode 100644 index 000000000..fe562296a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/green_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_harness.json new file mode 100644 index 000000000..5dc05d030 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_harness.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/green_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_shulker_box.json new file mode 100644 index 000000000..96edd07a4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_shulker_box.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/green_shulker_box", + "model": { + "type": "minecraft:shulker_box", + "texture": "minecraft:shulker_green" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_stained_glass.json new file mode 100644 index 000000000..dfe0c272a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_stained_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/green_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_stained_glass_pane.json new file mode 100644 index 000000000..c1fe5ba16 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/green_stained_glass_pane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_terracotta.json new file mode 100644 index 000000000..b86f81064 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/green_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_wool.json new file mode 100644 index 000000000..b4ce7e988 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/green_wool.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/green_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/grindstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/grindstone.json new file mode 100644 index 000000000..4c5f45b68 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/grindstone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/grindstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/guardian_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/guardian_spawn_egg.json new file mode 100644 index 000000000..6d0d8efe2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/guardian_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/guardian_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gunpowder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gunpowder.json new file mode 100644 index 000000000..5db05cef2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/gunpowder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/gunpowder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/guster_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/guster_banner_pattern.json new file mode 100644 index 000000000..d4e3fe1e0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/guster_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/guster_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/guster_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/guster_pottery_sherd.json new file mode 100644 index 000000000..8de8ad0fa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/guster_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/guster_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/hanging_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/hanging_roots.json new file mode 100644 index 000000000..0c5ef0eb5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/hanging_roots.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/hanging_roots" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/happy_ghast_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/happy_ghast_spawn_egg.json new file mode 100644 index 000000000..47dcddc74 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/happy_ghast_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/happy_ghast_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/hay_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/hay_block.json new file mode 100644 index 000000000..da9a175d2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/hay_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/hay_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/heart_of_the_sea.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/heart_of_the_sea.json new file mode 100644 index 000000000..37bab6c87 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/heart_of_the_sea.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/heart_of_the_sea" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/heart_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/heart_pottery_sherd.json new file mode 100644 index 000000000..9c0dc00d6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/heart_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/heart_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/heartbreak_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/heartbreak_pottery_sherd.json new file mode 100644 index 000000000..14b4f6296 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/heartbreak_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/heartbreak_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/heavy_core.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/heavy_core.json new file mode 100644 index 000000000..ea03fa095 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/heavy_core.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/heavy_core" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/heavy_weighted_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/heavy_weighted_pressure_plate.json new file mode 100644 index 000000000..0cc82a64a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/heavy_weighted_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/heavy_weighted_pressure_plate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/hoglin_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/hoglin_spawn_egg.json new file mode 100644 index 000000000..770687ae0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/hoglin_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/hoglin_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/honey_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/honey_block.json new file mode 100644 index 000000000..1e6e3c2fe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/honey_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/honey_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/honey_bottle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/honey_bottle.json new file mode 100644 index 000000000..20f6301c2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/honey_bottle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/honey_bottle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/honeycomb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/honeycomb.json new file mode 100644 index 000000000..35526a0a4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/honeycomb.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/honeycomb" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/honeycomb_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/honeycomb_block.json new file mode 100644 index 000000000..e082e65ae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/honeycomb_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/honeycomb_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/hopper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/hopper.json new file mode 100644 index 000000000..ff8ebdf9d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/hopper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/hopper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/hopper_minecart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/hopper_minecart.json new file mode 100644 index 000000000..b88edb127 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/hopper_minecart.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/hopper_minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/horn_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/horn_coral.json new file mode 100644 index 000000000..715b359f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/horn_coral.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/horn_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/horn_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/horn_coral_block.json new file mode 100644 index 000000000..6b986f24a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/horn_coral_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/horn_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/horn_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/horn_coral_fan.json new file mode 100644 index 000000000..121898de7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/horn_coral_fan.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/horn_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/horse_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/horse_spawn_egg.json new file mode 100644 index 000000000..402399e8e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/horse_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/horse_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/host_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/host_armor_trim_smithing_template.json new file mode 100644 index 000000000..ab6fb59f5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/host_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/host_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/howl_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/howl_pottery_sherd.json new file mode 100644 index 000000000..9f6bba7e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/howl_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/howl_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/husk_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/husk_spawn_egg.json new file mode 100644 index 000000000..fd0ab9146 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/husk_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/husk_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ice.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ice.json new file mode 100644 index 000000000..b8991e788 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/ice" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_chiseled_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_chiseled_stone_bricks.json new file mode 100644 index 000000000..0001e6708 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_chiseled_stone_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chiseled_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_cobblestone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_cobblestone.json new file mode 100644 index 000000000..3bee3d364 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_cobblestone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_cracked_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_cracked_stone_bricks.json new file mode 100644 index 000000000..0d27cdde0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_cracked_stone_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cracked_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_deepslate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_deepslate.json new file mode 100644 index 000000000..77255c70c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_deepslate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_mossy_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_mossy_stone_bricks.json new file mode 100644 index 000000000..431c66314 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_mossy_stone_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_stone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_stone.json new file mode 100644 index 000000000..f5c9f2a0d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_stone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_stone_bricks.json new file mode 100644 index 000000000..a61dd731d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/infested_stone_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ink_sac.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ink_sac.json new file mode 100644 index 000000000..2cfcafe9f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ink_sac.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/ink_sac" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_axe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_axe.json new file mode 100644 index 000000000..3cd80d733 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_bars.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_bars.json new file mode 100644 index 000000000..9a06cea97 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_bars.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_block.json new file mode 100644 index 000000000..36d73e913 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/iron_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_boots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_boots.json new file mode 100644 index 000000000..feb3a4568 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_boots.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_boots_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_boots_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_boots_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_boots_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_boots_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_boots_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_boots_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_boots_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_boots_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_boots_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_boots_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/iron_boots" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_chestplate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_chestplate.json new file mode 100644 index 000000000..98230f972 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_chestplate.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_chestplate_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_chestplate_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_chestplate_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_chestplate_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_chestplate_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_chestplate_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_chestplate_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_chestplate_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_chestplate_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_chestplate_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_chestplate_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/iron_chestplate" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_door.json new file mode 100644 index 000000000..39748231f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_golem_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_golem_spawn_egg.json new file mode 100644 index 000000000..a9a9a4bf8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_golem_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_golem_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_helmet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_helmet.json new file mode 100644 index 000000000..719098af4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_helmet.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_helmet_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_helmet_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_helmet_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_helmet_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_helmet_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_helmet_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_helmet_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_helmet_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_helmet_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_helmet_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_helmet_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/iron_helmet" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_hoe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_hoe.json new file mode 100644 index 000000000..fdc1b4606 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_horse_armor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_horse_armor.json new file mode 100644 index 000000000..051f1602f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_horse_armor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_horse_armor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_ingot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_ingot.json new file mode 100644 index 000000000..bb2f3925f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_ingot.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_ingot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_leggings.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_leggings.json new file mode 100644 index 000000000..83b7369c6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_leggings.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_leggings_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_leggings_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_leggings_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_leggings_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_leggings_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_leggings_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_leggings_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_leggings_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_leggings_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_leggings_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_leggings_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/iron_leggings" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_nugget.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_nugget.json new file mode 100644 index 000000000..4ec573eea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_nugget.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_nugget" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_ore.json new file mode 100644 index 000000000..44d467e3f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/iron_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_pickaxe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_pickaxe.json new file mode 100644 index 000000000..5a3f0d1b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_shovel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_shovel.json new file mode 100644 index 000000000..3ff9689a9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_shovel.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_sword.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_sword.json new file mode 100644 index 000000000..1bf4bb7df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/iron_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_trapdoor.json new file mode 100644 index 000000000..b3de8ef59 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/iron_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/iron_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/item_frame.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/item_frame.json new file mode 100644 index 000000000..b115f49f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/item_frame.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/item_frame" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jack_o_lantern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jack_o_lantern.json new file mode 100644 index 000000000..0a1e97b40 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jack_o_lantern.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/jack_o_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jigsaw.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jigsaw.json new file mode 100644 index 000000000..29fc70593 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jigsaw.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/jigsaw" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jukebox.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jukebox.json new file mode 100644 index 000000000..1e9a265b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jukebox.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/jukebox" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_boat.json new file mode 100644 index 000000000..2c6c1771b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/jungle_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_button.json new file mode 100644 index 000000000..2085f50ff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_button.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/jungle_button_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_chest_boat.json new file mode 100644 index 000000000..8dec2a7a9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_chest_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/jungle_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_door.json new file mode 100644 index 000000000..28f69bb9e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/jungle_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_fence.json new file mode 100644 index 000000000..91b461cfa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_fence.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/jungle_fence_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_fence_gate.json new file mode 100644 index 000000000..a6a07e9e3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_fence_gate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/jungle_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_hanging_sign.json new file mode 100644 index 000000000..bffa44c27 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/jungle_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_leaves.json new file mode 100644 index 000000000..8454101d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_leaves.json @@ -0,0 +1,12 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/jungle_leaves", + "tints": [ + { + "type": "minecraft:constant", + "value": -12012264 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_log.json new file mode 100644 index 000000000..8298b45ba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_planks.json new file mode 100644 index 000000000..3b34aeba0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_planks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_pressure_plate.json new file mode 100644 index 000000000..114523418 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/jungle_pressure_plate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_sapling.json new file mode 100644 index 000000000..1daef334f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/jungle_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_sign.json new file mode 100644 index 000000000..8821883c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/jungle_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_slab.json new file mode 100644 index 000000000..4bc7cfa3a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/jungle_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_stairs.json new file mode 100644 index 000000000..b12a606ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/jungle_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_trapdoor.json new file mode 100644 index 000000000..20a14ec79 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/jungle_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_wood.json new file mode 100644 index 000000000..4d79d4eb7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/jungle_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/jungle_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/kelp.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/kelp.json new file mode 100644 index 000000000..f7a11c1b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/kelp.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/kelp" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/knowledge_book.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/knowledge_book.json new file mode 100644 index 000000000..87e46889b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/knowledge_book.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/knowledge_book" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ladder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ladder.json new file mode 100644 index 000000000..d65cb1d37 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ladder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/ladder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lantern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lantern.json new file mode 100644 index 000000000..05c3c2715 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lantern.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lapis_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lapis_block.json new file mode 100644 index 000000000..a7e9736b3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lapis_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/lapis_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lapis_lazuli.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lapis_lazuli.json new file mode 100644 index 000000000..06707433c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lapis_lazuli.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/lapis_lazuli" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lapis_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lapis_ore.json new file mode 100644 index 000000000..4bff6f79b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lapis_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/lapis_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/large_amethyst_bud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/large_amethyst_bud.json new file mode 100644 index 000000000..6e2059240 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/large_amethyst_bud.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/large_amethyst_bud" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/large_fern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/large_fern.json new file mode 100644 index 000000000..6f600341a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/large_fern.json @@ -0,0 +1,13 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/large_fern", + "tints": [ + { + "type": "minecraft:grass", + "downfall": 1.0, + "temperature": 0.5 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lava_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lava_bucket.json new file mode 100644 index 000000000..5d7f2ff5d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lava_bucket.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/lava_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lead.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lead.json new file mode 100644 index 000000000..92105d2cc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lead.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/lead" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leaf_litter.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leaf_litter.json new file mode 100644 index 000000000..d2edcf4ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leaf_litter.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leaf_litter" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather.json new file mode 100644 index 000000000..7e0715b62 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather_boots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather_boots.json new file mode 100644 index 000000000..856efcaf6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather_boots.json @@ -0,0 +1,161 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_boots_quartz_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_boots_iron_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_boots_netherite_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_boots_redstone_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_boots_copper_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_boots_gold_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_boots_emerald_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_boots_diamond_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_boots_lapis_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_boots_amethyst_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_boots_resin_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/leather_boots", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather_chestplate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather_chestplate.json new file mode 100644 index 000000000..178794777 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather_chestplate.json @@ -0,0 +1,161 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_chestplate_quartz_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_chestplate_iron_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_chestplate_netherite_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_chestplate_redstone_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_chestplate_copper_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_chestplate_gold_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_chestplate_emerald_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_chestplate_diamond_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_chestplate_lapis_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_chestplate_amethyst_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_chestplate_resin_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/leather_chestplate", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather_helmet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather_helmet.json new file mode 100644 index 000000000..feecbc7ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather_helmet.json @@ -0,0 +1,161 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_helmet_quartz_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_helmet_iron_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_helmet_netherite_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_helmet_redstone_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_helmet_copper_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_helmet_gold_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_helmet_emerald_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_helmet_diamond_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_helmet_lapis_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_helmet_amethyst_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_helmet_resin_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/leather_helmet", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather_horse_armor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather_horse_armor.json new file mode 100644 index 000000000..fff10050b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather_horse_armor.json @@ -0,0 +1,12 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_horse_armor", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather_leggings.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather_leggings.json new file mode 100644 index 000000000..aea8bce84 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/leather_leggings.json @@ -0,0 +1,161 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_leggings_quartz_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_leggings_iron_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_leggings_netherite_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_leggings_redstone_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_leggings_copper_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_leggings_gold_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_leggings_emerald_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_leggings_diamond_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_leggings_lapis_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_leggings_amethyst_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/leather_leggings_resin_trim", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/leather_leggings", + "tints": [ + { + "type": "minecraft:dye", + "default": -6265536 + } + ] + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lectern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lectern.json new file mode 100644 index 000000000..12099c3c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lectern.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/lectern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lever.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lever.json new file mode 100644 index 000000000..102071200 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lever.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/lever" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light.json new file mode 100644 index 000000000..01c6f2065 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light.json @@ -0,0 +1,125 @@ +{ + "model": { + "type": "minecraft:select", + "block_state_property": "level", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_00" + }, + "when": "0" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_01" + }, + "when": "1" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_02" + }, + "when": "2" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_03" + }, + "when": "3" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_04" + }, + "when": "4" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_05" + }, + "when": "5" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_06" + }, + "when": "6" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_07" + }, + "when": "7" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_08" + }, + "when": "8" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_09" + }, + "when": "9" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_10" + }, + "when": "10" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_11" + }, + "when": "11" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_12" + }, + "when": "12" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_13" + }, + "when": "13" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_14" + }, + "when": "14" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_15" + }, + "when": "15" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/light" + }, + "property": "minecraft:block_state" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_banner.json new file mode 100644 index 000000000..6b64861d4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_banner.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_banner", + "model": { + "type": "minecraft:banner", + "color": "light_blue" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_bed.json new file mode 100644 index 000000000..f899f0f6d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_bed.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/light_blue_bed", + "model": { + "type": "minecraft:bed", + "texture": "minecraft:light_blue" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_bundle.json new file mode 100644 index 000000000..a0c87bd55 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_bundle.json @@ -0,0 +1,39 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/light_blue_bundle" + }, + "on_true": { + "type": "minecraft:composite", + "models": [ + { + "type": "minecraft:model", + "model": "minecraft:item/light_blue_bundle_open_back" + }, + { + "type": "minecraft:bundle/selected_item" + }, + { + "type": "minecraft:model", + "model": "minecraft:item/light_blue_bundle_open_front" + } + ] + }, + "property": "minecraft:bundle/has_selected_item" + }, + "when": "gui" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/light_blue_bundle" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_candle.json new file mode 100644 index 000000000..4e8cf64c8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_candle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_carpet.json new file mode 100644 index 000000000..0027a2fe5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/light_blue_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_concrete.json new file mode 100644 index 000000000..96f58785f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_concrete.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/light_blue_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_concrete_powder.json new file mode 100644 index 000000000..2ac541e7b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/light_blue_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_dye.json new file mode 100644 index 000000000..527ad68ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_dye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_blue_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_glazed_terracotta.json new file mode 100644 index 000000000..1e34edfb7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/light_blue_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_harness.json new file mode 100644 index 000000000..df65c0e0a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_harness.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_blue_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_shulker_box.json new file mode 100644 index 000000000..13e5b1201 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_shulker_box.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/light_blue_shulker_box", + "model": { + "type": "minecraft:shulker_box", + "texture": "minecraft:shulker_light_blue" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_stained_glass.json new file mode 100644 index 000000000..84a8a87cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_stained_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/light_blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_stained_glass_pane.json new file mode 100644 index 000000000..4d8f49179 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_blue_stained_glass_pane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_terracotta.json new file mode 100644 index 000000000..cf18f080c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/light_blue_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_wool.json new file mode 100644 index 000000000..d4dc15c78 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_blue_wool.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/light_blue_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_banner.json new file mode 100644 index 000000000..cec38b001 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_banner.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_banner", + "model": { + "type": "minecraft:banner", + "color": "light_gray" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_bed.json new file mode 100644 index 000000000..1b2b5fb1b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_bed.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/light_gray_bed", + "model": { + "type": "minecraft:bed", + "texture": "minecraft:light_gray" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_bundle.json new file mode 100644 index 000000000..3377fe603 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_bundle.json @@ -0,0 +1,39 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/light_gray_bundle" + }, + "on_true": { + "type": "minecraft:composite", + "models": [ + { + "type": "minecraft:model", + "model": "minecraft:item/light_gray_bundle_open_back" + }, + { + "type": "minecraft:bundle/selected_item" + }, + { + "type": "minecraft:model", + "model": "minecraft:item/light_gray_bundle_open_front" + } + ] + }, + "property": "minecraft:bundle/has_selected_item" + }, + "when": "gui" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/light_gray_bundle" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_candle.json new file mode 100644 index 000000000..324e9b039 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_candle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_carpet.json new file mode 100644 index 000000000..a905889df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/light_gray_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_concrete.json new file mode 100644 index 000000000..52b4e682a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_concrete.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/light_gray_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_concrete_powder.json new file mode 100644 index 000000000..45a334cf3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/light_gray_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_dye.json new file mode 100644 index 000000000..3d85aebda --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_dye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_gray_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_glazed_terracotta.json new file mode 100644 index 000000000..24cd3e3fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/light_gray_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_harness.json new file mode 100644 index 000000000..cce3f7e3b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_harness.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_gray_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_shulker_box.json new file mode 100644 index 000000000..7b2890e77 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_shulker_box.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/light_gray_shulker_box", + "model": { + "type": "minecraft:shulker_box", + "texture": "minecraft:shulker_light_gray" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_stained_glass.json new file mode 100644 index 000000000..f89b0d6c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_stained_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/light_gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_stained_glass_pane.json new file mode 100644 index 000000000..7ffb8319b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/light_gray_stained_glass_pane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_terracotta.json new file mode 100644 index 000000000..302d50eee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/light_gray_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_wool.json new file mode 100644 index 000000000..ce28c352c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_gray_wool.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/light_gray_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_weighted_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_weighted_pressure_plate.json new file mode 100644 index 000000000..f9fc01305 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/light_weighted_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/light_weighted_pressure_plate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lightning_rod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lightning_rod.json new file mode 100644 index 000000000..318d6e169 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lightning_rod.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/lightning_rod" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lilac.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lilac.json new file mode 100644 index 000000000..9dba13cd4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lilac.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/lilac" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lily_of_the_valley.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lily_of_the_valley.json new file mode 100644 index 000000000..11152cacc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lily_of_the_valley.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/lily_of_the_valley" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lily_pad.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lily_pad.json new file mode 100644 index 000000000..0952ad294 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lily_pad.json @@ -0,0 +1,12 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/lily_pad", + "tints": [ + { + "type": "minecraft:constant", + "value": -9321636 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_banner.json new file mode 100644 index 000000000..7a370b2f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_banner.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_banner", + "model": { + "type": "minecraft:banner", + "color": "lime" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_bed.json new file mode 100644 index 000000000..b81ee17bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_bed.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/lime_bed", + "model": { + "type": "minecraft:bed", + "texture": "minecraft:lime" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_bundle.json new file mode 100644 index 000000000..3789b99dc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_bundle.json @@ -0,0 +1,39 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/lime_bundle" + }, + "on_true": { + "type": "minecraft:composite", + "models": [ + { + "type": "minecraft:model", + "model": "minecraft:item/lime_bundle_open_back" + }, + { + "type": "minecraft:bundle/selected_item" + }, + { + "type": "minecraft:model", + "model": "minecraft:item/lime_bundle_open_front" + } + ] + }, + "property": "minecraft:bundle/has_selected_item" + }, + "when": "gui" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/lime_bundle" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_candle.json new file mode 100644 index 000000000..edd5748ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_candle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/lime_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_carpet.json new file mode 100644 index 000000000..3dc877eb9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/lime_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_concrete.json new file mode 100644 index 000000000..832edacbd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_concrete.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/lime_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_concrete_powder.json new file mode 100644 index 000000000..f6e39ed51 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/lime_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_dye.json new file mode 100644 index 000000000..cda6a9029 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_dye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/lime_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_glazed_terracotta.json new file mode 100644 index 000000000..897348b81 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/lime_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_harness.json new file mode 100644 index 000000000..00aac7000 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_harness.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/lime_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_shulker_box.json new file mode 100644 index 000000000..2849f5e8e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_shulker_box.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/lime_shulker_box", + "model": { + "type": "minecraft:shulker_box", + "texture": "minecraft:shulker_lime" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_stained_glass.json new file mode 100644 index 000000000..c9d1ae30c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_stained_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/lime_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_stained_glass_pane.json new file mode 100644 index 000000000..24fb9e2b3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/lime_stained_glass_pane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_terracotta.json new file mode 100644 index 000000000..d08631acc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/lime_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_wool.json new file mode 100644 index 000000000..8e4918443 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lime_wool.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/lime_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lingering_potion.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lingering_potion.json new file mode 100644 index 000000000..ec8257303 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lingering_potion.json @@ -0,0 +1,12 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/lingering_potion", + "tints": [ + { + "type": "minecraft:potion", + "default": -13083194 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/llama_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/llama_spawn_egg.json new file mode 100644 index 000000000..0eed2d501 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/llama_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/llama_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lodestone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lodestone.json new file mode 100644 index 000000000..2ac84d41c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/lodestone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/lodestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/loom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/loom.json new file mode 100644 index 000000000..a83efb19d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/loom.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/loom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mace.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mace.json new file mode 100644 index 000000000..85d3c0fff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mace.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/mace" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_banner.json new file mode 100644 index 000000000..102dce88f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_banner.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_banner", + "model": { + "type": "minecraft:banner", + "color": "magenta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_bed.json new file mode 100644 index 000000000..1110f7794 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_bed.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/magenta_bed", + "model": { + "type": "minecraft:bed", + "texture": "minecraft:magenta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_bundle.json new file mode 100644 index 000000000..bb122f286 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_bundle.json @@ -0,0 +1,39 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/magenta_bundle" + }, + "on_true": { + "type": "minecraft:composite", + "models": [ + { + "type": "minecraft:model", + "model": "minecraft:item/magenta_bundle_open_back" + }, + { + "type": "minecraft:bundle/selected_item" + }, + { + "type": "minecraft:model", + "model": "minecraft:item/magenta_bundle_open_front" + } + ] + }, + "property": "minecraft:bundle/has_selected_item" + }, + "when": "gui" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/magenta_bundle" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_candle.json new file mode 100644 index 000000000..a21f1835a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_candle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/magenta_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_carpet.json new file mode 100644 index 000000000..a4a5a70c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/magenta_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_concrete.json new file mode 100644 index 000000000..af52449fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_concrete.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/magenta_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_concrete_powder.json new file mode 100644 index 000000000..c1e31d1c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/magenta_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_dye.json new file mode 100644 index 000000000..452fe73e6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_dye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/magenta_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_glazed_terracotta.json new file mode 100644 index 000000000..b6bbeda4e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/magenta_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_harness.json new file mode 100644 index 000000000..48783c424 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_harness.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/magenta_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_shulker_box.json new file mode 100644 index 000000000..32adfdd9d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_shulker_box.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/magenta_shulker_box", + "model": { + "type": "minecraft:shulker_box", + "texture": "minecraft:shulker_magenta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_stained_glass.json new file mode 100644 index 000000000..99403a70f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_stained_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/magenta_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_stained_glass_pane.json new file mode 100644 index 000000000..a75bc227d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/magenta_stained_glass_pane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_terracotta.json new file mode 100644 index 000000000..c81a0ac3e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/magenta_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_wool.json new file mode 100644 index 000000000..e6069e309 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magenta_wool.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/magenta_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magma_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magma_block.json new file mode 100644 index 000000000..5f1fffb1f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magma_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/magma_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magma_cream.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magma_cream.json new file mode 100644 index 000000000..9cd205e6a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magma_cream.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/magma_cream" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magma_cube_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magma_cube_spawn_egg.json new file mode 100644 index 000000000..51420eb18 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/magma_cube_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/magma_cube_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_boat.json new file mode 100644 index 000000000..5a7e4ec04 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/mangrove_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_button.json new file mode 100644 index 000000000..e94f44372 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_button.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mangrove_button_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_chest_boat.json new file mode 100644 index 000000000..d4dfef22a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_chest_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/mangrove_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_door.json new file mode 100644 index 000000000..17a08b7b6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/mangrove_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_fence.json new file mode 100644 index 000000000..6ae1e8701 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_fence.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mangrove_fence_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_fence_gate.json new file mode 100644 index 000000000..8ddd81081 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_fence_gate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mangrove_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_hanging_sign.json new file mode 100644 index 000000000..5d142a0c8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/mangrove_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_leaves.json new file mode 100644 index 000000000..3314939b8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_leaves.json @@ -0,0 +1,12 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mangrove_leaves", + "tints": [ + { + "type": "minecraft:constant", + "value": -7158200 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_log.json new file mode 100644 index 000000000..1c472d673 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_planks.json new file mode 100644 index 000000000..32ac80c9f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_planks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_pressure_plate.json new file mode 100644 index 000000000..df4bef887 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mangrove_pressure_plate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_propagule.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_propagule.json new file mode 100644 index 000000000..3e671460a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_propagule.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/mangrove_propagule" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_roots.json new file mode 100644 index 000000000..c36991de0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_roots.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mangrove_roots" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_sign.json new file mode 100644 index 000000000..4a0b0dabd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/mangrove_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_slab.json new file mode 100644 index 000000000..41bd62590 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mangrove_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_stairs.json new file mode 100644 index 000000000..568063fb3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mangrove_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_trapdoor.json new file mode 100644 index 000000000..d771ef8fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mangrove_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_wood.json new file mode 100644 index 000000000..34fa8bd84 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mangrove_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mangrove_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/map.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/map.json new file mode 100644 index 000000000..c10f8ae90 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/map.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/map" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/medium_amethyst_bud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/medium_amethyst_bud.json new file mode 100644 index 000000000..c5b278950 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/medium_amethyst_bud.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/medium_amethyst_bud" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/melon.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/melon.json new file mode 100644 index 000000000..b3d5859e8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/melon.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/melon" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/melon_seeds.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/melon_seeds.json new file mode 100644 index 000000000..b9c5cac89 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/melon_seeds.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/melon_seeds" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/melon_slice.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/melon_slice.json new file mode 100644 index 000000000..4753610a0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/melon_slice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/melon_slice" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/milk_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/milk_bucket.json new file mode 100644 index 000000000..36d245a7d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/milk_bucket.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/milk_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/minecart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/minecart.json new file mode 100644 index 000000000..20ea7d59f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/minecart.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/miner_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/miner_pottery_sherd.json new file mode 100644 index 000000000..fcf06d747 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/miner_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/miner_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mojang_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mojang_banner_pattern.json new file mode 100644 index 000000000..9ad39b72b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mojang_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/mojang_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mooshroom_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mooshroom_spawn_egg.json new file mode 100644 index 000000000..fa68ef210 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mooshroom_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/mooshroom_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/moss_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/moss_block.json new file mode 100644 index 000000000..f9be97767 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/moss_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/moss_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/moss_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/moss_carpet.json new file mode 100644 index 000000000..85b607077 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/moss_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/moss_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_cobblestone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_cobblestone.json new file mode 100644 index 000000000..5aa1d87e1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_cobblestone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_cobblestone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_cobblestone_slab.json new file mode 100644 index 000000000..88f15952a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_cobblestone_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mossy_cobblestone_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_cobblestone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_cobblestone_stairs.json new file mode 100644 index 000000000..3d2ef3c7a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_cobblestone_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mossy_cobblestone_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_cobblestone_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_cobblestone_wall.json new file mode 100644 index 000000000..7bfeb08ff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_cobblestone_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mossy_cobblestone_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_stone_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_stone_brick_slab.json new file mode 100644 index 000000000..f61124270 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_stone_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mossy_stone_brick_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_stone_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_stone_brick_stairs.json new file mode 100644 index 000000000..9096a3cff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_stone_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mossy_stone_brick_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_stone_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_stone_brick_wall.json new file mode 100644 index 000000000..130e597df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_stone_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mossy_stone_brick_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_stone_bricks.json new file mode 100644 index 000000000..431c66314 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mossy_stone_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mourner_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mourner_pottery_sherd.json new file mode 100644 index 000000000..e576fdb7f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mourner_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/mourner_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mud.json new file mode 100644 index 000000000..2ae0c692e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mud.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mud" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mud_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mud_brick_slab.json new file mode 100644 index 000000000..bdd56fd60 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mud_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mud_brick_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mud_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mud_brick_stairs.json new file mode 100644 index 000000000..09bb42cb1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mud_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mud_brick_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mud_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mud_brick_wall.json new file mode 100644 index 000000000..9ec3a54ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mud_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mud_brick_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mud_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mud_bricks.json new file mode 100644 index 000000000..47c0ec67f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mud_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/muddy_mangrove_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/muddy_mangrove_roots.json new file mode 100644 index 000000000..72ee9ad21 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/muddy_mangrove_roots.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/muddy_mangrove_roots" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mule_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mule_spawn_egg.json new file mode 100644 index 000000000..5f4292eab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mule_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/mule_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mushroom_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mushroom_stem.json new file mode 100644 index 000000000..14ee4df05 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mushroom_stem.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mushroom_stem_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mushroom_stew.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mushroom_stew.json new file mode 100644 index 000000000..7d6fd975d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mushroom_stew.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/mushroom_stew" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_11.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_11.json new file mode 100644 index 000000000..8bf248c70 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_11.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_11" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_13.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_13.json new file mode 100644 index 000000000..36859fea3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_13.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_13" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_5.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_5.json new file mode 100644 index 000000000..2d31f5951 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_5.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_5" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_blocks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_blocks.json new file mode 100644 index 000000000..1a8def790 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_blocks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_blocks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_cat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_cat.json new file mode 100644 index 000000000..a4b3d52a8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_cat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_cat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_chirp.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_chirp.json new file mode 100644 index 000000000..2b5f4c057 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_chirp.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_chirp" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_creator.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_creator.json new file mode 100644 index 000000000..de47392e9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_creator.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_creator" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_creator_music_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_creator_music_box.json new file mode 100644 index 000000000..e754f5e6c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_creator_music_box.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_creator_music_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_far.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_far.json new file mode 100644 index 000000000..e5048148b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_far.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_far" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_lava_chicken.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_lava_chicken.json new file mode 100644 index 000000000..2a3de6db6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_lava_chicken.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_lava_chicken" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_mall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_mall.json new file mode 100644 index 000000000..7958c0e50 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_mall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_mall" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_mellohi.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_mellohi.json new file mode 100644 index 000000000..bfa887565 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_mellohi.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_mellohi" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_otherside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_otherside.json new file mode 100644 index 000000000..3f07b4a5a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_otherside.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_otherside" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_pigstep.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_pigstep.json new file mode 100644 index 000000000..9610fb687 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_pigstep.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_pigstep" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_precipice.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_precipice.json new file mode 100644 index 000000000..ce782edaf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_precipice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_precipice" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_relic.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_relic.json new file mode 100644 index 000000000..8d951d722 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_relic.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_relic" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_stal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_stal.json new file mode 100644 index 000000000..a8fe9b01b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_stal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_stal" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_strad.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_strad.json new file mode 100644 index 000000000..f33b7491a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_strad.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_strad" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_tears.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_tears.json new file mode 100644 index 000000000..015f45282 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_tears.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_tears" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_wait.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_wait.json new file mode 100644 index 000000000..b50eb8e87 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_wait.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_wait" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_ward.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_ward.json new file mode 100644 index 000000000..166692f42 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/music_disc_ward.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/music_disc_ward" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mutton.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mutton.json new file mode 100644 index 000000000..5977fce09 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mutton.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/mutton" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mycelium.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mycelium.json new file mode 100644 index 000000000..02add88a8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/mycelium.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/mycelium" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/name_tag.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/name_tag.json new file mode 100644 index 000000000..2f2e54ab7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/name_tag.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/name_tag" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nautilus_shell.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nautilus_shell.json new file mode 100644 index 000000000..9fd2b3333 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nautilus_shell.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/nautilus_shell" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_brick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_brick.json new file mode 100644 index 000000000..84e311d46 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/nether_brick" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_brick_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_brick_fence.json new file mode 100644 index 000000000..11d21cf99 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_brick_fence.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/nether_brick_fence_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_brick_slab.json new file mode 100644 index 000000000..def834b62 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/nether_brick_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_brick_stairs.json new file mode 100644 index 000000000..0fcd602ca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/nether_brick_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_brick_wall.json new file mode 100644 index 000000000..0ca47fc6f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/nether_brick_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_bricks.json new file mode 100644 index 000000000..04d911a98 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_gold_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_gold_ore.json new file mode 100644 index 000000000..30857376a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_gold_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/nether_gold_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_quartz_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_quartz_ore.json new file mode 100644 index 000000000..d7d0101d8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_quartz_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/nether_quartz_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_sprouts.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_sprouts.json new file mode 100644 index 000000000..ce1ff8efa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_sprouts.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/nether_sprouts" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_star.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_star.json new file mode 100644 index 000000000..4539152fe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_star.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/nether_star" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_wart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_wart.json new file mode 100644 index 000000000..b33c624d3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_wart.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/nether_wart" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_wart_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_wart_block.json new file mode 100644 index 000000000..a56620633 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/nether_wart_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/nether_wart_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_axe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_axe.json new file mode 100644 index 000000000..02f455656 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_block.json new file mode 100644 index 000000000..e7e8de379 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/netherite_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_boots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_boots.json new file mode 100644 index 000000000..8a7a7adc8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_boots.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_boots_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_boots_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_boots_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_boots_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_boots_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_boots_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_boots_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_boots_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_boots_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_boots_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_boots_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_boots" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_chestplate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_chestplate.json new file mode 100644 index 000000000..b338ed228 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_chestplate.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_chestplate_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_chestplate_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_chestplate_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_chestplate_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_chestplate_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_chestplate_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_chestplate_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_chestplate_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_chestplate_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_chestplate_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_chestplate_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_chestplate" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_helmet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_helmet.json new file mode 100644 index 000000000..317699f2f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_helmet.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_helmet_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_helmet_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_helmet_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_helmet_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_helmet_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_helmet_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_helmet_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_helmet_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_helmet_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_helmet_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_helmet_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_helmet" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_hoe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_hoe.json new file mode 100644 index 000000000..67625e1a8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_ingot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_ingot.json new file mode 100644 index 000000000..3fa2583b0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_ingot.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_ingot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_leggings.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_leggings.json new file mode 100644 index 000000000..61de5f894 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_leggings.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_leggings_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_leggings_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_leggings_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_leggings_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_leggings_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_leggings_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_leggings_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_leggings_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_leggings_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_leggings_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_leggings_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_leggings" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_pickaxe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_pickaxe.json new file mode 100644 index 000000000..a5fc75c0b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_scrap.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_scrap.json new file mode 100644 index 000000000..0f0b6410d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_scrap.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_scrap" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_shovel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_shovel.json new file mode 100644 index 000000000..9fd5ed4c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_shovel.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_sword.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_sword.json new file mode 100644 index 000000000..2cf94a276 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_upgrade_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_upgrade_smithing_template.json new file mode 100644 index 000000000..62915512b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherite_upgrade_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/netherite_upgrade_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherrack.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherrack.json new file mode 100644 index 000000000..b2062681f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/netherrack.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/netherrack" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/note_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/note_block.json new file mode 100644 index 000000000..4b539c046 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/note_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/note_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_boat.json new file mode 100644 index 000000000..f43e94b11 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/oak_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_button.json new file mode 100644 index 000000000..d45985900 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_button.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oak_button_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_chest_boat.json new file mode 100644 index 000000000..26b1d7f82 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_chest_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/oak_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_door.json new file mode 100644 index 000000000..0e80b32d3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/oak_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_fence.json new file mode 100644 index 000000000..4f5d32e21 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_fence.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oak_fence_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_fence_gate.json new file mode 100644 index 000000000..dc6c743df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_fence_gate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oak_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_hanging_sign.json new file mode 100644 index 000000000..a19906d1e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/oak_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_leaves.json new file mode 100644 index 000000000..dde032961 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_leaves.json @@ -0,0 +1,12 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oak_leaves", + "tints": [ + { + "type": "minecraft:constant", + "value": -12012264 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_log.json new file mode 100644 index 000000000..81bfdf5c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_planks.json new file mode 100644 index 000000000..d04c2f600 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_planks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_pressure_plate.json new file mode 100644 index 000000000..c7b3844a4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oak_pressure_plate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_sapling.json new file mode 100644 index 000000000..5362761a5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_sign.json new file mode 100644 index 000000000..85ed9a5a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/oak_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_slab.json new file mode 100644 index 000000000..86d648fc5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oak_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_stairs.json new file mode 100644 index 000000000..4246d24da --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oak_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_trapdoor.json new file mode 100644 index 000000000..f6d7d787e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oak_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_wood.json new file mode 100644 index 000000000..973108be0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oak_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oak_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/observer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/observer.json new file mode 100644 index 000000000..3d0d40767 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/observer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/observer" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/obsidian.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/obsidian.json new file mode 100644 index 000000000..e51b6722c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/obsidian.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/obsidian" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ocelot_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ocelot_spawn_egg.json new file mode 100644 index 000000000..c6c7a2027 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ocelot_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/ocelot_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ochre_froglight.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ochre_froglight.json new file mode 100644 index 000000000..5bec1c6dc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ochre_froglight.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/ochre_froglight" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ominous_bottle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ominous_bottle.json new file mode 100644 index 000000000..1d68412d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ominous_bottle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/ominous_bottle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ominous_trial_key.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ominous_trial_key.json new file mode 100644 index 000000000..fe0ceb49b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ominous_trial_key.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/ominous_trial_key" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/open_eyeblossom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/open_eyeblossom.json new file mode 100644 index 000000000..17bad6929 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/open_eyeblossom.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/open_eyeblossom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_banner.json new file mode 100644 index 000000000..6e7f7e63d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_banner.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_banner", + "model": { + "type": "minecraft:banner", + "color": "orange" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_bed.json new file mode 100644 index 000000000..a1891083c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_bed.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/orange_bed", + "model": { + "type": "minecraft:bed", + "texture": "minecraft:orange" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_bundle.json new file mode 100644 index 000000000..5aaf68bf8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_bundle.json @@ -0,0 +1,39 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/orange_bundle" + }, + "on_true": { + "type": "minecraft:composite", + "models": [ + { + "type": "minecraft:model", + "model": "minecraft:item/orange_bundle_open_back" + }, + { + "type": "minecraft:bundle/selected_item" + }, + { + "type": "minecraft:model", + "model": "minecraft:item/orange_bundle_open_front" + } + ] + }, + "property": "minecraft:bundle/has_selected_item" + }, + "when": "gui" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/orange_bundle" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_candle.json new file mode 100644 index 000000000..adbc212e0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_candle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/orange_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_carpet.json new file mode 100644 index 000000000..50aefc691 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/orange_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_concrete.json new file mode 100644 index 000000000..1fb70fdb6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_concrete.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/orange_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_concrete_powder.json new file mode 100644 index 000000000..7e6c2804d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/orange_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_dye.json new file mode 100644 index 000000000..1e86b0165 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_dye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/orange_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_glazed_terracotta.json new file mode 100644 index 000000000..4bd4509ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/orange_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_harness.json new file mode 100644 index 000000000..c896407e4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_harness.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/orange_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_shulker_box.json new file mode 100644 index 000000000..1a0b6939a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_shulker_box.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/orange_shulker_box", + "model": { + "type": "minecraft:shulker_box", + "texture": "minecraft:shulker_orange" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_stained_glass.json new file mode 100644 index 000000000..12e8dabb0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_stained_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/orange_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_stained_glass_pane.json new file mode 100644 index 000000000..9764dfcd6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/orange_stained_glass_pane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_terracotta.json new file mode 100644 index 000000000..5d3bdc715 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/orange_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_tulip.json new file mode 100644 index 000000000..eef0a7964 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_tulip.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/orange_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_wool.json new file mode 100644 index 000000000..46ad8f666 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/orange_wool.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/orange_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxeye_daisy.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxeye_daisy.json new file mode 100644 index 000000000..f0d528422 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxeye_daisy.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/oxeye_daisy" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_chiseled_copper.json new file mode 100644 index 000000000..78b7eae05 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_chiseled_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_copper.json new file mode 100644 index 000000000..c58b7f62d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oxidized_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_copper_bulb.json new file mode 100644 index 000000000..aeab2c8ce --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_copper_bulb.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oxidized_copper_bulb" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_copper_door.json new file mode 100644 index 000000000..b5cc84d31 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_copper_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/oxidized_copper_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_copper_grate.json new file mode 100644 index 000000000..90d2a4833 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_copper_grate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oxidized_copper_grate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_copper_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_copper_trapdoor.json new file mode 100644 index 000000000..245f08ef9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_copper_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_cut_copper.json new file mode 100644 index 000000000..ec0748d35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_cut_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_cut_copper_slab.json new file mode 100644 index 000000000..3e15eec78 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_cut_copper_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oxidized_cut_copper_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_cut_copper_stairs.json new file mode 100644 index 000000000..7fd0b7f0f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/oxidized_cut_copper_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oxidized_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/packed_ice.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/packed_ice.json new file mode 100644 index 000000000..46c3748d1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/packed_ice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/packed_ice" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/packed_mud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/packed_mud.json new file mode 100644 index 000000000..a54ca54de --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/packed_mud.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/packed_mud" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/painting.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/painting.json new file mode 100644 index 000000000..dd9e2a156 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/painting.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/painting" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_hanging_moss.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_hanging_moss.json new file mode 100644 index 000000000..265249e0d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_hanging_moss.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pale_hanging_moss" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_moss_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_moss_block.json new file mode 100644 index 000000000..752172924 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_moss_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pale_moss_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_moss_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_moss_carpet.json new file mode 100644 index 000000000..bfa7af73d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_moss_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pale_moss_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_boat.json new file mode 100644 index 000000000..0d44dbde3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pale_oak_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_button.json new file mode 100644 index 000000000..e72d35685 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_button.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pale_oak_button_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_chest_boat.json new file mode 100644 index 000000000..66d0994fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_chest_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pale_oak_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_door.json new file mode 100644 index 000000000..4d15f541d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pale_oak_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_fence.json new file mode 100644 index 000000000..43eede127 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_fence.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pale_oak_fence_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_fence_gate.json new file mode 100644 index 000000000..0747be1fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_fence_gate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pale_oak_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_hanging_sign.json new file mode 100644 index 000000000..73fc04416 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pale_oak_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_leaves.json new file mode 100644 index 000000000..af0326dc5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_leaves.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pale_oak_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_log.json new file mode 100644 index 000000000..41dcbcd0e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_planks.json new file mode 100644 index 000000000..d1312cd98 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_planks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_pressure_plate.json new file mode 100644 index 000000000..091b2c66d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pale_oak_pressure_plate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_sapling.json new file mode 100644 index 000000000..5005f057a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pale_oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_sign.json new file mode 100644 index 000000000..25efa70d6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pale_oak_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_slab.json new file mode 100644 index 000000000..99c908d1a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pale_oak_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_stairs.json new file mode 100644 index 000000000..b35ebc852 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pale_oak_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_trapdoor.json new file mode 100644 index 000000000..8a0e54368 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pale_oak_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_wood.json new file mode 100644 index 000000000..a9ec9c6a0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pale_oak_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pale_oak_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/panda_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/panda_spawn_egg.json new file mode 100644 index 000000000..257bf91f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/panda_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/panda_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/paper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/paper.json new file mode 100644 index 000000000..981714c02 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/paper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/paper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/parrot_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/parrot_spawn_egg.json new file mode 100644 index 000000000..e06fce4c8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/parrot_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/parrot_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pearlescent_froglight.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pearlescent_froglight.json new file mode 100644 index 000000000..679130d89 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pearlescent_froglight.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pearlescent_froglight" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/peony.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/peony.json new file mode 100644 index 000000000..12cab6903 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/peony.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/peony" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/petrified_oak_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/petrified_oak_slab.json new file mode 100644 index 000000000..40d996616 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/petrified_oak_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/petrified_oak_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/phantom_membrane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/phantom_membrane.json new file mode 100644 index 000000000..ff4a666fd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/phantom_membrane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/phantom_membrane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/phantom_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/phantom_spawn_egg.json new file mode 100644 index 000000000..df9b3d66b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/phantom_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/phantom_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pig_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pig_spawn_egg.json new file mode 100644 index 000000000..a17570322 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pig_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pig_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/piglin_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/piglin_banner_pattern.json new file mode 100644 index 000000000..b532de2ea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/piglin_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/piglin_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/piglin_brute_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/piglin_brute_spawn_egg.json new file mode 100644 index 000000000..b00387280 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/piglin_brute_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/piglin_brute_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/piglin_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/piglin_head.json new file mode 100644 index 000000000..e0f69892e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/piglin_head.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_skull", + "model": { + "type": "minecraft:head", + "kind": "piglin" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/piglin_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/piglin_spawn_egg.json new file mode 100644 index 000000000..1c5e1453e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/piglin_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/piglin_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pillager_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pillager_spawn_egg.json new file mode 100644 index 000000000..e8b1b4ec3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pillager_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pillager_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_banner.json new file mode 100644 index 000000000..a86bb3325 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_banner.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_banner", + "model": { + "type": "minecraft:banner", + "color": "pink" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_bed.json new file mode 100644 index 000000000..2e686eb69 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_bed.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/pink_bed", + "model": { + "type": "minecraft:bed", + "texture": "minecraft:pink" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_bundle.json new file mode 100644 index 000000000..327eb44c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_bundle.json @@ -0,0 +1,39 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/pink_bundle" + }, + "on_true": { + "type": "minecraft:composite", + "models": [ + { + "type": "minecraft:model", + "model": "minecraft:item/pink_bundle_open_back" + }, + { + "type": "minecraft:bundle/selected_item" + }, + { + "type": "minecraft:model", + "model": "minecraft:item/pink_bundle_open_front" + } + ] + }, + "property": "minecraft:bundle/has_selected_item" + }, + "when": "gui" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/pink_bundle" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_candle.json new file mode 100644 index 000000000..d94ae4628 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_candle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pink_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_carpet.json new file mode 100644 index 000000000..5080cbf2b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pink_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_concrete.json new file mode 100644 index 000000000..8d09e8dbc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_concrete.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pink_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_concrete_powder.json new file mode 100644 index 000000000..2b4730814 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pink_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_dye.json new file mode 100644 index 000000000..5c5bb43d4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_dye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pink_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_glazed_terracotta.json new file mode 100644 index 000000000..435ed0aaf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pink_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_harness.json new file mode 100644 index 000000000..a6dbb77be --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_harness.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pink_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_petals.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_petals.json new file mode 100644 index 000000000..3eb460ea6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_petals.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pink_petals" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_shulker_box.json new file mode 100644 index 000000000..a1d380426 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_shulker_box.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/pink_shulker_box", + "model": { + "type": "minecraft:shulker_box", + "texture": "minecraft:shulker_pink" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_stained_glass.json new file mode 100644 index 000000000..2c8db80fe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_stained_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pink_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_stained_glass_pane.json new file mode 100644 index 000000000..34b3082e3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pink_stained_glass_pane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_terracotta.json new file mode 100644 index 000000000..23d6a9fd0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pink_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_tulip.json new file mode 100644 index 000000000..ebea48cf1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_tulip.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pink_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_wool.json new file mode 100644 index 000000000..32027ca64 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pink_wool.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pink_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/piston.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/piston.json new file mode 100644 index 000000000..b52126f9d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/piston.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/piston_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pitcher_plant.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pitcher_plant.json new file mode 100644 index 000000000..2fc0921f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pitcher_plant.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pitcher_plant" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pitcher_pod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pitcher_pod.json new file mode 100644 index 000000000..01c2af4b9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pitcher_pod.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pitcher_pod" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/player_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/player_head.json new file mode 100644 index 000000000..51896d5c2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/player_head.json @@ -0,0 +1,9 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_skull", + "model": { + "type": "minecraft:player_head" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/plenty_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/plenty_pottery_sherd.json new file mode 100644 index 000000000..8517799f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/plenty_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/plenty_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/podzol.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/podzol.json new file mode 100644 index 000000000..8055b1ee3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/podzol.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/podzol" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pointed_dripstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pointed_dripstone.json new file mode 100644 index 000000000..3570a9998 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pointed_dripstone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pointed_dripstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/poisonous_potato.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/poisonous_potato.json new file mode 100644 index 000000000..8132ca0c2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/poisonous_potato.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/poisonous_potato" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polar_bear_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polar_bear_spawn_egg.json new file mode 100644 index 000000000..12c76be1c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polar_bear_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/polar_bear_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_andesite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_andesite.json new file mode 100644 index 000000000..a1cafdbb2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_andesite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_andesite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_andesite_slab.json new file mode 100644 index 000000000..cf1fc3840 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_andesite_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_andesite_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_andesite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_andesite_stairs.json new file mode 100644 index 000000000..af67153b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_andesite_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_andesite_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_basalt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_basalt.json new file mode 100644 index 000000000..2640ce6c1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_basalt.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_basalt" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone.json new file mode 100644 index 000000000..181c2944d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_brick_slab.json new file mode 100644 index 000000000..98d721208 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_blackstone_brick_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_brick_stairs.json new file mode 100644 index 000000000..0d2a1ae3f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_blackstone_brick_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_brick_wall.json new file mode 100644 index 000000000..d37c3291d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_blackstone_brick_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_bricks.json new file mode 100644 index 000000000..6eb6188be --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_button.json new file mode 100644 index 000000000..c9aefed77 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_button.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_blackstone_button_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_pressure_plate.json new file mode 100644 index 000000000..a74aded7d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_blackstone_pressure_plate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_slab.json new file mode 100644 index 000000000..2c0d2c3f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_blackstone_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_stairs.json new file mode 100644 index 000000000..710e56025 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_blackstone_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_wall.json new file mode 100644 index 000000000..73a08c4a3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_blackstone_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_blackstone_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_deepslate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_deepslate.json new file mode 100644 index 000000000..3568e7e34 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_deepslate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_deepslate_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_deepslate_slab.json new file mode 100644 index 000000000..9ea8f6a8a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_deepslate_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_deepslate_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_deepslate_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_deepslate_stairs.json new file mode 100644 index 000000000..15406e1ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_deepslate_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_deepslate_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_deepslate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_deepslate_wall.json new file mode 100644 index 000000000..db3a3db63 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_deepslate_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_deepslate_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_diorite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_diorite.json new file mode 100644 index 000000000..4e5510602 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_diorite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_diorite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_diorite_slab.json new file mode 100644 index 000000000..165571e52 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_diorite_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_diorite_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_diorite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_diorite_stairs.json new file mode 100644 index 000000000..d01da0011 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_diorite_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_diorite_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_granite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_granite.json new file mode 100644 index 000000000..f563a5815 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_granite.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_granite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_granite_slab.json new file mode 100644 index 000000000..cf284e3cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_granite_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_granite_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_granite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_granite_stairs.json new file mode 100644 index 000000000..faf07419b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_granite_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_granite_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_tuff.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_tuff.json new file mode 100644 index 000000000..3561f965d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_tuff.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_tuff_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_tuff_slab.json new file mode 100644 index 000000000..777eb8f35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_tuff_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_tuff_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_tuff_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_tuff_stairs.json new file mode 100644 index 000000000..ed2f5ef88 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_tuff_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_tuff_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_tuff_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_tuff_wall.json new file mode 100644 index 000000000..b0ea8fe2b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/polished_tuff_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/polished_tuff_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/popped_chorus_fruit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/popped_chorus_fruit.json new file mode 100644 index 000000000..d8b0732f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/popped_chorus_fruit.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/popped_chorus_fruit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/poppy.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/poppy.json new file mode 100644 index 000000000..19cc1bc57 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/poppy.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/poppy" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/porkchop.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/porkchop.json new file mode 100644 index 000000000..f820d9ec5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/porkchop.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/porkchop" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/potato.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/potato.json new file mode 100644 index 000000000..6926e16bb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/potato.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/potato" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/potion.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/potion.json new file mode 100644 index 000000000..3f0b2e341 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/potion.json @@ -0,0 +1,12 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/potion", + "tints": [ + { + "type": "minecraft:potion", + "default": -13083194 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/powder_snow_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/powder_snow_bucket.json new file mode 100644 index 000000000..c7560238b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/powder_snow_bucket.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/powder_snow_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/powered_rail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/powered_rail.json new file mode 100644 index 000000000..ae1ae8a35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/powered_rail.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/powered_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine.json new file mode 100644 index 000000000..8b8df6289 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_brick_slab.json new file mode 100644 index 000000000..4cfe1b8ca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/prismarine_brick_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_brick_stairs.json new file mode 100644 index 000000000..cc00e6186 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/prismarine_brick_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_bricks.json new file mode 100644 index 000000000..ea827dc7f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/prismarine_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_crystals.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_crystals.json new file mode 100644 index 000000000..65b82683e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_crystals.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/prismarine_crystals" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_shard.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_shard.json new file mode 100644 index 000000000..62e7ca534 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_shard.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/prismarine_shard" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_slab.json new file mode 100644 index 000000000..43acaf5a9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/prismarine_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_stairs.json new file mode 100644 index 000000000..251ebd31c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/prismarine_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_wall.json new file mode 100644 index 000000000..2a8e95eca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prismarine_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/prismarine_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prize_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prize_pottery_sherd.json new file mode 100644 index 000000000..8caaa5586 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/prize_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/prize_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pufferfish.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pufferfish.json new file mode 100644 index 000000000..c509473e9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pufferfish.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pufferfish" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pufferfish_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pufferfish_bucket.json new file mode 100644 index 000000000..a347a0279 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pufferfish_bucket.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pufferfish_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pufferfish_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pufferfish_spawn_egg.json new file mode 100644 index 000000000..5a1b9bbe1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pufferfish_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pufferfish_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pumpkin.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pumpkin.json new file mode 100644 index 000000000..0faeffcb3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pumpkin.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/pumpkin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pumpkin_pie.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pumpkin_pie.json new file mode 100644 index 000000000..82d1d8d45 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pumpkin_pie.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pumpkin_pie" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pumpkin_seeds.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pumpkin_seeds.json new file mode 100644 index 000000000..27eb2b18f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/pumpkin_seeds.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/pumpkin_seeds" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_banner.json new file mode 100644 index 000000000..a632445d0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_banner.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_banner", + "model": { + "type": "minecraft:banner", + "color": "purple" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_bed.json new file mode 100644 index 000000000..ce125e53f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_bed.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/purple_bed", + "model": { + "type": "minecraft:bed", + "texture": "minecraft:purple" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_bundle.json new file mode 100644 index 000000000..f7f9d18e5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_bundle.json @@ -0,0 +1,39 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/purple_bundle" + }, + "on_true": { + "type": "minecraft:composite", + "models": [ + { + "type": "minecraft:model", + "model": "minecraft:item/purple_bundle_open_back" + }, + { + "type": "minecraft:bundle/selected_item" + }, + { + "type": "minecraft:model", + "model": "minecraft:item/purple_bundle_open_front" + } + ] + }, + "property": "minecraft:bundle/has_selected_item" + }, + "when": "gui" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/purple_bundle" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_candle.json new file mode 100644 index 000000000..c7e507f7c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_candle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/purple_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_carpet.json new file mode 100644 index 000000000..3f09aedcf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/purple_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_concrete.json new file mode 100644 index 000000000..09e02e78f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_concrete.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/purple_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_concrete_powder.json new file mode 100644 index 000000000..ba6108736 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/purple_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_dye.json new file mode 100644 index 000000000..4e714a5d8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_dye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/purple_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_glazed_terracotta.json new file mode 100644 index 000000000..8d4c892a8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/purple_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_harness.json new file mode 100644 index 000000000..56023ee09 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_harness.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/purple_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_shulker_box.json new file mode 100644 index 000000000..3123f271c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_shulker_box.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/purple_shulker_box", + "model": { + "type": "minecraft:shulker_box", + "texture": "minecraft:shulker_purple" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_stained_glass.json new file mode 100644 index 000000000..9ee1a1a80 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_stained_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/purple_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_stained_glass_pane.json new file mode 100644 index 000000000..8c0ca721e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/purple_stained_glass_pane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_terracotta.json new file mode 100644 index 000000000..b8f12da09 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/purple_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_wool.json new file mode 100644 index 000000000..10a06042e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purple_wool.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/purple_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purpur_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purpur_block.json new file mode 100644 index 000000000..869e90fdf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purpur_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/purpur_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purpur_pillar.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purpur_pillar.json new file mode 100644 index 000000000..1403ba779 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purpur_pillar.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/purpur_pillar" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purpur_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purpur_slab.json new file mode 100644 index 000000000..d8cfeb97e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purpur_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/purpur_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purpur_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purpur_stairs.json new file mode 100644 index 000000000..4e408c25c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/purpur_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/purpur_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz.json new file mode 100644 index 000000000..bb72ef579 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz_block.json new file mode 100644 index 000000000..f14834d0c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/quartz_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz_bricks.json new file mode 100644 index 000000000..5b00e1702 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/quartz_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz_pillar.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz_pillar.json new file mode 100644 index 000000000..7c760921e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz_pillar.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/quartz_pillar" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz_slab.json new file mode 100644 index 000000000..5d889db04 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/quartz_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz_stairs.json new file mode 100644 index 000000000..355f101eb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/quartz_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/quartz_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rabbit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rabbit.json new file mode 100644 index 000000000..a65a35837 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rabbit.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/rabbit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rabbit_foot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rabbit_foot.json new file mode 100644 index 000000000..65a4362ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rabbit_foot.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/rabbit_foot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rabbit_hide.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rabbit_hide.json new file mode 100644 index 000000000..b125735ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rabbit_hide.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/rabbit_hide" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rabbit_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rabbit_spawn_egg.json new file mode 100644 index 000000000..0f2747c4c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rabbit_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/rabbit_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rabbit_stew.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rabbit_stew.json new file mode 100644 index 000000000..3d01e38ea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rabbit_stew.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/rabbit_stew" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rail.json new file mode 100644 index 000000000..79de80b32 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rail.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raiser_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raiser_armor_trim_smithing_template.json new file mode 100644 index 000000000..9b78cc73c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raiser_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/raiser_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ravager_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ravager_spawn_egg.json new file mode 100644 index 000000000..303bba05f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ravager_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/ravager_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_copper.json new file mode 100644 index 000000000..1acac00af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/raw_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_copper_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_copper_block.json new file mode 100644 index 000000000..74e4268c1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_copper_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/raw_copper_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_gold.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_gold.json new file mode 100644 index 000000000..c409fb4b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_gold.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/raw_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_gold_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_gold_block.json new file mode 100644 index 000000000..8636565f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_gold_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/raw_gold_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_iron.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_iron.json new file mode 100644 index 000000000..0b5b2178b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_iron.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/raw_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_iron_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_iron_block.json new file mode 100644 index 000000000..368a35a79 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/raw_iron_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/raw_iron_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/recovery_compass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/recovery_compass.json new file mode 100644 index 000000000..676d03665 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/recovery_compass.json @@ -0,0 +1,241 @@ +{ + "model": { + "type": "minecraft:range_dispatch", + "entries": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_16" + }, + "threshold": 0.0 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_17" + }, + "threshold": 0.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_18" + }, + "threshold": 1.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_19" + }, + "threshold": 2.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_20" + }, + "threshold": 3.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_21" + }, + "threshold": 4.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_22" + }, + "threshold": 5.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_23" + }, + "threshold": 6.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_24" + }, + "threshold": 7.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_25" + }, + "threshold": 8.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_26" + }, + "threshold": 9.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_27" + }, + "threshold": 10.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_28" + }, + "threshold": 11.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_29" + }, + "threshold": 12.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_30" + }, + "threshold": 13.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_31" + }, + "threshold": 14.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_00" + }, + "threshold": 15.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_01" + }, + "threshold": 16.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_02" + }, + "threshold": 17.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_03" + }, + "threshold": 18.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_04" + }, + "threshold": 19.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_05" + }, + "threshold": 20.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_06" + }, + "threshold": 21.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_07" + }, + "threshold": 22.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_08" + }, + "threshold": 23.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_09" + }, + "threshold": 24.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_10" + }, + "threshold": 25.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_11" + }, + "threshold": 26.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_12" + }, + "threshold": 27.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_13" + }, + "threshold": 28.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_14" + }, + "threshold": 29.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_15" + }, + "threshold": 30.5 + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/recovery_compass_16" + }, + "threshold": 31.5 + } + ], + "property": "minecraft:compass", + "scale": 32.0, + "target": "recovery" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_banner.json new file mode 100644 index 000000000..80cdff09c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_banner.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_banner", + "model": { + "type": "minecraft:banner", + "color": "red" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_bed.json new file mode 100644 index 000000000..9b772b375 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_bed.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/red_bed", + "model": { + "type": "minecraft:bed", + "texture": "minecraft:red" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_bundle.json new file mode 100644 index 000000000..811afd561 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_bundle.json @@ -0,0 +1,39 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/red_bundle" + }, + "on_true": { + "type": "minecraft:composite", + "models": [ + { + "type": "minecraft:model", + "model": "minecraft:item/red_bundle_open_back" + }, + { + "type": "minecraft:bundle/selected_item" + }, + { + "type": "minecraft:model", + "model": "minecraft:item/red_bundle_open_front" + } + ] + }, + "property": "minecraft:bundle/has_selected_item" + }, + "when": "gui" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/red_bundle" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_candle.json new file mode 100644 index 000000000..31e3952bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_candle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/red_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_carpet.json new file mode 100644 index 000000000..c58019dbb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/red_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_concrete.json new file mode 100644 index 000000000..756a4cea5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_concrete.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/red_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_concrete_powder.json new file mode 100644 index 000000000..2f2b48855 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/red_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_dye.json new file mode 100644 index 000000000..2acc27620 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_dye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/red_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_glazed_terracotta.json new file mode 100644 index 000000000..b2ca92200 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/red_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_harness.json new file mode 100644 index 000000000..2852c95da --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_harness.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/red_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_mushroom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_mushroom.json new file mode 100644 index 000000000..ede149295 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_mushroom.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/red_mushroom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_mushroom_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_mushroom_block.json new file mode 100644 index 000000000..d7b804564 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_mushroom_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/red_mushroom_block_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_nether_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_nether_brick_slab.json new file mode 100644 index 000000000..084cc145b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_nether_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/red_nether_brick_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_nether_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_nether_brick_stairs.json new file mode 100644 index 000000000..4d655dbf5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_nether_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/red_nether_brick_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_nether_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_nether_brick_wall.json new file mode 100644 index 000000000..d5a4313a3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_nether_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/red_nether_brick_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_nether_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_nether_bricks.json new file mode 100644 index 000000000..4bc5ad7de --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_nether_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_sand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_sand.json new file mode 100644 index 000000000..18a6982df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_sand.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/red_sand" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_sandstone.json new file mode 100644 index 000000000..99efe2f39 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_sandstone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/red_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_sandstone_slab.json new file mode 100644 index 000000000..3ab55118c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_sandstone_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/red_sandstone_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_sandstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_sandstone_stairs.json new file mode 100644 index 000000000..f26d3ed89 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_sandstone_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/red_sandstone_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_sandstone_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_sandstone_wall.json new file mode 100644 index 000000000..52cb9c270 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_sandstone_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/red_sandstone_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_shulker_box.json new file mode 100644 index 000000000..41278f48b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_shulker_box.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/red_shulker_box", + "model": { + "type": "minecraft:shulker_box", + "texture": "minecraft:shulker_red" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_stained_glass.json new file mode 100644 index 000000000..8b567b7a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_stained_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/red_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_stained_glass_pane.json new file mode 100644 index 000000000..d65611ec1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/red_stained_glass_pane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_terracotta.json new file mode 100644 index 000000000..4b9940927 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/red_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_tulip.json new file mode 100644 index 000000000..dc62d0b83 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_tulip.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/red_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_wool.json new file mode 100644 index 000000000..310df92d9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/red_wool.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/red_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/redstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/redstone.json new file mode 100644 index 000000000..d09f3de6c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/redstone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/redstone_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/redstone_block.json new file mode 100644 index 000000000..20d75a80d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/redstone_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/redstone_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/redstone_lamp.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/redstone_lamp.json new file mode 100644 index 000000000..4edf1ab0d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/redstone_lamp.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/redstone_lamp" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/redstone_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/redstone_ore.json new file mode 100644 index 000000000..a6a5f3e39 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/redstone_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/redstone_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/redstone_torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/redstone_torch.json new file mode 100644 index 000000000..45deab455 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/redstone_torch.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/redstone_torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/reinforced_deepslate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/reinforced_deepslate.json new file mode 100644 index 000000000..7e8fd3ec5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/reinforced_deepslate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/reinforced_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/repeater.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/repeater.json new file mode 100644 index 000000000..b0446ebe9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/repeater.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/repeater" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/repeating_command_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/repeating_command_block.json new file mode 100644 index 000000000..404579414 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/repeating_command_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/repeating_command_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_block.json new file mode 100644 index 000000000..d50dedec3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/resin_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_brick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_brick.json new file mode 100644 index 000000000..3443227b4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_brick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/resin_brick" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_brick_slab.json new file mode 100644 index 000000000..e45cebb36 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/resin_brick_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_brick_stairs.json new file mode 100644 index 000000000..2ea91f798 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/resin_brick_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_brick_wall.json new file mode 100644 index 000000000..36d28477e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/resin_brick_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_bricks.json new file mode 100644 index 000000000..659164ae0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_clump.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_clump.json new file mode 100644 index 000000000..566ea5239 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/resin_clump.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/resin_clump" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/respawn_anchor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/respawn_anchor.json new file mode 100644 index 000000000..4d9f0c72b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/respawn_anchor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/respawn_anchor_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rib_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rib_armor_trim_smithing_template.json new file mode 100644 index 000000000..94267177d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rib_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/rib_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rooted_dirt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rooted_dirt.json new file mode 100644 index 000000000..c881387e0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rooted_dirt.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/rooted_dirt" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rose_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rose_bush.json new file mode 100644 index 000000000..2f7fcbb65 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rose_bush.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/rose_bush" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rotten_flesh.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rotten_flesh.json new file mode 100644 index 000000000..a589c2afc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/rotten_flesh.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/rotten_flesh" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/saddle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/saddle.json new file mode 100644 index 000000000..7fd03e7ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/saddle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/saddle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/salmon.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/salmon.json new file mode 100644 index 000000000..ad1ff9621 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/salmon.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/salmon" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/salmon_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/salmon_bucket.json new file mode 100644 index 000000000..b5c3af3d3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/salmon_bucket.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/salmon_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/salmon_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/salmon_spawn_egg.json new file mode 100644 index 000000000..a369b33d6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/salmon_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/salmon_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sand.json new file mode 100644 index 000000000..0d053d91d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sand.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/sand" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sandstone.json new file mode 100644 index 000000000..a8071c3d0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sandstone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sandstone_slab.json new file mode 100644 index 000000000..63249734e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sandstone_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/sandstone_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sandstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sandstone_stairs.json new file mode 100644 index 000000000..d3bd4df77 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sandstone_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/sandstone_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sandstone_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sandstone_wall.json new file mode 100644 index 000000000..4c63f461a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sandstone_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/sandstone_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/scaffolding.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/scaffolding.json new file mode 100644 index 000000000..c3692b7ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/scaffolding.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/scaffolding_stable" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/scrape_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/scrape_pottery_sherd.json new file mode 100644 index 000000000..020a80ec4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/scrape_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/scrape_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sculk.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sculk.json new file mode 100644 index 000000000..73211e5f5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sculk.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/sculk" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sculk_catalyst.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sculk_catalyst.json new file mode 100644 index 000000000..fd27d7843 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sculk_catalyst.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/sculk_catalyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sculk_sensor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sculk_sensor.json new file mode 100644 index 000000000..7ffe1c992 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sculk_sensor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/sculk_sensor_inactive" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sculk_shrieker.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sculk_shrieker.json new file mode 100644 index 000000000..5c4166a29 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sculk_shrieker.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/sculk_shrieker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sculk_vein.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sculk_vein.json new file mode 100644 index 000000000..468d5a93a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sculk_vein.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/sculk_vein" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sea_lantern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sea_lantern.json new file mode 100644 index 000000000..33663f597 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sea_lantern.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/sea_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sea_pickle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sea_pickle.json new file mode 100644 index 000000000..46e93249f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sea_pickle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/sea_pickle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/seagrass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/seagrass.json new file mode 100644 index 000000000..39d338bc9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/seagrass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/seagrass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sentry_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sentry_armor_trim_smithing_template.json new file mode 100644 index 000000000..1c3fd1154 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sentry_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/sentry_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shaper_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shaper_armor_trim_smithing_template.json new file mode 100644 index 000000000..1d7a21224 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shaper_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/shaper_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sheaf_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sheaf_pottery_sherd.json new file mode 100644 index 000000000..25308a86a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sheaf_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/sheaf_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shears.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shears.json new file mode 100644 index 000000000..10f58ec82 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shears.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/shears" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sheep_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sheep_spawn_egg.json new file mode 100644 index 000000000..254bc4ec4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sheep_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/sheep_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shelter_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shelter_pottery_sherd.json new file mode 100644 index 000000000..392707eb5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shelter_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/shelter_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shield.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shield.json new file mode 100644 index 000000000..f6bc4b3e0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shield.json @@ -0,0 +1,20 @@ +{ + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:special", + "base": "minecraft:item/shield", + "model": { + "type": "minecraft:shield" + } + }, + "on_true": { + "type": "minecraft:special", + "base": "minecraft:item/shield_blocking", + "model": { + "type": "minecraft:shield" + } + }, + "property": "minecraft:using_item" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/short_dry_grass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/short_dry_grass.json new file mode 100644 index 000000000..ac3d27839 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/short_dry_grass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/short_dry_grass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/short_grass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/short_grass.json new file mode 100644 index 000000000..d218bc011 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/short_grass.json @@ -0,0 +1,13 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/short_grass", + "tints": [ + { + "type": "minecraft:grass", + "downfall": 1.0, + "temperature": 0.5 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shroomlight.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shroomlight.json new file mode 100644 index 000000000..2cbf73b0e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shroomlight.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/shroomlight" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shulker_box.json new file mode 100644 index 000000000..b688cdb37 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shulker_box.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/shulker_box", + "model": { + "type": "minecraft:shulker_box", + "texture": "minecraft:shulker" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shulker_shell.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shulker_shell.json new file mode 100644 index 000000000..fbb0597f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shulker_shell.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/shulker_shell" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shulker_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shulker_spawn_egg.json new file mode 100644 index 000000000..aa1422dc0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/shulker_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/shulker_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/silence_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/silence_armor_trim_smithing_template.json new file mode 100644 index 000000000..c19819d97 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/silence_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/silence_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/silverfish_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/silverfish_spawn_egg.json new file mode 100644 index 000000000..fd5ff757d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/silverfish_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/silverfish_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/skeleton_horse_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/skeleton_horse_spawn_egg.json new file mode 100644 index 000000000..5b2812802 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/skeleton_horse_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/skeleton_horse_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/skeleton_skull.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/skeleton_skull.json new file mode 100644 index 000000000..68cf144ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/skeleton_skull.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_skull", + "model": { + "type": "minecraft:head", + "kind": "skeleton" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/skeleton_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/skeleton_spawn_egg.json new file mode 100644 index 000000000..5118e265e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/skeleton_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/skeleton_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/skull_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/skull_banner_pattern.json new file mode 100644 index 000000000..9bee46be0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/skull_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/skull_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/skull_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/skull_pottery_sherd.json new file mode 100644 index 000000000..22a43641b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/skull_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/skull_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/slime_ball.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/slime_ball.json new file mode 100644 index 000000000..799ca93af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/slime_ball.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/slime_ball" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/slime_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/slime_block.json new file mode 100644 index 000000000..b066f9faf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/slime_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/slime_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/slime_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/slime_spawn_egg.json new file mode 100644 index 000000000..fc8c59986 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/slime_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/slime_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/small_amethyst_bud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/small_amethyst_bud.json new file mode 100644 index 000000000..8d8a72b9b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/small_amethyst_bud.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/small_amethyst_bud" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/small_dripleaf.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/small_dripleaf.json new file mode 100644 index 000000000..e95125a12 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/small_dripleaf.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/small_dripleaf" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smithing_table.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smithing_table.json new file mode 100644 index 000000000..4e3e7f1f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smithing_table.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/smithing_table" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smoker.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smoker.json new file mode 100644 index 000000000..2d0f5cdcb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smoker.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/smoker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_basalt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_basalt.json new file mode 100644 index 000000000..7700ef6ea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_basalt.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/smooth_basalt" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_quartz.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_quartz.json new file mode 100644 index 000000000..cac9ae924 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_quartz.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/smooth_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_quartz_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_quartz_slab.json new file mode 100644 index 000000000..ec9645011 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_quartz_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/smooth_quartz_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_quartz_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_quartz_stairs.json new file mode 100644 index 000000000..ab1bf7303 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_quartz_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/smooth_quartz_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_red_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_red_sandstone.json new file mode 100644 index 000000000..7f06dab46 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_red_sandstone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/smooth_red_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_red_sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_red_sandstone_slab.json new file mode 100644 index 000000000..292247fa6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_red_sandstone_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/smooth_red_sandstone_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_red_sandstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_red_sandstone_stairs.json new file mode 100644 index 000000000..048905e01 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_red_sandstone_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/smooth_red_sandstone_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_sandstone.json new file mode 100644 index 000000000..8fca13622 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_sandstone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/smooth_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_sandstone_slab.json new file mode 100644 index 000000000..23348d0df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_sandstone_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/smooth_sandstone_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_sandstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_sandstone_stairs.json new file mode 100644 index 000000000..9222c1549 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_sandstone_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/smooth_sandstone_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_stone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_stone.json new file mode 100644 index 000000000..5b3ef2dd3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_stone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/smooth_stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_stone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_stone_slab.json new file mode 100644 index 000000000..fd1c9d9c9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/smooth_stone_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/smooth_stone_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sniffer_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sniffer_egg.json new file mode 100644 index 000000000..675288c07 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sniffer_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/sniffer_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sniffer_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sniffer_spawn_egg.json new file mode 100644 index 000000000..3461789da --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sniffer_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/sniffer_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snort_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snort_pottery_sherd.json new file mode 100644 index 000000000..91e2e548c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snort_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/snort_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snout_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snout_armor_trim_smithing_template.json new file mode 100644 index 000000000..37b25e534 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snout_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/snout_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snow.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snow.json new file mode 100644 index 000000000..532c74442 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snow.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/snow_height2" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snow_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snow_block.json new file mode 100644 index 000000000..b2bb073bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snow_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/snow_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snow_golem_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snow_golem_spawn_egg.json new file mode 100644 index 000000000..04f90e750 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snow_golem_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/snow_golem_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snowball.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snowball.json new file mode 100644 index 000000000..d33a77a4c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/snowball.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/snowball" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/soul_campfire.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/soul_campfire.json new file mode 100644 index 000000000..e6bc30427 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/soul_campfire.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/soul_campfire" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/soul_lantern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/soul_lantern.json new file mode 100644 index 000000000..5798a9a93 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/soul_lantern.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/soul_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/soul_sand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/soul_sand.json new file mode 100644 index 000000000..8101cb3c7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/soul_sand.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/soul_sand" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/soul_soil.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/soul_soil.json new file mode 100644 index 000000000..2345c55ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/soul_soil.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/soul_soil" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/soul_torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/soul_torch.json new file mode 100644 index 000000000..530bfc4fe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/soul_torch.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/soul_torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spawner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spawner.json new file mode 100644 index 000000000..6064177a5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spawner.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/spawner" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spectral_arrow.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spectral_arrow.json new file mode 100644 index 000000000..92b39e7e4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spectral_arrow.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/spectral_arrow" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spider_eye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spider_eye.json new file mode 100644 index 000000000..2e5832c27 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spider_eye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/spider_eye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spider_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spider_spawn_egg.json new file mode 100644 index 000000000..7aa50988e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spider_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/spider_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spire_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spire_armor_trim_smithing_template.json new file mode 100644 index 000000000..c0ced75d0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spire_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/spire_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/splash_potion.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/splash_potion.json new file mode 100644 index 000000000..7fa6e714d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/splash_potion.json @@ -0,0 +1,12 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/splash_potion", + "tints": [ + { + "type": "minecraft:potion", + "default": -13083194 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sponge.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sponge.json new file mode 100644 index 000000000..c60720eec --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sponge.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/sponge" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spore_blossom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spore_blossom.json new file mode 100644 index 000000000..7e9cc6e76 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spore_blossom.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/spore_blossom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_boat.json new file mode 100644 index 000000000..59d057265 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/spruce_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_button.json new file mode 100644 index 000000000..dd3c78eb0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_button.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/spruce_button_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_chest_boat.json new file mode 100644 index 000000000..89dbfdeb2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_chest_boat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/spruce_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_door.json new file mode 100644 index 000000000..dda164c24 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/spruce_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_fence.json new file mode 100644 index 000000000..22837ca46 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_fence.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/spruce_fence_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_fence_gate.json new file mode 100644 index 000000000..539e3b6bd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_fence_gate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/spruce_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_hanging_sign.json new file mode 100644 index 000000000..a2ccee41e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/spruce_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_leaves.json new file mode 100644 index 000000000..48be842cf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_leaves.json @@ -0,0 +1,12 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/spruce_leaves", + "tints": [ + { + "type": "minecraft:constant", + "value": -10380959 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_log.json new file mode 100644 index 000000000..f106ea3cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_planks.json new file mode 100644 index 000000000..bda83bc8f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_planks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_pressure_plate.json new file mode 100644 index 000000000..2a85b4fe0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/spruce_pressure_plate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_sapling.json new file mode 100644 index 000000000..ad926af2d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/spruce_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_sign.json new file mode 100644 index 000000000..e4c5355c2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/spruce_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_slab.json new file mode 100644 index 000000000..1f398c162 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/spruce_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_stairs.json new file mode 100644 index 000000000..7282b434e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/spruce_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_trapdoor.json new file mode 100644 index 000000000..1aed97732 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/spruce_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_wood.json new file mode 100644 index 000000000..c7f5f46f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spruce_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/spruce_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spyglass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spyglass.json new file mode 100644 index 000000000..91bbd8485 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/spyglass.json @@ -0,0 +1,23 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/spyglass" + }, + "when": [ + "gui", + "ground", + "fixed" + ] + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/spyglass_in_hand" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/squid_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/squid_spawn_egg.json new file mode 100644 index 000000000..95204ecb1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/squid_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/squid_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stick.json new file mode 100644 index 000000000..d2e5fd07e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/stick" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sticky_piston.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sticky_piston.json new file mode 100644 index 000000000..7d62c70d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sticky_piston.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/sticky_piston_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone.json new file mode 100644 index 000000000..f5c9f2a0d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_axe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_axe.json new file mode 100644 index 000000000..439896b14 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/stone_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_brick_slab.json new file mode 100644 index 000000000..470cba9e9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stone_brick_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_brick_stairs.json new file mode 100644 index 000000000..a80ee9645 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stone_brick_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_brick_wall.json new file mode 100644 index 000000000..1690e1d7b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stone_brick_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_bricks.json new file mode 100644 index 000000000..a61dd731d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_button.json new file mode 100644 index 000000000..fe492729d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_button.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stone_button_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_hoe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_hoe.json new file mode 100644 index 000000000..c9aa4f301 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/stone_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_pickaxe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_pickaxe.json new file mode 100644 index 000000000..43c464967 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/stone_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_pressure_plate.json new file mode 100644 index 000000000..eed8e4d58 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stone_pressure_plate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_shovel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_shovel.json new file mode 100644 index 000000000..83c3f305e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_shovel.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/stone_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_slab.json new file mode 100644 index 000000000..277a59287 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stone_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_stairs.json new file mode 100644 index 000000000..16adbff01 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stone_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_sword.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_sword.json new file mode 100644 index 000000000..7213642ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stone_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/stone_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stonecutter.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stonecutter.json new file mode 100644 index 000000000..cd72ad0e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stonecutter.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stonecutter" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stray_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stray_spawn_egg.json new file mode 100644 index 000000000..b73412c0f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stray_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/stray_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/strider_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/strider_spawn_egg.json new file mode 100644 index 000000000..347d47a3f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/strider_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/strider_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/string.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/string.json new file mode 100644 index 000000000..8f748c80f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/string.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/string" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_acacia_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_acacia_log.json new file mode 100644 index 000000000..6c34eef11 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_acacia_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_acacia_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_acacia_wood.json new file mode 100644 index 000000000..34e2ee6dd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_acacia_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_acacia_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_bamboo_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_bamboo_block.json new file mode 100644 index 000000000..4cabea36f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_bamboo_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_birch_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_birch_log.json new file mode 100644 index 000000000..c99a9a8ca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_birch_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_birch_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_birch_wood.json new file mode 100644 index 000000000..80f86c85f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_birch_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_birch_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_cherry_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_cherry_log.json new file mode 100644 index 000000000..47cde5ccc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_cherry_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_cherry_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_cherry_wood.json new file mode 100644 index 000000000..daefe8eee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_cherry_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_cherry_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_crimson_hyphae.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_crimson_hyphae.json new file mode 100644 index 000000000..5cf344efd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_crimson_hyphae.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_crimson_hyphae" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_crimson_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_crimson_stem.json new file mode 100644 index 000000000..96e913a1f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_crimson_stem.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_dark_oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_dark_oak_log.json new file mode 100644 index 000000000..b84166629 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_dark_oak_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_dark_oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_dark_oak_wood.json new file mode 100644 index 000000000..f673458ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_dark_oak_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_dark_oak_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_jungle_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_jungle_log.json new file mode 100644 index 000000000..1e1a81bcd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_jungle_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_jungle_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_jungle_wood.json new file mode 100644 index 000000000..79a560935 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_jungle_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_jungle_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_mangrove_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_mangrove_log.json new file mode 100644 index 000000000..ad55c4071 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_mangrove_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_mangrove_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_mangrove_wood.json new file mode 100644 index 000000000..a9316c1a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_mangrove_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_mangrove_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_oak_log.json new file mode 100644 index 000000000..9f4bf5847 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_oak_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_oak_wood.json new file mode 100644 index 000000000..7ad322144 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_oak_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_oak_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_pale_oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_pale_oak_log.json new file mode 100644 index 000000000..0446e2813 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_pale_oak_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_pale_oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_pale_oak_wood.json new file mode 100644 index 000000000..109ad1aca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_pale_oak_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_pale_oak_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_spruce_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_spruce_log.json new file mode 100644 index 000000000..cdd2f2928 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_spruce_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_spruce_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_spruce_wood.json new file mode 100644 index 000000000..28cf5b63d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_spruce_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_spruce_wood" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_warped_hyphae.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_warped_hyphae.json new file mode 100644 index 000000000..4e814822d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_warped_hyphae.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_warped_hyphae" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_warped_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_warped_stem.json new file mode 100644 index 000000000..e3bbcec35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/stripped_warped_stem.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/stripped_warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/structure_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/structure_block.json new file mode 100644 index 000000000..bf984362f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/structure_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/structure_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/structure_void.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/structure_void.json new file mode 100644 index 000000000..806791166 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/structure_void.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/structure_void" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sugar.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sugar.json new file mode 100644 index 000000000..8a2ac1f02 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sugar.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/sugar" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sugar_cane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sugar_cane.json new file mode 100644 index 000000000..fcffd263b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sugar_cane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/sugar_cane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sunflower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sunflower.json new file mode 100644 index 000000000..db77a8cb3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sunflower.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/sunflower" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/suspicious_gravel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/suspicious_gravel.json new file mode 100644 index 000000000..a2ae98d8b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/suspicious_gravel.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/suspicious_gravel_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/suspicious_sand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/suspicious_sand.json new file mode 100644 index 000000000..d1e5b53ec --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/suspicious_sand.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/suspicious_sand_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/suspicious_stew.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/suspicious_stew.json new file mode 100644 index 000000000..39814c701 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/suspicious_stew.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/suspicious_stew" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sweet_berries.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sweet_berries.json new file mode 100644 index 000000000..abce325f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/sweet_berries.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/sweet_berries" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tadpole_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tadpole_bucket.json new file mode 100644 index 000000000..6a3f1f5c6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tadpole_bucket.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/tadpole_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tadpole_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tadpole_spawn_egg.json new file mode 100644 index 000000000..85a709a95 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tadpole_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/tadpole_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tall_dry_grass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tall_dry_grass.json new file mode 100644 index 000000000..fb4a4fd6f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tall_dry_grass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/tall_dry_grass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tall_grass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tall_grass.json new file mode 100644 index 000000000..8e524c317 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tall_grass.json @@ -0,0 +1,13 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/tall_grass", + "tints": [ + { + "type": "minecraft:grass", + "downfall": 1.0, + "temperature": 0.5 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/target.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/target.json new file mode 100644 index 000000000..06200fd8c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/target.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/target" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/terracotta.json new file mode 100644 index 000000000..690ee8153 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/test_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/test_block.json new file mode 100644 index 000000000..706d749c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/test_block.json @@ -0,0 +1,34 @@ +{ + "model": { + "type": "minecraft:select", + "block_state_property": "mode", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:block/test_block_log" + }, + "when": "log" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:block/test_block_fail" + }, + "when": "fail" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:block/test_block_accept" + }, + "when": "accept" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:block/test_block_start" + }, + "property": "minecraft:block_state" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/test_instance_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/test_instance_block.json new file mode 100644 index 000000000..d153ca1c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/test_instance_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/test_instance_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tide_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tide_armor_trim_smithing_template.json new file mode 100644 index 000000000..a4578f21b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tide_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/tide_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tinted_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tinted_glass.json new file mode 100644 index 000000000..9a56958c8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tinted_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/tinted_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tipped_arrow.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tipped_arrow.json new file mode 100644 index 000000000..77ba8aa89 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tipped_arrow.json @@ -0,0 +1,12 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/tipped_arrow", + "tints": [ + { + "type": "minecraft:potion", + "default": -13083194 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tnt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tnt.json new file mode 100644 index 000000000..ed41988a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tnt.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/tnt" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tnt_minecart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tnt_minecart.json new file mode 100644 index 000000000..f390cb9bc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tnt_minecart.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/tnt_minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/torch.json new file mode 100644 index 000000000..44a5efb9f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/torch.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/torchflower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/torchflower.json new file mode 100644 index 000000000..aeb1619c5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/torchflower.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/torchflower" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/torchflower_seeds.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/torchflower_seeds.json new file mode 100644 index 000000000..d8ad414e0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/torchflower_seeds.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/torchflower_seeds" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/totem_of_undying.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/totem_of_undying.json new file mode 100644 index 000000000..e1844f63a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/totem_of_undying.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/totem_of_undying" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/trader_llama_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/trader_llama_spawn_egg.json new file mode 100644 index 000000000..61e69441b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/trader_llama_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/trader_llama_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/trapped_chest.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/trapped_chest.json new file mode 100644 index 000000000..bac5cdb57 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/trapped_chest.json @@ -0,0 +1,32 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:special", + "base": "minecraft:item/trapped_chest", + "model": { + "type": "minecraft:chest", + "texture": "minecraft:christmas" + } + }, + "when": [ + "12-24", + "12-25", + "12-26" + ] + } + ], + "fallback": { + "type": "minecraft:special", + "base": "minecraft:item/trapped_chest", + "model": { + "type": "minecraft:chest", + "texture": "minecraft:trapped" + } + }, + "pattern": "MM-dd", + "property": "minecraft:local_time" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/trial_key.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/trial_key.json new file mode 100644 index 000000000..3a34cbaf4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/trial_key.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/trial_key" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/trial_spawner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/trial_spawner.json new file mode 100644 index 000000000..809b44605 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/trial_spawner.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/trial_spawner" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/trident.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/trident.json new file mode 100644 index 000000000..9f6c47801 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/trident.json @@ -0,0 +1,37 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/trident" + }, + "when": [ + "gui", + "ground", + "fixed" + ] + } + ], + "fallback": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:special", + "base": "minecraft:item/trident_in_hand", + "model": { + "type": "minecraft:trident" + } + }, + "on_true": { + "type": "minecraft:special", + "base": "minecraft:item/trident_throwing", + "model": { + "type": "minecraft:trident" + } + }, + "property": "minecraft:using_item" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tripwire_hook.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tripwire_hook.json new file mode 100644 index 000000000..f9bf5abd9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tripwire_hook.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/tripwire_hook" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tropical_fish.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tropical_fish.json new file mode 100644 index 000000000..26f2f487a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tropical_fish.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/tropical_fish" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tropical_fish_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tropical_fish_bucket.json new file mode 100644 index 000000000..2db713646 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tropical_fish_bucket.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/tropical_fish_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tropical_fish_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tropical_fish_spawn_egg.json new file mode 100644 index 000000000..18fade418 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tropical_fish_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/tropical_fish_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tube_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tube_coral.json new file mode 100644 index 000000000..931087805 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tube_coral.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/tube_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tube_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tube_coral_block.json new file mode 100644 index 000000000..790d51d29 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tube_coral_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/tube_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tube_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tube_coral_fan.json new file mode 100644 index 000000000..6159f2630 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tube_coral_fan.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/tube_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff.json new file mode 100644 index 000000000..610c254a3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_brick_slab.json new file mode 100644 index 000000000..0cdb4823b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_brick_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/tuff_brick_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_brick_stairs.json new file mode 100644 index 000000000..378136c35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_brick_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/tuff_brick_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_brick_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_brick_wall.json new file mode 100644 index 000000000..7ce468095 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_brick_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/tuff_brick_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_bricks.json new file mode 100644 index 000000000..2d4f32e64 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_bricks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_slab.json new file mode 100644 index 000000000..abd0a96ab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/tuff_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_stairs.json new file mode 100644 index 000000000..7011809e7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/tuff_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_wall.json new file mode 100644 index 000000000..886b4bcbf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/tuff_wall.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/tuff_wall_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/turtle_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/turtle_egg.json new file mode 100644 index 000000000..fc91fe7d0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/turtle_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/turtle_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/turtle_helmet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/turtle_helmet.json new file mode 100644 index 000000000..5fa761e95 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/turtle_helmet.json @@ -0,0 +1,89 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/turtle_helmet_quartz_trim" + }, + "when": "minecraft:quartz" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/turtle_helmet_iron_trim" + }, + "when": "minecraft:iron" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/turtle_helmet_netherite_trim" + }, + "when": "minecraft:netherite" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/turtle_helmet_redstone_trim" + }, + "when": "minecraft:redstone" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/turtle_helmet_copper_trim" + }, + "when": "minecraft:copper" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/turtle_helmet_gold_trim" + }, + "when": "minecraft:gold" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/turtle_helmet_emerald_trim" + }, + "when": "minecraft:emerald" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/turtle_helmet_diamond_trim" + }, + "when": "minecraft:diamond" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/turtle_helmet_lapis_trim" + }, + "when": "minecraft:lapis" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/turtle_helmet_amethyst_trim" + }, + "when": "minecraft:amethyst" + }, + { + "model": { + "type": "minecraft:model", + "model": "minecraft:item/turtle_helmet_resin_trim" + }, + "when": "minecraft:resin" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/turtle_helmet" + }, + "property": "minecraft:trim_material" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/turtle_scute.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/turtle_scute.json new file mode 100644 index 000000000..9c2501507 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/turtle_scute.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/turtle_scute" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/turtle_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/turtle_spawn_egg.json new file mode 100644 index 000000000..6a9152c14 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/turtle_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/turtle_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/twisting_vines.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/twisting_vines.json new file mode 100644 index 000000000..53aa26dde --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/twisting_vines.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/twisting_vines" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/vault.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/vault.json new file mode 100644 index 000000000..822f3d249 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/vault.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/vault" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/verdant_froglight.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/verdant_froglight.json new file mode 100644 index 000000000..78844215c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/verdant_froglight.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/verdant_froglight" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/vex_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/vex_armor_trim_smithing_template.json new file mode 100644 index 000000000..59c22037c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/vex_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/vex_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/vex_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/vex_spawn_egg.json new file mode 100644 index 000000000..13c932824 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/vex_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/vex_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/villager_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/villager_spawn_egg.json new file mode 100644 index 000000000..a1c89c61e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/villager_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/villager_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/vindicator_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/vindicator_spawn_egg.json new file mode 100644 index 000000000..e6909698f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/vindicator_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/vindicator_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/vine.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/vine.json new file mode 100644 index 000000000..e13000c14 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/vine.json @@ -0,0 +1,12 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/vine", + "tints": [ + { + "type": "minecraft:constant", + "value": -12012264 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wandering_trader_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wandering_trader_spawn_egg.json new file mode 100644 index 000000000..0db476639 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wandering_trader_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/wandering_trader_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ward_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ward_armor_trim_smithing_template.json new file mode 100644 index 000000000..c329bccc9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/ward_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/ward_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warden_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warden_spawn_egg.json new file mode 100644 index 000000000..8d20e0248 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warden_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/warden_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_button.json new file mode 100644 index 000000000..aa659e22d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_button.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/warped_button_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_door.json new file mode 100644 index 000000000..dbeece427 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/warped_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_fence.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_fence.json new file mode 100644 index 000000000..815eacdb8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_fence.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/warped_fence_inventory" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_fence_gate.json new file mode 100644 index 000000000..e572057d2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_fence_gate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/warped_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_fungus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_fungus.json new file mode 100644 index 000000000..085c1e25b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_fungus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/warped_fungus" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_fungus_on_a_stick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_fungus_on_a_stick.json new file mode 100644 index 000000000..678bf6260 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_fungus_on_a_stick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/warped_fungus_on_a_stick" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_hanging_sign.json new file mode 100644 index 000000000..f823655b5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/warped_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_hyphae.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_hyphae.json new file mode 100644 index 000000000..cb3ab3d20 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_hyphae.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/warped_hyphae" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_nylium.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_nylium.json new file mode 100644 index 000000000..a96277878 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_nylium.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/warped_nylium" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_planks.json new file mode 100644 index 000000000..25e02f2fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_planks.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_pressure_plate.json new file mode 100644 index 000000000..13d620762 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/warped_pressure_plate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_roots.json new file mode 100644 index 000000000..f9e0e5d0b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_roots.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/warped_roots" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_sign.json new file mode 100644 index 000000000..c8a6a9522 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_sign.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/warped_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_slab.json new file mode 100644 index 000000000..bcde31a96 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/warped_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_stairs.json new file mode 100644 index 000000000..9d6eff56f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/warped_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_stem.json new file mode 100644 index 000000000..6766888db --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_stem.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_trapdoor.json new file mode 100644 index 000000000..f3a05d243 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/warped_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_wart_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_wart_block.json new file mode 100644 index 000000000..cd1c64082 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/warped_wart_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/warped_wart_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/water_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/water_bucket.json new file mode 100644 index 000000000..0a6169595 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/water_bucket.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/water_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_chiseled_copper.json new file mode 100644 index 000000000..99d4996d5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_chiseled_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/chiseled_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_copper_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_copper_block.json new file mode 100644 index 000000000..5060ed21a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_copper_block.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/copper_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_copper_bulb.json new file mode 100644 index 000000000..feafbf2c1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_copper_bulb.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/copper_bulb" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_copper_door.json new file mode 100644 index 000000000..6bc75ee4d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_copper_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/copper_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_copper_grate.json new file mode 100644 index 000000000..7d9789bce --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_copper_grate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/copper_grate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_copper_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_copper_trapdoor.json new file mode 100644 index 000000000..03981dc9b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_copper_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/copper_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_cut_copper.json new file mode 100644 index 000000000..69a734c6b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_cut_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_cut_copper_slab.json new file mode 100644 index 000000000..1f8c61975 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_cut_copper_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cut_copper_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_cut_copper_stairs.json new file mode 100644 index 000000000..d63128c1a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_cut_copper_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/cut_copper_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_chiseled_copper.json new file mode 100644 index 000000000..22657b6a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_chiseled_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_copper.json new file mode 100644 index 000000000..632da6748 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/exposed_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_copper_bulb.json new file mode 100644 index 000000000..d54e63062 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_copper_bulb.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/exposed_copper_bulb" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_copper_door.json new file mode 100644 index 000000000..0ca6e2ca8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_copper_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/exposed_copper_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_copper_grate.json new file mode 100644 index 000000000..07c561b46 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_copper_grate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/exposed_copper_grate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_copper_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_copper_trapdoor.json new file mode 100644 index 000000000..260b680ea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_copper_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_cut_copper.json new file mode 100644 index 000000000..35932366f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_cut_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/exposed_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_cut_copper_slab.json new file mode 100644 index 000000000..818f88602 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_cut_copper_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/exposed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_cut_copper_stairs.json new file mode 100644 index 000000000..54f5c1f06 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_exposed_cut_copper_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/exposed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_chiseled_copper.json new file mode 100644 index 000000000..78b7eae05 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_chiseled_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_copper.json new file mode 100644 index 000000000..c58b7f62d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oxidized_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_copper_bulb.json new file mode 100644 index 000000000..aeab2c8ce --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_copper_bulb.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oxidized_copper_bulb" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_copper_door.json new file mode 100644 index 000000000..b5cc84d31 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_copper_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/oxidized_copper_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_copper_grate.json new file mode 100644 index 000000000..90d2a4833 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_copper_grate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oxidized_copper_grate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_copper_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_copper_trapdoor.json new file mode 100644 index 000000000..245f08ef9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_copper_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_cut_copper.json new file mode 100644 index 000000000..ec0748d35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_cut_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_cut_copper_slab.json new file mode 100644 index 000000000..3e15eec78 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_cut_copper_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oxidized_cut_copper_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_cut_copper_stairs.json new file mode 100644 index 000000000..7fd0b7f0f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_oxidized_cut_copper_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/oxidized_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_chiseled_copper.json new file mode 100644 index 000000000..f046852be --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_chiseled_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_copper.json new file mode 100644 index 000000000..75710bc9f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/weathered_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_copper_bulb.json new file mode 100644 index 000000000..5866e1d36 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_copper_bulb.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/weathered_copper_bulb" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_copper_door.json new file mode 100644 index 000000000..4ec7f82f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_copper_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/weathered_copper_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_copper_grate.json new file mode 100644 index 000000000..c23ee2247 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_copper_grate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/weathered_copper_grate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_copper_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_copper_trapdoor.json new file mode 100644 index 000000000..d09a144f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_copper_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_cut_copper.json new file mode 100644 index 000000000..15a90ec84 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_cut_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/weathered_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_cut_copper_slab.json new file mode 100644 index 000000000..0084def1c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_cut_copper_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/weathered_cut_copper_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_cut_copper_stairs.json new file mode 100644 index 000000000..2050ef4d6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/waxed_weathered_cut_copper_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/weathered_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wayfinder_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wayfinder_armor_trim_smithing_template.json new file mode 100644 index 000000000..cd3ba959e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wayfinder_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/wayfinder_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_chiseled_copper.json new file mode 100644 index 000000000..f046852be --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_chiseled_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_copper.json new file mode 100644 index 000000000..75710bc9f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/weathered_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_copper_bulb.json new file mode 100644 index 000000000..5866e1d36 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_copper_bulb.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/weathered_copper_bulb" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_copper_door.json new file mode 100644 index 000000000..4ec7f82f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_copper_door.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/weathered_copper_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_copper_grate.json new file mode 100644 index 000000000..c23ee2247 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_copper_grate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/weathered_copper_grate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_copper_trapdoor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_copper_trapdoor.json new file mode 100644 index 000000000..d09a144f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_copper_trapdoor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_cut_copper.json new file mode 100644 index 000000000..15a90ec84 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_cut_copper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/weathered_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_cut_copper_slab.json new file mode 100644 index 000000000..0084def1c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_cut_copper_slab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/weathered_cut_copper_slab" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_cut_copper_stairs.json new file mode 100644 index 000000000..2050ef4d6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weathered_cut_copper_stairs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/weathered_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weeping_vines.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weeping_vines.json new file mode 100644 index 000000000..3f169a7a3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/weeping_vines.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/weeping_vines" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wet_sponge.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wet_sponge.json new file mode 100644 index 000000000..7e33cdd24 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wet_sponge.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/wet_sponge" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wheat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wheat.json new file mode 100644 index 000000000..f4fb4b7b3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wheat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/wheat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wheat_seeds.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wheat_seeds.json new file mode 100644 index 000000000..8ae464744 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wheat_seeds.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/wheat_seeds" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_banner.json new file mode 100644 index 000000000..f87b23e99 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_banner.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_banner", + "model": { + "type": "minecraft:banner", + "color": "white" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_bed.json new file mode 100644 index 000000000..7e3aa0062 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_bed.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/white_bed", + "model": { + "type": "minecraft:bed", + "texture": "minecraft:white" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_bundle.json new file mode 100644 index 000000000..05c547aff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_bundle.json @@ -0,0 +1,39 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/white_bundle" + }, + "on_true": { + "type": "minecraft:composite", + "models": [ + { + "type": "minecraft:model", + "model": "minecraft:item/white_bundle_open_back" + }, + { + "type": "minecraft:bundle/selected_item" + }, + { + "type": "minecraft:model", + "model": "minecraft:item/white_bundle_open_front" + } + ] + }, + "property": "minecraft:bundle/has_selected_item" + }, + "when": "gui" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/white_bundle" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_candle.json new file mode 100644 index 000000000..6d60a581e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_candle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/white_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_carpet.json new file mode 100644 index 000000000..d56e7f94a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/white_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_concrete.json new file mode 100644 index 000000000..822c0565d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_concrete.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/white_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_concrete_powder.json new file mode 100644 index 000000000..56e5f7630 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/white_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_dye.json new file mode 100644 index 000000000..2684014af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_dye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/white_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_glazed_terracotta.json new file mode 100644 index 000000000..5cb0220c5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/white_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_harness.json new file mode 100644 index 000000000..6c4fe8552 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_harness.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/white_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_shulker_box.json new file mode 100644 index 000000000..3e4d8e80b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_shulker_box.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/white_shulker_box", + "model": { + "type": "minecraft:shulker_box", + "texture": "minecraft:shulker_white" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_stained_glass.json new file mode 100644 index 000000000..ae78ae28a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_stained_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/white_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_stained_glass_pane.json new file mode 100644 index 000000000..72f6e6064 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/white_stained_glass_pane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_terracotta.json new file mode 100644 index 000000000..af76a0785 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/white_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_tulip.json new file mode 100644 index 000000000..d56307a2b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_tulip.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/white_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_wool.json new file mode 100644 index 000000000..709d4843b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/white_wool.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/white_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wild_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wild_armor_trim_smithing_template.json new file mode 100644 index 000000000..37b2bf40c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wild_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/wild_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wildflowers.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wildflowers.json new file mode 100644 index 000000000..9d4410769 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wildflowers.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/wildflowers" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wind_charge.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wind_charge.json new file mode 100644 index 000000000..b9f3a0631 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wind_charge.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/wind_charge" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/witch_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/witch_spawn_egg.json new file mode 100644 index 000000000..94b7d48b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/witch_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/witch_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wither_rose.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wither_rose.json new file mode 100644 index 000000000..558c37f75 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wither_rose.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/wither_rose" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wither_skeleton_skull.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wither_skeleton_skull.json new file mode 100644 index 000000000..67302cdab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wither_skeleton_skull.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_skull", + "model": { + "type": "minecraft:head", + "kind": "wither_skeleton" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wither_skeleton_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wither_skeleton_spawn_egg.json new file mode 100644 index 000000000..d10bff4ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wither_skeleton_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/wither_skeleton_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wither_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wither_spawn_egg.json new file mode 100644 index 000000000..b4fe9d30b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wither_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/wither_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wolf_armor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wolf_armor.json new file mode 100644 index 000000000..443cc9533 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wolf_armor.json @@ -0,0 +1,25 @@ +{ + "model": { + "type": "minecraft:condition", + "component": "minecraft:dyed_color", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/wolf_armor" + }, + "on_true": { + "type": "minecraft:model", + "model": "minecraft:item/wolf_armor_dyed", + "tints": [ + { + "type": "minecraft:constant", + "value": -1 + }, + { + "type": "minecraft:dye", + "default": 0 + } + ] + }, + "property": "minecraft:has_component" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wolf_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wolf_spawn_egg.json new file mode 100644 index 000000000..cd97950d2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wolf_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/wolf_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wooden_axe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wooden_axe.json new file mode 100644 index 000000000..1794004d2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wooden_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/wooden_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wooden_hoe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wooden_hoe.json new file mode 100644 index 000000000..33fa0070a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wooden_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/wooden_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wooden_pickaxe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wooden_pickaxe.json new file mode 100644 index 000000000..353c33e08 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wooden_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/wooden_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wooden_shovel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wooden_shovel.json new file mode 100644 index 000000000..5fbb6c685 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wooden_shovel.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/wooden_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wooden_sword.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wooden_sword.json new file mode 100644 index 000000000..aacc2b943 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/wooden_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/wooden_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/writable_book.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/writable_book.json new file mode 100644 index 000000000..6cea1bd9e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/writable_book.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/writable_book" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/written_book.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/written_book.json new file mode 100644 index 000000000..e49699a35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/written_book.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/written_book" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_banner.json new file mode 100644 index 000000000..1acffce44 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_banner.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_banner", + "model": { + "type": "minecraft:banner", + "color": "yellow" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_bed.json new file mode 100644 index 000000000..184bfe999 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_bed.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/yellow_bed", + "model": { + "type": "minecraft:bed", + "texture": "minecraft:yellow" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_bundle.json new file mode 100644 index 000000000..d37eca641 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_bundle.json @@ -0,0 +1,39 @@ +{ + "model": { + "type": "minecraft:select", + "cases": [ + { + "model": { + "type": "minecraft:condition", + "on_false": { + "type": "minecraft:model", + "model": "minecraft:item/yellow_bundle" + }, + "on_true": { + "type": "minecraft:composite", + "models": [ + { + "type": "minecraft:model", + "model": "minecraft:item/yellow_bundle_open_back" + }, + { + "type": "minecraft:bundle/selected_item" + }, + { + "type": "minecraft:model", + "model": "minecraft:item/yellow_bundle_open_front" + } + ] + }, + "property": "minecraft:bundle/has_selected_item" + }, + "when": "gui" + } + ], + "fallback": { + "type": "minecraft:model", + "model": "minecraft:item/yellow_bundle" + }, + "property": "minecraft:display_context" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_candle.json new file mode 100644 index 000000000..5ed2d61e5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_candle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/yellow_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_carpet.json new file mode 100644 index 000000000..2f270df8e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_carpet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/yellow_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_concrete.json new file mode 100644 index 000000000..c55b15f19 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_concrete.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/yellow_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_concrete_powder.json new file mode 100644 index 000000000..839a491d5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/yellow_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_dye.json new file mode 100644 index 000000000..a56a986b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_dye.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/yellow_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_glazed_terracotta.json new file mode 100644 index 000000000..3da8eb40d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/yellow_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_harness.json new file mode 100644 index 000000000..94c168a13 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_harness.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/yellow_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_shulker_box.json new file mode 100644 index 000000000..bd78cb729 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_shulker_box.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/yellow_shulker_box", + "model": { + "type": "minecraft:shulker_box", + "texture": "minecraft:shulker_yellow" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_stained_glass.json new file mode 100644 index 000000000..e4f6432a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_stained_glass.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/yellow_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_stained_glass_pane.json new file mode 100644 index 000000000..bf3c03375 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/yellow_stained_glass_pane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_terracotta.json new file mode 100644 index 000000000..411c0705a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_terracotta.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/yellow_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_wool.json new file mode 100644 index 000000000..7e1fa9539 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/yellow_wool.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:block/yellow_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zoglin_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zoglin_spawn_egg.json new file mode 100644 index 000000000..3f9c6b081 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zoglin_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/zoglin_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zombie_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zombie_head.json new file mode 100644 index 000000000..f30d13bb8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zombie_head.json @@ -0,0 +1,10 @@ +{ + "model": { + "type": "minecraft:special", + "base": "minecraft:item/template_skull", + "model": { + "type": "minecraft:head", + "kind": "zombie" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zombie_horse_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zombie_horse_spawn_egg.json new file mode 100644 index 000000000..7e975af94 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zombie_horse_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/zombie_horse_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zombie_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zombie_spawn_egg.json new file mode 100644 index 000000000..eee9ace38 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zombie_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/zombie_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zombie_villager_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zombie_villager_spawn_egg.json new file mode 100644 index 000000000..72a41ecd5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zombie_villager_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/zombie_villager_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zombified_piglin_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zombified_piglin_spawn_egg.json new file mode 100644 index 000000000..d7699695e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/items/zombified_piglin_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/zombified_piglin_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/lang/deprecated.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/lang/deprecated.json new file mode 100644 index 000000000..bd041ce2e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/lang/deprecated.json @@ -0,0 +1,311 @@ +{ + "removed": [ + "upgrade.minecraft.netherite_upgrade", + "item.minecraft.creeper_banner_pattern.desc", + "item.minecraft.flow_banner_pattern.desc", + "item.minecraft.flower_banner_pattern.desc", + "item.minecraft.globe_banner_pattern.desc", + "item.minecraft.guster_banner_pattern.desc", + "item.minecraft.mojang_banner_pattern.desc", + "item.minecraft.piglin_banner_pattern.desc", + "item.minecraft.skull_banner_pattern.desc", + "argument.time.invalid_tick_count", + "arguments.nbtpath.too_large", + "block.minecraft.grass", + "book.invalid.tag", + "commands.fillbiome.success", + "commands.function.success.multiple", + "commands.function.success.multiple.result", + "commands.function.success.single", + "commands.function.success.single.result", + "commands.publish.success", + "connect.reconfiging", + "dataPack.update_1_20.description", + "dataPack.update_1_20.name", + "dataPack.update_1_21.description", + "dataPack.update_1_21.name", + "dataPack.winter_drop.description", + "dataPack.winter_drop.name", + "deathScreen.score", + "entity.minecraft.creaking_transient", + "event.minecraft.raid.defeat", + "event.minecraft.raid.victory", + "gui.abuseReport.reason.false_reporting", + "gui.chatReport.comments", + "gui.chatReport.describe", + "gui.chatReport.discard.content", + "gui.chatReport.discard.discard", + "gui.chatReport.discard.draft", + "gui.chatReport.discard.return", + "gui.chatReport.discard.title", + "gui.chatReport.draft.content", + "gui.chatReport.draft.discard", + "gui.chatReport.draft.edit", + "gui.chatReport.draft.quittotitle.content", + "gui.chatReport.draft.quittotitle.title", + "gui.chatReport.draft.title", + "gui.chatReport.more_comments", + "gui.chatReport.observed_what", + "gui.chatReport.read_info", + "gui.chatReport.select_reason", + "gui.chatReport.send.comments_too_long", + "gui.chatReport.send.no_reason", + "item_modifier.unknown", + "item.minecraft.angler_pottery_shard", + "item.minecraft.archer_pottery_shard", + "item.minecraft.arms_up_pottery_shard", + "item.minecraft.blade_pottery_shard", + "item.minecraft.brewer_pottery_shard", + "item.minecraft.bundle.fullness", + "item.minecraft.burn_pottery_shard", + "item.minecraft.danger_pottery_shard", + "item.minecraft.explorer_pottery_shard", + "item.minecraft.friend_pottery_shard", + "item.minecraft.heart_pottery_shard", + "item.minecraft.heartbreak_pottery_shard", + "item.minecraft.howl_pottery_shard", + "item.minecraft.miner_pottery_shard", + "item.minecraft.mourner_pottery_shard", + "item.minecraft.music_disc_5.desc", + "item.minecraft.music_disc_11.desc", + "item.minecraft.music_disc_13.desc", + "item.minecraft.music_disc_blocks.desc", + "item.minecraft.music_disc_cat.desc", + "item.minecraft.music_disc_chirp.desc", + "item.minecraft.music_disc_creator_music_box.desc", + "item.minecraft.music_disc_creator.desc", + "item.minecraft.music_disc_far.desc", + "item.minecraft.music_disc_mall.desc", + "item.minecraft.music_disc_mellohi.desc", + "item.minecraft.music_disc_otherside.desc", + "item.minecraft.music_disc_pigstep.desc", + "item.minecraft.music_disc_precipice.desc", + "item.minecraft.music_disc_relic.desc", + "item.minecraft.music_disc_stal.desc", + "item.minecraft.music_disc_strad.desc", + "item.minecraft.music_disc_wait.desc", + "item.minecraft.music_disc_ward.desc", + "item.minecraft.plenty_pottery_shard", + "item.minecraft.pottery_shard_archer", + "item.minecraft.pottery_shard_arms_up", + "item.minecraft.pottery_shard_prize", + "item.minecraft.pottery_shard_skull", + "item.minecraft.prize_pottery_shard", + "item.minecraft.scute", + "item.minecraft.sheaf_pottery_shard", + "item.minecraft.shelter_pottery_shard", + "item.minecraft.skull_pottery_shard", + "item.minecraft.snort_pottery_shard", + "item.nbt_tags", + "mco.account.privacy.info", + "mco.account.privacyinfo", + "mco.client.incompatible.msg.line1", + "mco.client.incompatible.msg.line2", + "mco.client.incompatible.msg.line3", + "mco.configure.world.close.question.line2", + "mco.configure.world.delete.question.line2", + "mco.configure.world.invited", + "mco.configure.world.leave.question.line2", + "mco.configure.world.minigame", + "mco.configure.world.resourcepack.question.line1", + "mco.configure.world.resourcepack.question.line2", + "mco.configure.world.restore.download.question.line2", + "mco.configure.world.restore.question.line2", + "mco.configure.world.slot.switch.question.line2", + "mco.configure.world.slot.tooltip.active", + "mco.configure.world.spawnAnimals", + "mco.configure.world.spawnNPCs", + "mco.configure.world.spawn_toggle.title", + "mco.configure.world.subscription.day", + "mco.configure.world.subscription.days", + "mco.configure.world.subscription.month", + "mco.configure.world.subscription.months", + "mco.configure.world.subscription.title", + "mco.configure.world.title", + "mco.configure.world.uninvite.question", + "mco.create.world.skip", + "mco.create.world.subtitle", + "mco.download.confirmation.line1", + "mco.download.confirmation.line2", + "mco.errorMessage.realmsService", + "mco.gui.ok", + "mco.reset.world.seed", + "mco.reset.world.upload", + "mco.selectServer.closeserver", + "mco.selectServer.configureRealm", + "mco.selectServer.expiredSubscribe", + "mco.selectServer.minigame", + "mco.snapshot.creating", + "mco.snapshot.friendsRealm.upgrade", + "mco.upload.entry.cheats", + "mco.upload.entry.commands", + "mco.upload.hardcore", + "mco.upload.size.failure.line1", + "mco.upload.size.failure.line2", + "mco.version", + "multiplayer.disconnect.out_of_order_chat", + "multiplayer.disconnect.unsigned_chat", + "narration.edit_box", + "painting.minecraft.earth.author", + "painting.minecraft.fire.author", + "painting.minecraft.water.author", + "painting.minecraft.wind.author", + "painting.minecraft.wither.author", + "predicate.unknown", + "resourcepack.downloading", + "resourcepack.progress", + "resourcepack.requesting", + "selectWorld.cheats", + "selectWorld.edit.export_worldgen_settings", + "selectWorld.edit.export_worldgen_settings.failure", + "selectWorld.edit.export_worldgen_settings.success", + "selectWorld.futureworld.error.text", + "selectWorld.futureworld.error.title", + "selectWorld.gameMode.adventure.line1", + "selectWorld.gameMode.adventure.line2", + "selectWorld.gameMode.creative.line1", + "selectWorld.gameMode.creative.line2", + "selectWorld.gameMode.hardcore.line1", + "selectWorld.gameMode.hardcore.line2", + "selectWorld.gameMode.spectator.line1", + "selectWorld.gameMode.spectator.line2", + "selectWorld.gameMode.survival.line1", + "selectWorld.gameMode.survival.line2", + "selectWorld.import_worldgen_settings", + "selectWorld.import_worldgen_settings.failure", + "selectWorld.import_worldgen_settings.select_file", + "selectWorld.moreWorldOptions", + "selectWorld.resultFolder", + "selectWorld.versionJoinButton", + "selectWorld.versionQuestion", + "selectWorld.versionWarning", + "subtitles.block.trial_spawner.ambient_charged", + "subtitles.block.trial_spawner.charge_activate", + "subtitles.entity.camel.step", + "subtitles.entity.camel.step_sand", + "subtitles.entity.leash_knot.break", + "subtitles.entity.leash_knot.place", + "subtitles.entity.drowned.step", + "subtitles.entity.generic.wind_burst", + "subtitles.entity.goat.step", + "subtitles.entity.hoglin.step", + "subtitles.entity.llama.step", + "subtitles.entity.minecart.inside", + "subtitles.entity.minecart.inside_underwater", + "subtitles.entity.panda.step", + "subtitles.entity.piglin_brute.step", + "subtitles.entity.piglin.step", + "subtitles.entity.ravager.step", + "subtitles.entity.sniffer.egg_crack", + "subtitles.entity.sniffer.egg_hatch", + "subtitles.entity.sniffer.step", + "subtitles.entity.warden.step", + "subtitles.entity.zoglin.step", + "symlink_warning.message", + "title.32bit.deprecation", + "title.32bit.deprecation.realms", + "title.32bit.deprecation.realms.check", + "title.32bit.deprecation.realms.header", + "tutorial.bundleInsert.description", + "tutorial.bundleInsert.title", + "attribute.name.generic.armor", + "attribute.name.generic.armor_toughness", + "attribute.name.generic.attack_damage", + "attribute.name.generic.attack_knockback", + "attribute.name.generic.attack_speed", + "attribute.name.generic.block_interaction_range", + "attribute.name.generic.burning_time", + "attribute.name.generic.entity_interaction_range", + "attribute.name.generic.explosion_knockback_resistance", + "attribute.name.generic.fall_damage_multiplier", + "attribute.name.generic.flying_speed", + "attribute.name.generic.follow_range", + "attribute.name.generic.gravity", + "attribute.name.generic.jump_strength", + "attribute.name.generic.knockback_resistance", + "attribute.name.generic.luck", + "attribute.name.generic.max_absorption", + "attribute.name.generic.max_health", + "attribute.name.generic.movement_efficiency", + "attribute.name.generic.movement_speed", + "attribute.name.generic.oxygen_bonus", + "attribute.name.generic.safe_fall_distance", + "attribute.name.generic.scale", + "attribute.name.generic.step_height", + "attribute.name.generic.water_movement_efficiency", + "attribute.name.horse.jump_strength", + "attribute.name.player.block_break_speed", + "attribute.name.player.block_interaction_range", + "attribute.name.player.entity_interaction_range", + "attribute.name.player.mining_efficiency", + "attribute.name.player.sneaking_speed", + "attribute.name.player.submerged_mining_speed", + "attribute.name.player.sweeping_damage_ratio", + "attribute.name.zombie.spawn_reinforcements", + "realms.missing.snapshot.error.text", + "entity.minecraft.boat", + "entity.minecraft.chest_boat", + "subtitles.ambient.cave", + "subtitles.block.creaking_heart.idle", + "subtitles.block.eyeblossom.idle", + "subtitles.block.generic.idle", + "entity.minecraft.potion", + "argument.nbt.list.mixed", + "item.minecraft.crossbow.projectile", + "subtitles.entity.wolf.ambient", + "subtitles.block.trapdoor.toggle", + "subtitles.block.iron_trapdoor.close", + "subtitles.block.iron_trapdoor.open", + "dataPack.bundle.description", + "dataPack.bundle.name", + "dataPack.locator_bar.description", + "dataPack.locator_bar.name", + "argument.resource_or_id.invalid" + ], + "renamed": { + "item.minecraft.dune_armor_trim_smithing_template.new": "item.minecraft.dune_armor_trim_smithing_template", + "item.minecraft.eye_armor_trim_smithing_template.new": "item.minecraft.eye_armor_trim_smithing_template", + "item.minecraft.flow_armor_trim_smithing_template.new": "item.minecraft.flow_armor_trim_smithing_template", + "item.minecraft.bolt_armor_trim_smithing_template.new": "item.minecraft.bolt_armor_trim_smithing_template", + "item.minecraft.host_armor_trim_smithing_template.new": "item.minecraft.host_armor_trim_smithing_template", + "item.minecraft.netherite_upgrade_smithing_template.new": "item.minecraft.netherite_upgrade_smithing_template", + "item.minecraft.raiser_armor_trim_smithing_template.new": "item.minecraft.raiser_armor_trim_smithing_template", + "item.minecraft.rib_armor_trim_smithing_template.new": "item.minecraft.rib_armor_trim_smithing_template", + "item.minecraft.sentry_armor_trim_smithing_template.new": "item.minecraft.sentry_armor_trim_smithing_template", + "item.minecraft.shaper_armor_trim_smithing_template.new": "item.minecraft.shaper_armor_trim_smithing_template", + "item.minecraft.silence_armor_trim_smithing_template.new": "item.minecraft.silence_armor_trim_smithing_template", + "item.minecraft.snout_armor_trim_smithing_template.new": "item.minecraft.snout_armor_trim_smithing_template", + "item.minecraft.spire_armor_trim_smithing_template.new": "item.minecraft.spire_armor_trim_smithing_template", + "item.minecraft.tide_armor_trim_smithing_template.new": "item.minecraft.tide_armor_trim_smithing_template", + "item.minecraft.vex_armor_trim_smithing_template.new": "item.minecraft.vex_armor_trim_smithing_template", + "item.minecraft.ward_armor_trim_smithing_template.new": "item.minecraft.ward_armor_trim_smithing_template", + "item.minecraft.wayfinder_armor_trim_smithing_template.new": "item.minecraft.wayfinder_armor_trim_smithing_template", + "item.minecraft.wild_armor_trim_smithing_template.new": "item.minecraft.wild_armor_trim_smithing_template", + "item.minecraft.coast_armor_trim_smithing_template.new": "item.minecraft.coast_armor_trim_smithing_template", + "item.minecraft.creeper_banner_pattern.new": "item.minecraft.creeper_banner_pattern", + "item.minecraft.flow_banner_pattern.new": "item.minecraft.flow_banner_pattern", + "item.minecraft.flower_banner_pattern.new": "item.minecraft.flower_banner_pattern", + "item.minecraft.globe_banner_pattern.new": "item.minecraft.globe_banner_pattern", + "item.minecraft.guster_banner_pattern.new": "item.minecraft.guster_banner_pattern", + "item.minecraft.mojang_banner_pattern.new": "item.minecraft.mojang_banner_pattern", + "item.minecraft.piglin_banner_pattern.new": "item.minecraft.piglin_banner_pattern", + "item.minecraft.skull_banner_pattern.new": "item.minecraft.skull_banner_pattern", + "lanServer.port.unavailable.new": "lanServer.port.unavailable", + "lanServer.port.invalid.new": "lanServer.port.invalid", + "multiplayer.disconnect.invalid_public_key_signature.new": "multiplayer.disconnect.invalid_public_key_signature", + "selectWorld.allowCommands.new": "selectWorld.allowCommands", + "gui.abuseReport.reason.generic": "gui.abuseReport.reason.i_want_to_report_them", + "gui.abuseReport.reason.generic.description": "gui.abuseReport.reason.i_want_to_report_them.description", + "commands.drop.no_loot_table": "commands.drop.no_loot_table.entity", + "item.op_block_warning.line1": "item.op_warning.line1", + "item.op_block_warning.line2": "item.op_warning.line2", + "item.op_block_warning.line3": "item.op_warning.line3", + "container.shulkerBox.unknownContents": "item.container.loot_table.unknown", + "container.shulkerBox.itemCount": "item.container.item_count", + "container.shulkerBox.more": "item.container.more_items", + "advancements.nether.use_lodestone.description": "advancements.adventure.use_lodestone.description", + "advancements.nether.use_lodestone.title": "advancements.adventure.use_lodestone.title", + "subtitles.block.sand.wind": "subtitles.block.dry_grass.ambient", + "snbt.parser.undescore_not_allowed": "snbt.parser.underscore_not_allowed" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/lang/en_us.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/lang/en_us.json new file mode 100644 index 000000000..0abcfa67d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/lang/en_us.json @@ -0,0 +1,7394 @@ +{ + "accessibility.onboarding.accessibility.button": "Accessibility Settings...", + "accessibility.onboarding.screen.narrator": "Press enter to enable the narrator", + "accessibility.onboarding.screen.title": "Welcome to Minecraft!\n\nWould you like to enable the Narrator or visit the Accessibility Settings?", + "addServer.add": "Done", + "addServer.enterIp": "Server Address", + "addServer.enterName": "Server Name", + "addServer.resourcePack": "Server Resource Packs", + "addServer.resourcePack.disabled": "Disabled", + "addServer.resourcePack.enabled": "Enabled", + "addServer.resourcePack.prompt": "Prompt", + "addServer.title": "Edit Server Info", + "advancement.advancementNotFound": "Unknown advancement: %s", + "advancements.adventure.adventuring_time.description": "Discover every biome", + "advancements.adventure.adventuring_time.title": "Adventuring Time", + "advancements.adventure.arbalistic.description": "Kill five unique mobs with one crossbow shot", + "advancements.adventure.arbalistic.title": "Arbalistic", + "advancements.adventure.avoid_vibration.description": "Sneak near a Sculk Sensor or Warden to prevent it from detecting you", + "advancements.adventure.avoid_vibration.title": "Sneak 100", + "advancements.adventure.blowback.description": "Kill a Breeze with a deflected Breeze-shot Wind Charge", + "advancements.adventure.blowback.title": "Blowback", + "advancements.adventure.brush_armadillo.description": "Get Armadillo Scutes from an Armadillo using a Brush", + "advancements.adventure.brush_armadillo.title": "Isn't It Scute?", + "advancements.adventure.bullseye.description": "Hit the bullseye of a Target block from at least 30 meters away", + "advancements.adventure.bullseye.title": "Bullseye", + "advancements.adventure.craft_decorated_pot_using_only_sherds.description": "Make a Decorated Pot out of 4 Pottery Sherds", + "advancements.adventure.craft_decorated_pot_using_only_sherds.title": "Careful Restoration", + "advancements.adventure.crafters_crafting_crafters.description": "Be near a Crafter when it crafts a Crafter", + "advancements.adventure.crafters_crafting_crafters.title": "Crafters Crafting Crafters", + "advancements.adventure.fall_from_world_height.description": "Free fall from the top of the world (build limit) to the bottom of the world and survive", + "advancements.adventure.fall_from_world_height.title": "Caves & Cliffs", + "advancements.adventure.heart_transplanter.description": "Place a Creaking Heart with the correct alignment between two Pale Oak Log blocks", + "advancements.adventure.heart_transplanter.title": "Heart Transplanter", + "advancements.adventure.hero_of_the_village.description": "Successfully defend a village from a raid", + "advancements.adventure.hero_of_the_village.title": "Hero of the Village", + "advancements.adventure.honey_block_slide.description": "Jump into a Honey Block to break your fall", + "advancements.adventure.honey_block_slide.title": "Sticky Situation", + "advancements.adventure.kill_a_mob.description": "Kill any hostile monster", + "advancements.adventure.kill_a_mob.title": "Monster Hunter", + "advancements.adventure.kill_all_mobs.description": "Kill one of every hostile monster", + "advancements.adventure.kill_all_mobs.title": "Monsters Hunted", + "advancements.adventure.kill_mob_near_sculk_catalyst.description": "Kill a mob near a Sculk Catalyst", + "advancements.adventure.kill_mob_near_sculk_catalyst.title": "It Spreads", + "advancements.adventure.lighten_up.description": "Scrape a Copper Bulb with an Axe to make it brighter", + "advancements.adventure.lighten_up.title": "Lighten Up", + "advancements.adventure.lightning_rod_with_villager_no_fire.description": "Protect a Villager from an undesired shock without starting a fire", + "advancements.adventure.lightning_rod_with_villager_no_fire.title": "Surge Protector", + "advancements.adventure.minecraft_trials_edition.description": "Step foot in a Trial Chamber", + "advancements.adventure.minecraft_trials_edition.title": "Minecraft: Trial(s) Edition", + "advancements.adventure.ol_betsy.description": "Shoot a Crossbow", + "advancements.adventure.ol_betsy.title": "Ol' Betsy", + "advancements.adventure.overoverkill.description": "Deal 50 hearts of damage in a single hit using the Mace", + "advancements.adventure.overoverkill.title": "Over-Overkill", + "advancements.adventure.play_jukebox_in_meadows.description": "Make the Meadows come alive with the sound of music from a Jukebox", + "advancements.adventure.play_jukebox_in_meadows.title": "Sound of Music", + "advancements.adventure.read_power_from_chiseled_bookshelf.description": "Read the power signal of a Chiseled Bookshelf using a Comparator", + "advancements.adventure.read_power_from_chiseled_bookshelf.title": "The Power of Books", + "advancements.adventure.revaulting.description": "Unlock an Ominous Vault with an Ominous Trial Key", + "advancements.adventure.revaulting.title": "Revaulting", + "advancements.adventure.root.description": "Adventure, exploration and combat", + "advancements.adventure.root.title": "Adventure", + "advancements.adventure.salvage_sherd.description": "Brush a Suspicious block to obtain a Pottery Sherd", + "advancements.adventure.salvage_sherd.title": "Respecting the Remnants", + "advancements.adventure.shoot_arrow.description": "Shoot something with an Arrow", + "advancements.adventure.shoot_arrow.title": "Take Aim", + "advancements.adventure.sleep_in_bed.description": "Sleep in a Bed to change your respawn point", + "advancements.adventure.sleep_in_bed.title": "Sweet Dreams", + "advancements.adventure.sniper_duel.description": "Kill a Skeleton from at least 50 meters away", + "advancements.adventure.sniper_duel.title": "Sniper Duel", + "advancements.adventure.spyglass_at_dragon.description": "Look at the Ender Dragon through a Spyglass", + "advancements.adventure.spyglass_at_dragon.title": "Is It a Plane?", + "advancements.adventure.spyglass_at_ghast.description": "Look at a Ghast through a Spyglass", + "advancements.adventure.spyglass_at_ghast.title": "Is It a Balloon?", + "advancements.adventure.spyglass_at_parrot.description": "Look at a Parrot through a Spyglass", + "advancements.adventure.spyglass_at_parrot.title": "Is It a Bird?", + "advancements.adventure.summon_iron_golem.description": "Summon an Iron Golem to help defend a village", + "advancements.adventure.summon_iron_golem.title": "Hired Help", + "advancements.adventure.throw_trident.description": "Throw a Trident at something.\nNote: Throwing away your only weapon is not a good idea.", + "advancements.adventure.throw_trident.title": "A Throwaway Joke", + "advancements.adventure.totem_of_undying.description": "Use a Totem of Undying to cheat death", + "advancements.adventure.totem_of_undying.title": "Postmortal", + "advancements.adventure.trade_at_world_height.description": "Trade with a Villager at the build height limit", + "advancements.adventure.trade_at_world_height.title": "Star Trader", + "advancements.adventure.trade.description": "Successfully trade with a Villager", + "advancements.adventure.trade.title": "What a Deal!", + "advancements.adventure.trim_with_all_exclusive_armor_patterns.description": "Apply these smithing templates at least once: Spire, Snout, Rib, Ward, Silence, Vex, Tide, Wayfinder", + "advancements.adventure.trim_with_all_exclusive_armor_patterns.title": "Smithing with Style", + "advancements.adventure.trim_with_any_armor_pattern.description": "Craft trimmed armor at a Smithing Table", + "advancements.adventure.trim_with_any_armor_pattern.title": "Crafting a New Look", + "advancements.adventure.two_birds_one_arrow.description": "Kill two Phantoms with a piercing Arrow", + "advancements.adventure.two_birds_one_arrow.title": "Two Birds, One Arrow", + "advancements.adventure.under_lock_and_key.description": "Unlock a Vault with a Trial Key", + "advancements.adventure.under_lock_and_key.title": "Under Lock and Key", + "advancements.adventure.use_lodestone.description": "Use a Compass on a Lodestone", + "advancements.adventure.use_lodestone.title": "Country Lode, Take Me Home", + "advancements.adventure.very_very_frightening.description": "Strike a Villager with lightning", + "advancements.adventure.very_very_frightening.title": "Very Very Frightening", + "advancements.adventure.voluntary_exile.description": "Kill a raid captain.\nMaybe consider staying away from villages for the time being...", + "advancements.adventure.voluntary_exile.title": "Voluntary Exile", + "advancements.adventure.walk_on_powder_snow_with_leather_boots.description": "Walk on Powder Snow... without sinking in it", + "advancements.adventure.walk_on_powder_snow_with_leather_boots.title": "Light as a Rabbit", + "advancements.adventure.who_needs_rockets.description": "Use a Wind Charge to launch yourself upward 8 blocks", + "advancements.adventure.who_needs_rockets.title": "Who Needs Rockets?", + "advancements.adventure.whos_the_pillager_now.description": "Give a Pillager a taste of their own medicine", + "advancements.adventure.whos_the_pillager_now.title": "Who's the Pillager Now?", + "advancements.empty": "There doesn't seem to be anything here...", + "advancements.end.dragon_breath.description": "Collect Dragon's Breath in a Glass Bottle", + "advancements.end.dragon_breath.title": "You Need a Mint", + "advancements.end.dragon_egg.description": "Hold the Dragon Egg", + "advancements.end.dragon_egg.title": "The Next Generation", + "advancements.end.elytra.description": "Find Elytra", + "advancements.end.elytra.title": "Sky's the Limit", + "advancements.end.enter_end_gateway.description": "Escape the island", + "advancements.end.enter_end_gateway.title": "Remote Getaway", + "advancements.end.find_end_city.description": "Go on in, what could happen?", + "advancements.end.find_end_city.title": "The City at the End of the Game", + "advancements.end.kill_dragon.description": "Good luck", + "advancements.end.kill_dragon.title": "Free the End", + "advancements.end.levitate.description": "Levitate up 50 blocks from the attacks of a Shulker", + "advancements.end.levitate.title": "Great View From Up Here", + "advancements.end.respawn_dragon.description": "Respawn the Ender Dragon", + "advancements.end.respawn_dragon.title": "The End... Again...", + "advancements.end.root.description": "Or the beginning?", + "advancements.end.root.title": "The End", + "advancements.husbandry.allay_deliver_cake_to_note_block.description": "Have an Allay drop a Cake at a Note Block", + "advancements.husbandry.allay_deliver_cake_to_note_block.title": "Birthday Song", + "advancements.husbandry.allay_deliver_item_to_player.description": "Have an Allay deliver items to you", + "advancements.husbandry.allay_deliver_item_to_player.title": "You've Got a Friend in Me", + "advancements.husbandry.axolotl_in_a_bucket.description": "Catch an Axolotl in a Bucket", + "advancements.husbandry.axolotl_in_a_bucket.title": "The Cutest Predator", + "advancements.husbandry.balanced_diet.description": "Eat everything that is edible, even if it's not good for you", + "advancements.husbandry.balanced_diet.title": "A Balanced Diet", + "advancements.husbandry.breed_all_animals.description": "Breed all the animals!", + "advancements.husbandry.breed_all_animals.title": "Two by Two", + "advancements.husbandry.breed_an_animal.description": "Breed two animals together", + "advancements.husbandry.breed_an_animal.title": "The Parrots and the Bats", + "advancements.husbandry.complete_catalogue.description": "Tame all Cat variants!", + "advancements.husbandry.complete_catalogue.title": "A Complete Catalogue", + "advancements.husbandry.feed_snifflet.description": "Feed a Snifflet", + "advancements.husbandry.feed_snifflet.title": "Little Sniffs", + "advancements.husbandry.fishy_business.description": "Catch a fish", + "advancements.husbandry.fishy_business.title": "Fishy Business", + "advancements.husbandry.froglights.description": "Have all Froglights in your inventory", + "advancements.husbandry.froglights.title": "With Our Powers Combined!", + "advancements.husbandry.kill_axolotl_target.description": "Team up with an Axolotl and win a fight", + "advancements.husbandry.kill_axolotl_target.title": "The Healing Power of Friendship!", + "advancements.husbandry.leash_all_frog_variants.description": "Get each Frog variant on a Lead", + "advancements.husbandry.leash_all_frog_variants.title": "When the Squad Hops into Town", + "advancements.husbandry.make_a_sign_glow.description": "Make the text of any kind of sign glow", + "advancements.husbandry.make_a_sign_glow.title": "Glow and Behold!", + "advancements.husbandry.netherite_hoe.description": "Use a Netherite Ingot to upgrade a Hoe, and then reevaluate your life choices", + "advancements.husbandry.netherite_hoe.title": "Serious Dedication", + "advancements.husbandry.obtain_sniffer_egg.description": "Obtain a Sniffer Egg", + "advancements.husbandry.obtain_sniffer_egg.title": "Smells Interesting", + "advancements.husbandry.place_dried_ghast_in_water.description": "Place a Dried Ghast block into water", + "advancements.husbandry.place_dried_ghast_in_water.title": "Stay Hydrated!", + "advancements.husbandry.plant_any_sniffer_seed.description": "Plant any Sniffer seed", + "advancements.husbandry.plant_any_sniffer_seed.title": "Planting the Past", + "advancements.husbandry.plant_seed.description": "Plant a seed and watch it grow", + "advancements.husbandry.plant_seed.title": "A Seedy Place", + "advancements.husbandry.remove_wolf_armor.description": "Remove Wolf Armor from a Wolf using Shears", + "advancements.husbandry.remove_wolf_armor.title": "Shear Brilliance", + "advancements.husbandry.repair_wolf_armor.description": "Fully repair damaged Wolf Armor using Armadillo Scutes", + "advancements.husbandry.repair_wolf_armor.title": "Good as New", + "advancements.husbandry.ride_a_boat_with_a_goat.description": "Get in a Boat and float with a Goat", + "advancements.husbandry.ride_a_boat_with_a_goat.title": "Whatever Floats Your Goat!", + "advancements.husbandry.root.description": "The world is full of friends and food", + "advancements.husbandry.root.title": "Husbandry", + "advancements.husbandry.safely_harvest_honey.description": "Use a Campfire to collect Honey from a Beehive using a Glass Bottle without aggravating the Bees", + "advancements.husbandry.safely_harvest_honey.title": "Bee Our Guest", + "advancements.husbandry.silk_touch_nest.description": "Move a Bee Nest or Beehive, with 3 Bees inside, using Silk Touch", + "advancements.husbandry.silk_touch_nest.title": "Total Beelocation", + "advancements.husbandry.tactical_fishing.description": "Catch a Fish... without a Fishing Rod!", + "advancements.husbandry.tactical_fishing.title": "Tactical Fishing", + "advancements.husbandry.tadpole_in_a_bucket.description": "Catch a Tadpole in a Bucket", + "advancements.husbandry.tadpole_in_a_bucket.title": "Bukkit Bukkit", + "advancements.husbandry.tame_an_animal.description": "Tame an animal", + "advancements.husbandry.tame_an_animal.title": "Best Friends Forever", + "advancements.husbandry.wax_off.description": "Scrape Wax off of a Copper block!", + "advancements.husbandry.wax_off.title": "Wax Off", + "advancements.husbandry.wax_on.description": "Apply Honeycomb to a Copper block!", + "advancements.husbandry.wax_on.title": "Wax On", + "advancements.husbandry.whole_pack.description": "Tame one of each Wolf variant", + "advancements.husbandry.whole_pack.title": "The Whole Pack", + "advancements.nether.all_effects.description": "Have every effect applied at the same time", + "advancements.nether.all_effects.title": "How Did We Get Here?", + "advancements.nether.all_potions.description": "Have every potion effect applied at the same time", + "advancements.nether.all_potions.title": "A Furious Cocktail", + "advancements.nether.brew_potion.description": "Brew a Potion", + "advancements.nether.brew_potion.title": "Local Brewery", + "advancements.nether.charge_respawn_anchor.description": "Charge a Respawn Anchor to the maximum", + "advancements.nether.charge_respawn_anchor.title": "Not Quite \"Nine\" Lives", + "advancements.nether.create_beacon.description": "Construct and place a Beacon", + "advancements.nether.create_beacon.title": "Bring Home the Beacon", + "advancements.nether.create_full_beacon.description": "Bring a Beacon to full power", + "advancements.nether.create_full_beacon.title": "Beaconator", + "advancements.nether.distract_piglin.description": "Distract Piglins with gold", + "advancements.nether.distract_piglin.title": "Oh Shiny", + "advancements.nether.explore_nether.description": "Explore all Nether biomes", + "advancements.nether.explore_nether.title": "Hot Tourist Destinations", + "advancements.nether.fast_travel.description": "Use the Nether to travel 7 km in the Overworld", + "advancements.nether.fast_travel.title": "Subspace Bubble", + "advancements.nether.find_bastion.description": "Enter a Bastion Remnant", + "advancements.nether.find_bastion.title": "Those Were the Days", + "advancements.nether.find_fortress.description": "Break your way into a Nether Fortress", + "advancements.nether.find_fortress.title": "A Terrible Fortress", + "advancements.nether.get_wither_skull.description": "Obtain a Wither Skeleton's skull", + "advancements.nether.get_wither_skull.title": "Spooky Scary Skeleton", + "advancements.nether.loot_bastion.description": "Loot a Chest in a Bastion Remnant", + "advancements.nether.loot_bastion.title": "War Pigs", + "advancements.nether.netherite_armor.description": "Get a full suit of Netherite armor", + "advancements.nether.netherite_armor.title": "Cover Me in Debris", + "advancements.nether.obtain_ancient_debris.description": "Obtain Ancient Debris", + "advancements.nether.obtain_ancient_debris.title": "Hidden in the Depths", + "advancements.nether.obtain_blaze_rod.description": "Relieve a Blaze of its rod", + "advancements.nether.obtain_blaze_rod.title": "Into Fire", + "advancements.nether.obtain_crying_obsidian.description": "Obtain Crying Obsidian", + "advancements.nether.obtain_crying_obsidian.title": "Who is Cutting Onions?", + "advancements.nether.return_to_sender.description": "Destroy a Ghast with a fireball", + "advancements.nether.return_to_sender.title": "Return to Sender", + "advancements.nether.ride_strider_in_overworld_lava.description": "Take a Strider for a loooong ride on a lava lake in the Overworld", + "advancements.nether.ride_strider_in_overworld_lava.title": "Feels Like Home", + "advancements.nether.ride_strider.description": "Ride a Strider with a Warped Fungus on a Stick", + "advancements.nether.ride_strider.title": "This Boat Has Legs", + "advancements.nether.root.description": "Bring summer clothes", + "advancements.nether.root.title": "Nether", + "advancements.nether.summon_wither.description": "Summon the Wither", + "advancements.nether.summon_wither.title": "Withering Heights", + "advancements.nether.uneasy_alliance.description": "Rescue a Ghast from the Nether, bring it safely home to the Overworld... and then kill it", + "advancements.nether.uneasy_alliance.title": "Uneasy Alliance", + "advancements.nether.use_lodestone.description": "Use a Compass on a Lodestone", + "advancements.nether.use_lodestone.title": "Country Lode, Take Me Home", + "advancements.progress": "%s/%s", + "advancements.sad_label": ":(", + "advancements.story.cure_zombie_villager.description": "Weaken and then cure a Zombie Villager", + "advancements.story.cure_zombie_villager.title": "Zombie Doctor", + "advancements.story.deflect_arrow.description": "Deflect a projectile with a Shield", + "advancements.story.deflect_arrow.title": "Not Today, Thank You", + "advancements.story.enchant_item.description": "Enchant an item at an Enchanting Table", + "advancements.story.enchant_item.title": "Enchanter", + "advancements.story.enter_the_end.description": "Enter the End Portal", + "advancements.story.enter_the_end.title": "The End?", + "advancements.story.enter_the_nether.description": "Build, light and enter a Nether Portal", + "advancements.story.enter_the_nether.title": "We Need to Go Deeper", + "advancements.story.follow_ender_eye.description": "Follow an Eye of Ender", + "advancements.story.follow_ender_eye.title": "Eye Spy", + "advancements.story.form_obsidian.description": "Obtain a block of Obsidian", + "advancements.story.form_obsidian.title": "Ice Bucket Challenge", + "advancements.story.iron_tools.description": "Upgrade your Pickaxe", + "advancements.story.iron_tools.title": "Isn't It Iron Pick", + "advancements.story.lava_bucket.description": "Fill a Bucket with lava", + "advancements.story.lava_bucket.title": "Hot Stuff", + "advancements.story.mine_diamond.description": "Acquire diamonds", + "advancements.story.mine_diamond.title": "Diamonds!", + "advancements.story.mine_stone.description": "Mine Stone with your new Pickaxe", + "advancements.story.mine_stone.title": "Stone Age", + "advancements.story.obtain_armor.description": "Protect yourself with a piece of iron armor", + "advancements.story.obtain_armor.title": "Suit Up", + "advancements.story.root.description": "The heart and story of the game", + "advancements.story.root.title": "Minecraft", + "advancements.story.shiny_gear.description": "Diamond armor saves lives", + "advancements.story.shiny_gear.title": "Cover Me with Diamonds", + "advancements.story.smelt_iron.description": "Smelt an Iron Ingot", + "advancements.story.smelt_iron.title": "Acquire Hardware", + "advancements.story.upgrade_tools.description": "Construct a better Pickaxe", + "advancements.story.upgrade_tools.title": "Getting an Upgrade", + "advancements.toast.challenge": "Challenge Complete!", + "advancements.toast.goal": "Goal Reached!", + "advancements.toast.task": "Advancement Made!", + "advMode.command": "Console Command", + "advMode.mode": "Mode", + "advMode.mode.auto": "Repeat", + "advMode.mode.autoexec.bat": "Always Active", + "advMode.mode.conditional": "Conditional", + "advMode.mode.redstone": "Impulse", + "advMode.mode.redstoneTriggered": "Needs Redstone", + "advMode.mode.sequence": "Chain", + "advMode.mode.unconditional": "Unconditional", + "advMode.notAllowed": "Must be an opped player in creative mode", + "advMode.notEnabled": "Command blocks are not enabled on this server", + "advMode.previousOutput": "Previous Output", + "advMode.setCommand": "Set Console Command for Block", + "advMode.setCommand.success": "Command set: %s", + "advMode.trackOutput": "Track output", + "advMode.triggering": "Triggering", + "advMode.type": "Type", + "argument.anchor.invalid": "Invalid entity anchor position %s", + "argument.angle.incomplete": "Incomplete (expected 1 angle)", + "argument.angle.invalid": "Invalid angle", + "argument.block.id.invalid": "Unknown block type '%s'", + "argument.block.property.duplicate": "Property '%s' can only be set once for block %s", + "argument.block.property.invalid": "Block %s does not accept '%s' for %s property", + "argument.block.property.novalue": "Expected value for property '%s' on block %s", + "argument.block.property.unclosed": "Expected closing ] for block state properties", + "argument.block.property.unknown": "Block %s does not have property '%s'", + "argument.block.tag.disallowed": "Tags aren't allowed here, only actual blocks", + "argument.color.invalid": "Unknown color '%s'", + "argument.component.invalid": "Invalid chat component: %s", + "argument.criteria.invalid": "Unknown criterion '%s'", + "argument.dimension.invalid": "Unknown dimension '%s'", + "argument.double.big": "Double must not be more than %s, found %s", + "argument.double.low": "Double must not be less than %s, found %s", + "argument.entity.invalid": "Invalid name or UUID", + "argument.entity.notfound.entity": "No entity was found", + "argument.entity.notfound.player": "No player was found", + "argument.entity.options.advancements.description": "Players with advancements", + "argument.entity.options.distance.description": "Distance to entity", + "argument.entity.options.distance.negative": "Distance cannot be negative", + "argument.entity.options.dx.description": "Entities between x and x + dx", + "argument.entity.options.dy.description": "Entities between y and y + dy", + "argument.entity.options.dz.description": "Entities between z and z + dz", + "argument.entity.options.gamemode.description": "Players with game mode", + "argument.entity.options.inapplicable": "Option '%s' isn't applicable here", + "argument.entity.options.level.description": "Experience level", + "argument.entity.options.level.negative": "Level shouldn't be negative", + "argument.entity.options.limit.description": "Maximum number of entities to return", + "argument.entity.options.limit.toosmall": "Limit must be at least 1", + "argument.entity.options.mode.invalid": "Invalid or unknown game mode '%s'", + "argument.entity.options.name.description": "Entity name", + "argument.entity.options.nbt.description": "Entities with NBT", + "argument.entity.options.predicate.description": "Custom predicate", + "argument.entity.options.scores.description": "Entities with scores", + "argument.entity.options.sort.description": "Sort the entities", + "argument.entity.options.sort.irreversible": "Invalid or unknown sort type '%s'", + "argument.entity.options.tag.description": "Entities with tag", + "argument.entity.options.team.description": "Entities on team", + "argument.entity.options.type.description": "Entities of type", + "argument.entity.options.type.invalid": "Invalid or unknown entity type '%s'", + "argument.entity.options.unknown": "Unknown option '%s'", + "argument.entity.options.unterminated": "Expected end of options", + "argument.entity.options.valueless": "Expected value for option '%s'", + "argument.entity.options.x_rotation.description": "Entity's x rotation", + "argument.entity.options.x.description": "x position", + "argument.entity.options.y_rotation.description": "Entity's y rotation", + "argument.entity.options.y.description": "y position", + "argument.entity.options.z.description": "z position", + "argument.entity.selector.allEntities": "All entities", + "argument.entity.selector.allPlayers": "All players", + "argument.entity.selector.missing": "Missing selector type", + "argument.entity.selector.nearestEntity": "Nearest entity", + "argument.entity.selector.nearestPlayer": "Nearest player", + "argument.entity.selector.not_allowed": "Selector not allowed", + "argument.entity.selector.randomPlayer": "Random player", + "argument.entity.selector.self": "Current entity", + "argument.entity.selector.unknown": "Unknown selector type '%s'", + "argument.entity.toomany": "Only one entity is allowed, but the provided selector allows more than one", + "argument.enum.invalid": "Invalid value \"%s\"", + "argument.float.big": "Float must not be more than %s, found %s", + "argument.float.low": "Float must not be less than %s, found %s", + "argument.gamemode.invalid": "Unknown game mode: %s", + "argument.hexcolor.invalid": "Invalid hex color code '%s'", + "argument.id.invalid": "Invalid ID", + "argument.id.unknown": "Unknown ID: %s", + "argument.integer.big": "Integer must not be more than %s, found %s", + "argument.integer.low": "Integer must not be less than %s, found %s", + "argument.item.id.invalid": "Unknown item '%s'", + "argument.item.tag.disallowed": "Tags aren't allowed here, only actual items", + "argument.literal.incorrect": "Expected literal %s", + "argument.long.big": "Long must not be more than %s, found %s", + "argument.long.low": "Long must not be less than %s, found %s", + "argument.message.too_long": "Chat message was too long (%s > maximum %s characters)", + "argument.nbt.array.invalid": "Invalid array type '%s'", + "argument.nbt.array.mixed": "Can't insert %s into %s", + "argument.nbt.expected.compound": "Expected compound tag", + "argument.nbt.expected.key": "Expected key", + "argument.nbt.expected.value": "Expected value", + "argument.nbt.list.mixed": "Can't insert %s into list of %s", + "argument.nbt.trailing": "Unexpected trailing data", + "argument.player.entities": "Only players may be affected by this command, but the provided selector includes entities", + "argument.player.toomany": "Only one player is allowed, but the provided selector allows more than one", + "argument.player.unknown": "That player does not exist", + "argument.pos.missing.double": "Expected a coordinate", + "argument.pos.missing.int": "Expected a block position", + "argument.pos.mixed": "Cannot mix world & local coordinates (everything must either use ^ or not)", + "argument.pos.outofbounds": "That position is outside the allowed boundaries.", + "argument.pos.outofworld": "That position is out of this world!", + "argument.pos.unloaded": "That position is not loaded", + "argument.pos2d.incomplete": "Incomplete (expected 2 coordinates)", + "argument.pos3d.incomplete": "Incomplete (expected 3 coordinates)", + "argument.range.empty": "Expected value or range of values", + "argument.range.ints": "Only whole numbers allowed, not decimals", + "argument.range.swapped": "Min cannot be bigger than max", + "argument.resource_or_id.failed_to_parse": "Failed to parse structure: %s", + "argument.resource_or_id.invalid": "Invalid id or tag", + "argument.resource_or_id.no_such_element": "Can't find element '%s' in registry '%s'", + "argument.resource_selector.not_found": "No matches for selector '%s' of type '%s'", + "argument.resource_tag.invalid_type": "Tag '%s' has wrong type '%s' (expected '%s')", + "argument.resource_tag.not_found": "Can't find tag '%s' of type '%s'", + "argument.resource.invalid_type": "Element '%s' has wrong type '%s' (expected '%s')", + "argument.resource.not_found": "Can't find element '%s' of type '%s'", + "argument.rotation.incomplete": "Incomplete (expected 2 coordinates)", + "argument.scoreboardDisplaySlot.invalid": "Unknown display slot '%s'", + "argument.scoreHolder.empty": "No relevant score holders could be found", + "argument.style.invalid": "Invalid style: %s", + "argument.time.invalid_tick_count": "The tick count must be non-negative", + "argument.time.invalid_unit": "Invalid unit", + "argument.time.tick_count_too_low": "The tick count must not be less than %s, found %s", + "argument.uuid.invalid": "Invalid UUID", + "argument.waypoint.invalid": "Selected entity is not a waypoint", + "arguments.block.tag.unknown": "Unknown block tag '%s'", + "arguments.function.tag.unknown": "Unknown function tag '%s'", + "arguments.function.unknown": "Unknown function %s", + "arguments.item.component.expected": "Expected item component", + "arguments.item.component.malformed": "Malformed '%s' component: '%s'", + "arguments.item.component.repeated": "Item component '%s' was repeated, but only one value can be specified", + "arguments.item.component.unknown": "Unknown item component '%s'", + "arguments.item.malformed": "Malformed item: '%s'", + "arguments.item.overstacked": "%s can only stack up to %s", + "arguments.item.predicate.malformed": "Malformed '%s' predicate: '%s'", + "arguments.item.predicate.unknown": "Unknown item predicate '%s'", + "arguments.item.tag.unknown": "Unknown item tag '%s'", + "arguments.nbtpath.node.invalid": "Invalid NBT path element", + "arguments.nbtpath.nothing_found": "Found no elements matching %s", + "arguments.nbtpath.too_deep": "Resulting NBT too deeply nested", + "arguments.nbtpath.too_large": "Resulting NBT too large", + "arguments.objective.notFound": "Unknown scoreboard objective '%s'", + "arguments.objective.readonly": "Scoreboard objective '%s' is read-only", + "arguments.operation.div0": "Cannot divide by zero", + "arguments.operation.invalid": "Invalid operation", + "arguments.swizzle.invalid": "Invalid swizzle, expected combination of 'x', 'y' and 'z'", + "attribute.modifier.equals.0": "%s %s", + "attribute.modifier.equals.1": "%s%% %s", + "attribute.modifier.equals.2": "%s%% %s", + "attribute.modifier.plus.0": "+%s %s", + "attribute.modifier.plus.1": "+%s%% %s", + "attribute.modifier.plus.2": "+%s%% %s", + "attribute.modifier.take.0": "-%s %s", + "attribute.modifier.take.1": "-%s%% %s", + "attribute.modifier.take.2": "-%s%% %s", + "attribute.name.armor": "Armor", + "attribute.name.armor_toughness": "Armor Toughness", + "attribute.name.attack_damage": "Attack Damage", + "attribute.name.attack_knockback": "Attack Knockback", + "attribute.name.attack_speed": "Attack Speed", + "attribute.name.block_break_speed": "Block Break Speed", + "attribute.name.block_interaction_range": "Block Interaction Range", + "attribute.name.burning_time": "Burning Time", + "attribute.name.camera_distance": "Camera Distance", + "attribute.name.entity_interaction_range": "Entity Interaction Range", + "attribute.name.explosion_knockback_resistance": "Explosion Knockback Resistance", + "attribute.name.fall_damage_multiplier": "Fall Damage Multiplier", + "attribute.name.flying_speed": "Flying Speed", + "attribute.name.follow_range": "Mob Follow Range", + "attribute.name.generic.armor": "Armor", + "attribute.name.generic.armor_toughness": "Armor Toughness", + "attribute.name.generic.attack_damage": "Attack Damage", + "attribute.name.generic.attack_knockback": "Attack Knockback", + "attribute.name.generic.attack_speed": "Attack Speed", + "attribute.name.generic.block_interaction_range": "Block Interaction Range", + "attribute.name.generic.burning_time": "Burning Time", + "attribute.name.generic.entity_interaction_range": "Entity Interaction Range", + "attribute.name.generic.explosion_knockback_resistance": "Explosion Knockback Resistance", + "attribute.name.generic.fall_damage_multiplier": "Fall Damage Multiplier", + "attribute.name.generic.flying_speed": "Flying Speed", + "attribute.name.generic.follow_range": "Mob Follow Range", + "attribute.name.generic.gravity": "Gravity", + "attribute.name.generic.jump_strength": "Jump Strength", + "attribute.name.generic.knockback_resistance": "Knockback Resistance", + "attribute.name.generic.luck": "Luck", + "attribute.name.generic.max_absorption": "Max Absorption", + "attribute.name.generic.max_health": "Max Health", + "attribute.name.generic.movement_efficiency": "Movement Efficiency", + "attribute.name.generic.movement_speed": "Speed", + "attribute.name.generic.oxygen_bonus": "Oxygen Bonus", + "attribute.name.generic.safe_fall_distance": "Safe Fall Distance", + "attribute.name.generic.scale": "Scale", + "attribute.name.generic.step_height": "Step Height", + "attribute.name.generic.water_movement_efficiency": "Water Movement Efficiency", + "attribute.name.gravity": "Gravity", + "attribute.name.horse.jump_strength": "Horse Jump Strength", + "attribute.name.jump_strength": "Jump Strength", + "attribute.name.knockback_resistance": "Knockback Resistance", + "attribute.name.luck": "Luck", + "attribute.name.max_absorption": "Max Absorption", + "attribute.name.max_health": "Max Health", + "attribute.name.mining_efficiency": "Mining Efficiency", + "attribute.name.movement_efficiency": "Movement Efficiency", + "attribute.name.movement_speed": "Speed", + "attribute.name.oxygen_bonus": "Oxygen Bonus", + "attribute.name.player.block_break_speed": "Block Break Speed", + "attribute.name.player.block_interaction_range": "Block Interaction Range", + "attribute.name.player.entity_interaction_range": "Entity Interaction Range", + "attribute.name.player.mining_efficiency": "Mining Efficiency", + "attribute.name.player.sneaking_speed": "Sneaking Speed", + "attribute.name.player.submerged_mining_speed": "Submerged Mining Speed", + "attribute.name.player.sweeping_damage_ratio": "Sweeping Damage Ratio", + "attribute.name.safe_fall_distance": "Safe Fall Distance", + "attribute.name.scale": "Scale", + "attribute.name.sneaking_speed": "Sneaking Speed", + "attribute.name.spawn_reinforcements": "Zombie Reinforcements", + "attribute.name.step_height": "Step Height", + "attribute.name.submerged_mining_speed": "Submerged Mining Speed", + "attribute.name.sweeping_damage_ratio": "Sweeping Damage Ratio", + "attribute.name.tempt_range": "Mob Tempt Range", + "attribute.name.water_movement_efficiency": "Water Movement Efficiency", + "attribute.name.waypoint_receive_range": "Waypoint Receive Range", + "attribute.name.waypoint_transmit_range": "Waypoint Transmit Range", + "attribute.name.zombie.spawn_reinforcements": "Zombie Reinforcements", + "biome.minecraft.badlands": "Badlands", + "biome.minecraft.bamboo_jungle": "Bamboo Jungle", + "biome.minecraft.basalt_deltas": "Basalt Deltas", + "biome.minecraft.beach": "Beach", + "biome.minecraft.birch_forest": "Birch Forest", + "biome.minecraft.cherry_grove": "Cherry Grove", + "biome.minecraft.cold_ocean": "Cold Ocean", + "biome.minecraft.crimson_forest": "Crimson Forest", + "biome.minecraft.dark_forest": "Dark Forest", + "biome.minecraft.deep_cold_ocean": "Deep Cold Ocean", + "biome.minecraft.deep_dark": "Deep Dark", + "biome.minecraft.deep_frozen_ocean": "Deep Frozen Ocean", + "biome.minecraft.deep_lukewarm_ocean": "Deep Lukewarm Ocean", + "biome.minecraft.deep_ocean": "Deep Ocean", + "biome.minecraft.desert": "Desert", + "biome.minecraft.dripstone_caves": "Dripstone Caves", + "biome.minecraft.end_barrens": "End Barrens", + "biome.minecraft.end_highlands": "End Highlands", + "biome.minecraft.end_midlands": "End Midlands", + "biome.minecraft.eroded_badlands": "Eroded Badlands", + "biome.minecraft.flower_forest": "Flower Forest", + "biome.minecraft.forest": "Forest", + "biome.minecraft.frozen_ocean": "Frozen Ocean", + "biome.minecraft.frozen_peaks": "Frozen Peaks", + "biome.minecraft.frozen_river": "Frozen River", + "biome.minecraft.grove": "Grove", + "biome.minecraft.ice_spikes": "Ice Spikes", + "biome.minecraft.jagged_peaks": "Jagged Peaks", + "biome.minecraft.jungle": "Jungle", + "biome.minecraft.lukewarm_ocean": "Lukewarm Ocean", + "biome.minecraft.lush_caves": "Lush Caves", + "biome.minecraft.mangrove_swamp": "Mangrove Swamp", + "biome.minecraft.meadow": "Meadow", + "biome.minecraft.mushroom_fields": "Mushroom Fields", + "biome.minecraft.nether_wastes": "Nether Wastes", + "biome.minecraft.ocean": "Ocean", + "biome.minecraft.old_growth_birch_forest": "Old Growth Birch Forest", + "biome.minecraft.old_growth_pine_taiga": "Old Growth Pine Taiga", + "biome.minecraft.old_growth_spruce_taiga": "Old Growth Spruce Taiga", + "biome.minecraft.pale_garden": "Pale Garden", + "biome.minecraft.plains": "Plains", + "biome.minecraft.river": "River", + "biome.minecraft.savanna": "Savanna", + "biome.minecraft.savanna_plateau": "Savanna Plateau", + "biome.minecraft.small_end_islands": "Small End Islands", + "biome.minecraft.snowy_beach": "Snowy Beach", + "biome.minecraft.snowy_plains": "Snowy Plains", + "biome.minecraft.snowy_slopes": "Snowy Slopes", + "biome.minecraft.snowy_taiga": "Snowy Taiga", + "biome.minecraft.soul_sand_valley": "Soul Sand Valley", + "biome.minecraft.sparse_jungle": "Sparse Jungle", + "biome.minecraft.stony_peaks": "Stony Peaks", + "biome.minecraft.stony_shore": "Stony Shore", + "biome.minecraft.sunflower_plains": "Sunflower Plains", + "biome.minecraft.swamp": "Swamp", + "biome.minecraft.taiga": "Taiga", + "biome.minecraft.the_end": "The End", + "biome.minecraft.the_void": "The Void", + "biome.minecraft.warm_ocean": "Warm Ocean", + "biome.minecraft.warped_forest": "Warped Forest", + "biome.minecraft.windswept_forest": "Windswept Forest", + "biome.minecraft.windswept_gravelly_hills": "Windswept Gravelly Hills", + "biome.minecraft.windswept_hills": "Windswept Hills", + "biome.minecraft.windswept_savanna": "Windswept Savanna", + "biome.minecraft.wooded_badlands": "Wooded Badlands", + "block.minecraft.acacia_button": "Acacia Button", + "block.minecraft.acacia_door": "Acacia Door", + "block.minecraft.acacia_fence": "Acacia Fence", + "block.minecraft.acacia_fence_gate": "Acacia Fence Gate", + "block.minecraft.acacia_hanging_sign": "Acacia Hanging Sign", + "block.minecraft.acacia_leaves": "Acacia Leaves", + "block.minecraft.acacia_log": "Acacia Log", + "block.minecraft.acacia_planks": "Acacia Planks", + "block.minecraft.acacia_pressure_plate": "Acacia Pressure Plate", + "block.minecraft.acacia_sapling": "Acacia Sapling", + "block.minecraft.acacia_sign": "Acacia Sign", + "block.minecraft.acacia_slab": "Acacia Slab", + "block.minecraft.acacia_stairs": "Acacia Stairs", + "block.minecraft.acacia_trapdoor": "Acacia Trapdoor", + "block.minecraft.acacia_wall_hanging_sign": "Acacia Wall Hanging Sign", + "block.minecraft.acacia_wall_sign": "Acacia Wall Sign", + "block.minecraft.acacia_wood": "Acacia Wood", + "block.minecraft.activator_rail": "Activator Rail", + "block.minecraft.air": "Air", + "block.minecraft.allium": "Allium", + "block.minecraft.amethyst_block": "Block of Amethyst", + "block.minecraft.amethyst_cluster": "Amethyst Cluster", + "block.minecraft.ancient_debris": "Ancient Debris", + "block.minecraft.andesite": "Andesite", + "block.minecraft.andesite_slab": "Andesite Slab", + "block.minecraft.andesite_stairs": "Andesite Stairs", + "block.minecraft.andesite_wall": "Andesite Wall", + "block.minecraft.anvil": "Anvil", + "block.minecraft.attached_melon_stem": "Attached Melon Stem", + "block.minecraft.attached_pumpkin_stem": "Attached Pumpkin Stem", + "block.minecraft.azalea": "Azalea", + "block.minecraft.azalea_leaves": "Azalea Leaves", + "block.minecraft.azure_bluet": "Azure Bluet", + "block.minecraft.bamboo": "Bamboo", + "block.minecraft.bamboo_block": "Block of Bamboo", + "block.minecraft.bamboo_button": "Bamboo Button", + "block.minecraft.bamboo_door": "Bamboo Door", + "block.minecraft.bamboo_fence": "Bamboo Fence", + "block.minecraft.bamboo_fence_gate": "Bamboo Fence Gate", + "block.minecraft.bamboo_hanging_sign": "Bamboo Hanging Sign", + "block.minecraft.bamboo_mosaic": "Bamboo Mosaic", + "block.minecraft.bamboo_mosaic_slab": "Bamboo Mosaic Slab", + "block.minecraft.bamboo_mosaic_stairs": "Bamboo Mosaic Stairs", + "block.minecraft.bamboo_planks": "Bamboo Planks", + "block.minecraft.bamboo_pressure_plate": "Bamboo Pressure Plate", + "block.minecraft.bamboo_sapling": "Bamboo Shoot", + "block.minecraft.bamboo_sign": "Bamboo Sign", + "block.minecraft.bamboo_slab": "Bamboo Slab", + "block.minecraft.bamboo_stairs": "Bamboo Stairs", + "block.minecraft.bamboo_trapdoor": "Bamboo Trapdoor", + "block.minecraft.bamboo_wall_hanging_sign": "Bamboo Wall Hanging Sign", + "block.minecraft.bamboo_wall_sign": "Bamboo Wall Sign", + "block.minecraft.banner.base.black": "Fully Black Field", + "block.minecraft.banner.base.blue": "Fully Blue Field", + "block.minecraft.banner.base.brown": "Fully Brown Field", + "block.minecraft.banner.base.cyan": "Fully Cyan Field", + "block.minecraft.banner.base.gray": "Fully Gray Field", + "block.minecraft.banner.base.green": "Fully Green Field", + "block.minecraft.banner.base.light_blue": "Fully Light Blue Field", + "block.minecraft.banner.base.light_gray": "Fully Light Gray Field", + "block.minecraft.banner.base.lime": "Fully Lime Field", + "block.minecraft.banner.base.magenta": "Fully Magenta Field", + "block.minecraft.banner.base.orange": "Fully Orange Field", + "block.minecraft.banner.base.pink": "Fully Pink Field", + "block.minecraft.banner.base.purple": "Fully Purple Field", + "block.minecraft.banner.base.red": "Fully Red Field", + "block.minecraft.banner.base.white": "Fully White Field", + "block.minecraft.banner.base.yellow": "Fully Yellow Field", + "block.minecraft.banner.border.black": "Black Bordure", + "block.minecraft.banner.border.blue": "Blue Bordure", + "block.minecraft.banner.border.brown": "Brown Bordure", + "block.minecraft.banner.border.cyan": "Cyan Bordure", + "block.minecraft.banner.border.gray": "Gray Bordure", + "block.minecraft.banner.border.green": "Green Bordure", + "block.minecraft.banner.border.light_blue": "Light Blue Bordure", + "block.minecraft.banner.border.light_gray": "Light Gray Bordure", + "block.minecraft.banner.border.lime": "Lime Bordure", + "block.minecraft.banner.border.magenta": "Magenta Bordure", + "block.minecraft.banner.border.orange": "Orange Bordure", + "block.minecraft.banner.border.pink": "Pink Bordure", + "block.minecraft.banner.border.purple": "Purple Bordure", + "block.minecraft.banner.border.red": "Red Bordure", + "block.minecraft.banner.border.white": "White Bordure", + "block.minecraft.banner.border.yellow": "Yellow Bordure", + "block.minecraft.banner.bricks.black": "Black Field Masoned", + "block.minecraft.banner.bricks.blue": "Blue Field Masoned", + "block.minecraft.banner.bricks.brown": "Brown Field Masoned", + "block.minecraft.banner.bricks.cyan": "Cyan Field Masoned", + "block.minecraft.banner.bricks.gray": "Gray Field Masoned", + "block.minecraft.banner.bricks.green": "Green Field Masoned", + "block.minecraft.banner.bricks.light_blue": "Light Blue Field Masoned", + "block.minecraft.banner.bricks.light_gray": "Light Gray Field Masoned", + "block.minecraft.banner.bricks.lime": "Lime Field Masoned", + "block.minecraft.banner.bricks.magenta": "Magenta Field Masoned", + "block.minecraft.banner.bricks.orange": "Orange Field Masoned", + "block.minecraft.banner.bricks.pink": "Pink Field Masoned", + "block.minecraft.banner.bricks.purple": "Purple Field Masoned", + "block.minecraft.banner.bricks.red": "Red Field Masoned", + "block.minecraft.banner.bricks.white": "White Field Masoned", + "block.minecraft.banner.bricks.yellow": "Yellow Field Masoned", + "block.minecraft.banner.circle.black": "Black Roundel", + "block.minecraft.banner.circle.blue": "Blue Roundel", + "block.minecraft.banner.circle.brown": "Brown Roundel", + "block.minecraft.banner.circle.cyan": "Cyan Roundel", + "block.minecraft.banner.circle.gray": "Gray Roundel", + "block.minecraft.banner.circle.green": "Green Roundel", + "block.minecraft.banner.circle.light_blue": "Light Blue Roundel", + "block.minecraft.banner.circle.light_gray": "Light Gray Roundel", + "block.minecraft.banner.circle.lime": "Lime Roundel", + "block.minecraft.banner.circle.magenta": "Magenta Roundel", + "block.minecraft.banner.circle.orange": "Orange Roundel", + "block.minecraft.banner.circle.pink": "Pink Roundel", + "block.minecraft.banner.circle.purple": "Purple Roundel", + "block.minecraft.banner.circle.red": "Red Roundel", + "block.minecraft.banner.circle.white": "White Roundel", + "block.minecraft.banner.circle.yellow": "Yellow Roundel", + "block.minecraft.banner.creeper.black": "Black Creeper Charge", + "block.minecraft.banner.creeper.blue": "Blue Creeper Charge", + "block.minecraft.banner.creeper.brown": "Brown Creeper Charge", + "block.minecraft.banner.creeper.cyan": "Cyan Creeper Charge", + "block.minecraft.banner.creeper.gray": "Gray Creeper Charge", + "block.minecraft.banner.creeper.green": "Green Creeper Charge", + "block.minecraft.banner.creeper.light_blue": "Light Blue Creeper Charge", + "block.minecraft.banner.creeper.light_gray": "Light Gray Creeper Charge", + "block.minecraft.banner.creeper.lime": "Lime Creeper Charge", + "block.minecraft.banner.creeper.magenta": "Magenta Creeper Charge", + "block.minecraft.banner.creeper.orange": "Orange Creeper Charge", + "block.minecraft.banner.creeper.pink": "Pink Creeper Charge", + "block.minecraft.banner.creeper.purple": "Purple Creeper Charge", + "block.minecraft.banner.creeper.red": "Red Creeper Charge", + "block.minecraft.banner.creeper.white": "White Creeper Charge", + "block.minecraft.banner.creeper.yellow": "Yellow Creeper Charge", + "block.minecraft.banner.cross.black": "Black Saltire", + "block.minecraft.banner.cross.blue": "Blue Saltire", + "block.minecraft.banner.cross.brown": "Brown Saltire", + "block.minecraft.banner.cross.cyan": "Cyan Saltire", + "block.minecraft.banner.cross.gray": "Gray Saltire", + "block.minecraft.banner.cross.green": "Green Saltire", + "block.minecraft.banner.cross.light_blue": "Light Blue Saltire", + "block.minecraft.banner.cross.light_gray": "Light Gray Saltire", + "block.minecraft.banner.cross.lime": "Lime Saltire", + "block.minecraft.banner.cross.magenta": "Magenta Saltire", + "block.minecraft.banner.cross.orange": "Orange Saltire", + "block.minecraft.banner.cross.pink": "Pink Saltire", + "block.minecraft.banner.cross.purple": "Purple Saltire", + "block.minecraft.banner.cross.red": "Red Saltire", + "block.minecraft.banner.cross.white": "White Saltire", + "block.minecraft.banner.cross.yellow": "Yellow Saltire", + "block.minecraft.banner.curly_border.black": "Black Bordure Indented", + "block.minecraft.banner.curly_border.blue": "Blue Bordure Indented", + "block.minecraft.banner.curly_border.brown": "Brown Bordure Indented", + "block.minecraft.banner.curly_border.cyan": "Cyan Bordure Indented", + "block.minecraft.banner.curly_border.gray": "Gray Bordure Indented", + "block.minecraft.banner.curly_border.green": "Green Bordure Indented", + "block.minecraft.banner.curly_border.light_blue": "Light Blue Bordure Indented", + "block.minecraft.banner.curly_border.light_gray": "Light Gray Bordure Indented", + "block.minecraft.banner.curly_border.lime": "Lime Bordure Indented", + "block.minecraft.banner.curly_border.magenta": "Magenta Bordure Indented", + "block.minecraft.banner.curly_border.orange": "Orange Bordure Indented", + "block.minecraft.banner.curly_border.pink": "Pink Bordure Indented", + "block.minecraft.banner.curly_border.purple": "Purple Bordure Indented", + "block.minecraft.banner.curly_border.red": "Red Bordure Indented", + "block.minecraft.banner.curly_border.white": "White Bordure Indented", + "block.minecraft.banner.curly_border.yellow": "Yellow Bordure Indented", + "block.minecraft.banner.diagonal_left.black": "Black Per Bend Sinister", + "block.minecraft.banner.diagonal_left.blue": "Blue Per Bend Sinister", + "block.minecraft.banner.diagonal_left.brown": "Brown Per Bend Sinister", + "block.minecraft.banner.diagonal_left.cyan": "Cyan Per Bend Sinister", + "block.minecraft.banner.diagonal_left.gray": "Gray Per Bend Sinister", + "block.minecraft.banner.diagonal_left.green": "Green Per Bend Sinister", + "block.minecraft.banner.diagonal_left.light_blue": "Light Blue Per Bend Sinister", + "block.minecraft.banner.diagonal_left.light_gray": "Light Gray Per Bend Sinister", + "block.minecraft.banner.diagonal_left.lime": "Lime Per Bend Sinister", + "block.minecraft.banner.diagonal_left.magenta": "Magenta Per Bend Sinister", + "block.minecraft.banner.diagonal_left.orange": "Orange Per Bend Sinister", + "block.minecraft.banner.diagonal_left.pink": "Pink Per Bend Sinister", + "block.minecraft.banner.diagonal_left.purple": "Purple Per Bend Sinister", + "block.minecraft.banner.diagonal_left.red": "Red Per Bend Sinister", + "block.minecraft.banner.diagonal_left.white": "White Per Bend Sinister", + "block.minecraft.banner.diagonal_left.yellow": "Yellow Per Bend Sinister", + "block.minecraft.banner.diagonal_right.black": "Black Per Bend", + "block.minecraft.banner.diagonal_right.blue": "Blue Per Bend", + "block.minecraft.banner.diagonal_right.brown": "Brown Per Bend", + "block.minecraft.banner.diagonal_right.cyan": "Cyan Per Bend", + "block.minecraft.banner.diagonal_right.gray": "Gray Per Bend", + "block.minecraft.banner.diagonal_right.green": "Green Per Bend", + "block.minecraft.banner.diagonal_right.light_blue": "Light Blue Per Bend", + "block.minecraft.banner.diagonal_right.light_gray": "Light Gray Per Bend", + "block.minecraft.banner.diagonal_right.lime": "Lime Per Bend", + "block.minecraft.banner.diagonal_right.magenta": "Magenta Per Bend", + "block.minecraft.banner.diagonal_right.orange": "Orange Per Bend", + "block.minecraft.banner.diagonal_right.pink": "Pink Per Bend", + "block.minecraft.banner.diagonal_right.purple": "Purple Per Bend", + "block.minecraft.banner.diagonal_right.red": "Red Per Bend", + "block.minecraft.banner.diagonal_right.white": "White Per Bend", + "block.minecraft.banner.diagonal_right.yellow": "Yellow Per Bend", + "block.minecraft.banner.diagonal_up_left.black": "Black Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.blue": "Blue Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.brown": "Brown Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.cyan": "Cyan Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.gray": "Gray Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.green": "Green Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.light_blue": "Light Blue Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.light_gray": "Light Gray Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.lime": "Lime Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.magenta": "Magenta Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.orange": "Orange Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.pink": "Pink Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.purple": "Purple Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.red": "Red Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.white": "White Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.yellow": "Yellow Per Bend Inverted", + "block.minecraft.banner.diagonal_up_right.black": "Black Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.blue": "Blue Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.brown": "Brown Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.cyan": "Cyan Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.gray": "Gray Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.green": "Green Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.light_blue": "Light Blue Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.light_gray": "Light Gray Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.lime": "Lime Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.magenta": "Magenta Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.orange": "Orange Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.pink": "Pink Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.purple": "Purple Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.red": "Red Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.white": "White Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.yellow": "Yellow Per Bend Sinister Inverted", + "block.minecraft.banner.flow.black": "Black Flow", + "block.minecraft.banner.flow.blue": "Blue Flow", + "block.minecraft.banner.flow.brown": "Brown Flow", + "block.minecraft.banner.flow.cyan": "Cyan Flow", + "block.minecraft.banner.flow.gray": "Gray Flow", + "block.minecraft.banner.flow.green": "Green Flow", + "block.minecraft.banner.flow.light_blue": "Light Blue Flow", + "block.minecraft.banner.flow.light_gray": "Light Gray Flow", + "block.minecraft.banner.flow.lime": "Lime Flow", + "block.minecraft.banner.flow.magenta": "Magenta Flow", + "block.minecraft.banner.flow.orange": "Orange Flow", + "block.minecraft.banner.flow.pink": "Pink Flow", + "block.minecraft.banner.flow.purple": "Purple Flow", + "block.minecraft.banner.flow.red": "Red Flow", + "block.minecraft.banner.flow.white": "White Flow", + "block.minecraft.banner.flow.yellow": "Yellow Flow", + "block.minecraft.banner.flower.black": "Black Flower Charge", + "block.minecraft.banner.flower.blue": "Blue Flower Charge", + "block.minecraft.banner.flower.brown": "Brown Flower Charge", + "block.minecraft.banner.flower.cyan": "Cyan Flower Charge", + "block.minecraft.banner.flower.gray": "Gray Flower Charge", + "block.minecraft.banner.flower.green": "Green Flower Charge", + "block.minecraft.banner.flower.light_blue": "Light Blue Flower Charge", + "block.minecraft.banner.flower.light_gray": "Light Gray Flower Charge", + "block.minecraft.banner.flower.lime": "Lime Flower Charge", + "block.minecraft.banner.flower.magenta": "Magenta Flower Charge", + "block.minecraft.banner.flower.orange": "Orange Flower Charge", + "block.minecraft.banner.flower.pink": "Pink Flower Charge", + "block.minecraft.banner.flower.purple": "Purple Flower Charge", + "block.minecraft.banner.flower.red": "Red Flower Charge", + "block.minecraft.banner.flower.white": "White Flower Charge", + "block.minecraft.banner.flower.yellow": "Yellow Flower Charge", + "block.minecraft.banner.globe.black": "Black Globe", + "block.minecraft.banner.globe.blue": "Blue Globe", + "block.minecraft.banner.globe.brown": "Brown Globe", + "block.minecraft.banner.globe.cyan": "Cyan Globe", + "block.minecraft.banner.globe.gray": "Gray Globe", + "block.minecraft.banner.globe.green": "Green Globe", + "block.minecraft.banner.globe.light_blue": "Light Blue Globe", + "block.minecraft.banner.globe.light_gray": "Light Gray Globe", + "block.minecraft.banner.globe.lime": "Lime Globe", + "block.minecraft.banner.globe.magenta": "Magenta Globe", + "block.minecraft.banner.globe.orange": "Orange Globe", + "block.minecraft.banner.globe.pink": "Pink Globe", + "block.minecraft.banner.globe.purple": "Purple Globe", + "block.minecraft.banner.globe.red": "Red Globe", + "block.minecraft.banner.globe.white": "White Globe", + "block.minecraft.banner.globe.yellow": "Yellow Globe", + "block.minecraft.banner.gradient_up.black": "Black Base Gradient", + "block.minecraft.banner.gradient_up.blue": "Blue Base Gradient", + "block.minecraft.banner.gradient_up.brown": "Brown Base Gradient", + "block.minecraft.banner.gradient_up.cyan": "Cyan Base Gradient", + "block.minecraft.banner.gradient_up.gray": "Gray Base Gradient", + "block.minecraft.banner.gradient_up.green": "Green Base Gradient", + "block.minecraft.banner.gradient_up.light_blue": "Light Blue Base Gradient", + "block.minecraft.banner.gradient_up.light_gray": "Light Gray Base Gradient", + "block.minecraft.banner.gradient_up.lime": "Lime Base Gradient", + "block.minecraft.banner.gradient_up.magenta": "Magenta Base Gradient", + "block.minecraft.banner.gradient_up.orange": "Orange Base Gradient", + "block.minecraft.banner.gradient_up.pink": "Pink Base Gradient", + "block.minecraft.banner.gradient_up.purple": "Purple Base Gradient", + "block.minecraft.banner.gradient_up.red": "Red Base Gradient", + "block.minecraft.banner.gradient_up.white": "White Base Gradient", + "block.minecraft.banner.gradient_up.yellow": "Yellow Base Gradient", + "block.minecraft.banner.gradient.black": "Black Gradient", + "block.minecraft.banner.gradient.blue": "Blue Gradient", + "block.minecraft.banner.gradient.brown": "Brown Gradient", + "block.minecraft.banner.gradient.cyan": "Cyan Gradient", + "block.minecraft.banner.gradient.gray": "Gray Gradient", + "block.minecraft.banner.gradient.green": "Green Gradient", + "block.minecraft.banner.gradient.light_blue": "Light Blue Gradient", + "block.minecraft.banner.gradient.light_gray": "Light Gray Gradient", + "block.minecraft.banner.gradient.lime": "Lime Gradient", + "block.minecraft.banner.gradient.magenta": "Magenta Gradient", + "block.minecraft.banner.gradient.orange": "Orange Gradient", + "block.minecraft.banner.gradient.pink": "Pink Gradient", + "block.minecraft.banner.gradient.purple": "Purple Gradient", + "block.minecraft.banner.gradient.red": "Red Gradient", + "block.minecraft.banner.gradient.white": "White Gradient", + "block.minecraft.banner.gradient.yellow": "Yellow Gradient", + "block.minecraft.banner.guster.black": "Black Guster", + "block.minecraft.banner.guster.blue": "Blue Guster", + "block.minecraft.banner.guster.brown": "Brown Guster", + "block.minecraft.banner.guster.cyan": "Cyan Guster", + "block.minecraft.banner.guster.gray": "Gray Guster", + "block.minecraft.banner.guster.green": "Green Guster", + "block.minecraft.banner.guster.light_blue": "Light Blue Guster", + "block.minecraft.banner.guster.light_gray": "Light Gray Guster", + "block.minecraft.banner.guster.lime": "Lime Guster", + "block.minecraft.banner.guster.magenta": "Magenta Guster", + "block.minecraft.banner.guster.orange": "Orange Guster", + "block.minecraft.banner.guster.pink": "Pink Guster", + "block.minecraft.banner.guster.purple": "Purple Guster", + "block.minecraft.banner.guster.red": "Red Guster", + "block.minecraft.banner.guster.white": "White Guster", + "block.minecraft.banner.guster.yellow": "Yellow Guster", + "block.minecraft.banner.half_horizontal_bottom.black": "Black Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.blue": "Blue Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.brown": "Brown Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.cyan": "Cyan Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.gray": "Gray Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.green": "Green Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.light_blue": "Light Blue Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.light_gray": "Light Gray Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.lime": "Lime Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.magenta": "Magenta Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.orange": "Orange Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.pink": "Pink Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.purple": "Purple Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.red": "Red Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.white": "White Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.yellow": "Yellow Per Fess Inverted", + "block.minecraft.banner.half_horizontal.black": "Black Per Fess", + "block.minecraft.banner.half_horizontal.blue": "Blue Per Fess", + "block.minecraft.banner.half_horizontal.brown": "Brown Per Fess", + "block.minecraft.banner.half_horizontal.cyan": "Cyan Per Fess", + "block.minecraft.banner.half_horizontal.gray": "Gray Per Fess", + "block.minecraft.banner.half_horizontal.green": "Green Per Fess", + "block.minecraft.banner.half_horizontal.light_blue": "Light Blue Per Fess", + "block.minecraft.banner.half_horizontal.light_gray": "Light Gray Per Fess", + "block.minecraft.banner.half_horizontal.lime": "Lime Per Fess", + "block.minecraft.banner.half_horizontal.magenta": "Magenta Per Fess", + "block.minecraft.banner.half_horizontal.orange": "Orange Per Fess", + "block.minecraft.banner.half_horizontal.pink": "Pink Per Fess", + "block.minecraft.banner.half_horizontal.purple": "Purple Per Fess", + "block.minecraft.banner.half_horizontal.red": "Red Per Fess", + "block.minecraft.banner.half_horizontal.white": "White Per Fess", + "block.minecraft.banner.half_horizontal.yellow": "Yellow Per Fess", + "block.minecraft.banner.half_vertical_right.black": "Black Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.blue": "Blue Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.brown": "Brown Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.cyan": "Cyan Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.gray": "Gray Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.green": "Green Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.light_blue": "Light Blue Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.light_gray": "Light Gray Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.lime": "Lime Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.magenta": "Magenta Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.orange": "Orange Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.pink": "Pink Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.purple": "Purple Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.red": "Red Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.white": "White Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.yellow": "Yellow Per Pale Inverted", + "block.minecraft.banner.half_vertical.black": "Black Per Pale", + "block.minecraft.banner.half_vertical.blue": "Blue Per Pale", + "block.minecraft.banner.half_vertical.brown": "Brown Per Pale", + "block.minecraft.banner.half_vertical.cyan": "Cyan Per Pale", + "block.minecraft.banner.half_vertical.gray": "Gray Per Pale", + "block.minecraft.banner.half_vertical.green": "Green Per Pale", + "block.minecraft.banner.half_vertical.light_blue": "Light Blue Per Pale", + "block.minecraft.banner.half_vertical.light_gray": "Light Gray Per Pale", + "block.minecraft.banner.half_vertical.lime": "Lime Per Pale", + "block.minecraft.banner.half_vertical.magenta": "Magenta Per Pale", + "block.minecraft.banner.half_vertical.orange": "Orange Per Pale", + "block.minecraft.banner.half_vertical.pink": "Pink Per Pale", + "block.minecraft.banner.half_vertical.purple": "Purple Per Pale", + "block.minecraft.banner.half_vertical.red": "Red Per Pale", + "block.minecraft.banner.half_vertical.white": "White Per Pale", + "block.minecraft.banner.half_vertical.yellow": "Yellow Per Pale", + "block.minecraft.banner.mojang.black": "Black Thing", + "block.minecraft.banner.mojang.blue": "Blue Thing", + "block.minecraft.banner.mojang.brown": "Brown Thing", + "block.minecraft.banner.mojang.cyan": "Cyan Thing", + "block.minecraft.banner.mojang.gray": "Gray Thing", + "block.minecraft.banner.mojang.green": "Green Thing", + "block.minecraft.banner.mojang.light_blue": "Light Blue Thing", + "block.minecraft.banner.mojang.light_gray": "Light Gray Thing", + "block.minecraft.banner.mojang.lime": "Lime Thing", + "block.minecraft.banner.mojang.magenta": "Magenta Thing", + "block.minecraft.banner.mojang.orange": "Orange Thing", + "block.minecraft.banner.mojang.pink": "Pink Thing", + "block.minecraft.banner.mojang.purple": "Purple Thing", + "block.minecraft.banner.mojang.red": "Red Thing", + "block.minecraft.banner.mojang.white": "White Thing", + "block.minecraft.banner.mojang.yellow": "Yellow Thing", + "block.minecraft.banner.piglin.black": "Black Snout", + "block.minecraft.banner.piglin.blue": "Blue Snout", + "block.minecraft.banner.piglin.brown": "Brown Snout", + "block.minecraft.banner.piglin.cyan": "Cyan Snout", + "block.minecraft.banner.piglin.gray": "Gray Snout", + "block.minecraft.banner.piglin.green": "Green Snout", + "block.minecraft.banner.piglin.light_blue": "Light Blue Snout", + "block.minecraft.banner.piglin.light_gray": "Light Gray Snout", + "block.minecraft.banner.piglin.lime": "Lime Snout", + "block.minecraft.banner.piglin.magenta": "Magenta Snout", + "block.minecraft.banner.piglin.orange": "Orange Snout", + "block.minecraft.banner.piglin.pink": "Pink Snout", + "block.minecraft.banner.piglin.purple": "Purple Snout", + "block.minecraft.banner.piglin.red": "Red Snout", + "block.minecraft.banner.piglin.white": "White Snout", + "block.minecraft.banner.piglin.yellow": "Yellow Snout", + "block.minecraft.banner.rhombus.black": "Black Lozenge", + "block.minecraft.banner.rhombus.blue": "Blue Lozenge", + "block.minecraft.banner.rhombus.brown": "Brown Lozenge", + "block.minecraft.banner.rhombus.cyan": "Cyan Lozenge", + "block.minecraft.banner.rhombus.gray": "Gray Lozenge", + "block.minecraft.banner.rhombus.green": "Green Lozenge", + "block.minecraft.banner.rhombus.light_blue": "Light Blue Lozenge", + "block.minecraft.banner.rhombus.light_gray": "Light Gray Lozenge", + "block.minecraft.banner.rhombus.lime": "Lime Lozenge", + "block.minecraft.banner.rhombus.magenta": "Magenta Lozenge", + "block.minecraft.banner.rhombus.orange": "Orange Lozenge", + "block.minecraft.banner.rhombus.pink": "Pink Lozenge", + "block.minecraft.banner.rhombus.purple": "Purple Lozenge", + "block.minecraft.banner.rhombus.red": "Red Lozenge", + "block.minecraft.banner.rhombus.white": "White Lozenge", + "block.minecraft.banner.rhombus.yellow": "Yellow Lozenge", + "block.minecraft.banner.skull.black": "Black Skull Charge", + "block.minecraft.banner.skull.blue": "Blue Skull Charge", + "block.minecraft.banner.skull.brown": "Brown Skull Charge", + "block.minecraft.banner.skull.cyan": "Cyan Skull Charge", + "block.minecraft.banner.skull.gray": "Gray Skull Charge", + "block.minecraft.banner.skull.green": "Green Skull Charge", + "block.minecraft.banner.skull.light_blue": "Light Blue Skull Charge", + "block.minecraft.banner.skull.light_gray": "Light Gray Skull Charge", + "block.minecraft.banner.skull.lime": "Lime Skull Charge", + "block.minecraft.banner.skull.magenta": "Magenta Skull Charge", + "block.minecraft.banner.skull.orange": "Orange Skull Charge", + "block.minecraft.banner.skull.pink": "Pink Skull Charge", + "block.minecraft.banner.skull.purple": "Purple Skull Charge", + "block.minecraft.banner.skull.red": "Red Skull Charge", + "block.minecraft.banner.skull.white": "White Skull Charge", + "block.minecraft.banner.skull.yellow": "Yellow Skull Charge", + "block.minecraft.banner.small_stripes.black": "Black Paly", + "block.minecraft.banner.small_stripes.blue": "Blue Paly", + "block.minecraft.banner.small_stripes.brown": "Brown Paly", + "block.minecraft.banner.small_stripes.cyan": "Cyan Paly", + "block.minecraft.banner.small_stripes.gray": "Gray Paly", + "block.minecraft.banner.small_stripes.green": "Green Paly", + "block.minecraft.banner.small_stripes.light_blue": "Light Blue Paly", + "block.minecraft.banner.small_stripes.light_gray": "Light Gray Paly", + "block.minecraft.banner.small_stripes.lime": "Lime Paly", + "block.minecraft.banner.small_stripes.magenta": "Magenta Paly", + "block.minecraft.banner.small_stripes.orange": "Orange Paly", + "block.minecraft.banner.small_stripes.pink": "Pink Paly", + "block.minecraft.banner.small_stripes.purple": "Purple Paly", + "block.minecraft.banner.small_stripes.red": "Red Paly", + "block.minecraft.banner.small_stripes.white": "White Paly", + "block.minecraft.banner.small_stripes.yellow": "Yellow Paly", + "block.minecraft.banner.square_bottom_left.black": "Black Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.blue": "Blue Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.brown": "Brown Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.cyan": "Cyan Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.gray": "Gray Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.green": "Green Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.light_blue": "Light Blue Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.light_gray": "Light Gray Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.lime": "Lime Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.magenta": "Magenta Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.orange": "Orange Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.pink": "Pink Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.purple": "Purple Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.red": "Red Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.white": "White Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.yellow": "Yellow Base Dexter Canton", + "block.minecraft.banner.square_bottom_right.black": "Black Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.blue": "Blue Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.brown": "Brown Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.cyan": "Cyan Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.gray": "Gray Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.green": "Green Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.light_blue": "Light Blue Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.light_gray": "Light Gray Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.lime": "Lime Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.magenta": "Magenta Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.orange": "Orange Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.pink": "Pink Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.purple": "Purple Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.red": "Red Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.white": "White Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.yellow": "Yellow Base Sinister Canton", + "block.minecraft.banner.square_top_left.black": "Black Chief Dexter Canton", + "block.minecraft.banner.square_top_left.blue": "Blue Chief Dexter Canton", + "block.minecraft.banner.square_top_left.brown": "Brown Chief Dexter Canton", + "block.minecraft.banner.square_top_left.cyan": "Cyan Chief Dexter Canton", + "block.minecraft.banner.square_top_left.gray": "Gray Chief Dexter Canton", + "block.minecraft.banner.square_top_left.green": "Green Chief Dexter Canton", + "block.minecraft.banner.square_top_left.light_blue": "Light Blue Chief Dexter Canton", + "block.minecraft.banner.square_top_left.light_gray": "Light Gray Chief Dexter Canton", + "block.minecraft.banner.square_top_left.lime": "Lime Chief Dexter Canton", + "block.minecraft.banner.square_top_left.magenta": "Magenta Chief Dexter Canton", + "block.minecraft.banner.square_top_left.orange": "Orange Chief Dexter Canton", + "block.minecraft.banner.square_top_left.pink": "Pink Chief Dexter Canton", + "block.minecraft.banner.square_top_left.purple": "Purple Chief Dexter Canton", + "block.minecraft.banner.square_top_left.red": "Red Chief Dexter Canton", + "block.minecraft.banner.square_top_left.white": "White Chief Dexter Canton", + "block.minecraft.banner.square_top_left.yellow": "Yellow Chief Dexter Canton", + "block.minecraft.banner.square_top_right.black": "Black Chief Sinister Canton", + "block.minecraft.banner.square_top_right.blue": "Blue Chief Sinister Canton", + "block.minecraft.banner.square_top_right.brown": "Brown Chief Sinister Canton", + "block.minecraft.banner.square_top_right.cyan": "Cyan Chief Sinister Canton", + "block.minecraft.banner.square_top_right.gray": "Gray Chief Sinister Canton", + "block.minecraft.banner.square_top_right.green": "Green Chief Sinister Canton", + "block.minecraft.banner.square_top_right.light_blue": "Light Blue Chief Sinister Canton", + "block.minecraft.banner.square_top_right.light_gray": "Light Gray Chief Sinister Canton", + "block.minecraft.banner.square_top_right.lime": "Lime Chief Sinister Canton", + "block.minecraft.banner.square_top_right.magenta": "Magenta Chief Sinister Canton", + "block.minecraft.banner.square_top_right.orange": "Orange Chief Sinister Canton", + "block.minecraft.banner.square_top_right.pink": "Pink Chief Sinister Canton", + "block.minecraft.banner.square_top_right.purple": "Purple Chief Sinister Canton", + "block.minecraft.banner.square_top_right.red": "Red Chief Sinister Canton", + "block.minecraft.banner.square_top_right.white": "White Chief Sinister Canton", + "block.minecraft.banner.square_top_right.yellow": "Yellow Chief Sinister Canton", + "block.minecraft.banner.straight_cross.black": "Black Cross", + "block.minecraft.banner.straight_cross.blue": "Blue Cross", + "block.minecraft.banner.straight_cross.brown": "Brown Cross", + "block.minecraft.banner.straight_cross.cyan": "Cyan Cross", + "block.minecraft.banner.straight_cross.gray": "Gray Cross", + "block.minecraft.banner.straight_cross.green": "Green Cross", + "block.minecraft.banner.straight_cross.light_blue": "Light Blue Cross", + "block.minecraft.banner.straight_cross.light_gray": "Light Gray Cross", + "block.minecraft.banner.straight_cross.lime": "Lime Cross", + "block.minecraft.banner.straight_cross.magenta": "Magenta Cross", + "block.minecraft.banner.straight_cross.orange": "Orange Cross", + "block.minecraft.banner.straight_cross.pink": "Pink Cross", + "block.minecraft.banner.straight_cross.purple": "Purple Cross", + "block.minecraft.banner.straight_cross.red": "Red Cross", + "block.minecraft.banner.straight_cross.white": "White Cross", + "block.minecraft.banner.straight_cross.yellow": "Yellow Cross", + "block.minecraft.banner.stripe_bottom.black": "Black Base", + "block.minecraft.banner.stripe_bottom.blue": "Blue Base", + "block.minecraft.banner.stripe_bottom.brown": "Brown Base", + "block.minecraft.banner.stripe_bottom.cyan": "Cyan Base", + "block.minecraft.banner.stripe_bottom.gray": "Gray Base", + "block.minecraft.banner.stripe_bottom.green": "Green Base", + "block.minecraft.banner.stripe_bottom.light_blue": "Light Blue Base", + "block.minecraft.banner.stripe_bottom.light_gray": "Light Gray Base", + "block.minecraft.banner.stripe_bottom.lime": "Lime Base", + "block.minecraft.banner.stripe_bottom.magenta": "Magenta Base", + "block.minecraft.banner.stripe_bottom.orange": "Orange Base", + "block.minecraft.banner.stripe_bottom.pink": "Pink Base", + "block.minecraft.banner.stripe_bottom.purple": "Purple Base", + "block.minecraft.banner.stripe_bottom.red": "Red Base", + "block.minecraft.banner.stripe_bottom.white": "White Base", + "block.minecraft.banner.stripe_bottom.yellow": "Yellow Base", + "block.minecraft.banner.stripe_center.black": "Black Pale", + "block.minecraft.banner.stripe_center.blue": "Blue Pale", + "block.minecraft.banner.stripe_center.brown": "Brown Pale", + "block.minecraft.banner.stripe_center.cyan": "Cyan Pale", + "block.minecraft.banner.stripe_center.gray": "Gray Pale", + "block.minecraft.banner.stripe_center.green": "Green Pale", + "block.minecraft.banner.stripe_center.light_blue": "Light Blue Pale", + "block.minecraft.banner.stripe_center.light_gray": "Light Gray Pale", + "block.minecraft.banner.stripe_center.lime": "Lime Pale", + "block.minecraft.banner.stripe_center.magenta": "Magenta Pale", + "block.minecraft.banner.stripe_center.orange": "Orange Pale", + "block.minecraft.banner.stripe_center.pink": "Pink Pale", + "block.minecraft.banner.stripe_center.purple": "Purple Pale", + "block.minecraft.banner.stripe_center.red": "Red Pale", + "block.minecraft.banner.stripe_center.white": "White Pale", + "block.minecraft.banner.stripe_center.yellow": "Yellow Pale", + "block.minecraft.banner.stripe_downleft.black": "Black Bend Sinister", + "block.minecraft.banner.stripe_downleft.blue": "Blue Bend Sinister", + "block.minecraft.banner.stripe_downleft.brown": "Brown Bend Sinister", + "block.minecraft.banner.stripe_downleft.cyan": "Cyan Bend Sinister", + "block.minecraft.banner.stripe_downleft.gray": "Gray Bend Sinister", + "block.minecraft.banner.stripe_downleft.green": "Green Bend Sinister", + "block.minecraft.banner.stripe_downleft.light_blue": "Light Blue Bend Sinister", + "block.minecraft.banner.stripe_downleft.light_gray": "Light Gray Bend Sinister", + "block.minecraft.banner.stripe_downleft.lime": "Lime Bend Sinister", + "block.minecraft.banner.stripe_downleft.magenta": "Magenta Bend Sinister", + "block.minecraft.banner.stripe_downleft.orange": "Orange Bend Sinister", + "block.minecraft.banner.stripe_downleft.pink": "Pink Bend Sinister", + "block.minecraft.banner.stripe_downleft.purple": "Purple Bend Sinister", + "block.minecraft.banner.stripe_downleft.red": "Red Bend Sinister", + "block.minecraft.banner.stripe_downleft.white": "White Bend Sinister", + "block.minecraft.banner.stripe_downleft.yellow": "Yellow Bend Sinister", + "block.minecraft.banner.stripe_downright.black": "Black Bend", + "block.minecraft.banner.stripe_downright.blue": "Blue Bend", + "block.minecraft.banner.stripe_downright.brown": "Brown Bend", + "block.minecraft.banner.stripe_downright.cyan": "Cyan Bend", + "block.minecraft.banner.stripe_downright.gray": "Gray Bend", + "block.minecraft.banner.stripe_downright.green": "Green Bend", + "block.minecraft.banner.stripe_downright.light_blue": "Light Blue Bend", + "block.minecraft.banner.stripe_downright.light_gray": "Light Gray Bend", + "block.minecraft.banner.stripe_downright.lime": "Lime Bend", + "block.minecraft.banner.stripe_downright.magenta": "Magenta Bend", + "block.minecraft.banner.stripe_downright.orange": "Orange Bend", + "block.minecraft.banner.stripe_downright.pink": "Pink Bend", + "block.minecraft.banner.stripe_downright.purple": "Purple Bend", + "block.minecraft.banner.stripe_downright.red": "Red Bend", + "block.minecraft.banner.stripe_downright.white": "White Bend", + "block.minecraft.banner.stripe_downright.yellow": "Yellow Bend", + "block.minecraft.banner.stripe_left.black": "Black Pale Dexter", + "block.minecraft.banner.stripe_left.blue": "Blue Pale Dexter", + "block.minecraft.banner.stripe_left.brown": "Brown Pale Dexter", + "block.minecraft.banner.stripe_left.cyan": "Cyan Pale Dexter", + "block.minecraft.banner.stripe_left.gray": "Gray Pale Dexter", + "block.minecraft.banner.stripe_left.green": "Green Pale Dexter", + "block.minecraft.banner.stripe_left.light_blue": "Light Blue Pale Dexter", + "block.minecraft.banner.stripe_left.light_gray": "Light Gray Pale Dexter", + "block.minecraft.banner.stripe_left.lime": "Lime Pale Dexter", + "block.minecraft.banner.stripe_left.magenta": "Magenta Pale Dexter", + "block.minecraft.banner.stripe_left.orange": "Orange Pale Dexter", + "block.minecraft.banner.stripe_left.pink": "Pink Pale Dexter", + "block.minecraft.banner.stripe_left.purple": "Purple Pale Dexter", + "block.minecraft.banner.stripe_left.red": "Red Pale Dexter", + "block.minecraft.banner.stripe_left.white": "White Pale Dexter", + "block.minecraft.banner.stripe_left.yellow": "Yellow Pale Dexter", + "block.minecraft.banner.stripe_middle.black": "Black Fess", + "block.minecraft.banner.stripe_middle.blue": "Blue Fess", + "block.minecraft.banner.stripe_middle.brown": "Brown Fess", + "block.minecraft.banner.stripe_middle.cyan": "Cyan Fess", + "block.minecraft.banner.stripe_middle.gray": "Gray Fess", + "block.minecraft.banner.stripe_middle.green": "Green Fess", + "block.minecraft.banner.stripe_middle.light_blue": "Light Blue Fess", + "block.minecraft.banner.stripe_middle.light_gray": "Light Gray Fess", + "block.minecraft.banner.stripe_middle.lime": "Lime Fess", + "block.minecraft.banner.stripe_middle.magenta": "Magenta Fess", + "block.minecraft.banner.stripe_middle.orange": "Orange Fess", + "block.minecraft.banner.stripe_middle.pink": "Pink Fess", + "block.minecraft.banner.stripe_middle.purple": "Purple Fess", + "block.minecraft.banner.stripe_middle.red": "Red Fess", + "block.minecraft.banner.stripe_middle.white": "White Fess", + "block.minecraft.banner.stripe_middle.yellow": "Yellow Fess", + "block.minecraft.banner.stripe_right.black": "Black Pale Sinister", + "block.minecraft.banner.stripe_right.blue": "Blue Pale Sinister", + "block.minecraft.banner.stripe_right.brown": "Brown Pale Sinister", + "block.minecraft.banner.stripe_right.cyan": "Cyan Pale Sinister", + "block.minecraft.banner.stripe_right.gray": "Gray Pale Sinister", + "block.minecraft.banner.stripe_right.green": "Green Pale Sinister", + "block.minecraft.banner.stripe_right.light_blue": "Light Blue Pale Sinister", + "block.minecraft.banner.stripe_right.light_gray": "Light Gray Pale Sinister", + "block.minecraft.banner.stripe_right.lime": "Lime Pale Sinister", + "block.minecraft.banner.stripe_right.magenta": "Magenta Pale Sinister", + "block.minecraft.banner.stripe_right.orange": "Orange Pale Sinister", + "block.minecraft.banner.stripe_right.pink": "Pink Pale Sinister", + "block.minecraft.banner.stripe_right.purple": "Purple Pale Sinister", + "block.minecraft.banner.stripe_right.red": "Red Pale Sinister", + "block.minecraft.banner.stripe_right.white": "White Pale Sinister", + "block.minecraft.banner.stripe_right.yellow": "Yellow Pale Sinister", + "block.minecraft.banner.stripe_top.black": "Black Chief", + "block.minecraft.banner.stripe_top.blue": "Blue Chief", + "block.minecraft.banner.stripe_top.brown": "Brown Chief", + "block.minecraft.banner.stripe_top.cyan": "Cyan Chief", + "block.minecraft.banner.stripe_top.gray": "Gray Chief", + "block.minecraft.banner.stripe_top.green": "Green Chief", + "block.minecraft.banner.stripe_top.light_blue": "Light Blue Chief", + "block.minecraft.banner.stripe_top.light_gray": "Light Gray Chief", + "block.minecraft.banner.stripe_top.lime": "Lime Chief", + "block.minecraft.banner.stripe_top.magenta": "Magenta Chief", + "block.minecraft.banner.stripe_top.orange": "Orange Chief", + "block.minecraft.banner.stripe_top.pink": "Pink Chief", + "block.minecraft.banner.stripe_top.purple": "Purple Chief", + "block.minecraft.banner.stripe_top.red": "Red Chief", + "block.minecraft.banner.stripe_top.white": "White Chief", + "block.minecraft.banner.stripe_top.yellow": "Yellow Chief", + "block.minecraft.banner.triangle_bottom.black": "Black Chevron", + "block.minecraft.banner.triangle_bottom.blue": "Blue Chevron", + "block.minecraft.banner.triangle_bottom.brown": "Brown Chevron", + "block.minecraft.banner.triangle_bottom.cyan": "Cyan Chevron", + "block.minecraft.banner.triangle_bottom.gray": "Gray Chevron", + "block.minecraft.banner.triangle_bottom.green": "Green Chevron", + "block.minecraft.banner.triangle_bottom.light_blue": "Light Blue Chevron", + "block.minecraft.banner.triangle_bottom.light_gray": "Light Gray Chevron", + "block.minecraft.banner.triangle_bottom.lime": "Lime Chevron", + "block.minecraft.banner.triangle_bottom.magenta": "Magenta Chevron", + "block.minecraft.banner.triangle_bottom.orange": "Orange Chevron", + "block.minecraft.banner.triangle_bottom.pink": "Pink Chevron", + "block.minecraft.banner.triangle_bottom.purple": "Purple Chevron", + "block.minecraft.banner.triangle_bottom.red": "Red Chevron", + "block.minecraft.banner.triangle_bottom.white": "White Chevron", + "block.minecraft.banner.triangle_bottom.yellow": "Yellow Chevron", + "block.minecraft.banner.triangle_top.black": "Black Inverted Chevron", + "block.minecraft.banner.triangle_top.blue": "Blue Inverted Chevron", + "block.minecraft.banner.triangle_top.brown": "Brown Inverted Chevron", + "block.minecraft.banner.triangle_top.cyan": "Cyan Inverted Chevron", + "block.minecraft.banner.triangle_top.gray": "Gray Inverted Chevron", + "block.minecraft.banner.triangle_top.green": "Green Inverted Chevron", + "block.minecraft.banner.triangle_top.light_blue": "Light Blue Inverted Chevron", + "block.minecraft.banner.triangle_top.light_gray": "Light Gray Inverted Chevron", + "block.minecraft.banner.triangle_top.lime": "Lime Inverted Chevron", + "block.minecraft.banner.triangle_top.magenta": "Magenta Inverted Chevron", + "block.minecraft.banner.triangle_top.orange": "Orange Inverted Chevron", + "block.minecraft.banner.triangle_top.pink": "Pink Inverted Chevron", + "block.minecraft.banner.triangle_top.purple": "Purple Inverted Chevron", + "block.minecraft.banner.triangle_top.red": "Red Inverted Chevron", + "block.minecraft.banner.triangle_top.white": "White Inverted Chevron", + "block.minecraft.banner.triangle_top.yellow": "Yellow Inverted Chevron", + "block.minecraft.banner.triangles_bottom.black": "Black Base Indented", + "block.minecraft.banner.triangles_bottom.blue": "Blue Base Indented", + "block.minecraft.banner.triangles_bottom.brown": "Brown Base Indented", + "block.minecraft.banner.triangles_bottom.cyan": "Cyan Base Indented", + "block.minecraft.banner.triangles_bottom.gray": "Gray Base Indented", + "block.minecraft.banner.triangles_bottom.green": "Green Base Indented", + "block.minecraft.banner.triangles_bottom.light_blue": "Light Blue Base Indented", + "block.minecraft.banner.triangles_bottom.light_gray": "Light Gray Base Indented", + "block.minecraft.banner.triangles_bottom.lime": "Lime Base Indented", + "block.minecraft.banner.triangles_bottom.magenta": "Magenta Base Indented", + "block.minecraft.banner.triangles_bottom.orange": "Orange Base Indented", + "block.minecraft.banner.triangles_bottom.pink": "Pink Base Indented", + "block.minecraft.banner.triangles_bottom.purple": "Purple Base Indented", + "block.minecraft.banner.triangles_bottom.red": "Red Base Indented", + "block.minecraft.banner.triangles_bottom.white": "White Base Indented", + "block.minecraft.banner.triangles_bottom.yellow": "Yellow Base Indented", + "block.minecraft.banner.triangles_top.black": "Black Chief Indented", + "block.minecraft.banner.triangles_top.blue": "Blue Chief Indented", + "block.minecraft.banner.triangles_top.brown": "Brown Chief Indented", + "block.minecraft.banner.triangles_top.cyan": "Cyan Chief Indented", + "block.minecraft.banner.triangles_top.gray": "Gray Chief Indented", + "block.minecraft.banner.triangles_top.green": "Green Chief Indented", + "block.minecraft.banner.triangles_top.light_blue": "Light Blue Chief Indented", + "block.minecraft.banner.triangles_top.light_gray": "Light Gray Chief Indented", + "block.minecraft.banner.triangles_top.lime": "Lime Chief Indented", + "block.minecraft.banner.triangles_top.magenta": "Magenta Chief Indented", + "block.minecraft.banner.triangles_top.orange": "Orange Chief Indented", + "block.minecraft.banner.triangles_top.pink": "Pink Chief Indented", + "block.minecraft.banner.triangles_top.purple": "Purple Chief Indented", + "block.minecraft.banner.triangles_top.red": "Red Chief Indented", + "block.minecraft.banner.triangles_top.white": "White Chief Indented", + "block.minecraft.banner.triangles_top.yellow": "Yellow Chief Indented", + "block.minecraft.barrel": "Barrel", + "block.minecraft.barrier": "Barrier", + "block.minecraft.basalt": "Basalt", + "block.minecraft.beacon": "Beacon", + "block.minecraft.beacon.primary": "Primary Power", + "block.minecraft.beacon.secondary": "Secondary Power", + "block.minecraft.bed.no_sleep": "You can sleep only at night or during thunderstorms", + "block.minecraft.bed.not_safe": "You may not rest now; there are monsters nearby", + "block.minecraft.bed.obstructed": "This bed is obstructed", + "block.minecraft.bed.occupied": "This bed is occupied", + "block.minecraft.bed.too_far_away": "You may not rest now; the bed is too far away", + "block.minecraft.bedrock": "Bedrock", + "block.minecraft.bee_nest": "Bee Nest", + "block.minecraft.beehive": "Beehive", + "block.minecraft.beetroots": "Beetroots", + "block.minecraft.bell": "Bell", + "block.minecraft.big_dripleaf": "Big Dripleaf", + "block.minecraft.big_dripleaf_stem": "Big Dripleaf Stem", + "block.minecraft.birch_button": "Birch Button", + "block.minecraft.birch_door": "Birch Door", + "block.minecraft.birch_fence": "Birch Fence", + "block.minecraft.birch_fence_gate": "Birch Fence Gate", + "block.minecraft.birch_hanging_sign": "Birch Hanging Sign", + "block.minecraft.birch_leaves": "Birch Leaves", + "block.minecraft.birch_log": "Birch Log", + "block.minecraft.birch_planks": "Birch Planks", + "block.minecraft.birch_pressure_plate": "Birch Pressure Plate", + "block.minecraft.birch_sapling": "Birch Sapling", + "block.minecraft.birch_sign": "Birch Sign", + "block.minecraft.birch_slab": "Birch Slab", + "block.minecraft.birch_stairs": "Birch Stairs", + "block.minecraft.birch_trapdoor": "Birch Trapdoor", + "block.minecraft.birch_wall_hanging_sign": "Birch Wall Hanging Sign", + "block.minecraft.birch_wall_sign": "Birch Wall Sign", + "block.minecraft.birch_wood": "Birch Wood", + "block.minecraft.black_banner": "Black Banner", + "block.minecraft.black_bed": "Black Bed", + "block.minecraft.black_candle": "Black Candle", + "block.minecraft.black_candle_cake": "Cake with Black Candle", + "block.minecraft.black_carpet": "Black Carpet", + "block.minecraft.black_concrete": "Black Concrete", + "block.minecraft.black_concrete_powder": "Black Concrete Powder", + "block.minecraft.black_glazed_terracotta": "Black Glazed Terracotta", + "block.minecraft.black_shulker_box": "Black Shulker Box", + "block.minecraft.black_stained_glass": "Black Stained Glass", + "block.minecraft.black_stained_glass_pane": "Black Stained Glass Pane", + "block.minecraft.black_terracotta": "Black Terracotta", + "block.minecraft.black_wool": "Black Wool", + "block.minecraft.blackstone": "Blackstone", + "block.minecraft.blackstone_slab": "Blackstone Slab", + "block.minecraft.blackstone_stairs": "Blackstone Stairs", + "block.minecraft.blackstone_wall": "Blackstone Wall", + "block.minecraft.blast_furnace": "Blast Furnace", + "block.minecraft.blue_banner": "Blue Banner", + "block.minecraft.blue_bed": "Blue Bed", + "block.minecraft.blue_candle": "Blue Candle", + "block.minecraft.blue_candle_cake": "Cake with Blue Candle", + "block.minecraft.blue_carpet": "Blue Carpet", + "block.minecraft.blue_concrete": "Blue Concrete", + "block.minecraft.blue_concrete_powder": "Blue Concrete Powder", + "block.minecraft.blue_glazed_terracotta": "Blue Glazed Terracotta", + "block.minecraft.blue_ice": "Blue Ice", + "block.minecraft.blue_orchid": "Blue Orchid", + "block.minecraft.blue_shulker_box": "Blue Shulker Box", + "block.minecraft.blue_stained_glass": "Blue Stained Glass", + "block.minecraft.blue_stained_glass_pane": "Blue Stained Glass Pane", + "block.minecraft.blue_terracotta": "Blue Terracotta", + "block.minecraft.blue_wool": "Blue Wool", + "block.minecraft.bone_block": "Bone Block", + "block.minecraft.bookshelf": "Bookshelf", + "block.minecraft.brain_coral": "Brain Coral", + "block.minecraft.brain_coral_block": "Brain Coral Block", + "block.minecraft.brain_coral_fan": "Brain Coral Fan", + "block.minecraft.brain_coral_wall_fan": "Brain Coral Wall Fan", + "block.minecraft.brewing_stand": "Brewing Stand", + "block.minecraft.brick_slab": "Brick Slab", + "block.minecraft.brick_stairs": "Brick Stairs", + "block.minecraft.brick_wall": "Brick Wall", + "block.minecraft.bricks": "Bricks", + "block.minecraft.brown_banner": "Brown Banner", + "block.minecraft.brown_bed": "Brown Bed", + "block.minecraft.brown_candle": "Brown Candle", + "block.minecraft.brown_candle_cake": "Cake with Brown Candle", + "block.minecraft.brown_carpet": "Brown Carpet", + "block.minecraft.brown_concrete": "Brown Concrete", + "block.minecraft.brown_concrete_powder": "Brown Concrete Powder", + "block.minecraft.brown_glazed_terracotta": "Brown Glazed Terracotta", + "block.minecraft.brown_mushroom": "Brown Mushroom", + "block.minecraft.brown_mushroom_block": "Brown Mushroom Block", + "block.minecraft.brown_shulker_box": "Brown Shulker Box", + "block.minecraft.brown_stained_glass": "Brown Stained Glass", + "block.minecraft.brown_stained_glass_pane": "Brown Stained Glass Pane", + "block.minecraft.brown_terracotta": "Brown Terracotta", + "block.minecraft.brown_wool": "Brown Wool", + "block.minecraft.bubble_column": "Bubble Column", + "block.minecraft.bubble_coral": "Bubble Coral", + "block.minecraft.bubble_coral_block": "Bubble Coral Block", + "block.minecraft.bubble_coral_fan": "Bubble Coral Fan", + "block.minecraft.bubble_coral_wall_fan": "Bubble Coral Wall Fan", + "block.minecraft.budding_amethyst": "Budding Amethyst", + "block.minecraft.bush": "Bush", + "block.minecraft.cactus": "Cactus", + "block.minecraft.cactus_flower": "Cactus Flower", + "block.minecraft.cake": "Cake", + "block.minecraft.calcite": "Calcite", + "block.minecraft.calibrated_sculk_sensor": "Calibrated Sculk Sensor", + "block.minecraft.campfire": "Campfire", + "block.minecraft.candle": "Candle", + "block.minecraft.candle_cake": "Cake with Candle", + "block.minecraft.carrots": "Carrots", + "block.minecraft.cartography_table": "Cartography Table", + "block.minecraft.carved_pumpkin": "Carved Pumpkin", + "block.minecraft.cauldron": "Cauldron", + "block.minecraft.cave_air": "Cave Air", + "block.minecraft.cave_vines": "Cave Vines", + "block.minecraft.cave_vines_plant": "Cave Vines Plant", + "block.minecraft.chain": "Chain", + "block.minecraft.chain_command_block": "Chain Command Block", + "block.minecraft.cherry_button": "Cherry Button", + "block.minecraft.cherry_door": "Cherry Door", + "block.minecraft.cherry_fence": "Cherry Fence", + "block.minecraft.cherry_fence_gate": "Cherry Fence Gate", + "block.minecraft.cherry_hanging_sign": "Cherry Hanging Sign", + "block.minecraft.cherry_leaves": "Cherry Leaves", + "block.minecraft.cherry_log": "Cherry Log", + "block.minecraft.cherry_planks": "Cherry Planks", + "block.minecraft.cherry_pressure_plate": "Cherry Pressure Plate", + "block.minecraft.cherry_sapling": "Cherry Sapling", + "block.minecraft.cherry_sign": "Cherry Sign", + "block.minecraft.cherry_slab": "Cherry Slab", + "block.minecraft.cherry_stairs": "Cherry Stairs", + "block.minecraft.cherry_trapdoor": "Cherry Trapdoor", + "block.minecraft.cherry_wall_hanging_sign": "Cherry Wall Hanging Sign", + "block.minecraft.cherry_wall_sign": "Cherry Wall Sign", + "block.minecraft.cherry_wood": "Cherry Wood", + "block.minecraft.chest": "Chest", + "block.minecraft.chipped_anvil": "Chipped Anvil", + "block.minecraft.chiseled_bookshelf": "Chiseled Bookshelf", + "block.minecraft.chiseled_copper": "Chiseled Copper", + "block.minecraft.chiseled_deepslate": "Chiseled Deepslate", + "block.minecraft.chiseled_nether_bricks": "Chiseled Nether Bricks", + "block.minecraft.chiseled_polished_blackstone": "Chiseled Polished Blackstone", + "block.minecraft.chiseled_quartz_block": "Chiseled Quartz Block", + "block.minecraft.chiseled_red_sandstone": "Chiseled Red Sandstone", + "block.minecraft.chiseled_resin_bricks": "Chiseled Resin Bricks", + "block.minecraft.chiseled_sandstone": "Chiseled Sandstone", + "block.minecraft.chiseled_stone_bricks": "Chiseled Stone Bricks", + "block.minecraft.chiseled_tuff": "Chiseled Tuff", + "block.minecraft.chiseled_tuff_bricks": "Chiseled Tuff Bricks", + "block.minecraft.chorus_flower": "Chorus Flower", + "block.minecraft.chorus_plant": "Chorus Plant", + "block.minecraft.clay": "Clay", + "block.minecraft.closed_eyeblossom": "Closed Eyeblossom", + "block.minecraft.coal_block": "Block of Coal", + "block.minecraft.coal_ore": "Coal Ore", + "block.minecraft.coarse_dirt": "Coarse Dirt", + "block.minecraft.cobbled_deepslate": "Cobbled Deepslate", + "block.minecraft.cobbled_deepslate_slab": "Cobbled Deepslate Slab", + "block.minecraft.cobbled_deepslate_stairs": "Cobbled Deepslate Stairs", + "block.minecraft.cobbled_deepslate_wall": "Cobbled Deepslate Wall", + "block.minecraft.cobblestone": "Cobblestone", + "block.minecraft.cobblestone_slab": "Cobblestone Slab", + "block.minecraft.cobblestone_stairs": "Cobblestone Stairs", + "block.minecraft.cobblestone_wall": "Cobblestone Wall", + "block.minecraft.cobweb": "Cobweb", + "block.minecraft.cocoa": "Cocoa", + "block.minecraft.command_block": "Command Block", + "block.minecraft.comparator": "Redstone Comparator", + "block.minecraft.composter": "Composter", + "block.minecraft.conduit": "Conduit", + "block.minecraft.copper_block": "Block of Copper", + "block.minecraft.copper_bulb": "Copper Bulb", + "block.minecraft.copper_door": "Copper Door", + "block.minecraft.copper_grate": "Copper Grate", + "block.minecraft.copper_ore": "Copper Ore", + "block.minecraft.copper_trapdoor": "Copper Trapdoor", + "block.minecraft.cornflower": "Cornflower", + "block.minecraft.cracked_deepslate_bricks": "Cracked Deepslate Bricks", + "block.minecraft.cracked_deepslate_tiles": "Cracked Deepslate Tiles", + "block.minecraft.cracked_nether_bricks": "Cracked Nether Bricks", + "block.minecraft.cracked_polished_blackstone_bricks": "Cracked Polished Blackstone Bricks", + "block.minecraft.cracked_stone_bricks": "Cracked Stone Bricks", + "block.minecraft.crafter": "Crafter", + "block.minecraft.crafting_table": "Crafting Table", + "block.minecraft.creaking_heart": "Creaking Heart", + "block.minecraft.creeper_head": "Creeper Head", + "block.minecraft.creeper_wall_head": "Creeper Wall Head", + "block.minecraft.crimson_button": "Crimson Button", + "block.minecraft.crimson_door": "Crimson Door", + "block.minecraft.crimson_fence": "Crimson Fence", + "block.minecraft.crimson_fence_gate": "Crimson Fence Gate", + "block.minecraft.crimson_fungus": "Crimson Fungus", + "block.minecraft.crimson_hanging_sign": "Crimson Hanging Sign", + "block.minecraft.crimson_hyphae": "Crimson Hyphae", + "block.minecraft.crimson_nylium": "Crimson Nylium", + "block.minecraft.crimson_planks": "Crimson Planks", + "block.minecraft.crimson_pressure_plate": "Crimson Pressure Plate", + "block.minecraft.crimson_roots": "Crimson Roots", + "block.minecraft.crimson_sign": "Crimson Sign", + "block.minecraft.crimson_slab": "Crimson Slab", + "block.minecraft.crimson_stairs": "Crimson Stairs", + "block.minecraft.crimson_stem": "Crimson Stem", + "block.minecraft.crimson_trapdoor": "Crimson Trapdoor", + "block.minecraft.crimson_wall_hanging_sign": "Crimson Wall Hanging Sign", + "block.minecraft.crimson_wall_sign": "Crimson Wall Sign", + "block.minecraft.crying_obsidian": "Crying Obsidian", + "block.minecraft.cut_copper": "Cut Copper", + "block.minecraft.cut_copper_slab": "Cut Copper Slab", + "block.minecraft.cut_copper_stairs": "Cut Copper Stairs", + "block.minecraft.cut_red_sandstone": "Cut Red Sandstone", + "block.minecraft.cut_red_sandstone_slab": "Cut Red Sandstone Slab", + "block.minecraft.cut_sandstone": "Cut Sandstone", + "block.minecraft.cut_sandstone_slab": "Cut Sandstone Slab", + "block.minecraft.cyan_banner": "Cyan Banner", + "block.minecraft.cyan_bed": "Cyan Bed", + "block.minecraft.cyan_candle": "Cyan Candle", + "block.minecraft.cyan_candle_cake": "Cake with Cyan Candle", + "block.minecraft.cyan_carpet": "Cyan Carpet", + "block.minecraft.cyan_concrete": "Cyan Concrete", + "block.minecraft.cyan_concrete_powder": "Cyan Concrete Powder", + "block.minecraft.cyan_glazed_terracotta": "Cyan Glazed Terracotta", + "block.minecraft.cyan_shulker_box": "Cyan Shulker Box", + "block.minecraft.cyan_stained_glass": "Cyan Stained Glass", + "block.minecraft.cyan_stained_glass_pane": "Cyan Stained Glass Pane", + "block.minecraft.cyan_terracotta": "Cyan Terracotta", + "block.minecraft.cyan_wool": "Cyan Wool", + "block.minecraft.damaged_anvil": "Damaged Anvil", + "block.minecraft.dandelion": "Dandelion", + "block.minecraft.dark_oak_button": "Dark Oak Button", + "block.minecraft.dark_oak_door": "Dark Oak Door", + "block.minecraft.dark_oak_fence": "Dark Oak Fence", + "block.minecraft.dark_oak_fence_gate": "Dark Oak Fence Gate", + "block.minecraft.dark_oak_hanging_sign": "Dark Oak Hanging Sign", + "block.minecraft.dark_oak_leaves": "Dark Oak Leaves", + "block.minecraft.dark_oak_log": "Dark Oak Log", + "block.minecraft.dark_oak_planks": "Dark Oak Planks", + "block.minecraft.dark_oak_pressure_plate": "Dark Oak Pressure Plate", + "block.minecraft.dark_oak_sapling": "Dark Oak Sapling", + "block.minecraft.dark_oak_sign": "Dark Oak Sign", + "block.minecraft.dark_oak_slab": "Dark Oak Slab", + "block.minecraft.dark_oak_stairs": "Dark Oak Stairs", + "block.minecraft.dark_oak_trapdoor": "Dark Oak Trapdoor", + "block.minecraft.dark_oak_wall_hanging_sign": "Dark Oak Wall Hanging Sign", + "block.minecraft.dark_oak_wall_sign": "Dark Oak Wall Sign", + "block.minecraft.dark_oak_wood": "Dark Oak Wood", + "block.minecraft.dark_prismarine": "Dark Prismarine", + "block.minecraft.dark_prismarine_slab": "Dark Prismarine Slab", + "block.minecraft.dark_prismarine_stairs": "Dark Prismarine Stairs", + "block.minecraft.daylight_detector": "Daylight Detector", + "block.minecraft.dead_brain_coral": "Dead Brain Coral", + "block.minecraft.dead_brain_coral_block": "Dead Brain Coral Block", + "block.minecraft.dead_brain_coral_fan": "Dead Brain Coral Fan", + "block.minecraft.dead_brain_coral_wall_fan": "Dead Brain Coral Wall Fan", + "block.minecraft.dead_bubble_coral": "Dead Bubble Coral", + "block.minecraft.dead_bubble_coral_block": "Dead Bubble Coral Block", + "block.minecraft.dead_bubble_coral_fan": "Dead Bubble Coral Fan", + "block.minecraft.dead_bubble_coral_wall_fan": "Dead Bubble Coral Wall Fan", + "block.minecraft.dead_bush": "Dead Bush", + "block.minecraft.dead_fire_coral": "Dead Fire Coral", + "block.minecraft.dead_fire_coral_block": "Dead Fire Coral Block", + "block.minecraft.dead_fire_coral_fan": "Dead Fire Coral Fan", + "block.minecraft.dead_fire_coral_wall_fan": "Dead Fire Coral Wall Fan", + "block.minecraft.dead_horn_coral": "Dead Horn Coral", + "block.minecraft.dead_horn_coral_block": "Dead Horn Coral Block", + "block.minecraft.dead_horn_coral_fan": "Dead Horn Coral Fan", + "block.minecraft.dead_horn_coral_wall_fan": "Dead Horn Coral Wall Fan", + "block.minecraft.dead_tube_coral": "Dead Tube Coral", + "block.minecraft.dead_tube_coral_block": "Dead Tube Coral Block", + "block.minecraft.dead_tube_coral_fan": "Dead Tube Coral Fan", + "block.minecraft.dead_tube_coral_wall_fan": "Dead Tube Coral Wall Fan", + "block.minecraft.decorated_pot": "Decorated Pot", + "block.minecraft.deepslate": "Deepslate", + "block.minecraft.deepslate_brick_slab": "Deepslate Brick Slab", + "block.minecraft.deepslate_brick_stairs": "Deepslate Brick Stairs", + "block.minecraft.deepslate_brick_wall": "Deepslate Brick Wall", + "block.minecraft.deepslate_bricks": "Deepslate Bricks", + "block.minecraft.deepslate_coal_ore": "Deepslate Coal Ore", + "block.minecraft.deepslate_copper_ore": "Deepslate Copper Ore", + "block.minecraft.deepslate_diamond_ore": "Deepslate Diamond Ore", + "block.minecraft.deepslate_emerald_ore": "Deepslate Emerald Ore", + "block.minecraft.deepslate_gold_ore": "Deepslate Gold Ore", + "block.minecraft.deepslate_iron_ore": "Deepslate Iron Ore", + "block.minecraft.deepslate_lapis_ore": "Deepslate Lapis Lazuli Ore", + "block.minecraft.deepslate_redstone_ore": "Deepslate Redstone Ore", + "block.minecraft.deepslate_tile_slab": "Deepslate Tile Slab", + "block.minecraft.deepslate_tile_stairs": "Deepslate Tile Stairs", + "block.minecraft.deepslate_tile_wall": "Deepslate Tile Wall", + "block.minecraft.deepslate_tiles": "Deepslate Tiles", + "block.minecraft.detector_rail": "Detector Rail", + "block.minecraft.diamond_block": "Block of Diamond", + "block.minecraft.diamond_ore": "Diamond Ore", + "block.minecraft.diorite": "Diorite", + "block.minecraft.diorite_slab": "Diorite Slab", + "block.minecraft.diorite_stairs": "Diorite Stairs", + "block.minecraft.diorite_wall": "Diorite Wall", + "block.minecraft.dirt": "Dirt", + "block.minecraft.dirt_path": "Dirt Path", + "block.minecraft.dispenser": "Dispenser", + "block.minecraft.dragon_egg": "Dragon Egg", + "block.minecraft.dragon_head": "Dragon Head", + "block.minecraft.dragon_wall_head": "Dragon Wall Head", + "block.minecraft.dried_ghast": "Dried Ghast", + "block.minecraft.dried_kelp_block": "Dried Kelp Block", + "block.minecraft.dripstone_block": "Dripstone Block", + "block.minecraft.dropper": "Dropper", + "block.minecraft.emerald_block": "Block of Emerald", + "block.minecraft.emerald_ore": "Emerald Ore", + "block.minecraft.enchanting_table": "Enchanting Table", + "block.minecraft.end_gateway": "End Gateway", + "block.minecraft.end_portal": "End Portal", + "block.minecraft.end_portal_frame": "End Portal Frame", + "block.minecraft.end_rod": "End Rod", + "block.minecraft.end_stone": "End Stone", + "block.minecraft.end_stone_brick_slab": "End Stone Brick Slab", + "block.minecraft.end_stone_brick_stairs": "End Stone Brick Stairs", + "block.minecraft.end_stone_brick_wall": "End Stone Brick Wall", + "block.minecraft.end_stone_bricks": "End Stone Bricks", + "block.minecraft.ender_chest": "Ender Chest", + "block.minecraft.exposed_chiseled_copper": "Exposed Chiseled Copper", + "block.minecraft.exposed_copper": "Exposed Copper", + "block.minecraft.exposed_copper_bulb": "Exposed Copper Bulb", + "block.minecraft.exposed_copper_door": "Exposed Copper Door", + "block.minecraft.exposed_copper_grate": "Exposed Copper Grate", + "block.minecraft.exposed_copper_trapdoor": "Exposed Copper Trapdoor", + "block.minecraft.exposed_cut_copper": "Exposed Cut Copper", + "block.minecraft.exposed_cut_copper_slab": "Exposed Cut Copper Slab", + "block.minecraft.exposed_cut_copper_stairs": "Exposed Cut Copper Stairs", + "block.minecraft.farmland": "Farmland", + "block.minecraft.fern": "Fern", + "block.minecraft.fire": "Fire", + "block.minecraft.fire_coral": "Fire Coral", + "block.minecraft.fire_coral_block": "Fire Coral Block", + "block.minecraft.fire_coral_fan": "Fire Coral Fan", + "block.minecraft.fire_coral_wall_fan": "Fire Coral Wall Fan", + "block.minecraft.firefly_bush": "Firefly Bush", + "block.minecraft.fletching_table": "Fletching Table", + "block.minecraft.flower_pot": "Flower Pot", + "block.minecraft.flowering_azalea": "Flowering Azalea", + "block.minecraft.flowering_azalea_leaves": "Flowering Azalea Leaves", + "block.minecraft.frogspawn": "Frogspawn", + "block.minecraft.frosted_ice": "Frosted Ice", + "block.minecraft.furnace": "Furnace", + "block.minecraft.gilded_blackstone": "Gilded Blackstone", + "block.minecraft.glass": "Glass", + "block.minecraft.glass_pane": "Glass Pane", + "block.minecraft.glow_lichen": "Glow Lichen", + "block.minecraft.glowstone": "Glowstone", + "block.minecraft.gold_block": "Block of Gold", + "block.minecraft.gold_ore": "Gold Ore", + "block.minecraft.granite": "Granite", + "block.minecraft.granite_slab": "Granite Slab", + "block.minecraft.granite_stairs": "Granite Stairs", + "block.minecraft.granite_wall": "Granite Wall", + "block.minecraft.grass": "Grass", + "block.minecraft.grass_block": "Grass Block", + "block.minecraft.gravel": "Gravel", + "block.minecraft.gray_banner": "Gray Banner", + "block.minecraft.gray_bed": "Gray Bed", + "block.minecraft.gray_candle": "Gray Candle", + "block.minecraft.gray_candle_cake": "Cake with Gray Candle", + "block.minecraft.gray_carpet": "Gray Carpet", + "block.minecraft.gray_concrete": "Gray Concrete", + "block.minecraft.gray_concrete_powder": "Gray Concrete Powder", + "block.minecraft.gray_glazed_terracotta": "Gray Glazed Terracotta", + "block.minecraft.gray_shulker_box": "Gray Shulker Box", + "block.minecraft.gray_stained_glass": "Gray Stained Glass", + "block.minecraft.gray_stained_glass_pane": "Gray Stained Glass Pane", + "block.minecraft.gray_terracotta": "Gray Terracotta", + "block.minecraft.gray_wool": "Gray Wool", + "block.minecraft.green_banner": "Green Banner", + "block.minecraft.green_bed": "Green Bed", + "block.minecraft.green_candle": "Green Candle", + "block.minecraft.green_candle_cake": "Cake with Green Candle", + "block.minecraft.green_carpet": "Green Carpet", + "block.minecraft.green_concrete": "Green Concrete", + "block.minecraft.green_concrete_powder": "Green Concrete Powder", + "block.minecraft.green_glazed_terracotta": "Green Glazed Terracotta", + "block.minecraft.green_shulker_box": "Green Shulker Box", + "block.minecraft.green_stained_glass": "Green Stained Glass", + "block.minecraft.green_stained_glass_pane": "Green Stained Glass Pane", + "block.minecraft.green_terracotta": "Green Terracotta", + "block.minecraft.green_wool": "Green Wool", + "block.minecraft.grindstone": "Grindstone", + "block.minecraft.hanging_roots": "Hanging Roots", + "block.minecraft.hay_block": "Hay Bale", + "block.minecraft.heavy_core": "Heavy Core", + "block.minecraft.heavy_weighted_pressure_plate": "Heavy Weighted Pressure Plate", + "block.minecraft.honey_block": "Honey Block", + "block.minecraft.honeycomb_block": "Honeycomb Block", + "block.minecraft.hopper": "Hopper", + "block.minecraft.horn_coral": "Horn Coral", + "block.minecraft.horn_coral_block": "Horn Coral Block", + "block.minecraft.horn_coral_fan": "Horn Coral Fan", + "block.minecraft.horn_coral_wall_fan": "Horn Coral Wall Fan", + "block.minecraft.ice": "Ice", + "block.minecraft.infested_chiseled_stone_bricks": "Infested Chiseled Stone Bricks", + "block.minecraft.infested_cobblestone": "Infested Cobblestone", + "block.minecraft.infested_cracked_stone_bricks": "Infested Cracked Stone Bricks", + "block.minecraft.infested_deepslate": "Infested Deepslate", + "block.minecraft.infested_mossy_stone_bricks": "Infested Mossy Stone Bricks", + "block.minecraft.infested_stone": "Infested Stone", + "block.minecraft.infested_stone_bricks": "Infested Stone Bricks", + "block.minecraft.iron_bars": "Iron Bars", + "block.minecraft.iron_block": "Block of Iron", + "block.minecraft.iron_door": "Iron Door", + "block.minecraft.iron_ore": "Iron Ore", + "block.minecraft.iron_trapdoor": "Iron Trapdoor", + "block.minecraft.jack_o_lantern": "Jack o'Lantern", + "block.minecraft.jigsaw": "Jigsaw Block", + "block.minecraft.jukebox": "Jukebox", + "block.minecraft.jungle_button": "Jungle Button", + "block.minecraft.jungle_door": "Jungle Door", + "block.minecraft.jungle_fence": "Jungle Fence", + "block.minecraft.jungle_fence_gate": "Jungle Fence Gate", + "block.minecraft.jungle_hanging_sign": "Jungle Hanging Sign", + "block.minecraft.jungle_leaves": "Jungle Leaves", + "block.minecraft.jungle_log": "Jungle Log", + "block.minecraft.jungle_planks": "Jungle Planks", + "block.minecraft.jungle_pressure_plate": "Jungle Pressure Plate", + "block.minecraft.jungle_sapling": "Jungle Sapling", + "block.minecraft.jungle_sign": "Jungle Sign", + "block.minecraft.jungle_slab": "Jungle Slab", + "block.minecraft.jungle_stairs": "Jungle Stairs", + "block.minecraft.jungle_trapdoor": "Jungle Trapdoor", + "block.minecraft.jungle_wall_hanging_sign": "Jungle Wall Hanging Sign", + "block.minecraft.jungle_wall_sign": "Jungle Wall Sign", + "block.minecraft.jungle_wood": "Jungle Wood", + "block.minecraft.kelp": "Kelp", + "block.minecraft.kelp_plant": "Kelp Plant", + "block.minecraft.ladder": "Ladder", + "block.minecraft.lantern": "Lantern", + "block.minecraft.lapis_block": "Block of Lapis Lazuli", + "block.minecraft.lapis_ore": "Lapis Lazuli Ore", + "block.minecraft.large_amethyst_bud": "Large Amethyst Bud", + "block.minecraft.large_fern": "Large Fern", + "block.minecraft.lava": "Lava", + "block.minecraft.lava_cauldron": "Lava Cauldron", + "block.minecraft.leaf_litter": "Leaf Litter", + "block.minecraft.lectern": "Lectern", + "block.minecraft.lever": "Lever", + "block.minecraft.light": "Light", + "block.minecraft.light_blue_banner": "Light Blue Banner", + "block.minecraft.light_blue_bed": "Light Blue Bed", + "block.minecraft.light_blue_candle": "Light Blue Candle", + "block.minecraft.light_blue_candle_cake": "Cake with Light Blue Candle", + "block.minecraft.light_blue_carpet": "Light Blue Carpet", + "block.minecraft.light_blue_concrete": "Light Blue Concrete", + "block.minecraft.light_blue_concrete_powder": "Light Blue Concrete Powder", + "block.minecraft.light_blue_glazed_terracotta": "Light Blue Glazed Terracotta", + "block.minecraft.light_blue_shulker_box": "Light Blue Shulker Box", + "block.minecraft.light_blue_stained_glass": "Light Blue Stained Glass", + "block.minecraft.light_blue_stained_glass_pane": "Light Blue Stained Glass Pane", + "block.minecraft.light_blue_terracotta": "Light Blue Terracotta", + "block.minecraft.light_blue_wool": "Light Blue Wool", + "block.minecraft.light_gray_banner": "Light Gray Banner", + "block.minecraft.light_gray_bed": "Light Gray Bed", + "block.minecraft.light_gray_candle": "Light Gray Candle", + "block.minecraft.light_gray_candle_cake": "Cake with Light Gray Candle", + "block.minecraft.light_gray_carpet": "Light Gray Carpet", + "block.minecraft.light_gray_concrete": "Light Gray Concrete", + "block.minecraft.light_gray_concrete_powder": "Light Gray Concrete Powder", + "block.minecraft.light_gray_glazed_terracotta": "Light Gray Glazed Terracotta", + "block.minecraft.light_gray_shulker_box": "Light Gray Shulker Box", + "block.minecraft.light_gray_stained_glass": "Light Gray Stained Glass", + "block.minecraft.light_gray_stained_glass_pane": "Light Gray Stained Glass Pane", + "block.minecraft.light_gray_terracotta": "Light Gray Terracotta", + "block.minecraft.light_gray_wool": "Light Gray Wool", + "block.minecraft.light_weighted_pressure_plate": "Light Weighted Pressure Plate", + "block.minecraft.lightning_rod": "Lightning Rod", + "block.minecraft.lilac": "Lilac", + "block.minecraft.lily_of_the_valley": "Lily of the Valley", + "block.minecraft.lily_pad": "Lily Pad", + "block.minecraft.lime_banner": "Lime Banner", + "block.minecraft.lime_bed": "Lime Bed", + "block.minecraft.lime_candle": "Lime Candle", + "block.minecraft.lime_candle_cake": "Cake with Lime Candle", + "block.minecraft.lime_carpet": "Lime Carpet", + "block.minecraft.lime_concrete": "Lime Concrete", + "block.minecraft.lime_concrete_powder": "Lime Concrete Powder", + "block.minecraft.lime_glazed_terracotta": "Lime Glazed Terracotta", + "block.minecraft.lime_shulker_box": "Lime Shulker Box", + "block.minecraft.lime_stained_glass": "Lime Stained Glass", + "block.minecraft.lime_stained_glass_pane": "Lime Stained Glass Pane", + "block.minecraft.lime_terracotta": "Lime Terracotta", + "block.minecraft.lime_wool": "Lime Wool", + "block.minecraft.lodestone": "Lodestone", + "block.minecraft.loom": "Loom", + "block.minecraft.magenta_banner": "Magenta Banner", + "block.minecraft.magenta_bed": "Magenta Bed", + "block.minecraft.magenta_candle": "Magenta Candle", + "block.minecraft.magenta_candle_cake": "Cake with Magenta Candle", + "block.minecraft.magenta_carpet": "Magenta Carpet", + "block.minecraft.magenta_concrete": "Magenta Concrete", + "block.minecraft.magenta_concrete_powder": "Magenta Concrete Powder", + "block.minecraft.magenta_glazed_terracotta": "Magenta Glazed Terracotta", + "block.minecraft.magenta_shulker_box": "Magenta Shulker Box", + "block.minecraft.magenta_stained_glass": "Magenta Stained Glass", + "block.minecraft.magenta_stained_glass_pane": "Magenta Stained Glass Pane", + "block.minecraft.magenta_terracotta": "Magenta Terracotta", + "block.minecraft.magenta_wool": "Magenta Wool", + "block.minecraft.magma_block": "Magma Block", + "block.minecraft.mangrove_button": "Mangrove Button", + "block.minecraft.mangrove_door": "Mangrove Door", + "block.minecraft.mangrove_fence": "Mangrove Fence", + "block.minecraft.mangrove_fence_gate": "Mangrove Fence Gate", + "block.minecraft.mangrove_hanging_sign": "Mangrove Hanging Sign", + "block.minecraft.mangrove_leaves": "Mangrove Leaves", + "block.minecraft.mangrove_log": "Mangrove Log", + "block.minecraft.mangrove_planks": "Mangrove Planks", + "block.minecraft.mangrove_pressure_plate": "Mangrove Pressure Plate", + "block.minecraft.mangrove_propagule": "Mangrove Propagule", + "block.minecraft.mangrove_roots": "Mangrove Roots", + "block.minecraft.mangrove_sign": "Mangrove Sign", + "block.minecraft.mangrove_slab": "Mangrove Slab", + "block.minecraft.mangrove_stairs": "Mangrove Stairs", + "block.minecraft.mangrove_trapdoor": "Mangrove Trapdoor", + "block.minecraft.mangrove_wall_hanging_sign": "Mangrove Wall Hanging Sign", + "block.minecraft.mangrove_wall_sign": "Mangrove Wall Sign", + "block.minecraft.mangrove_wood": "Mangrove Wood", + "block.minecraft.medium_amethyst_bud": "Medium Amethyst Bud", + "block.minecraft.melon": "Melon", + "block.minecraft.melon_stem": "Melon Stem", + "block.minecraft.moss_block": "Moss Block", + "block.minecraft.moss_carpet": "Moss Carpet", + "block.minecraft.mossy_cobblestone": "Mossy Cobblestone", + "block.minecraft.mossy_cobblestone_slab": "Mossy Cobblestone Slab", + "block.minecraft.mossy_cobblestone_stairs": "Mossy Cobblestone Stairs", + "block.minecraft.mossy_cobblestone_wall": "Mossy Cobblestone Wall", + "block.minecraft.mossy_stone_brick_slab": "Mossy Stone Brick Slab", + "block.minecraft.mossy_stone_brick_stairs": "Mossy Stone Brick Stairs", + "block.minecraft.mossy_stone_brick_wall": "Mossy Stone Brick Wall", + "block.minecraft.mossy_stone_bricks": "Mossy Stone Bricks", + "block.minecraft.moving_piston": "Moving Piston", + "block.minecraft.mud": "Mud", + "block.minecraft.mud_brick_slab": "Mud Brick Slab", + "block.minecraft.mud_brick_stairs": "Mud Brick Stairs", + "block.minecraft.mud_brick_wall": "Mud Brick Wall", + "block.minecraft.mud_bricks": "Mud Bricks", + "block.minecraft.muddy_mangrove_roots": "Muddy Mangrove Roots", + "block.minecraft.mushroom_stem": "Mushroom Stem", + "block.minecraft.mycelium": "Mycelium", + "block.minecraft.nether_brick_fence": "Nether Brick Fence", + "block.minecraft.nether_brick_slab": "Nether Brick Slab", + "block.minecraft.nether_brick_stairs": "Nether Brick Stairs", + "block.minecraft.nether_brick_wall": "Nether Brick Wall", + "block.minecraft.nether_bricks": "Nether Bricks", + "block.minecraft.nether_gold_ore": "Nether Gold Ore", + "block.minecraft.nether_portal": "Nether Portal", + "block.minecraft.nether_quartz_ore": "Nether Quartz Ore", + "block.minecraft.nether_sprouts": "Nether Sprouts", + "block.minecraft.nether_wart": "Nether Wart", + "block.minecraft.nether_wart_block": "Nether Wart Block", + "block.minecraft.netherite_block": "Block of Netherite", + "block.minecraft.netherrack": "Netherrack", + "block.minecraft.note_block": "Note Block", + "block.minecraft.oak_button": "Oak Button", + "block.minecraft.oak_door": "Oak Door", + "block.minecraft.oak_fence": "Oak Fence", + "block.minecraft.oak_fence_gate": "Oak Fence Gate", + "block.minecraft.oak_hanging_sign": "Oak Hanging Sign", + "block.minecraft.oak_leaves": "Oak Leaves", + "block.minecraft.oak_log": "Oak Log", + "block.minecraft.oak_planks": "Oak Planks", + "block.minecraft.oak_pressure_plate": "Oak Pressure Plate", + "block.minecraft.oak_sapling": "Oak Sapling", + "block.minecraft.oak_sign": "Oak Sign", + "block.minecraft.oak_slab": "Oak Slab", + "block.minecraft.oak_stairs": "Oak Stairs", + "block.minecraft.oak_trapdoor": "Oak Trapdoor", + "block.minecraft.oak_wall_hanging_sign": "Oak Wall Hanging Sign", + "block.minecraft.oak_wall_sign": "Oak Wall Sign", + "block.minecraft.oak_wood": "Oak Wood", + "block.minecraft.observer": "Observer", + "block.minecraft.obsidian": "Obsidian", + "block.minecraft.ochre_froglight": "Ochre Froglight", + "block.minecraft.ominous_banner": "Ominous Banner", + "block.minecraft.open_eyeblossom": "Open Eyeblossom", + "block.minecraft.orange_banner": "Orange Banner", + "block.minecraft.orange_bed": "Orange Bed", + "block.minecraft.orange_candle": "Orange Candle", + "block.minecraft.orange_candle_cake": "Cake with Orange Candle", + "block.minecraft.orange_carpet": "Orange Carpet", + "block.minecraft.orange_concrete": "Orange Concrete", + "block.minecraft.orange_concrete_powder": "Orange Concrete Powder", + "block.minecraft.orange_glazed_terracotta": "Orange Glazed Terracotta", + "block.minecraft.orange_shulker_box": "Orange Shulker Box", + "block.minecraft.orange_stained_glass": "Orange Stained Glass", + "block.minecraft.orange_stained_glass_pane": "Orange Stained Glass Pane", + "block.minecraft.orange_terracotta": "Orange Terracotta", + "block.minecraft.orange_tulip": "Orange Tulip", + "block.minecraft.orange_wool": "Orange Wool", + "block.minecraft.oxeye_daisy": "Oxeye Daisy", + "block.minecraft.oxidized_chiseled_copper": "Oxidized Chiseled Copper", + "block.minecraft.oxidized_copper": "Oxidized Copper", + "block.minecraft.oxidized_copper_bulb": "Oxidized Copper Bulb", + "block.minecraft.oxidized_copper_door": "Oxidized Copper Door", + "block.minecraft.oxidized_copper_grate": "Oxidized Copper Grate", + "block.minecraft.oxidized_copper_trapdoor": "Oxidized Copper Trapdoor", + "block.minecraft.oxidized_cut_copper": "Oxidized Cut Copper", + "block.minecraft.oxidized_cut_copper_slab": "Oxidized Cut Copper Slab", + "block.minecraft.oxidized_cut_copper_stairs": "Oxidized Cut Copper Stairs", + "block.minecraft.packed_ice": "Packed Ice", + "block.minecraft.packed_mud": "Packed Mud", + "block.minecraft.pale_hanging_moss": "Pale Hanging Moss", + "block.minecraft.pale_moss_block": "Pale Moss Block", + "block.minecraft.pale_moss_carpet": "Pale Moss Carpet", + "block.minecraft.pale_oak_button": "Pale Oak Button", + "block.minecraft.pale_oak_door": "Pale Oak Door", + "block.minecraft.pale_oak_fence": "Pale Oak Fence", + "block.minecraft.pale_oak_fence_gate": "Pale Oak Fence Gate", + "block.minecraft.pale_oak_hanging_sign": "Pale Oak Hanging Sign", + "block.minecraft.pale_oak_leaves": "Pale Oak Leaves", + "block.minecraft.pale_oak_log": "Pale Oak Log", + "block.minecraft.pale_oak_planks": "Pale Oak Planks", + "block.minecraft.pale_oak_pressure_plate": "Pale Oak Pressure Plate", + "block.minecraft.pale_oak_sapling": "Pale Oak Sapling", + "block.minecraft.pale_oak_sign": "Pale Oak Sign", + "block.minecraft.pale_oak_slab": "Pale Oak Slab", + "block.minecraft.pale_oak_stairs": "Pale Oak Stairs", + "block.minecraft.pale_oak_trapdoor": "Pale Oak Trapdoor", + "block.minecraft.pale_oak_wall_hanging_sign": "Pale Oak Wall Hanging Sign", + "block.minecraft.pale_oak_wall_sign": "Pale Oak Wall Sign", + "block.minecraft.pale_oak_wood": "Pale Oak Wood", + "block.minecraft.pearlescent_froglight": "Pearlescent Froglight", + "block.minecraft.peony": "Peony", + "block.minecraft.petrified_oak_slab": "Petrified Oak Slab", + "block.minecraft.piglin_head": "Piglin Head", + "block.minecraft.piglin_wall_head": "Piglin Wall Head", + "block.minecraft.pink_banner": "Pink Banner", + "block.minecraft.pink_bed": "Pink Bed", + "block.minecraft.pink_candle": "Pink Candle", + "block.minecraft.pink_candle_cake": "Cake with Pink Candle", + "block.minecraft.pink_carpet": "Pink Carpet", + "block.minecraft.pink_concrete": "Pink Concrete", + "block.minecraft.pink_concrete_powder": "Pink Concrete Powder", + "block.minecraft.pink_glazed_terracotta": "Pink Glazed Terracotta", + "block.minecraft.pink_petals": "Pink Petals", + "block.minecraft.pink_shulker_box": "Pink Shulker Box", + "block.minecraft.pink_stained_glass": "Pink Stained Glass", + "block.minecraft.pink_stained_glass_pane": "Pink Stained Glass Pane", + "block.minecraft.pink_terracotta": "Pink Terracotta", + "block.minecraft.pink_tulip": "Pink Tulip", + "block.minecraft.pink_wool": "Pink Wool", + "block.minecraft.piston": "Piston", + "block.minecraft.piston_head": "Piston Head", + "block.minecraft.pitcher_crop": "Pitcher Crop", + "block.minecraft.pitcher_plant": "Pitcher Plant", + "block.minecraft.player_head": "Player Head", + "block.minecraft.player_head.named": "%s's Head", + "block.minecraft.player_wall_head": "Player Wall Head", + "block.minecraft.podzol": "Podzol", + "block.minecraft.pointed_dripstone": "Pointed Dripstone", + "block.minecraft.polished_andesite": "Polished Andesite", + "block.minecraft.polished_andesite_slab": "Polished Andesite Slab", + "block.minecraft.polished_andesite_stairs": "Polished Andesite Stairs", + "block.minecraft.polished_basalt": "Polished Basalt", + "block.minecraft.polished_blackstone": "Polished Blackstone", + "block.minecraft.polished_blackstone_brick_slab": "Polished Blackstone Brick Slab", + "block.minecraft.polished_blackstone_brick_stairs": "Polished Blackstone Brick Stairs", + "block.minecraft.polished_blackstone_brick_wall": "Polished Blackstone Brick Wall", + "block.minecraft.polished_blackstone_bricks": "Polished Blackstone Bricks", + "block.minecraft.polished_blackstone_button": "Polished Blackstone Button", + "block.minecraft.polished_blackstone_pressure_plate": "Polished Blackstone Pressure Plate", + "block.minecraft.polished_blackstone_slab": "Polished Blackstone Slab", + "block.minecraft.polished_blackstone_stairs": "Polished Blackstone Stairs", + "block.minecraft.polished_blackstone_wall": "Polished Blackstone Wall", + "block.minecraft.polished_deepslate": "Polished Deepslate", + "block.minecraft.polished_deepslate_slab": "Polished Deepslate Slab", + "block.minecraft.polished_deepslate_stairs": "Polished Deepslate Stairs", + "block.minecraft.polished_deepslate_wall": "Polished Deepslate Wall", + "block.minecraft.polished_diorite": "Polished Diorite", + "block.minecraft.polished_diorite_slab": "Polished Diorite Slab", + "block.minecraft.polished_diorite_stairs": "Polished Diorite Stairs", + "block.minecraft.polished_granite": "Polished Granite", + "block.minecraft.polished_granite_slab": "Polished Granite Slab", + "block.minecraft.polished_granite_stairs": "Polished Granite Stairs", + "block.minecraft.polished_tuff": "Polished Tuff", + "block.minecraft.polished_tuff_slab": "Polished Tuff Slab", + "block.minecraft.polished_tuff_stairs": "Polished Tuff Stairs", + "block.minecraft.polished_tuff_wall": "Polished Tuff Wall", + "block.minecraft.poppy": "Poppy", + "block.minecraft.potatoes": "Potatoes", + "block.minecraft.potted_acacia_sapling": "Potted Acacia Sapling", + "block.minecraft.potted_allium": "Potted Allium", + "block.minecraft.potted_azalea_bush": "Potted Azalea", + "block.minecraft.potted_azure_bluet": "Potted Azure Bluet", + "block.minecraft.potted_bamboo": "Potted Bamboo", + "block.minecraft.potted_birch_sapling": "Potted Birch Sapling", + "block.minecraft.potted_blue_orchid": "Potted Blue Orchid", + "block.minecraft.potted_brown_mushroom": "Potted Brown Mushroom", + "block.minecraft.potted_cactus": "Potted Cactus", + "block.minecraft.potted_cherry_sapling": "Potted Cherry Sapling", + "block.minecraft.potted_closed_eyeblossom": "Potted Closed Eyeblossom", + "block.minecraft.potted_cornflower": "Potted Cornflower", + "block.minecraft.potted_crimson_fungus": "Potted Crimson Fungus", + "block.minecraft.potted_crimson_roots": "Potted Crimson Roots", + "block.minecraft.potted_dandelion": "Potted Dandelion", + "block.minecraft.potted_dark_oak_sapling": "Potted Dark Oak Sapling", + "block.minecraft.potted_dead_bush": "Potted Dead Bush", + "block.minecraft.potted_fern": "Potted Fern", + "block.minecraft.potted_flowering_azalea_bush": "Potted Flowering Azalea", + "block.minecraft.potted_jungle_sapling": "Potted Jungle Sapling", + "block.minecraft.potted_lily_of_the_valley": "Potted Lily of the Valley", + "block.minecraft.potted_mangrove_propagule": "Potted Mangrove Propagule", + "block.minecraft.potted_oak_sapling": "Potted Oak Sapling", + "block.minecraft.potted_open_eyeblossom": "Potted Open Eyeblossom", + "block.minecraft.potted_orange_tulip": "Potted Orange Tulip", + "block.minecraft.potted_oxeye_daisy": "Potted Oxeye Daisy", + "block.minecraft.potted_pale_oak_sapling": "Potted Pale Oak Sapling", + "block.minecraft.potted_pink_tulip": "Potted Pink Tulip", + "block.minecraft.potted_poppy": "Potted Poppy", + "block.minecraft.potted_red_mushroom": "Potted Red Mushroom", + "block.minecraft.potted_red_tulip": "Potted Red Tulip", + "block.minecraft.potted_spruce_sapling": "Potted Spruce Sapling", + "block.minecraft.potted_torchflower": "Potted Torchflower", + "block.minecraft.potted_warped_fungus": "Potted Warped Fungus", + "block.minecraft.potted_warped_roots": "Potted Warped Roots", + "block.minecraft.potted_white_tulip": "Potted White Tulip", + "block.minecraft.potted_wither_rose": "Potted Wither Rose", + "block.minecraft.powder_snow": "Powder Snow", + "block.minecraft.powder_snow_cauldron": "Powder Snow Cauldron", + "block.minecraft.powered_rail": "Powered Rail", + "block.minecraft.prismarine": "Prismarine", + "block.minecraft.prismarine_brick_slab": "Prismarine Brick Slab", + "block.minecraft.prismarine_brick_stairs": "Prismarine Brick Stairs", + "block.minecraft.prismarine_bricks": "Prismarine Bricks", + "block.minecraft.prismarine_slab": "Prismarine Slab", + "block.minecraft.prismarine_stairs": "Prismarine Stairs", + "block.minecraft.prismarine_wall": "Prismarine Wall", + "block.minecraft.pumpkin": "Pumpkin", + "block.minecraft.pumpkin_stem": "Pumpkin Stem", + "block.minecraft.purple_banner": "Purple Banner", + "block.minecraft.purple_bed": "Purple Bed", + "block.minecraft.purple_candle": "Purple Candle", + "block.minecraft.purple_candle_cake": "Cake with Purple Candle", + "block.minecraft.purple_carpet": "Purple Carpet", + "block.minecraft.purple_concrete": "Purple Concrete", + "block.minecraft.purple_concrete_powder": "Purple Concrete Powder", + "block.minecraft.purple_glazed_terracotta": "Purple Glazed Terracotta", + "block.minecraft.purple_shulker_box": "Purple Shulker Box", + "block.minecraft.purple_stained_glass": "Purple Stained Glass", + "block.minecraft.purple_stained_glass_pane": "Purple Stained Glass Pane", + "block.minecraft.purple_terracotta": "Purple Terracotta", + "block.minecraft.purple_wool": "Purple Wool", + "block.minecraft.purpur_block": "Purpur Block", + "block.minecraft.purpur_pillar": "Purpur Pillar", + "block.minecraft.purpur_slab": "Purpur Slab", + "block.minecraft.purpur_stairs": "Purpur Stairs", + "block.minecraft.quartz_block": "Block of Quartz", + "block.minecraft.quartz_bricks": "Quartz Bricks", + "block.minecraft.quartz_pillar": "Quartz Pillar", + "block.minecraft.quartz_slab": "Quartz Slab", + "block.minecraft.quartz_stairs": "Quartz Stairs", + "block.minecraft.rail": "Rail", + "block.minecraft.raw_copper_block": "Block of Raw Copper", + "block.minecraft.raw_gold_block": "Block of Raw Gold", + "block.minecraft.raw_iron_block": "Block of Raw Iron", + "block.minecraft.red_banner": "Red Banner", + "block.minecraft.red_bed": "Red Bed", + "block.minecraft.red_candle": "Red Candle", + "block.minecraft.red_candle_cake": "Cake with Red Candle", + "block.minecraft.red_carpet": "Red Carpet", + "block.minecraft.red_concrete": "Red Concrete", + "block.minecraft.red_concrete_powder": "Red Concrete Powder", + "block.minecraft.red_glazed_terracotta": "Red Glazed Terracotta", + "block.minecraft.red_mushroom": "Red Mushroom", + "block.minecraft.red_mushroom_block": "Red Mushroom Block", + "block.minecraft.red_nether_brick_slab": "Red Nether Brick Slab", + "block.minecraft.red_nether_brick_stairs": "Red Nether Brick Stairs", + "block.minecraft.red_nether_brick_wall": "Red Nether Brick Wall", + "block.minecraft.red_nether_bricks": "Red Nether Bricks", + "block.minecraft.red_sand": "Red Sand", + "block.minecraft.red_sandstone": "Red Sandstone", + "block.minecraft.red_sandstone_slab": "Red Sandstone Slab", + "block.minecraft.red_sandstone_stairs": "Red Sandstone Stairs", + "block.minecraft.red_sandstone_wall": "Red Sandstone Wall", + "block.minecraft.red_shulker_box": "Red Shulker Box", + "block.minecraft.red_stained_glass": "Red Stained Glass", + "block.minecraft.red_stained_glass_pane": "Red Stained Glass Pane", + "block.minecraft.red_terracotta": "Red Terracotta", + "block.minecraft.red_tulip": "Red Tulip", + "block.minecraft.red_wool": "Red Wool", + "block.minecraft.redstone_block": "Block of Redstone", + "block.minecraft.redstone_lamp": "Redstone Lamp", + "block.minecraft.redstone_ore": "Redstone Ore", + "block.minecraft.redstone_torch": "Redstone Torch", + "block.minecraft.redstone_wall_torch": "Redstone Wall Torch", + "block.minecraft.redstone_wire": "Redstone Wire", + "block.minecraft.reinforced_deepslate": "Reinforced Deepslate", + "block.minecraft.repeater": "Redstone Repeater", + "block.minecraft.repeating_command_block": "Repeating Command Block", + "block.minecraft.resin_block": "Block of Resin", + "block.minecraft.resin_brick_slab": "Resin Brick Slab", + "block.minecraft.resin_brick_stairs": "Resin Brick Stairs", + "block.minecraft.resin_brick_wall": "Resin Brick Wall", + "block.minecraft.resin_bricks": "Resin Bricks", + "block.minecraft.resin_clump": "Resin Clump", + "block.minecraft.respawn_anchor": "Respawn Anchor", + "block.minecraft.rooted_dirt": "Rooted Dirt", + "block.minecraft.rose_bush": "Rose Bush", + "block.minecraft.sand": "Sand", + "block.minecraft.sandstone": "Sandstone", + "block.minecraft.sandstone_slab": "Sandstone Slab", + "block.minecraft.sandstone_stairs": "Sandstone Stairs", + "block.minecraft.sandstone_wall": "Sandstone Wall", + "block.minecraft.scaffolding": "Scaffolding", + "block.minecraft.sculk": "Sculk", + "block.minecraft.sculk_catalyst": "Sculk Catalyst", + "block.minecraft.sculk_sensor": "Sculk Sensor", + "block.minecraft.sculk_shrieker": "Sculk Shrieker", + "block.minecraft.sculk_vein": "Sculk Vein", + "block.minecraft.sea_lantern": "Sea Lantern", + "block.minecraft.sea_pickle": "Sea Pickle", + "block.minecraft.seagrass": "Seagrass", + "block.minecraft.set_spawn": "Respawn point set", + "block.minecraft.short_dry_grass": "Short Dry Grass", + "block.minecraft.short_grass": "Short Grass", + "block.minecraft.shroomlight": "Shroomlight", + "block.minecraft.shulker_box": "Shulker Box", + "block.minecraft.skeleton_skull": "Skeleton Skull", + "block.minecraft.skeleton_wall_skull": "Skeleton Wall Skull", + "block.minecraft.slime_block": "Slime Block", + "block.minecraft.small_amethyst_bud": "Small Amethyst Bud", + "block.minecraft.small_dripleaf": "Small Dripleaf", + "block.minecraft.smithing_table": "Smithing Table", + "block.minecraft.smoker": "Smoker", + "block.minecraft.smooth_basalt": "Smooth Basalt", + "block.minecraft.smooth_quartz": "Smooth Quartz Block", + "block.minecraft.smooth_quartz_slab": "Smooth Quartz Slab", + "block.minecraft.smooth_quartz_stairs": "Smooth Quartz Stairs", + "block.minecraft.smooth_red_sandstone": "Smooth Red Sandstone", + "block.minecraft.smooth_red_sandstone_slab": "Smooth Red Sandstone Slab", + "block.minecraft.smooth_red_sandstone_stairs": "Smooth Red Sandstone Stairs", + "block.minecraft.smooth_sandstone": "Smooth Sandstone", + "block.minecraft.smooth_sandstone_slab": "Smooth Sandstone Slab", + "block.minecraft.smooth_sandstone_stairs": "Smooth Sandstone Stairs", + "block.minecraft.smooth_stone": "Smooth Stone", + "block.minecraft.smooth_stone_slab": "Smooth Stone Slab", + "block.minecraft.sniffer_egg": "Sniffer Egg", + "block.minecraft.snow": "Snow", + "block.minecraft.snow_block": "Snow Block", + "block.minecraft.soul_campfire": "Soul Campfire", + "block.minecraft.soul_fire": "Soul Fire", + "block.minecraft.soul_lantern": "Soul Lantern", + "block.minecraft.soul_sand": "Soul Sand", + "block.minecraft.soul_soil": "Soul Soil", + "block.minecraft.soul_torch": "Soul Torch", + "block.minecraft.soul_wall_torch": "Soul Wall Torch", + "block.minecraft.spawn.not_valid": "You have no home bed or charged respawn anchor, or it was obstructed", + "block.minecraft.spawner": "Monster Spawner", + "block.minecraft.spawner.desc1": "Interact with Spawn Egg:", + "block.minecraft.spawner.desc2": "Sets Mob Type", + "block.minecraft.sponge": "Sponge", + "block.minecraft.spore_blossom": "Spore Blossom", + "block.minecraft.spruce_button": "Spruce Button", + "block.minecraft.spruce_door": "Spruce Door", + "block.minecraft.spruce_fence": "Spruce Fence", + "block.minecraft.spruce_fence_gate": "Spruce Fence Gate", + "block.minecraft.spruce_hanging_sign": "Spruce Hanging Sign", + "block.minecraft.spruce_leaves": "Spruce Leaves", + "block.minecraft.spruce_log": "Spruce Log", + "block.minecraft.spruce_planks": "Spruce Planks", + "block.minecraft.spruce_pressure_plate": "Spruce Pressure Plate", + "block.minecraft.spruce_sapling": "Spruce Sapling", + "block.minecraft.spruce_sign": "Spruce Sign", + "block.minecraft.spruce_slab": "Spruce Slab", + "block.minecraft.spruce_stairs": "Spruce Stairs", + "block.minecraft.spruce_trapdoor": "Spruce Trapdoor", + "block.minecraft.spruce_wall_hanging_sign": "Spruce Wall Hanging Sign", + "block.minecraft.spruce_wall_sign": "Spruce Wall Sign", + "block.minecraft.spruce_wood": "Spruce Wood", + "block.minecraft.sticky_piston": "Sticky Piston", + "block.minecraft.stone": "Stone", + "block.minecraft.stone_brick_slab": "Stone Brick Slab", + "block.minecraft.stone_brick_stairs": "Stone Brick Stairs", + "block.minecraft.stone_brick_wall": "Stone Brick Wall", + "block.minecraft.stone_bricks": "Stone Bricks", + "block.minecraft.stone_button": "Stone Button", + "block.minecraft.stone_pressure_plate": "Stone Pressure Plate", + "block.minecraft.stone_slab": "Stone Slab", + "block.minecraft.stone_stairs": "Stone Stairs", + "block.minecraft.stonecutter": "Stonecutter", + "block.minecraft.stripped_acacia_log": "Stripped Acacia Log", + "block.minecraft.stripped_acacia_wood": "Stripped Acacia Wood", + "block.minecraft.stripped_bamboo_block": "Block of Stripped Bamboo", + "block.minecraft.stripped_birch_log": "Stripped Birch Log", + "block.minecraft.stripped_birch_wood": "Stripped Birch Wood", + "block.minecraft.stripped_cherry_log": "Stripped Cherry Log", + "block.minecraft.stripped_cherry_wood": "Stripped Cherry Wood", + "block.minecraft.stripped_crimson_hyphae": "Stripped Crimson Hyphae", + "block.minecraft.stripped_crimson_stem": "Stripped Crimson Stem", + "block.minecraft.stripped_dark_oak_log": "Stripped Dark Oak Log", + "block.minecraft.stripped_dark_oak_wood": "Stripped Dark Oak Wood", + "block.minecraft.stripped_jungle_log": "Stripped Jungle Log", + "block.minecraft.stripped_jungle_wood": "Stripped Jungle Wood", + "block.minecraft.stripped_mangrove_log": "Stripped Mangrove Log", + "block.minecraft.stripped_mangrove_wood": "Stripped Mangrove Wood", + "block.minecraft.stripped_oak_log": "Stripped Oak Log", + "block.minecraft.stripped_oak_wood": "Stripped Oak Wood", + "block.minecraft.stripped_pale_oak_log": "Stripped Pale Oak Log", + "block.minecraft.stripped_pale_oak_wood": "Stripped Pale Oak Wood", + "block.minecraft.stripped_spruce_log": "Stripped Spruce Log", + "block.minecraft.stripped_spruce_wood": "Stripped Spruce Wood", + "block.minecraft.stripped_warped_hyphae": "Stripped Warped Hyphae", + "block.minecraft.stripped_warped_stem": "Stripped Warped Stem", + "block.minecraft.structure_block": "Structure Block", + "block.minecraft.structure_void": "Structure Void", + "block.minecraft.sugar_cane": "Sugar Cane", + "block.minecraft.sunflower": "Sunflower", + "block.minecraft.suspicious_gravel": "Suspicious Gravel", + "block.minecraft.suspicious_sand": "Suspicious Sand", + "block.minecraft.sweet_berry_bush": "Sweet Berry Bush", + "block.minecraft.tall_dry_grass": "Tall Dry Grass", + "block.minecraft.tall_grass": "Tall Grass", + "block.minecraft.tall_seagrass": "Tall Seagrass", + "block.minecraft.target": "Target", + "block.minecraft.terracotta": "Terracotta", + "block.minecraft.test_block": "Test Block", + "block.minecraft.test_instance_block": "Test Instance Block", + "block.minecraft.tinted_glass": "Tinted Glass", + "block.minecraft.tnt": "TNT", + "block.minecraft.tnt.disabled": "TNT explosions are disabled", + "block.minecraft.torch": "Torch", + "block.minecraft.torchflower": "Torchflower", + "block.minecraft.torchflower_crop": "Torchflower Crop", + "block.minecraft.trapped_chest": "Trapped Chest", + "block.minecraft.trial_spawner": "Trial Spawner", + "block.minecraft.tripwire": "Tripwire", + "block.minecraft.tripwire_hook": "Tripwire Hook", + "block.minecraft.tube_coral": "Tube Coral", + "block.minecraft.tube_coral_block": "Tube Coral Block", + "block.minecraft.tube_coral_fan": "Tube Coral Fan", + "block.minecraft.tube_coral_wall_fan": "Tube Coral Wall Fan", + "block.minecraft.tuff": "Tuff", + "block.minecraft.tuff_brick_slab": "Tuff Brick Slab", + "block.minecraft.tuff_brick_stairs": "Tuff Brick Stairs", + "block.minecraft.tuff_brick_wall": "Tuff Brick Wall", + "block.minecraft.tuff_bricks": "Tuff Bricks", + "block.minecraft.tuff_slab": "Tuff Slab", + "block.minecraft.tuff_stairs": "Tuff Stairs", + "block.minecraft.tuff_wall": "Tuff Wall", + "block.minecraft.turtle_egg": "Turtle Egg", + "block.minecraft.twisting_vines": "Twisting Vines", + "block.minecraft.twisting_vines_plant": "Twisting Vines Plant", + "block.minecraft.vault": "Vault", + "block.minecraft.verdant_froglight": "Verdant Froglight", + "block.minecraft.vine": "Vines", + "block.minecraft.void_air": "Void Air", + "block.minecraft.wall_torch": "Wall Torch", + "block.minecraft.warped_button": "Warped Button", + "block.minecraft.warped_door": "Warped Door", + "block.minecraft.warped_fence": "Warped Fence", + "block.minecraft.warped_fence_gate": "Warped Fence Gate", + "block.minecraft.warped_fungus": "Warped Fungus", + "block.minecraft.warped_hanging_sign": "Warped Hanging Sign", + "block.minecraft.warped_hyphae": "Warped Hyphae", + "block.minecraft.warped_nylium": "Warped Nylium", + "block.minecraft.warped_planks": "Warped Planks", + "block.minecraft.warped_pressure_plate": "Warped Pressure Plate", + "block.minecraft.warped_roots": "Warped Roots", + "block.minecraft.warped_sign": "Warped Sign", + "block.minecraft.warped_slab": "Warped Slab", + "block.minecraft.warped_stairs": "Warped Stairs", + "block.minecraft.warped_stem": "Warped Stem", + "block.minecraft.warped_trapdoor": "Warped Trapdoor", + "block.minecraft.warped_wall_hanging_sign": "Warped Wall Hanging Sign", + "block.minecraft.warped_wall_sign": "Warped Wall Sign", + "block.minecraft.warped_wart_block": "Warped Wart Block", + "block.minecraft.water": "Water", + "block.minecraft.water_cauldron": "Water Cauldron", + "block.minecraft.waxed_chiseled_copper": "Waxed Chiseled Copper", + "block.minecraft.waxed_copper_block": "Waxed Block of Copper", + "block.minecraft.waxed_copper_bulb": "Waxed Copper Bulb", + "block.minecraft.waxed_copper_door": "Waxed Copper Door", + "block.minecraft.waxed_copper_grate": "Waxed Copper Grate", + "block.minecraft.waxed_copper_trapdoor": "Waxed Copper Trapdoor", + "block.minecraft.waxed_cut_copper": "Waxed Cut Copper", + "block.minecraft.waxed_cut_copper_slab": "Waxed Cut Copper Slab", + "block.minecraft.waxed_cut_copper_stairs": "Waxed Cut Copper Stairs", + "block.minecraft.waxed_exposed_chiseled_copper": "Waxed Exposed Chiseled Copper", + "block.minecraft.waxed_exposed_copper": "Waxed Exposed Copper", + "block.minecraft.waxed_exposed_copper_bulb": "Waxed Exposed Copper Bulb", + "block.minecraft.waxed_exposed_copper_door": "Waxed Exposed Copper Door", + "block.minecraft.waxed_exposed_copper_grate": "Waxed Exposed Copper Grate", + "block.minecraft.waxed_exposed_copper_trapdoor": "Waxed Exposed Copper Trapdoor", + "block.minecraft.waxed_exposed_cut_copper": "Waxed Exposed Cut Copper", + "block.minecraft.waxed_exposed_cut_copper_slab": "Waxed Exposed Cut Copper Slab", + "block.minecraft.waxed_exposed_cut_copper_stairs": "Waxed Exposed Cut Copper Stairs", + "block.minecraft.waxed_oxidized_chiseled_copper": "Waxed Oxidized Chiseled Copper", + "block.minecraft.waxed_oxidized_copper": "Waxed Oxidized Copper", + "block.minecraft.waxed_oxidized_copper_bulb": "Waxed Oxidized Copper Bulb", + "block.minecraft.waxed_oxidized_copper_door": "Waxed Oxidized Copper Door", + "block.minecraft.waxed_oxidized_copper_grate": "Waxed Oxidized Copper Grate", + "block.minecraft.waxed_oxidized_copper_trapdoor": "Waxed Oxidized Copper Trapdoor", + "block.minecraft.waxed_oxidized_cut_copper": "Waxed Oxidized Cut Copper", + "block.minecraft.waxed_oxidized_cut_copper_slab": "Waxed Oxidized Cut Copper Slab", + "block.minecraft.waxed_oxidized_cut_copper_stairs": "Waxed Oxidized Cut Copper Stairs", + "block.minecraft.waxed_weathered_chiseled_copper": "Waxed Weathered Chiseled Copper", + "block.minecraft.waxed_weathered_copper": "Waxed Weathered Copper", + "block.minecraft.waxed_weathered_copper_bulb": "Waxed Weathered Copper Bulb", + "block.minecraft.waxed_weathered_copper_door": "Waxed Weathered Copper Door", + "block.minecraft.waxed_weathered_copper_grate": "Waxed Weathered Copper Grate", + "block.minecraft.waxed_weathered_copper_trapdoor": "Waxed Weathered Copper Trapdoor", + "block.minecraft.waxed_weathered_cut_copper": "Waxed Weathered Cut Copper", + "block.minecraft.waxed_weathered_cut_copper_slab": "Waxed Weathered Cut Copper Slab", + "block.minecraft.waxed_weathered_cut_copper_stairs": "Waxed Weathered Cut Copper Stairs", + "block.minecraft.weathered_chiseled_copper": "Weathered Chiseled Copper", + "block.minecraft.weathered_copper": "Weathered Copper", + "block.minecraft.weathered_copper_bulb": "Weathered Copper Bulb", + "block.minecraft.weathered_copper_door": "Weathered Copper Door", + "block.minecraft.weathered_copper_grate": "Weathered Copper Grate", + "block.minecraft.weathered_copper_trapdoor": "Weathered Copper Trapdoor", + "block.minecraft.weathered_cut_copper": "Weathered Cut Copper", + "block.minecraft.weathered_cut_copper_slab": "Weathered Cut Copper Slab", + "block.minecraft.weathered_cut_copper_stairs": "Weathered Cut Copper Stairs", + "block.minecraft.weeping_vines": "Weeping Vines", + "block.minecraft.weeping_vines_plant": "Weeping Vines Plant", + "block.minecraft.wet_sponge": "Wet Sponge", + "block.minecraft.wheat": "Wheat Crops", + "block.minecraft.white_banner": "White Banner", + "block.minecraft.white_bed": "White Bed", + "block.minecraft.white_candle": "White Candle", + "block.minecraft.white_candle_cake": "Cake with White Candle", + "block.minecraft.white_carpet": "White Carpet", + "block.minecraft.white_concrete": "White Concrete", + "block.minecraft.white_concrete_powder": "White Concrete Powder", + "block.minecraft.white_glazed_terracotta": "White Glazed Terracotta", + "block.minecraft.white_shulker_box": "White Shulker Box", + "block.minecraft.white_stained_glass": "White Stained Glass", + "block.minecraft.white_stained_glass_pane": "White Stained Glass Pane", + "block.minecraft.white_terracotta": "White Terracotta", + "block.minecraft.white_tulip": "White Tulip", + "block.minecraft.white_wool": "White Wool", + "block.minecraft.wildflowers": "Wildflowers", + "block.minecraft.wither_rose": "Wither Rose", + "block.minecraft.wither_skeleton_skull": "Wither Skeleton Skull", + "block.minecraft.wither_skeleton_wall_skull": "Wither Skeleton Wall Skull", + "block.minecraft.yellow_banner": "Yellow Banner", + "block.minecraft.yellow_bed": "Yellow Bed", + "block.minecraft.yellow_candle": "Yellow Candle", + "block.minecraft.yellow_candle_cake": "Cake with Yellow Candle", + "block.minecraft.yellow_carpet": "Yellow Carpet", + "block.minecraft.yellow_concrete": "Yellow Concrete", + "block.minecraft.yellow_concrete_powder": "Yellow Concrete Powder", + "block.minecraft.yellow_glazed_terracotta": "Yellow Glazed Terracotta", + "block.minecraft.yellow_shulker_box": "Yellow Shulker Box", + "block.minecraft.yellow_stained_glass": "Yellow Stained Glass", + "block.minecraft.yellow_stained_glass_pane": "Yellow Stained Glass Pane", + "block.minecraft.yellow_terracotta": "Yellow Terracotta", + "block.minecraft.yellow_wool": "Yellow Wool", + "block.minecraft.zombie_head": "Zombie Head", + "block.minecraft.zombie_wall_head": "Zombie Wall Head", + "book.byAuthor": "by %1$s", + "book.edit.title": "Book Edit Screen", + "book.editTitle": "Enter Book Title:", + "book.finalizeButton": "Sign and Close", + "book.finalizeWarning": "Note! When you sign the book, it will no longer be editable.", + "book.generation.0": "Original", + "book.generation.1": "Copy of original", + "book.generation.2": "Copy of a copy", + "book.generation.3": "Tattered", + "book.invalid.tag": "* Invalid book tag *", + "book.page_button.next": "Next Page", + "book.page_button.previous": "Previous Page", + "book.pageIndicator": "Page %1$s of %2$s", + "book.sign.title": "Book Sign Screen", + "book.sign.titlebox": "Title", + "book.signButton": "Sign", + "book.view.title": "Book View Screen", + "build.tooHigh": "Height limit for building is %s", + "chat_screen.message": "Message to send: %s", + "chat_screen.title": "Chat screen", + "chat_screen.usage": "Input message and press Enter to send", + "chat.cannotSend": "Cannot send chat message", + "chat.coordinates": "%s, %s, %s", + "chat.coordinates.tooltip": "Click to teleport", + "chat.copy": "Copy to Clipboard", + "chat.copy.click": "Click to Copy to Clipboard", + "chat.deleted_marker": "This chat message has been deleted by the server.", + "chat.disabled.chain_broken": "Chat disabled due to broken chain. Please try reconnecting.", + "chat.disabled.expiredProfileKey": "Chat disabled due to expired profile public key. Please try reconnecting.", + "chat.disabled.invalid_command_signature": "Command had unexpected or missing command argument signatures.", + "chat.disabled.invalid_signature": "Chat had an invalid signature. Please try reconnecting.", + "chat.disabled.launcher": "Chat disabled by launcher option. Cannot send message.", + "chat.disabled.missingProfileKey": "Chat disabled due to missing profile public key. Please try reconnecting.", + "chat.disabled.options": "Chat disabled in client options.", + "chat.disabled.out_of_order_chat": "Chat received out-of-order. Did your system time change?", + "chat.disabled.profile": "Chat is not allowed by account settings. Press '%s' again for more information.", + "chat.disabled.profile.moreInfo": "Chat is not allowed by account settings. Cannot send or view messages.", + "chat.editBox": "chat", + "chat.filtered": "Filtered by the server.", + "chat.filtered_full": "The server has hidden your message for some players.", + "chat.link.confirm": "Are you sure you want to open the following website?", + "chat.link.confirmTrusted": "Do you want to open this link or copy it to your clipboard?", + "chat.link.open": "Open in Browser", + "chat.link.warning": "Never open links from people that you don't trust!", + "chat.queue": "[+%s pending line(s)]", + "chat.square_brackets": "[%s]", + "chat.tag.error": "Server sent invalid message.", + "chat.tag.modified": "Message modified by the server. Original:", + "chat.tag.not_secure": "Unverified message. Cannot be reported.", + "chat.tag.system": "Server message. Cannot be reported.", + "chat.tag.system_single_player": "Server message.", + "chat.type.admin": "[%s: %s]", + "chat.type.advancement.challenge": "%s has completed the challenge %s", + "chat.type.advancement.goal": "%s has reached the goal %s", + "chat.type.advancement.task": "%s has made the advancement %s", + "chat.type.announcement": "[%s] %s", + "chat.type.emote": "* %s %s", + "chat.type.team.hover": "Message Team", + "chat.type.team.sent": "-> %s <%s> %s", + "chat.type.team.text": "%s <%s> %s", + "chat.type.text": "<%s> %s", + "chat.type.text.narrate": "%s says %s", + "chat.validation_error": "Chat validation error", + "chunk.toast.checkLog": "See log for more details", + "chunk.toast.loadFailure": "Failed to load chunk at %s", + "chunk.toast.lowDiskSpace": "Low disk space!", + "chunk.toast.lowDiskSpace.description": "Might not be able to save the world.", + "chunk.toast.saveFailure": "Failed to save chunk at %s", + "clear.failed.multiple": "No items were found on %s players", + "clear.failed.single": "No items were found on player %s", + "color.minecraft.black": "Black", + "color.minecraft.blue": "Blue", + "color.minecraft.brown": "Brown", + "color.minecraft.cyan": "Cyan", + "color.minecraft.gray": "Gray", + "color.minecraft.green": "Green", + "color.minecraft.light_blue": "Light Blue", + "color.minecraft.light_gray": "Light Gray", + "color.minecraft.lime": "Lime", + "color.minecraft.magenta": "Magenta", + "color.minecraft.orange": "Orange", + "color.minecraft.pink": "Pink", + "color.minecraft.purple": "Purple", + "color.minecraft.red": "Red", + "color.minecraft.white": "White", + "color.minecraft.yellow": "Yellow", + "command.context.here": "<--[HERE]", + "command.context.parse_error": "%s at position %s: %s", + "command.exception": "Could not parse command: %s", + "command.expected.separator": "Expected whitespace to end one argument, but found trailing data", + "command.failed": "An unexpected error occurred trying to execute that command", + "command.forkLimit": "Maximum number of contexts (%s) reached", + "command.unknown.argument": "Incorrect argument for command", + "command.unknown.command": "Unknown or incomplete command, see below for error", + "commands.advancement.criterionNotFound": "The advancement %1$s does not contain the criterion '%2$s'", + "commands.advancement.grant.criterion.to.many.failure": "Couldn't grant criterion '%s' of advancement %s to %s players as they already have it", + "commands.advancement.grant.criterion.to.many.success": "Granted criterion '%s' of advancement %s to %s players", + "commands.advancement.grant.criterion.to.one.failure": "Couldn't grant criterion '%s' of advancement %s to %s as they already have it", + "commands.advancement.grant.criterion.to.one.success": "Granted criterion '%s' of advancement %s to %s", + "commands.advancement.grant.many.to.many.failure": "Couldn't grant %s advancements to %s players as they already have them", + "commands.advancement.grant.many.to.many.success": "Granted %s advancements to %s players", + "commands.advancement.grant.many.to.one.failure": "Couldn't grant %s advancements to %s as they already have them", + "commands.advancement.grant.many.to.one.success": "Granted %s advancements to %s", + "commands.advancement.grant.one.to.many.failure": "Couldn't grant advancement %s to %s players as they already have it", + "commands.advancement.grant.one.to.many.success": "Granted the advancement %s to %s players", + "commands.advancement.grant.one.to.one.failure": "Couldn't grant advancement %s to %s as they already have it", + "commands.advancement.grant.one.to.one.success": "Granted the advancement %s to %s", + "commands.advancement.revoke.criterion.to.many.failure": "Couldn't revoke criterion '%s' of advancement %s from %s players as they don't have it", + "commands.advancement.revoke.criterion.to.many.success": "Revoked criterion '%s' of advancement %s from %s players", + "commands.advancement.revoke.criterion.to.one.failure": "Couldn't revoke criterion '%s' of advancement %s from %s as they don't have it", + "commands.advancement.revoke.criterion.to.one.success": "Revoked criterion '%s' of advancement %s from %s", + "commands.advancement.revoke.many.to.many.failure": "Couldn't revoke %s advancements from %s players as they don't have them", + "commands.advancement.revoke.many.to.many.success": "Revoked %s advancements from %s players", + "commands.advancement.revoke.many.to.one.failure": "Couldn't revoke %s advancements from %s as they don't have them", + "commands.advancement.revoke.many.to.one.success": "Revoked %s advancements from %s", + "commands.advancement.revoke.one.to.many.failure": "Couldn't revoke advancement %s from %s players as they don't have it", + "commands.advancement.revoke.one.to.many.success": "Revoked the advancement %s from %s players", + "commands.advancement.revoke.one.to.one.failure": "Couldn't revoke advancement %s from %s as they don't have it", + "commands.advancement.revoke.one.to.one.success": "Revoked the advancement %s from %s", + "commands.attribute.base_value.get.success": "Base value of attribute %s for entity %s is %s", + "commands.attribute.base_value.reset.success": "Base value for attribute %s for entity %s reset to default %s", + "commands.attribute.base_value.set.success": "Base value for attribute %s for entity %s set to %s", + "commands.attribute.failed.entity": "%s is not a valid entity for this command", + "commands.attribute.failed.modifier_already_present": "Modifier %s is already present on attribute %s for entity %s", + "commands.attribute.failed.no_attribute": "Entity %s has no attribute %s", + "commands.attribute.failed.no_modifier": "Attribute %s for entity %s has no modifier %s", + "commands.attribute.modifier.add.success": "Added modifier %s to attribute %s for entity %s", + "commands.attribute.modifier.remove.success": "Removed modifier %s from attribute %s for entity %s", + "commands.attribute.modifier.value.get.success": "Value of modifier %s on attribute %s for entity %s is %s", + "commands.attribute.value.get.success": "Value of attribute %s for entity %s is %s", + "commands.ban.failed": "Nothing changed. The player is already banned", + "commands.ban.success": "Banned %s: %s", + "commands.banip.failed": "Nothing changed. That IP is already banned", + "commands.banip.info": "This ban affects %s player(s): %s", + "commands.banip.invalid": "Invalid IP address or unknown player", + "commands.banip.success": "Banned IP %s: %s", + "commands.banlist.entry": "%s was banned by %s: %s", + "commands.banlist.entry.unknown": "(Unknown)", + "commands.banlist.list": "There are %s ban(s):", + "commands.banlist.none": "There are no bans", + "commands.bossbar.create.failed": "A bossbar already exists with the ID '%s'", + "commands.bossbar.create.success": "Created custom bossbar %s", + "commands.bossbar.get.max": "Custom bossbar %s has a maximum of %s", + "commands.bossbar.get.players.none": "Custom bossbar %s has no players currently online", + "commands.bossbar.get.players.some": "Custom bossbar %s has %s player(s) currently online: %s", + "commands.bossbar.get.value": "Custom bossbar %s has a value of %s", + "commands.bossbar.get.visible.hidden": "Custom bossbar %s is currently hidden", + "commands.bossbar.get.visible.visible": "Custom bossbar %s is currently shown", + "commands.bossbar.list.bars.none": "There are no custom bossbars active", + "commands.bossbar.list.bars.some": "There are %s custom bossbar(s) active: %s", + "commands.bossbar.remove.success": "Removed custom bossbar %s", + "commands.bossbar.set.color.success": "Custom bossbar %s has changed color", + "commands.bossbar.set.color.unchanged": "Nothing changed. That's already the color of this bossbar", + "commands.bossbar.set.max.success": "Custom bossbar %s has changed maximum to %s", + "commands.bossbar.set.max.unchanged": "Nothing changed. That's already the max of this bossbar", + "commands.bossbar.set.name.success": "Custom bossbar %s has been renamed", + "commands.bossbar.set.name.unchanged": "Nothing changed. That's already the name of this bossbar", + "commands.bossbar.set.players.success.none": "Custom bossbar %s no longer has any players", + "commands.bossbar.set.players.success.some": "Custom bossbar %s now has %s player(s): %s", + "commands.bossbar.set.players.unchanged": "Nothing changed. Those players are already on the bossbar with nobody to add or remove", + "commands.bossbar.set.style.success": "Custom bossbar %s has changed style", + "commands.bossbar.set.style.unchanged": "Nothing changed. That's already the style of this bossbar", + "commands.bossbar.set.value.success": "Custom bossbar %s has changed value to %s", + "commands.bossbar.set.value.unchanged": "Nothing changed. That's already the value of this bossbar", + "commands.bossbar.set.visibility.unchanged.hidden": "Nothing changed. The bossbar is already hidden", + "commands.bossbar.set.visibility.unchanged.visible": "Nothing changed. The bossbar is already visible", + "commands.bossbar.set.visible.success.hidden": "Custom bossbar %s is now hidden", + "commands.bossbar.set.visible.success.visible": "Custom bossbar %s is now visible", + "commands.bossbar.unknown": "No bossbar exists with the ID '%s'", + "commands.clear.success.multiple": "Removed %s item(s) from %s players", + "commands.clear.success.single": "Removed %s item(s) from player %s", + "commands.clear.test.multiple": "Found %s matching item(s) on %s players", + "commands.clear.test.single": "Found %s matching item(s) on player %s", + "commands.clone.failed": "No blocks were cloned", + "commands.clone.overlap": "The source and destination areas cannot overlap", + "commands.clone.success": "Successfully cloned %s block(s)", + "commands.clone.toobig": "Too many blocks in the specified area (maximum %s, specified %s)", + "commands.damage.invulnerable": "Target is invulnerable to the given damage type", + "commands.damage.success": "Applied %s damage to %s", + "commands.data.block.get": "%s on block %s, %s, %s after scale factor of %s is %s", + "commands.data.block.invalid": "The target block is not a block entity", + "commands.data.block.modified": "Modified block data of %s, %s, %s", + "commands.data.block.query": "%s, %s, %s has the following block data: %s", + "commands.data.entity.get": "%s on %s after scale factor of %s is %s", + "commands.data.entity.invalid": "Unable to modify player data", + "commands.data.entity.modified": "Modified entity data of %s", + "commands.data.entity.query": "%s has the following entity data: %s", + "commands.data.get.invalid": "Can't get %s; only numeric tags are allowed", + "commands.data.get.multiple": "This argument accepts a single NBT value", + "commands.data.get.unknown": "Can't get %s; tag doesn't exist", + "commands.data.merge.failed": "Nothing changed. The specified properties already have these values", + "commands.data.modify.expected_list": "Expected list, got: %s", + "commands.data.modify.expected_object": "Expected object, got: %s", + "commands.data.modify.expected_value": "Expected value, got: %s", + "commands.data.modify.invalid_index": "Invalid list index: %s", + "commands.data.modify.invalid_substring": "Invalid substring indices: %s to %s", + "commands.data.storage.get": "%s in storage %s after scale factor of %s is %s", + "commands.data.storage.modified": "Modified storage %s", + "commands.data.storage.query": "Storage %s has the following contents: %s", + "commands.datapack.create.already_exists": "Pack with name '%s' already exists", + "commands.datapack.create.invalid_full_name": "Invalid new pack name '%s'", + "commands.datapack.create.invalid_name": "Invalid characters in new pack name '%s'", + "commands.datapack.create.io_failure": "Can't create pack with name '%s', check logs", + "commands.datapack.create.metadata_encode_failure": "Failed to encode metadata for pack with name '%s': %s", + "commands.datapack.create.success": "Created new empty pack with name '%s'", + "commands.datapack.disable.failed": "Pack '%s' is not enabled!", + "commands.datapack.disable.failed.feature": "Pack '%s' cannot be disabled, since it is part of an enabled flag!", + "commands.datapack.enable.failed": "Pack '%s' is already enabled!", + "commands.datapack.enable.failed.no_flags": "Pack '%s' cannot be enabled, since required flags are not enabled in this world: %s!", + "commands.datapack.list.available.none": "There are no more data packs available", + "commands.datapack.list.available.success": "There are %s data pack(s) available: %s", + "commands.datapack.list.enabled.none": "There are no data packs enabled", + "commands.datapack.list.enabled.success": "There are %s data pack(s) enabled: %s", + "commands.datapack.modify.disable": "Disabling data pack %s", + "commands.datapack.modify.enable": "Enabling data pack %s", + "commands.datapack.unknown": "Unknown data pack '%s'", + "commands.debug.alreadyRunning": "The tick profiler is already started", + "commands.debug.function.noRecursion": "Can't trace from inside of function", + "commands.debug.function.noReturnRun": "Tracing can't be used with return run", + "commands.debug.function.success.multiple": "Traced %s command(s) from %s functions to output file %s", + "commands.debug.function.success.single": "Traced %s command(s) from function '%s' to output file %s", + "commands.debug.function.traceFailed": "Failed to trace function", + "commands.debug.notRunning": "The tick profiler hasn't started", + "commands.debug.started": "Started tick profiling", + "commands.debug.stopped": "Stopped tick profiling after %s second(s) and %s tick(s) (%s tick(s) per second)", + "commands.defaultgamemode.success": "The default game mode is now %s", + "commands.deop.failed": "Nothing changed. The player is not an operator", + "commands.deop.success": "Made %s no longer a server operator", + "commands.dialog.clear.multiple": "Cleared dialog for %s players", + "commands.dialog.clear.single": "Cleared dialog for %s", + "commands.dialog.show.multiple": "Displayed dialog to %s players", + "commands.dialog.show.single": "Displayed dialog to %s", + "commands.difficulty.failure": "The difficulty did not change; it is already set to %s", + "commands.difficulty.query": "The difficulty is %s", + "commands.difficulty.success": "The difficulty has been set to %s", + "commands.drop.no_held_items": "Entity can't hold any items", + "commands.drop.no_loot_table": "Entity %s has no loot table", + "commands.drop.no_loot_table.block": "Block %s has no loot table", + "commands.drop.success.multiple": "Dropped %s items", + "commands.drop.success.multiple_with_table": "Dropped %s items from loot table %s", + "commands.drop.success.single": "Dropped %s %s", + "commands.drop.success.single_with_table": "Dropped %s %s from loot table %s", + "commands.effect.clear.everything.failed": "Target has no effects to remove", + "commands.effect.clear.everything.success.multiple": "Removed every effect from %s targets", + "commands.effect.clear.everything.success.single": "Removed every effect from %s", + "commands.effect.clear.specific.failed": "Target doesn't have the requested effect", + "commands.effect.clear.specific.success.multiple": "Removed effect %s from %s targets", + "commands.effect.clear.specific.success.single": "Removed effect %s from %s", + "commands.effect.give.failed": "Unable to apply this effect (target is either immune to effects, or has something stronger)", + "commands.effect.give.success.multiple": "Applied effect %s to %s targets", + "commands.effect.give.success.single": "Applied effect %s to %s", + "commands.enchant.failed": "Nothing changed. Targets either have no item in their hands or the enchantment could not be applied", + "commands.enchant.failed.entity": "%s is not a valid entity for this command", + "commands.enchant.failed.incompatible": "%s cannot support that enchantment", + "commands.enchant.failed.itemless": "%s is not holding any item", + "commands.enchant.failed.level": "%s is higher than the maximum level of %s supported by that enchantment", + "commands.enchant.success.multiple": "Applied enchantment %s to %s entities", + "commands.enchant.success.single": "Applied enchantment %s to %s's item", + "commands.execute.blocks.toobig": "Too many blocks in the specified area (maximum %s, specified %s)", + "commands.execute.conditional.fail": "Test failed", + "commands.execute.conditional.fail_count": "Test failed, count: %s", + "commands.execute.conditional.pass": "Test passed", + "commands.execute.conditional.pass_count": "Test passed, count: %s", + "commands.execute.function.instantiationFailure": "Failed to instantiate function %s: %s", + "commands.experience.add.levels.success.multiple": "Gave %s experience levels to %s players", + "commands.experience.add.levels.success.single": "Gave %s experience levels to %s", + "commands.experience.add.points.success.multiple": "Gave %s experience points to %s players", + "commands.experience.add.points.success.single": "Gave %s experience points to %s", + "commands.experience.query.levels": "%s has %s experience levels", + "commands.experience.query.points": "%s has %s experience points", + "commands.experience.set.levels.success.multiple": "Set %s experience levels on %s players", + "commands.experience.set.levels.success.single": "Set %s experience levels on %s", + "commands.experience.set.points.invalid": "Cannot set experience points above the maximum points for the player's current level", + "commands.experience.set.points.success.multiple": "Set %s experience points on %s players", + "commands.experience.set.points.success.single": "Set %s experience points on %s", + "commands.fill.failed": "No blocks were filled", + "commands.fill.success": "Successfully filled %s block(s)", + "commands.fill.toobig": "Too many blocks in the specified area (maximum %s, specified %s)", + "commands.fillbiome.success": "Biomes set between %s, %s, %s and %s, %s, %s", + "commands.fillbiome.success.count": "%s biome entry/entries set between %s, %s, %s and %s, %s, %s", + "commands.fillbiome.toobig": "Too many blocks in the specified volume (maximum %s, specified %s)", + "commands.forceload.added.failure": "No chunks were marked for force loading", + "commands.forceload.added.multiple": "Marked %s chunks in %s from %s to %s to be force loaded", + "commands.forceload.added.none": "No force loaded chunks were found in %s", + "commands.forceload.added.single": "Marked chunk %s in %s to be force loaded", + "commands.forceload.list.multiple": "%s force loaded chunks were found in %s at: %s", + "commands.forceload.list.single": "A force loaded chunk was found in %s at: %s", + "commands.forceload.query.failure": "Chunk at %s in %s is not marked for force loading", + "commands.forceload.query.success": "Chunk at %s in %s is marked for force loading", + "commands.forceload.removed.all": "Unmarked all force loaded chunks in %s", + "commands.forceload.removed.failure": "No chunks were removed from force loading", + "commands.forceload.removed.multiple": "Unmarked %s chunks in %s from %s to %s for force loading", + "commands.forceload.removed.single": "Unmarked chunk %s in %s for force loading", + "commands.forceload.toobig": "Too many chunks in the specified area (maximum %s, specified %s)", + "commands.function.error.argument_not_compound": "Invalid argument type: %s, expected Compound", + "commands.function.error.missing_argument": "Missing argument %2$s to function %1$s", + "commands.function.error.missing_arguments": "Missing arguments to function %s", + "commands.function.error.parse": "While instantiating macro %s: Command '%s' caused error: %s", + "commands.function.instantiationFailure": "Failed to instantiate function %s: %s", + "commands.function.result": "Function %s returned %s", + "commands.function.scheduled.multiple": "Running functions %s", + "commands.function.scheduled.no_functions": "Can't find any functions for name %s", + "commands.function.scheduled.single": "Running function %s", + "commands.function.success.multiple": "Executed %s command(s) from %s functions", + "commands.function.success.multiple.result": "Executed %s functions", + "commands.function.success.single": "Executed %s command(s) from function '%s'", + "commands.function.success.single.result": "Function '%2$s' returned %1$s", + "commands.gamemode.success.other": "Set %s's game mode to %s", + "commands.gamemode.success.self": "Set own game mode to %s", + "commands.gamerule.query": "Gamerule %s is currently set to: %s", + "commands.gamerule.set": "Gamerule %s is now set to: %s", + "commands.give.failed.toomanyitems": "Can't give more than %s of %s", + "commands.give.success.multiple": "Gave %s %s to %s players", + "commands.give.success.single": "Gave %s %s to %s", + "commands.help.failed": "Unknown command or insufficient permissions", + "commands.item.block.set.success": "Replaced a slot at %s, %s, %s with %s", + "commands.item.entity.set.success.multiple": "Replaced a slot on %s entities with %s", + "commands.item.entity.set.success.single": "Replaced a slot on %s with %s", + "commands.item.source.no_such_slot": "The source does not have slot %s", + "commands.item.source.not_a_container": "Source position %s, %s, %s is not a container", + "commands.item.target.no_changed.known_item": "No targets accepted item %s into slot %s", + "commands.item.target.no_changes": "No targets accepted item into slot %s", + "commands.item.target.no_such_slot": "The target does not have slot %s", + "commands.item.target.not_a_container": "Target position %s, %s, %s is not a container", + "commands.jfr.dump.failed": "Failed to dump JFR recording: %s", + "commands.jfr.start.failed": "Failed to start JFR profiling", + "commands.jfr.started": "JFR profiling started", + "commands.jfr.stopped": "JFR profiling stopped and dumped to %s", + "commands.kick.owner.failed": "Cannot kick server owner in LAN game", + "commands.kick.singleplayer.failed": "Cannot kick in an offline singleplayer game", + "commands.kick.success": "Kicked %s: %s", + "commands.kill.success.multiple": "Killed %s entities", + "commands.kill.success.single": "Killed %s", + "commands.list.nameAndId": "%s (%s)", + "commands.list.players": "There are %s of a max of %s players online: %s", + "commands.locate.biome.not_found": "Could not find a biome of type \"%s\" within reasonable distance", + "commands.locate.biome.success": "The nearest %s is at %s (%s blocks away)", + "commands.locate.poi.not_found": "Could not find a point of interest of type \"%s\" within reasonable distance", + "commands.locate.poi.success": "The nearest %s is at %s (%s blocks away)", + "commands.locate.structure.invalid": "There is no structure with type \"%s\"", + "commands.locate.structure.not_found": "Could not find a structure of type \"%s\" nearby", + "commands.locate.structure.success": "The nearest %s is at %s (%s blocks away)", + "commands.message.display.incoming": "%s whispers to you: %s", + "commands.message.display.outgoing": "You whisper to %s: %s", + "commands.op.failed": "Nothing changed. The player already is an operator", + "commands.op.success": "Made %s a server operator", + "commands.pardon.failed": "Nothing changed. The player isn't banned", + "commands.pardon.success": "Unbanned %s", + "commands.pardonip.failed": "Nothing changed. That IP isn't banned", + "commands.pardonip.invalid": "Invalid IP address", + "commands.pardonip.success": "Unbanned IP %s", + "commands.particle.failed": "The particle was not visible for anybody", + "commands.particle.success": "Displaying particle %s", + "commands.perf.alreadyRunning": "The performance profiler is already started", + "commands.perf.notRunning": "The performance profiler hasn't started", + "commands.perf.reportFailed": "Failed to create debug report", + "commands.perf.reportSaved": "Created debug report in %s", + "commands.perf.started": "Started 10 second performance profiling run (use '/perf stop' to stop early)", + "commands.perf.stopped": "Stopped performance profiling after %s second(s) and %s tick(s) (%s tick(s) per second)", + "commands.place.feature.failed": "Failed to place feature", + "commands.place.feature.invalid": "There is no feature with type \"%s\"", + "commands.place.feature.success": "Placed \"%s\" at %s, %s, %s", + "commands.place.jigsaw.failed": "Failed to generate jigsaw", + "commands.place.jigsaw.invalid": "There is no template pool with type \"%s\"", + "commands.place.jigsaw.success": "Generated jigsaw at %s, %s, %s", + "commands.place.structure.failed": "Failed to place structure", + "commands.place.structure.invalid": "There is no structure with type \"%s\"", + "commands.place.structure.success": "Generated structure \"%s\" at %s, %s, %s", + "commands.place.template.failed": "Failed to place template", + "commands.place.template.invalid": "There is no template with id \"%s\"", + "commands.place.template.success": "Loaded template \"%s\" at %s, %s, %s", + "commands.playsound.failed": "The sound is too far away to be heard", + "commands.playsound.success.multiple": "Played sound %s to %s players", + "commands.playsound.success.single": "Played sound %s to %s", + "commands.publish.alreadyPublished": "Multiplayer game is already hosted on port %s", + "commands.publish.failed": "Unable to host local game", + "commands.publish.started": "Local game hosted on port %s", + "commands.publish.success": "Multiplayer game is now hosted on port %s", + "commands.random.error.range_too_large": "The range of the random value must be at most 2147483646", + "commands.random.error.range_too_small": "The range of the random value must be at least 2", + "commands.random.reset.all.success": "Reset %s random sequence(s)", + "commands.random.reset.success": "Reset random sequence %s", + "commands.random.roll": "%s rolled %s (from %s to %s)", + "commands.random.sample.success": "Randomized value: %s", + "commands.recipe.give.failed": "No new recipes were learned", + "commands.recipe.give.success.multiple": "Unlocked %s recipe(s) for %s players", + "commands.recipe.give.success.single": "Unlocked %s recipe(s) for %s", + "commands.recipe.take.failed": "No recipes could be forgotten", + "commands.recipe.take.success.multiple": "Took %s recipe(s) from %s players", + "commands.recipe.take.success.single": "Took %s recipe(s) from %s", + "commands.reload.failure": "Reload failed; keeping old data", + "commands.reload.success": "Reloading!", + "commands.ride.already_riding": "%s is already riding %s", + "commands.ride.dismount.success": "%s stopped riding %s", + "commands.ride.mount.failure.cant_ride_players": "Players can't be ridden", + "commands.ride.mount.failure.generic": "%s couldn't start riding %s", + "commands.ride.mount.failure.loop": "Can't mount entity on itself or any of its passengers", + "commands.ride.mount.failure.wrong_dimension": "Can't mount entity in different dimension", + "commands.ride.mount.success": "%s started riding %s", + "commands.ride.not_riding": "%s is not riding any vehicle", + "commands.rotate.success": "Rotated %s", + "commands.save.alreadyOff": "Saving is already turned off", + "commands.save.alreadyOn": "Saving is already turned on", + "commands.save.disabled": "Automatic saving is now disabled", + "commands.save.enabled": "Automatic saving is now enabled", + "commands.save.failed": "Unable to save the game (is there enough disk space?)", + "commands.save.saving": "Saving the game (this may take a moment!)", + "commands.save.success": "Saved the game", + "commands.schedule.cleared.failure": "No schedules with id %s", + "commands.schedule.cleared.success": "Removed %s schedule(s) with id %s", + "commands.schedule.created.function": "Scheduled function '%s' in %s tick(s) at gametime %s", + "commands.schedule.created.tag": "Scheduled tag '%s' in %s tick(s) at gametime %s", + "commands.schedule.macro": "Can't schedule a macro", + "commands.schedule.same_tick": "Can't schedule for current tick", + "commands.scoreboard.objectives.add.duplicate": "An objective already exists by that name", + "commands.scoreboard.objectives.add.success": "Created new objective %s", + "commands.scoreboard.objectives.display.alreadyEmpty": "Nothing changed. That display slot is already empty", + "commands.scoreboard.objectives.display.alreadySet": "Nothing changed. That display slot is already showing that objective", + "commands.scoreboard.objectives.display.cleared": "Cleared any objectives in display slot %s", + "commands.scoreboard.objectives.display.set": "Set display slot %s to show objective %s", + "commands.scoreboard.objectives.list.empty": "There are no objectives", + "commands.scoreboard.objectives.list.success": "There are %s objective(s): %s", + "commands.scoreboard.objectives.modify.displayAutoUpdate.disable": "Disabled display auto-update for objective %s", + "commands.scoreboard.objectives.modify.displayAutoUpdate.enable": "Enabled display auto-update for objective %s", + "commands.scoreboard.objectives.modify.displayname": "Changed the display name of %s to %s", + "commands.scoreboard.objectives.modify.objectiveFormat.clear": "Cleared default number format of objective %s", + "commands.scoreboard.objectives.modify.objectiveFormat.set": "Changed default number format of objective %s", + "commands.scoreboard.objectives.modify.rendertype": "Changed the render type of objective %s", + "commands.scoreboard.objectives.remove.success": "Removed objective %s", + "commands.scoreboard.players.add.success.multiple": "Added %s to %s for %s entities", + "commands.scoreboard.players.add.success.single": "Added %s to %s for %s (now %s)", + "commands.scoreboard.players.display.name.clear.success.multiple": "Cleared display name for %s entities in %s", + "commands.scoreboard.players.display.name.clear.success.single": "Cleared display name for %s in %s", + "commands.scoreboard.players.display.name.set.success.multiple": "Changed display name to %s for %s entities in %s", + "commands.scoreboard.players.display.name.set.success.single": "Changed display name to %s for %s in %s", + "commands.scoreboard.players.display.numberFormat.clear.success.multiple": "Cleared number format for %s entities in %s", + "commands.scoreboard.players.display.numberFormat.clear.success.single": "Cleared number format for %s in %s", + "commands.scoreboard.players.display.numberFormat.set.success.multiple": "Changed number format for %s entities in %s", + "commands.scoreboard.players.display.numberFormat.set.success.single": "Changed number format for %s in %s", + "commands.scoreboard.players.enable.failed": "Nothing changed. That trigger is already enabled", + "commands.scoreboard.players.enable.invalid": "Enable only works on trigger-objectives", + "commands.scoreboard.players.enable.success.multiple": "Enabled trigger %s for %s entities", + "commands.scoreboard.players.enable.success.single": "Enabled trigger %s for %s", + "commands.scoreboard.players.get.null": "Can't get value of %s for %s; none is set", + "commands.scoreboard.players.get.success": "%s has %s %s", + "commands.scoreboard.players.list.empty": "There are no tracked entities", + "commands.scoreboard.players.list.entity.empty": "%s has no scores to show", + "commands.scoreboard.players.list.entity.entry": "%s: %s", + "commands.scoreboard.players.list.entity.success": "%s has %s score(s):", + "commands.scoreboard.players.list.success": "There are %s tracked entity/entities: %s", + "commands.scoreboard.players.operation.success.multiple": "Updated %s for %s entities", + "commands.scoreboard.players.operation.success.single": "Set %s for %s to %s", + "commands.scoreboard.players.remove.success.multiple": "Removed %s from %s for %s entities", + "commands.scoreboard.players.remove.success.single": "Removed %s from %s for %s (now %s)", + "commands.scoreboard.players.reset.all.multiple": "Reset all scores for %s entities", + "commands.scoreboard.players.reset.all.single": "Reset all scores for %s", + "commands.scoreboard.players.reset.specific.multiple": "Reset %s for %s entities", + "commands.scoreboard.players.reset.specific.single": "Reset %s for %s", + "commands.scoreboard.players.set.success.multiple": "Set %s for %s entities to %s", + "commands.scoreboard.players.set.success.single": "Set %s for %s to %s", + "commands.seed.success": "Seed: %s", + "commands.setblock.failed": "Could not set the block", + "commands.setblock.success": "Changed the block at %s, %s, %s", + "commands.setidletimeout.success": "The player idle timeout is now %s minute(s)", + "commands.setidletimeout.success.disabled": "The player idle timeout is now disabled", + "commands.setworldspawn.failure.not_overworld": "Can only set the world spawn for overworld", + "commands.setworldspawn.success": "Set the world spawn point to %s, %s, %s [%s]", + "commands.spawnpoint.success.multiple": "Set spawn point to %s, %s, %s [%s] in %s for %s players", + "commands.spawnpoint.success.single": "Set spawn point to %s, %s, %s [%s] in %s for %s", + "commands.spectate.not_spectator": "%s is not in spectator mode", + "commands.spectate.self": "Cannot spectate yourself", + "commands.spectate.success.started": "Now spectating %s", + "commands.spectate.success.stopped": "No longer spectating an entity", + "commands.spreadplayers.failed.entities": "Could not spread %s entity/entities around %s, %s (too many entities for space - try using spread of at most %s)", + "commands.spreadplayers.failed.invalid.height": "Invalid maxHeight %s; expected higher than world minimum %s", + "commands.spreadplayers.failed.teams": "Could not spread %s team(s) around %s, %s (too many entities for space - try using spread of at most %s)", + "commands.spreadplayers.success.entities": "Spread %s entity/entities around %s, %s with an average distance of %s block(s) apart", + "commands.spreadplayers.success.teams": "Spread %s team(s) around %s, %s with an average distance of %s block(s) apart", + "commands.stop.stopping": "Stopping the server", + "commands.stopsound.success.source.any": "Stopped all '%s' sounds", + "commands.stopsound.success.source.sound": "Stopped sound '%s' on source '%s'", + "commands.stopsound.success.sourceless.any": "Stopped all sounds", + "commands.stopsound.success.sourceless.sound": "Stopped sound '%s'", + "commands.summon.failed": "Unable to summon entity", + "commands.summon.failed.uuid": "Unable to summon entity due to duplicate UUIDs", + "commands.summon.invalidPosition": "Invalid position for summon", + "commands.summon.success": "Summoned new %s", + "commands.tag.add.failed": "Target either already has the tag or has too many tags", + "commands.tag.add.success.multiple": "Added tag '%s' to %s entities", + "commands.tag.add.success.single": "Added tag '%s' to %s", + "commands.tag.list.multiple.empty": "There are no tags on the %s entities", + "commands.tag.list.multiple.success": "The %s entities have %s total tags: %s", + "commands.tag.list.single.empty": "%s has no tags", + "commands.tag.list.single.success": "%s has %s tags: %s", + "commands.tag.remove.failed": "Target does not have this tag", + "commands.tag.remove.success.multiple": "Removed tag '%s' from %s entities", + "commands.tag.remove.success.single": "Removed tag '%s' from %s", + "commands.team.add.duplicate": "A team already exists by that name", + "commands.team.add.success": "Created team %s", + "commands.team.empty.success": "Removed %s member(s) from team %s", + "commands.team.empty.unchanged": "Nothing changed. That team is already empty", + "commands.team.join.success.multiple": "Added %s members to team %s", + "commands.team.join.success.single": "Added %s to team %s", + "commands.team.leave.success.multiple": "Removed %s members from any team", + "commands.team.leave.success.single": "Removed %s from any team", + "commands.team.list.members.empty": "There are no members on team %s", + "commands.team.list.members.success": "Team %s has %s member(s): %s", + "commands.team.list.teams.empty": "There are no teams", + "commands.team.list.teams.success": "There are %s team(s): %s", + "commands.team.option.collisionRule.success": "Collision rule for team %s is now \"%s\"", + "commands.team.option.collisionRule.unchanged": "Nothing changed. Collision rule is already that value", + "commands.team.option.color.success": "Updated the color for team %s to %s", + "commands.team.option.color.unchanged": "Nothing changed. That team already has that color", + "commands.team.option.deathMessageVisibility.success": "Death message visibility for team %s is now \"%s\"", + "commands.team.option.deathMessageVisibility.unchanged": "Nothing changed. Death message visibility is already that value", + "commands.team.option.friendlyfire.alreadyDisabled": "Nothing changed. Friendly fire is already disabled for that team", + "commands.team.option.friendlyfire.alreadyEnabled": "Nothing changed. Friendly fire is already enabled for that team", + "commands.team.option.friendlyfire.disabled": "Disabled friendly fire for team %s", + "commands.team.option.friendlyfire.enabled": "Enabled friendly fire for team %s", + "commands.team.option.name.success": "Updated the name of team %s", + "commands.team.option.name.unchanged": "Nothing changed. That team already has that name", + "commands.team.option.nametagVisibility.success": "Nametag visibility for team %s is now \"%s\"", + "commands.team.option.nametagVisibility.unchanged": "Nothing changed. Nametag visibility is already that value", + "commands.team.option.prefix.success": "Team prefix set to %s", + "commands.team.option.seeFriendlyInvisibles.alreadyDisabled": "Nothing changed. That team already can't see invisible teammates", + "commands.team.option.seeFriendlyInvisibles.alreadyEnabled": "Nothing changed. That team can already see invisible teammates", + "commands.team.option.seeFriendlyInvisibles.disabled": "Team %s can no longer see invisible teammates", + "commands.team.option.seeFriendlyInvisibles.enabled": "Team %s can now see invisible teammates", + "commands.team.option.suffix.success": "Team suffix set to %s", + "commands.team.remove.success": "Removed team %s", + "commands.teammsg.failed.noteam": "You must be on a team to message your team", + "commands.teleport.invalidPosition": "Invalid position for teleport", + "commands.teleport.success.entity.multiple": "Teleported %s entities to %s", + "commands.teleport.success.entity.single": "Teleported %s to %s", + "commands.teleport.success.location.multiple": "Teleported %s entities to %s, %s, %s", + "commands.teleport.success.location.single": "Teleported %s to %s, %s, %s", + "commands.test.batch.starting": "Starting environment %s batch %s", + "commands.test.clear.error.no_tests": "Could not find any tests to clear", + "commands.test.clear.success": "Cleared %s structure(s)", + "commands.test.coordinates": "%s, %s, %s", + "commands.test.coordinates.copy": "Click to copy to clipboard", + "commands.test.create.success": "Created test setup for test %s", + "commands.test.error.no_test_containing_pos": "Can't find a test instance that contains %s, %s, %s", + "commands.test.error.no_test_instances": "Found no test instances", + "commands.test.error.non_existant_test": "Test %s could not be found", + "commands.test.error.structure_not_found": "Test structure %s could not be found", + "commands.test.error.test_instance_not_found": "Test instance block entity could not be found", + "commands.test.error.test_instance_not_found.position": "Test instance block entity could not be found for test at %s, %s, %s", + "commands.test.error.too_large": "The structure size must be less than %s blocks along each axis", + "commands.test.locate.done": "Finished locating, found %s structure(s)", + "commands.test.locate.found": "Found structure at: %s (distance: %s)", + "commands.test.locate.started": "Started locating test structures, this might take a while...", + "commands.test.no_tests": "No tests to run", + "commands.test.relative_position": "Position relative to %s: %s", + "commands.test.reset.error.no_tests": "Could not find any tests to reset", + "commands.test.reset.success": "Reset %s structure(s)", + "commands.test.run.no_tests": "No tests found", + "commands.test.run.running": "Running %s test(s)...", + "commands.test.summary": "Game Test complete! %s test(s) were run", + "commands.test.summary.all_required_passed": "All required tests passed :)", + "commands.test.summary.failed": "%s required test(s) failed :(", + "commands.test.summary.optional_failed": "%s optional test(s) failed", + "commands.tick.query.percentiles": "Percentiles: P50: %sms P95: %sms P99: %sms, sample: %s", + "commands.tick.query.rate.running": "Target tick rate: %s per second.\nAverage time per tick: %sms (Target: %sms)", + "commands.tick.query.rate.sprinting": "Target tick rate: %s per second (ignored, reference only).\nAverage time per tick: %sms", + "commands.tick.rate.success": "Set the target tick rate to %s per second", + "commands.tick.sprint.report": "Sprint completed with %s ticks per second, or %s ms per tick", + "commands.tick.sprint.stop.fail": "No tick sprint in progress", + "commands.tick.sprint.stop.success": "Interrupted the current tick sprint", + "commands.tick.status.frozen": "The game is frozen", + "commands.tick.status.lagging": "The game is running, but can't keep up with the target tick rate", + "commands.tick.status.running": "The game is running normally", + "commands.tick.status.sprinting": "The game is sprinting", + "commands.tick.step.fail": "Unable to step the game - the game must be frozen first", + "commands.tick.step.stop.fail": "No tick step in progress", + "commands.tick.step.stop.success": "Interrupted the current tick step", + "commands.tick.step.success": "Stepping %s tick(s)", + "commands.time.query": "The time is %s", + "commands.time.set": "Set the time to %s", + "commands.title.cleared.multiple": "Cleared titles for %s players", + "commands.title.cleared.single": "Cleared titles for %s", + "commands.title.reset.multiple": "Reset title options for %s players", + "commands.title.reset.single": "Reset title options for %s", + "commands.title.show.actionbar.multiple": "Showing new actionbar title for %s players", + "commands.title.show.actionbar.single": "Showing new actionbar title for %s", + "commands.title.show.subtitle.multiple": "Showing new subtitle for %s players", + "commands.title.show.subtitle.single": "Showing new subtitle for %s", + "commands.title.show.title.multiple": "Showing new title for %s players", + "commands.title.show.title.single": "Showing new title for %s", + "commands.title.times.multiple": "Changed title display times for %s players", + "commands.title.times.single": "Changed title display times for %s", + "commands.transfer.error.no_players": "Must specify at least one player to transfer", + "commands.transfer.success.multiple": "Transferring %s players to %s:%s", + "commands.transfer.success.single": "Transferring %s to %s:%s", + "commands.trigger.add.success": "Triggered %s (added %s to value)", + "commands.trigger.failed.invalid": "You can only trigger objectives that are 'trigger' type", + "commands.trigger.failed.unprimed": "You cannot trigger this objective yet", + "commands.trigger.set.success": "Triggered %s (set value to %s)", + "commands.trigger.simple.success": "Triggered %s", + "commands.version.build_time": "build_time = %s", + "commands.version.data": "data = %s", + "commands.version.header": "Server version info:", + "commands.version.id": "id = %s", + "commands.version.name": "name = %s", + "commands.version.pack.data": "pack_data = %s", + "commands.version.pack.resource": "pack_resource = %s", + "commands.version.protocol": "protocol = %s (%s)", + "commands.version.series": "series = %s", + "commands.version.stable.no": "stable = no", + "commands.version.stable.yes": "stable = yes", + "commands.waypoint.list.empty": "No waypoints in %s", + "commands.waypoint.list.success": "%s waypoint(s) in %s: %s", + "commands.waypoint.modify.color": "Waypoint color is now %s", + "commands.waypoint.modify.color.reset": "Reset waypoint color", + "commands.waypoint.modify.style": "Waypoint style changed", + "commands.weather.set.clear": "Set the weather to clear", + "commands.weather.set.rain": "Set the weather to rain", + "commands.weather.set.thunder": "Set the weather to rain & thunder", + "commands.whitelist.add.failed": "Player is already whitelisted", + "commands.whitelist.add.success": "Added %s to the whitelist", + "commands.whitelist.alreadyOff": "Whitelist is already turned off", + "commands.whitelist.alreadyOn": "Whitelist is already turned on", + "commands.whitelist.disabled": "Whitelist is now turned off", + "commands.whitelist.enabled": "Whitelist is now turned on", + "commands.whitelist.list": "There are %s whitelisted player(s): %s", + "commands.whitelist.none": "There are no whitelisted players", + "commands.whitelist.reloaded": "Reloaded the whitelist", + "commands.whitelist.remove.failed": "Player is not whitelisted", + "commands.whitelist.remove.success": "Removed %s from the whitelist", + "commands.worldborder.center.failed": "Nothing changed. The world border is already centered there", + "commands.worldborder.center.success": "Set the center of the world border to %s, %s", + "commands.worldborder.damage.amount.failed": "Nothing changed. The world border damage is already that amount", + "commands.worldborder.damage.amount.success": "Set the world border damage to %s per block each second", + "commands.worldborder.damage.buffer.failed": "Nothing changed. The world border damage buffer is already that distance", + "commands.worldborder.damage.buffer.success": "Set the world border damage buffer to %s block(s)", + "commands.worldborder.get": "The world border is currently %s block(s) wide", + "commands.worldborder.set.failed.big": "World border cannot be bigger than %s blocks wide", + "commands.worldborder.set.failed.far": "World border cannot be further out than %s blocks", + "commands.worldborder.set.failed.nochange": "Nothing changed. The world border is already that size", + "commands.worldborder.set.failed.small": "World border cannot be smaller than 1 block wide", + "commands.worldborder.set.grow": "Growing the world border to %s blocks wide over %s seconds", + "commands.worldborder.set.immediate": "Set the world border to %s block(s) wide", + "commands.worldborder.set.shrink": "Shrinking the world border to %s block(s) wide over %s second(s)", + "commands.worldborder.warning.distance.failed": "Nothing changed. The world border warning is already that distance", + "commands.worldborder.warning.distance.success": "Set the world border warning distance to %s block(s)", + "commands.worldborder.warning.time.failed": "Nothing changed. The world border warning is already that amount of time", + "commands.worldborder.warning.time.success": "Set the world border warning time to %s second(s)", + "compliance.playtime.greaterThan24Hours": "You've been playing for greater than 24 hours", + "compliance.playtime.hours": "You've been playing for %s hour(s)", + "compliance.playtime.message": "Excessive gaming may interfere with normal daily life", + "connect.aborted": "Aborted", + "connect.authorizing": "Logging in...", + "connect.connecting": "Connecting to the server...", + "connect.encrypting": "Encrypting...", + "connect.failed": "Failed to connect to the server", + "connect.failed.transfer": "Connection failed while transferring to the server", + "connect.joining": "Joining world...", + "connect.negotiating": "Negotiating...", + "connect.reconfiging": "Reconfiguring...", + "connect.reconfiguring": "Reconfiguring...", + "connect.transferring": "Transferring to new server...", + "container.barrel": "Barrel", + "container.beacon": "Beacon", + "container.beehive.bees": "Bees: %s / %s", + "container.beehive.honey": "Honey: %s / %s", + "container.blast_furnace": "Blast Furnace", + "container.brewing": "Brewing Stand", + "container.cartography_table": "Cartography Table", + "container.chest": "Chest", + "container.chestDouble": "Large Chest", + "container.crafter": "Crafter", + "container.crafting": "Crafting", + "container.creative": "Item Selection", + "container.dispenser": "Dispenser", + "container.dropper": "Dropper", + "container.enchant": "Enchant", + "container.enchant.clue": "%s . . . ?", + "container.enchant.lapis.many": "%s Lapis Lazuli", + "container.enchant.lapis.one": "1 Lapis Lazuli", + "container.enchant.level.many": "%s Enchantment Levels", + "container.enchant.level.one": "1 Enchantment Level", + "container.enchant.level.requirement": "Level Requirement: %s", + "container.enderchest": "Ender Chest", + "container.furnace": "Furnace", + "container.grindstone_title": "Repair & Disenchant", + "container.hopper": "Item Hopper", + "container.inventory": "Inventory", + "container.isLocked": "%s is locked!", + "container.lectern": "Lectern", + "container.loom": "Loom", + "container.repair": "Repair & Name", + "container.repair.cost": "Enchantment Cost: %1$s", + "container.repair.expensive": "Too Expensive!", + "container.shulkerBox": "Shulker Box", + "container.shulkerBox.itemCount": "%s x%s", + "container.shulkerBox.more": "and %s more...", + "container.shulkerBox.unknownContents": "???????", + "container.smoker": "Smoker", + "container.spectatorCantOpen": "Unable to open. Loot not generated yet.", + "container.stonecutter": "Stonecutter", + "container.upgrade": "Upgrade Gear", + "container.upgrade.error_tooltip": "Item can't be upgraded this way", + "container.upgrade.missing_template_tooltip": "Add Smithing Template", + "controls.keybinds": "Key Binds...", + "controls.keybinds.duplicateKeybinds": "This key is also used for:\n%s", + "controls.keybinds.title": "Key Binds", + "controls.reset": "Reset", + "controls.resetAll": "Reset Keys", + "controls.title": "Controls", + "createWorld.customize.buffet.biome": "Please select a biome", + "createWorld.customize.buffet.title": "Single Biome Customization", + "createWorld.customize.flat.height": "Height", + "createWorld.customize.flat.layer": "%s", + "createWorld.customize.flat.layer.bottom": "Bottom - %s", + "createWorld.customize.flat.layer.top": "Top - %s", + "createWorld.customize.flat.removeLayer": "Remove Layer", + "createWorld.customize.flat.tile": "Layer Material", + "createWorld.customize.flat.title": "Superflat Customization", + "createWorld.customize.presets": "Presets", + "createWorld.customize.presets.list": "Alternatively, here are some we made earlier!", + "createWorld.customize.presets.select": "Use Preset", + "createWorld.customize.presets.share": "Want to share your preset with someone? Use the box below!", + "createWorld.customize.presets.title": "Select a Preset", + "createWorld.preparing": "Preparing for world creation...", + "createWorld.tab.game.title": "Game", + "createWorld.tab.more.title": "More", + "createWorld.tab.world.title": "World", + "credits_and_attribution.button.attribution": "Attribution", + "credits_and_attribution.button.credits": "Credits", + "credits_and_attribution.button.licenses": "Licenses", + "credits_and_attribution.screen.title": "Credits and Attribution", + "dataPack.bundle.description": "Enables experimental Bundle item", + "dataPack.bundle.name": "Bundles", + "dataPack.locator_bar.description": "Show the direction of other players in multiplayer", + "dataPack.locator_bar.name": "Locator Bar", + "dataPack.minecart_improvements.description": "Improved movement for Minecarts", + "dataPack.minecart_improvements.name": "Minecart Improvements", + "dataPack.redstone_experiments.description": "Experimental Redstone changes", + "dataPack.redstone_experiments.name": "Redstone Experiments", + "dataPack.title": "Select Data Packs", + "dataPack.trade_rebalance.description": "Updated trades for Villagers", + "dataPack.trade_rebalance.name": "Villager Trade Rebalance", + "dataPack.update_1_20.description": "New features and content for Minecraft 1.20", + "dataPack.update_1_20.name": "Update 1.20", + "dataPack.update_1_21.description": "New features and content for Minecraft 1.21", + "dataPack.update_1_21.name": "Update 1.21", + "dataPack.validation.back": "Go Back", + "dataPack.validation.failed": "Data pack validation failed!", + "dataPack.validation.reset": "Reset to Default", + "dataPack.validation.working": "Validating selected data packs...", + "dataPack.vanilla.description": "The default data for Minecraft", + "dataPack.vanilla.name": "Default", + "dataPack.winter_drop.description": "New features and content for the Winter Drop", + "dataPack.winter_drop.name": "Winter Drop", + "datapackFailure.safeMode": "Safe Mode", + "datapackFailure.safeMode.failed.description": "This world contains invalid or corrupted save data.", + "datapackFailure.safeMode.failed.title": "Failed to load world in Safe Mode.", + "datapackFailure.title": "Errors in currently selected data packs prevented the world from loading.\nYou can either try to load it with only the vanilla data pack (\"safe mode\"), or go back to the title screen and fix it manually.", + "death.attack.anvil": "%1$s was squashed by a falling anvil", + "death.attack.anvil.player": "%1$s was squashed by a falling anvil while fighting %2$s", + "death.attack.arrow": "%1$s was shot by %2$s", + "death.attack.arrow.item": "%1$s was shot by %2$s using %3$s", + "death.attack.badRespawnPoint.link": "Intentional Game Design", + "death.attack.badRespawnPoint.message": "%1$s was killed by %2$s", + "death.attack.cactus": "%1$s was pricked to death", + "death.attack.cactus.player": "%1$s walked into a cactus while trying to escape %2$s", + "death.attack.cramming": "%1$s was squished too much", + "death.attack.cramming.player": "%1$s was squashed by %2$s", + "death.attack.dragonBreath": "%1$s was roasted in dragon's breath", + "death.attack.dragonBreath.player": "%1$s was roasted in dragon's breath by %2$s", + "death.attack.drown": "%1$s drowned", + "death.attack.drown.player": "%1$s drowned while trying to escape %2$s", + "death.attack.dryout": "%1$s died from dehydration", + "death.attack.dryout.player": "%1$s died from dehydration while trying to escape %2$s", + "death.attack.even_more_magic": "%1$s was killed by even more magic", + "death.attack.explosion": "%1$s blew up", + "death.attack.explosion.player": "%1$s was blown up by %2$s", + "death.attack.explosion.player.item": "%1$s was blown up by %2$s using %3$s", + "death.attack.fall": "%1$s hit the ground too hard", + "death.attack.fall.player": "%1$s hit the ground too hard while trying to escape %2$s", + "death.attack.fallingBlock": "%1$s was squashed by a falling block", + "death.attack.fallingBlock.player": "%1$s was squashed by a falling block while fighting %2$s", + "death.attack.fallingStalactite": "%1$s was skewered by a falling stalactite", + "death.attack.fallingStalactite.player": "%1$s was skewered by a falling stalactite while fighting %2$s", + "death.attack.fireball": "%1$s was fireballed by %2$s", + "death.attack.fireball.item": "%1$s was fireballed by %2$s using %3$s", + "death.attack.fireworks": "%1$s went off with a bang", + "death.attack.fireworks.item": "%1$s went off with a bang due to a firework fired from %3$s by %2$s", + "death.attack.fireworks.player": "%1$s went off with a bang while fighting %2$s", + "death.attack.flyIntoWall": "%1$s experienced kinetic energy", + "death.attack.flyIntoWall.player": "%1$s experienced kinetic energy while trying to escape %2$s", + "death.attack.freeze": "%1$s froze to death", + "death.attack.freeze.player": "%1$s was frozen to death by %2$s", + "death.attack.generic": "%1$s died", + "death.attack.generic.player": "%1$s died because of %2$s", + "death.attack.genericKill": "%1$s was killed", + "death.attack.genericKill.player": "%1$s was killed while fighting %2$s", + "death.attack.hotFloor": "%1$s discovered the floor was lava", + "death.attack.hotFloor.player": "%1$s walked into the danger zone due to %2$s", + "death.attack.indirectMagic": "%1$s was killed by %2$s using magic", + "death.attack.indirectMagic.item": "%1$s was killed by %2$s using %3$s", + "death.attack.inFire": "%1$s went up in flames", + "death.attack.inFire.player": "%1$s walked into fire while fighting %2$s", + "death.attack.inWall": "%1$s suffocated in a wall", + "death.attack.inWall.player": "%1$s suffocated in a wall while fighting %2$s", + "death.attack.lava": "%1$s tried to swim in lava", + "death.attack.lava.player": "%1$s tried to swim in lava to escape %2$s", + "death.attack.lightningBolt": "%1$s was struck by lightning", + "death.attack.lightningBolt.player": "%1$s was struck by lightning while fighting %2$s", + "death.attack.mace_smash": "%1$s was smashed by %2$s", + "death.attack.mace_smash.item": "%1$s was smashed by %2$s with %3$s", + "death.attack.magic": "%1$s was killed by magic", + "death.attack.magic.player": "%1$s was killed by magic while trying to escape %2$s", + "death.attack.message_too_long": "Actually, the message was too long to deliver fully. Sorry! Here's a stripped version: %s", + "death.attack.mob": "%1$s was slain by %2$s", + "death.attack.mob.item": "%1$s was slain by %2$s using %3$s", + "death.attack.onFire": "%1$s burned to death", + "death.attack.onFire.item": "%1$s was burned to a crisp while fighting %2$s wielding %3$s", + "death.attack.onFire.player": "%1$s was burned to a crisp while fighting %2$s", + "death.attack.outOfWorld": "%1$s fell out of the world", + "death.attack.outOfWorld.player": "%1$s didn't want to live in the same world as %2$s", + "death.attack.outsideBorder": "%1$s left the confines of this world", + "death.attack.outsideBorder.player": "%1$s left the confines of this world while fighting %2$s", + "death.attack.player": "%1$s was slain by %2$s", + "death.attack.player.item": "%1$s was slain by %2$s using %3$s", + "death.attack.sonic_boom": "%1$s was obliterated by a sonically-charged shriek", + "death.attack.sonic_boom.item": "%1$s was obliterated by a sonically-charged shriek while trying to escape %2$s wielding %3$s", + "death.attack.sonic_boom.player": "%1$s was obliterated by a sonically-charged shriek while trying to escape %2$s", + "death.attack.stalagmite": "%1$s was impaled on a stalagmite", + "death.attack.stalagmite.player": "%1$s was impaled on a stalagmite while fighting %2$s", + "death.attack.starve": "%1$s starved to death", + "death.attack.starve.player": "%1$s starved to death while fighting %2$s", + "death.attack.sting": "%1$s was stung to death", + "death.attack.sting.item": "%1$s was stung to death by %2$s using %3$s", + "death.attack.sting.player": "%1$s was stung to death by %2$s", + "death.attack.sweetBerryBush": "%1$s was poked to death by a sweet berry bush", + "death.attack.sweetBerryBush.player": "%1$s was poked to death by a sweet berry bush while trying to escape %2$s", + "death.attack.thorns": "%1$s was killed while trying to hurt %2$s", + "death.attack.thorns.item": "%1$s was killed by %3$s while trying to hurt %2$s", + "death.attack.thrown": "%1$s was pummeled by %2$s", + "death.attack.thrown.item": "%1$s was pummeled by %2$s using %3$s", + "death.attack.trident": "%1$s was impaled by %2$s", + "death.attack.trident.item": "%1$s was impaled by %2$s with %3$s", + "death.attack.wither": "%1$s withered away", + "death.attack.wither.player": "%1$s withered away while fighting %2$s", + "death.attack.witherSkull": "%1$s was shot by a skull from %2$s", + "death.attack.witherSkull.item": "%1$s was shot by a skull from %2$s using %3$s", + "death.fell.accident.generic": "%1$s fell from a high place", + "death.fell.accident.ladder": "%1$s fell off a ladder", + "death.fell.accident.other_climbable": "%1$s fell while climbing", + "death.fell.accident.scaffolding": "%1$s fell off scaffolding", + "death.fell.accident.twisting_vines": "%1$s fell off some twisting vines", + "death.fell.accident.vines": "%1$s fell off some vines", + "death.fell.accident.weeping_vines": "%1$s fell off some weeping vines", + "death.fell.assist": "%1$s was doomed to fall by %2$s", + "death.fell.assist.item": "%1$s was doomed to fall by %2$s using %3$s", + "death.fell.finish": "%1$s fell too far and was finished by %2$s", + "death.fell.finish.item": "%1$s fell too far and was finished by %2$s using %3$s", + "death.fell.killer": "%1$s was doomed to fall", + "deathScreen.quit.confirm": "Are you sure you want to quit?", + "deathScreen.respawn": "Respawn", + "deathScreen.score": "Score", + "deathScreen.score.value": "Score: %s", + "deathScreen.spectate": "Spectate World", + "deathScreen.title": "You Died!", + "deathScreen.title.hardcore": "Game Over!", + "deathScreen.titleScreen": "Title Screen", + "debug.advanced_tooltips.help": "F3 + H = Advanced tooltips", + "debug.advanced_tooltips.off": "Advanced tooltips: hidden", + "debug.advanced_tooltips.on": "Advanced tooltips: shown", + "debug.chunk_boundaries.help": "F3 + G = Show chunk boundaries", + "debug.chunk_boundaries.off": "Chunk borders: hidden", + "debug.chunk_boundaries.on": "Chunk borders: shown", + "debug.clear_chat.help": "F3 + D = Clear chat", + "debug.copy_location.help": "F3 + C = Copy location as /tp command, hold F3 + C to crash the game", + "debug.copy_location.message": "Copied location to clipboard", + "debug.crash.message": "F3 + C is held down. This will crash the game unless released.", + "debug.crash.warning": "Crashing in %s...", + "debug.creative_spectator.error": "Unable to switch game mode; no permission", + "debug.creative_spectator.help": "F3 + N = Cycle previous game mode <-> spectator", + "debug.dump_dynamic_textures": "Saved dynamic textures to %s", + "debug.dump_dynamic_textures.help": "F3 + S = Dump dynamic textures", + "debug.gamemodes.error": "Unable to open game mode switcher; no permission", + "debug.gamemodes.help": "F3 + F4 = Open game mode switcher", + "debug.gamemodes.press_f4": "[ F4 ]", + "debug.gamemodes.select_next": "%s Next", + "debug.help.help": "F3 + Q = Show this list", + "debug.help.message": "Key bindings:", + "debug.inspect.client.block": "Copied client-side block data to clipboard", + "debug.inspect.client.entity": "Copied client-side entity data to clipboard", + "debug.inspect.help": "F3 + I = Copy entity or block data to clipboard", + "debug.inspect.server.block": "Copied server-side block data to clipboard", + "debug.inspect.server.entity": "Copied server-side entity data to clipboard", + "debug.pause_focus.help": "F3 + P = Pause on lost focus", + "debug.pause_focus.off": "Pause on lost focus: disabled", + "debug.pause_focus.on": "Pause on lost focus: enabled", + "debug.pause.help": "F3 + Esc = Pause without pause menu (if pausing is possible)", + "debug.prefix": "[Debug]:", + "debug.profiling.help": "F3 + L = Start/stop profiling", + "debug.profiling.start": "Profiling started for %s seconds. Use F3 + L to stop early", + "debug.profiling.stop": "Profiling ended. Saved results to %s", + "debug.reload_chunks.help": "F3 + A = Reload chunks", + "debug.reload_chunks.message": "Reloading all chunks", + "debug.reload_resourcepacks.help": "F3 + T = Reload resource packs", + "debug.reload_resourcepacks.message": "Reloaded resource packs", + "debug.show_hitboxes.help": "F3 + B = Show hitboxes", + "debug.show_hitboxes.off": "Hitboxes: hidden", + "debug.show_hitboxes.on": "Hitboxes: shown", + "debug.version.header": "Client version info:", + "debug.version.help": "F3 + V = Client version info", + "demo.day.1": "This demo will last five game days. Do your best!", + "demo.day.2": "Day Two", + "demo.day.3": "Day Three", + "demo.day.4": "Day Four", + "demo.day.5": "This is your last day!", + "demo.day.6": "You have passed your fifth day. Use %s to save a screenshot of your creation.", + "demo.day.warning": "Your time is almost up!", + "demo.demoExpired": "Demo time's up!", + "demo.help.buy": "Purchase Now!", + "demo.help.fullWrapped": "This demo will last 5 in-game days (about 1 hour and 40 minutes of real time). Check the advancements for hints! Have fun!", + "demo.help.inventory": "Use the %1$s key to open your inventory", + "demo.help.jump": "Jump by pressing the %1$s key", + "demo.help.later": "Continue Playing!", + "demo.help.movement": "Use the %1$s, %2$s, %3$s, %4$s keys and the mouse to move around", + "demo.help.movementMouse": "Look around using the mouse", + "demo.help.movementShort": "Move by pressing the %1$s, %2$s, %3$s, %4$s keys", + "demo.help.title": "Minecraft Demo Mode", + "demo.remainingTime": "Remaining time: %s", + "demo.reminder": "The demo time has expired. Buy the game to continue or start a new world!", + "difficulty.lock.question": "Are you sure you want to lock the difficulty of this world? This will set this world to always be %1$s, and you will never be able to change that again.", + "difficulty.lock.title": "Lock World Difficulty", + "disconnect.endOfStream": "End of stream", + "disconnect.exceeded_packet_rate": "Kicked for exceeding packet rate limit", + "disconnect.genericReason": "%s", + "disconnect.ignoring_status_request": "Ignoring status request", + "disconnect.loginFailedInfo": "Failed to log in: %s", + "disconnect.loginFailedInfo.insufficientPrivileges": "Multiplayer is disabled. Please check your Microsoft account settings.", + "disconnect.loginFailedInfo.invalidSession": "Invalid session (Try restarting your game and the launcher)", + "disconnect.loginFailedInfo.serversUnavailable": "The authentication servers are currently not reachable. Please try again.", + "disconnect.loginFailedInfo.userBanned": "You are banned from playing online", + "disconnect.lost": "Connection Lost", + "disconnect.packetError": "Network Protocol Error", + "disconnect.spam": "Kicked for spamming", + "disconnect.timeout": "Timed out", + "disconnect.transfer": "Transferred to another server", + "disconnect.unknownHost": "Unknown host", + "download.pack.failed": "%s out of %s pack(s) failed to download", + "download.pack.progress.bytes": "Progress: %s (total size unknown)", + "download.pack.progress.percent": "Progress: %s%%", + "download.pack.title": "Downloading resource pack %s/%s", + "editGamerule.default": "Default: %s", + "editGamerule.title": "Edit Game Rules", + "effect.duration.infinite": "∞", + "effect.minecraft.absorption": "Absorption", + "effect.minecraft.bad_omen": "Bad Omen", + "effect.minecraft.blindness": "Blindness", + "effect.minecraft.conduit_power": "Conduit Power", + "effect.minecraft.darkness": "Darkness", + "effect.minecraft.dolphins_grace": "Dolphin's Grace", + "effect.minecraft.fire_resistance": "Fire Resistance", + "effect.minecraft.glowing": "Glowing", + "effect.minecraft.haste": "Haste", + "effect.minecraft.health_boost": "Health Boost", + "effect.minecraft.hero_of_the_village": "Hero of the Village", + "effect.minecraft.hunger": "Hunger", + "effect.minecraft.infested": "Infested", + "effect.minecraft.instant_damage": "Instant Damage", + "effect.minecraft.instant_health": "Instant Health", + "effect.minecraft.invisibility": "Invisibility", + "effect.minecraft.jump_boost": "Jump Boost", + "effect.minecraft.levitation": "Levitation", + "effect.minecraft.luck": "Luck", + "effect.minecraft.mining_fatigue": "Mining Fatigue", + "effect.minecraft.nausea": "Nausea", + "effect.minecraft.night_vision": "Night Vision", + "effect.minecraft.oozing": "Oozing", + "effect.minecraft.poison": "Poison", + "effect.minecraft.raid_omen": "Raid Omen", + "effect.minecraft.regeneration": "Regeneration", + "effect.minecraft.resistance": "Resistance", + "effect.minecraft.saturation": "Saturation", + "effect.minecraft.slow_falling": "Slow Falling", + "effect.minecraft.slowness": "Slowness", + "effect.minecraft.speed": "Speed", + "effect.minecraft.strength": "Strength", + "effect.minecraft.trial_omen": "Trial Omen", + "effect.minecraft.unluck": "Bad Luck", + "effect.minecraft.water_breathing": "Water Breathing", + "effect.minecraft.weakness": "Weakness", + "effect.minecraft.weaving": "Weaving", + "effect.minecraft.wind_charged": "Wind Charged", + "effect.minecraft.wither": "Wither", + "effect.none": "No Effects", + "enchantment.level.1": "I", + "enchantment.level.2": "II", + "enchantment.level.3": "III", + "enchantment.level.4": "IV", + "enchantment.level.5": "V", + "enchantment.level.6": "VI", + "enchantment.level.7": "VII", + "enchantment.level.8": "VIII", + "enchantment.level.9": "IX", + "enchantment.level.10": "X", + "enchantment.minecraft.aqua_affinity": "Aqua Affinity", + "enchantment.minecraft.bane_of_arthropods": "Bane of Arthropods", + "enchantment.minecraft.binding_curse": "Curse of Binding", + "enchantment.minecraft.blast_protection": "Blast Protection", + "enchantment.minecraft.breach": "Breach", + "enchantment.minecraft.channeling": "Channeling", + "enchantment.minecraft.density": "Density", + "enchantment.minecraft.depth_strider": "Depth Strider", + "enchantment.minecraft.efficiency": "Efficiency", + "enchantment.minecraft.feather_falling": "Feather Falling", + "enchantment.minecraft.fire_aspect": "Fire Aspect", + "enchantment.minecraft.fire_protection": "Fire Protection", + "enchantment.minecraft.flame": "Flame", + "enchantment.minecraft.fortune": "Fortune", + "enchantment.minecraft.frost_walker": "Frost Walker", + "enchantment.minecraft.impaling": "Impaling", + "enchantment.minecraft.infinity": "Infinity", + "enchantment.minecraft.knockback": "Knockback", + "enchantment.minecraft.looting": "Looting", + "enchantment.minecraft.loyalty": "Loyalty", + "enchantment.minecraft.luck_of_the_sea": "Luck of the Sea", + "enchantment.minecraft.lure": "Lure", + "enchantment.minecraft.mending": "Mending", + "enchantment.minecraft.multishot": "Multishot", + "enchantment.minecraft.piercing": "Piercing", + "enchantment.minecraft.power": "Power", + "enchantment.minecraft.projectile_protection": "Projectile Protection", + "enchantment.minecraft.protection": "Protection", + "enchantment.minecraft.punch": "Punch", + "enchantment.minecraft.quick_charge": "Quick Charge", + "enchantment.minecraft.respiration": "Respiration", + "enchantment.minecraft.riptide": "Riptide", + "enchantment.minecraft.sharpness": "Sharpness", + "enchantment.minecraft.silk_touch": "Silk Touch", + "enchantment.minecraft.smite": "Smite", + "enchantment.minecraft.soul_speed": "Soul Speed", + "enchantment.minecraft.sweeping": "Sweeping Edge", + "enchantment.minecraft.sweeping_edge": "Sweeping Edge", + "enchantment.minecraft.swift_sneak": "Swift Sneak", + "enchantment.minecraft.thorns": "Thorns", + "enchantment.minecraft.unbreaking": "Unbreaking", + "enchantment.minecraft.vanishing_curse": "Curse of Vanishing", + "enchantment.minecraft.wind_burst": "Wind Burst", + "entity.minecraft.acacia_boat": "Acacia Boat", + "entity.minecraft.acacia_chest_boat": "Acacia Boat with Chest", + "entity.minecraft.allay": "Allay", + "entity.minecraft.area_effect_cloud": "Area Effect Cloud", + "entity.minecraft.armadillo": "Armadillo", + "entity.minecraft.armor_stand": "Armor Stand", + "entity.minecraft.arrow": "Arrow", + "entity.minecraft.axolotl": "Axolotl", + "entity.minecraft.bamboo_chest_raft": "Bamboo Raft with Chest", + "entity.minecraft.bamboo_raft": "Bamboo Raft", + "entity.minecraft.bat": "Bat", + "entity.minecraft.bee": "Bee", + "entity.minecraft.birch_boat": "Birch Boat", + "entity.minecraft.birch_chest_boat": "Birch Boat with Chest", + "entity.minecraft.blaze": "Blaze", + "entity.minecraft.block_display": "Block Display", + "entity.minecraft.boat": "Boat", + "entity.minecraft.bogged": "Bogged", + "entity.minecraft.breeze": "Breeze", + "entity.minecraft.breeze_wind_charge": "Wind Charge", + "entity.minecraft.camel": "Camel", + "entity.minecraft.cat": "Cat", + "entity.minecraft.cave_spider": "Cave Spider", + "entity.minecraft.cherry_boat": "Cherry Boat", + "entity.minecraft.cherry_chest_boat": "Cherry Boat with Chest", + "entity.minecraft.chest_boat": "Boat with Chest", + "entity.minecraft.chest_minecart": "Minecart with Chest", + "entity.minecraft.chicken": "Chicken", + "entity.minecraft.cod": "Cod", + "entity.minecraft.command_block_minecart": "Minecart with Command Block", + "entity.minecraft.cow": "Cow", + "entity.minecraft.creaking": "Creaking", + "entity.minecraft.creaking_transient": "Creaking", + "entity.minecraft.creeper": "Creeper", + "entity.minecraft.dark_oak_boat": "Dark Oak Boat", + "entity.minecraft.dark_oak_chest_boat": "Dark Oak Boat with Chest", + "entity.minecraft.dolphin": "Dolphin", + "entity.minecraft.donkey": "Donkey", + "entity.minecraft.dragon_fireball": "Dragon Fireball", + "entity.minecraft.drowned": "Drowned", + "entity.minecraft.egg": "Thrown Egg", + "entity.minecraft.elder_guardian": "Elder Guardian", + "entity.minecraft.end_crystal": "End Crystal", + "entity.minecraft.ender_dragon": "Ender Dragon", + "entity.minecraft.ender_pearl": "Thrown Ender Pearl", + "entity.minecraft.enderman": "Enderman", + "entity.minecraft.endermite": "Endermite", + "entity.minecraft.evoker": "Evoker", + "entity.minecraft.evoker_fangs": "Evoker Fangs", + "entity.minecraft.experience_bottle": "Thrown Bottle o' Enchanting", + "entity.minecraft.experience_orb": "Experience Orb", + "entity.minecraft.eye_of_ender": "Eye of Ender", + "entity.minecraft.falling_block": "Falling Block", + "entity.minecraft.falling_block_type": "Falling %s", + "entity.minecraft.fireball": "Fireball", + "entity.minecraft.firework_rocket": "Firework Rocket", + "entity.minecraft.fishing_bobber": "Fishing Bobber", + "entity.minecraft.fox": "Fox", + "entity.minecraft.frog": "Frog", + "entity.minecraft.furnace_minecart": "Minecart with Furnace", + "entity.minecraft.ghast": "Ghast", + "entity.minecraft.giant": "Giant", + "entity.minecraft.glow_item_frame": "Glow Item Frame", + "entity.minecraft.glow_squid": "Glow Squid", + "entity.minecraft.goat": "Goat", + "entity.minecraft.guardian": "Guardian", + "entity.minecraft.happy_ghast": "Happy Ghast", + "entity.minecraft.hoglin": "Hoglin", + "entity.minecraft.hopper_minecart": "Minecart with Hopper", + "entity.minecraft.horse": "Horse", + "entity.minecraft.husk": "Husk", + "entity.minecraft.illusioner": "Illusioner", + "entity.minecraft.interaction": "Interaction", + "entity.minecraft.iron_golem": "Iron Golem", + "entity.minecraft.item": "Item", + "entity.minecraft.item_display": "Item Display", + "entity.minecraft.item_frame": "Item Frame", + "entity.minecraft.jungle_boat": "Jungle Boat", + "entity.minecraft.jungle_chest_boat": "Jungle Boat with Chest", + "entity.minecraft.killer_bunny": "The Killer Bunny", + "entity.minecraft.leash_knot": "Leash Knot", + "entity.minecraft.lightning_bolt": "Lightning Bolt", + "entity.minecraft.lingering_potion": "Lingering Potion", + "entity.minecraft.llama": "Llama", + "entity.minecraft.llama_spit": "Llama Spit", + "entity.minecraft.magma_cube": "Magma Cube", + "entity.minecraft.mangrove_boat": "Mangrove Boat", + "entity.minecraft.mangrove_chest_boat": "Mangrove Boat with Chest", + "entity.minecraft.marker": "Marker", + "entity.minecraft.minecart": "Minecart", + "entity.minecraft.mooshroom": "Mooshroom", + "entity.minecraft.mule": "Mule", + "entity.minecraft.oak_boat": "Oak Boat", + "entity.minecraft.oak_chest_boat": "Oak Boat with Chest", + "entity.minecraft.ocelot": "Ocelot", + "entity.minecraft.ominous_item_spawner": "Ominous Item Spawner", + "entity.minecraft.painting": "Painting", + "entity.minecraft.pale_oak_boat": "Pale Oak Boat", + "entity.minecraft.pale_oak_chest_boat": "Pale Oak Boat with Chest", + "entity.minecraft.panda": "Panda", + "entity.minecraft.parrot": "Parrot", + "entity.minecraft.phantom": "Phantom", + "entity.minecraft.pig": "Pig", + "entity.minecraft.piglin": "Piglin", + "entity.minecraft.piglin_brute": "Piglin Brute", + "entity.minecraft.pillager": "Pillager", + "entity.minecraft.player": "Player", + "entity.minecraft.polar_bear": "Polar Bear", + "entity.minecraft.potion": "Potion", + "entity.minecraft.pufferfish": "Pufferfish", + "entity.minecraft.rabbit": "Rabbit", + "entity.minecraft.ravager": "Ravager", + "entity.minecraft.salmon": "Salmon", + "entity.minecraft.sheep": "Sheep", + "entity.minecraft.shulker": "Shulker", + "entity.minecraft.shulker_bullet": "Shulker Bullet", + "entity.minecraft.silverfish": "Silverfish", + "entity.minecraft.skeleton": "Skeleton", + "entity.minecraft.skeleton_horse": "Skeleton Horse", + "entity.minecraft.slime": "Slime", + "entity.minecraft.small_fireball": "Small Fireball", + "entity.minecraft.sniffer": "Sniffer", + "entity.minecraft.snow_golem": "Snow Golem", + "entity.minecraft.snowball": "Snowball", + "entity.minecraft.spawner_minecart": "Minecart with Monster Spawner", + "entity.minecraft.spectral_arrow": "Spectral Arrow", + "entity.minecraft.spider": "Spider", + "entity.minecraft.splash_potion": "Splash Potion", + "entity.minecraft.spruce_boat": "Spruce Boat", + "entity.minecraft.spruce_chest_boat": "Spruce Boat with Chest", + "entity.minecraft.squid": "Squid", + "entity.minecraft.stray": "Stray", + "entity.minecraft.strider": "Strider", + "entity.minecraft.tadpole": "Tadpole", + "entity.minecraft.text_display": "Text Display", + "entity.minecraft.tnt": "Primed TNT", + "entity.minecraft.tnt_minecart": "Minecart with TNT", + "entity.minecraft.trader_llama": "Trader Llama", + "entity.minecraft.trident": "Trident", + "entity.minecraft.tropical_fish": "Tropical Fish", + "entity.minecraft.tropical_fish.predefined.0": "Anemone", + "entity.minecraft.tropical_fish.predefined.1": "Black Tang", + "entity.minecraft.tropical_fish.predefined.2": "Blue Tang", + "entity.minecraft.tropical_fish.predefined.3": "Butterflyfish", + "entity.minecraft.tropical_fish.predefined.4": "Cichlid", + "entity.minecraft.tropical_fish.predefined.5": "Clownfish", + "entity.minecraft.tropical_fish.predefined.6": "Cotton Candy Betta", + "entity.minecraft.tropical_fish.predefined.7": "Dottyback", + "entity.minecraft.tropical_fish.predefined.8": "Emperor Red Snapper", + "entity.minecraft.tropical_fish.predefined.9": "Goatfish", + "entity.minecraft.tropical_fish.predefined.10": "Moorish Idol", + "entity.minecraft.tropical_fish.predefined.11": "Ornate Butterflyfish", + "entity.minecraft.tropical_fish.predefined.12": "Parrotfish", + "entity.minecraft.tropical_fish.predefined.13": "Queen Angelfish", + "entity.minecraft.tropical_fish.predefined.14": "Red Cichlid", + "entity.minecraft.tropical_fish.predefined.15": "Red Lipped Blenny", + "entity.minecraft.tropical_fish.predefined.16": "Red Snapper", + "entity.minecraft.tropical_fish.predefined.17": "Threadfin", + "entity.minecraft.tropical_fish.predefined.18": "Tomato Clownfish", + "entity.minecraft.tropical_fish.predefined.19": "Triggerfish", + "entity.minecraft.tropical_fish.predefined.20": "Yellowtail Parrotfish", + "entity.minecraft.tropical_fish.predefined.21": "Yellow Tang", + "entity.minecraft.tropical_fish.type.betty": "Betty", + "entity.minecraft.tropical_fish.type.blockfish": "Blockfish", + "entity.minecraft.tropical_fish.type.brinely": "Brinely", + "entity.minecraft.tropical_fish.type.clayfish": "Clayfish", + "entity.minecraft.tropical_fish.type.dasher": "Dasher", + "entity.minecraft.tropical_fish.type.flopper": "Flopper", + "entity.minecraft.tropical_fish.type.glitter": "Glitter", + "entity.minecraft.tropical_fish.type.kob": "Kob", + "entity.minecraft.tropical_fish.type.snooper": "Snooper", + "entity.minecraft.tropical_fish.type.spotty": "Spotty", + "entity.minecraft.tropical_fish.type.stripey": "Stripey", + "entity.minecraft.tropical_fish.type.sunstreak": "Sunstreak", + "entity.minecraft.turtle": "Turtle", + "entity.minecraft.vex": "Vex", + "entity.minecraft.villager": "Villager", + "entity.minecraft.villager.armorer": "Armorer", + "entity.minecraft.villager.butcher": "Butcher", + "entity.minecraft.villager.cartographer": "Cartographer", + "entity.minecraft.villager.cleric": "Cleric", + "entity.minecraft.villager.farmer": "Farmer", + "entity.minecraft.villager.fisherman": "Fisherman", + "entity.minecraft.villager.fletcher": "Fletcher", + "entity.minecraft.villager.leatherworker": "Leatherworker", + "entity.minecraft.villager.librarian": "Librarian", + "entity.minecraft.villager.mason": "Mason", + "entity.minecraft.villager.nitwit": "Nitwit", + "entity.minecraft.villager.none": "Villager", + "entity.minecraft.villager.shepherd": "Shepherd", + "entity.minecraft.villager.toolsmith": "Toolsmith", + "entity.minecraft.villager.weaponsmith": "Weaponsmith", + "entity.minecraft.vindicator": "Vindicator", + "entity.minecraft.wandering_trader": "Wandering Trader", + "entity.minecraft.warden": "Warden", + "entity.minecraft.wind_charge": "Wind Charge", + "entity.minecraft.witch": "Witch", + "entity.minecraft.wither": "Wither", + "entity.minecraft.wither_skeleton": "Wither Skeleton", + "entity.minecraft.wither_skull": "Wither Skull", + "entity.minecraft.wolf": "Wolf", + "entity.minecraft.zoglin": "Zoglin", + "entity.minecraft.zombie": "Zombie", + "entity.minecraft.zombie_horse": "Zombie Horse", + "entity.minecraft.zombie_villager": "Zombie Villager", + "entity.minecraft.zombified_piglin": "Zombified Piglin", + "entity.not_summonable": "Can't summon entity of type %s", + "event.minecraft.raid": "Raid", + "event.minecraft.raid.defeat": "Defeat", + "event.minecraft.raid.defeat.full": "Raid - Defeat", + "event.minecraft.raid.raiders_remaining": "Raiders Remaining: %s", + "event.minecraft.raid.victory": "Victory", + "event.minecraft.raid.victory.full": "Raid - Victory", + "filled_map.buried_treasure": "Buried Treasure Map", + "filled_map.explorer_jungle": "Jungle Explorer Map", + "filled_map.explorer_swamp": "Swamp Explorer Map", + "filled_map.id": "Id #%s", + "filled_map.level": "(Level %s/%s)", + "filled_map.locked": "Locked", + "filled_map.mansion": "Woodland Explorer Map", + "filled_map.monument": "Ocean Explorer Map", + "filled_map.scale": "Scaling at 1:%s", + "filled_map.trial_chambers": "Trial Explorer Map", + "filled_map.unknown": "Unknown Map", + "filled_map.village_desert": "Desert Village Map", + "filled_map.village_plains": "Plains Village Map", + "filled_map.village_savanna": "Savanna Village Map", + "filled_map.village_snowy": "Snowy Village Map", + "filled_map.village_taiga": "Taiga Village Map", + "flat_world_preset.minecraft.bottomless_pit": "Bottomless Pit", + "flat_world_preset.minecraft.classic_flat": "Classic Flat", + "flat_world_preset.minecraft.desert": "Desert", + "flat_world_preset.minecraft.overworld": "Overworld", + "flat_world_preset.minecraft.redstone_ready": "Redstone Ready", + "flat_world_preset.minecraft.snowy_kingdom": "Snowy Kingdom", + "flat_world_preset.minecraft.the_void": "The Void", + "flat_world_preset.minecraft.tunnelers_dream": "Tunnelers' Dream", + "flat_world_preset.minecraft.water_world": "Water World", + "flat_world_preset.unknown": "???", + "gameMode.adventure": "Adventure Mode", + "gameMode.changed": "Your game mode has been updated to %s", + "gameMode.creative": "Creative Mode", + "gameMode.hardcore": "Hardcore Mode", + "gameMode.spectator": "Spectator Mode", + "gameMode.survival": "Survival Mode", + "gamerule.allowFireTicksAwayFromPlayer": "Tick fire away from players", + "gamerule.allowFireTicksAwayFromPlayer.description": "Controls whether or not fire and lava should be able to tick further than 8 chunks away from any player", + "gamerule.announceAdvancements": "Announce advancements", + "gamerule.blockExplosionDropDecay": "In block interaction explosions, some blocks won't drop their loot", + "gamerule.blockExplosionDropDecay.description": "Some of the drops from blocks destroyed by explosions caused by block interactions are lost in the explosion.", + "gamerule.category.chat": "Chat", + "gamerule.category.drops": "Drops", + "gamerule.category.misc": "Miscellaneous", + "gamerule.category.mobs": "Mobs", + "gamerule.category.player": "Player", + "gamerule.category.spawning": "Spawning", + "gamerule.category.updates": "World Updates", + "gamerule.commandBlockOutput": "Broadcast command block output", + "gamerule.commandModificationBlockLimit": "Command modification block limit", + "gamerule.commandModificationBlockLimit.description": "Number of blocks that can be changed at once by one command, such as fill or clone.", + "gamerule.disableElytraMovementCheck": "Disable elytra movement check", + "gamerule.disablePlayerMovementCheck": "Disable player movement check", + "gamerule.disableRaids": "Disable raids", + "gamerule.doDaylightCycle": "Advance time of day", + "gamerule.doEntityDrops": "Drop entity equipment", + "gamerule.doEntityDrops.description": "Controls drops from minecarts (including inventories), item frames, boats, etc.", + "gamerule.doFireTick": "Update fire", + "gamerule.doImmediateRespawn": "Respawn immediately", + "gamerule.doInsomnia": "Spawn phantoms", + "gamerule.doLimitedCrafting": "Require recipe for crafting", + "gamerule.doLimitedCrafting.description": "If enabled, players will be able to craft only unlocked recipes.", + "gamerule.doMobLoot": "Drop mob loot", + "gamerule.doMobLoot.description": "Controls resource drops from mobs, including experience orbs.", + "gamerule.doMobSpawning": "Spawn mobs", + "gamerule.doMobSpawning.description": "Some entities might have separate rules.", + "gamerule.doPatrolSpawning": "Spawn pillager patrols", + "gamerule.doTileDrops": "Drop blocks", + "gamerule.doTileDrops.description": "Controls resource drops from blocks, including experience orbs.", + "gamerule.doTraderSpawning": "Spawn Wandering Traders", + "gamerule.doVinesSpread": "Vines spread", + "gamerule.doVinesSpread.description": "Controls whether or not the Vines block spreads randomly to adjacent blocks. Does not affect other types of vine blocks such as Weeping Vines, Twisting Vines, etc.", + "gamerule.doWardenSpawning": "Spawn Wardens", + "gamerule.doWeatherCycle": "Update weather", + "gamerule.drowningDamage": "Deal drowning damage", + "gamerule.enderPearlsVanishOnDeath": "Thrown Ender Pearls vanish on death", + "gamerule.enderPearlsVanishOnDeath.description": "Whether Ender Pearls thrown by a player vanish when that player dies.", + "gamerule.entitiesWithPassengersCanUsePortals": "Entities with passengers can use portals", + "gamerule.entitiesWithPassengersCanUsePortals.description": "Allow entities with passengers to teleport through Nether Portals, End Portals, and End Gateways.", + "gamerule.fallDamage": "Deal fall damage", + "gamerule.fireDamage": "Deal fire damage", + "gamerule.forgiveDeadPlayers": "Forgive dead players", + "gamerule.forgiveDeadPlayers.description": "Angered neutral mobs stop being angry when the targeted player dies nearby.", + "gamerule.freezeDamage": "Deal freeze damage", + "gamerule.globalSoundEvents": "Global sound events", + "gamerule.globalSoundEvents.description": "When certain game events happen, like a boss spawning, the sound is heard everywhere.", + "gamerule.keepInventory": "Keep inventory after death", + "gamerule.lavaSourceConversion": "Lava converts to source", + "gamerule.lavaSourceConversion.description": "When flowing lava is surrounded on two sides by lava sources it converts into a source.", + "gamerule.locatorBar": "Enable player Locator Bar", + "gamerule.locatorBar.description": "When enabled, a bar is shown on the screen to indicate the direction of players.", + "gamerule.logAdminCommands": "Broadcast admin commands", + "gamerule.maxCommandChainLength": "Command chain size limit", + "gamerule.maxCommandChainLength.description": "Applies to command block chains and functions.", + "gamerule.maxCommandForkCount": "Command context limit", + "gamerule.maxCommandForkCount.description": "Maximum number of contexts that can be used by commands like 'execute as'.", + "gamerule.maxEntityCramming": "Entity cramming threshold", + "gamerule.minecartMaxSpeed": "Minecart max speed", + "gamerule.minecartMaxSpeed.description": "Maximum default speed of a moving Minecart on land.", + "gamerule.mobExplosionDropDecay": "In mob explosions, some blocks won't drop their loot", + "gamerule.mobExplosionDropDecay.description": "Some of the drops from blocks destroyed by explosions caused by mobs are lost in the explosion.", + "gamerule.mobGriefing": "Allow destructive mob actions", + "gamerule.naturalRegeneration": "Regenerate health", + "gamerule.playersNetherPortalCreativeDelay": "Player's Nether portal delay in creative mode", + "gamerule.playersNetherPortalCreativeDelay.description": "Time (in ticks) that a creative mode player needs to stand in a Nether portal before changing dimensions.", + "gamerule.playersNetherPortalDefaultDelay": "Player's Nether portal delay in non-creative mode", + "gamerule.playersNetherPortalDefaultDelay.description": "Time (in ticks) that a non-creative mode player needs to stand in a Nether portal before changing dimensions.", + "gamerule.playersSleepingPercentage": "Sleep percentage", + "gamerule.playersSleepingPercentage.description": "The percentage of players who must be sleeping to skip the night.", + "gamerule.projectilesCanBreakBlocks": "Projectiles can break blocks", + "gamerule.projectilesCanBreakBlocks.description": "Controls whether impact projectiles will destroy blocks that are destructible by them.", + "gamerule.randomTickSpeed": "Random tick speed rate", + "gamerule.reducedDebugInfo": "Reduce debug info", + "gamerule.reducedDebugInfo.description": "Limits contents of debug screen.", + "gamerule.sendCommandFeedback": "Send command feedback", + "gamerule.showDeathMessages": "Show death messages", + "gamerule.snowAccumulationHeight": "Snow accumulation height", + "gamerule.snowAccumulationHeight.description": "When it snows, layers of snow form on the ground up to at most this number of layers.", + "gamerule.spawnChunkRadius": "Spawn chunk radius", + "gamerule.spawnChunkRadius.description": "Amount of chunks that stay loaded around the overworld spawn position.", + "gamerule.spawnRadius": "Respawn location radius", + "gamerule.spawnRadius.description": "Controls the size of the area around the spawn point that players can spawn in.", + "gamerule.spectatorsGenerateChunks": "Allow spectators to generate terrain", + "gamerule.tntExplodes": "Allow TNT to be activated and to explode", + "gamerule.tntExplosionDropDecay": "In TNT explosions, some blocks won't drop their loot", + "gamerule.tntExplosionDropDecay.description": "Some of the drops from blocks destroyed by explosions caused by TNT are lost in the explosion.", + "gamerule.universalAnger": "Universal anger", + "gamerule.universalAnger.description": "Angered neutral mobs attack any nearby player, not just the player that angered them. Works best if forgiveDeadPlayers is disabled.", + "gamerule.waterSourceConversion": "Water converts to source", + "gamerule.waterSourceConversion.description": "When flowing water is surrounded on two sides by water sources it converts into a source.", + "generator.custom": "Custom", + "generator.customized": "Old Customized", + "generator.minecraft.amplified": "AMPLIFIED", + "generator.minecraft.amplified.info": "Notice: Just for fun! Requires a beefy computer.", + "generator.minecraft.debug_all_block_states": "Debug Mode", + "generator.minecraft.flat": "Superflat", + "generator.minecraft.large_biomes": "Large Biomes", + "generator.minecraft.normal": "Default", + "generator.minecraft.single_biome_surface": "Single Biome", + "generator.single_biome_caves": "Caves", + "generator.single_biome_floating_islands": "Floating Islands", + "gui.abuseReport.attestation": "By submitting this report, you confirm that the information you have provided is accurate and complete to the best of your knowledge.", + "gui.abuseReport.comments": "Comments", + "gui.abuseReport.describe": "Sharing details will help us make a well-informed decision.", + "gui.abuseReport.discard.content": "If you leave, you'll lose this report and your comments.\nAre you sure you want to leave?", + "gui.abuseReport.discard.discard": "Leave and Discard Report", + "gui.abuseReport.discard.draft": "Save as Draft", + "gui.abuseReport.discard.return": "Continue Editing", + "gui.abuseReport.discard.title": "Discard report and comments?", + "gui.abuseReport.draft.content": "Would you like to continue editing the existing report or discard it and create a new one?", + "gui.abuseReport.draft.discard": "Discard", + "gui.abuseReport.draft.edit": "Continue Editing", + "gui.abuseReport.draft.quittotitle.content": "Would you like to continue editing it or discard it?", + "gui.abuseReport.draft.quittotitle.title": "You have a draft chat report that will be lost if you quit", + "gui.abuseReport.draft.title": "Edit draft chat report?", + "gui.abuseReport.error.title": "Problem sending your report", + "gui.abuseReport.message": "Where did you observe the bad behavior?\nThis will help us in researching your case.", + "gui.abuseReport.more_comments": "Please describe what happened:", + "gui.abuseReport.name.comment_box_label": "Please describe why you want to report this name:", + "gui.abuseReport.name.reporting": "You are reporting \"%s\".", + "gui.abuseReport.name.title": "Report Inappropriate Player Name", + "gui.abuseReport.observed_what": "Why are you reporting this?", + "gui.abuseReport.read_info": "Learn About Reporting", + "gui.abuseReport.reason.alcohol_tobacco_drugs": "Drugs or alcohol", + "gui.abuseReport.reason.alcohol_tobacco_drugs.description": "Someone is encouraging others to partake in illegal drug related activities or encouraging underage drinking.", + "gui.abuseReport.reason.child_sexual_exploitation_or_abuse": "Child sexual exploitation or abuse", + "gui.abuseReport.reason.child_sexual_exploitation_or_abuse.description": "Someone is talking about or otherwise promoting indecent behavior involving children.", + "gui.abuseReport.reason.defamation_impersonation_false_information": "Defamation", + "gui.abuseReport.reason.defamation_impersonation_false_information.description": "Someone is damaging your or someone else's reputation, for example sharing false information with the aim to exploit or mislead others.", + "gui.abuseReport.reason.description": "Description:", + "gui.abuseReport.reason.false_reporting": "False Reporting", + "gui.abuseReport.reason.generic": "I want to report them", + "gui.abuseReport.reason.generic.description": "I'm annoyed with them / they have done something I do not like.", + "gui.abuseReport.reason.harassment_or_bullying": "Harassment or bullying", + "gui.abuseReport.reason.harassment_or_bullying.description": "Someone is shaming, attacking, or bullying you or someone else. This includes when someone is repeatedly trying to contact you or someone else without consent or posting private personal information about you or someone else without consent (\"doxing\").", + "gui.abuseReport.reason.hate_speech": "Hate speech", + "gui.abuseReport.reason.hate_speech.description": "Someone is attacking you or another player based on characteristics of their identity, like religion, race, or sexuality.", + "gui.abuseReport.reason.imminent_harm": "Threat of harm to others", + "gui.abuseReport.reason.imminent_harm.description": "Someone is threatening to harm you or someone else in real life.", + "gui.abuseReport.reason.narration": "%s: %s", + "gui.abuseReport.reason.non_consensual_intimate_imagery": "Non-consensual intimate imagery", + "gui.abuseReport.reason.non_consensual_intimate_imagery.description": "Someone is talking about, sharing, or otherwise promoting private and intimate images.", + "gui.abuseReport.reason.self_harm_or_suicide": "Self-harm or suicide", + "gui.abuseReport.reason.self_harm_or_suicide.description": "Someone is threatening to harm themselves in real life or talking about harming themselves in real life.", + "gui.abuseReport.reason.sexually_inappropriate": "Sexually inappropriate", + "gui.abuseReport.reason.sexually_inappropriate.description": "Skins that are graphic in nature relating to sexual acts, sexual organs, and sexual violence.", + "gui.abuseReport.reason.terrorism_or_violent_extremism": "Terrorism or violent extremism", + "gui.abuseReport.reason.terrorism_or_violent_extremism.description": "Someone is talking about, promoting, or threatening to commit acts of terrorism or violent extremism for political, religious, ideological, or other reasons.", + "gui.abuseReport.reason.title": "Select Report Category", + "gui.abuseReport.report_sent_msg": "We've successfully received your report. Thank you!\n\nOur team will review it as soon as possible.", + "gui.abuseReport.select_reason": "Select Report Category", + "gui.abuseReport.send": "Send Report", + "gui.abuseReport.send.comment_too_long": "Please shorten the comment", + "gui.abuseReport.send.error_message": "An error was returned while sending your report:\n'%s'", + "gui.abuseReport.send.generic_error": "Encountered an unexpected error while sending your report.", + "gui.abuseReport.send.http_error": "An unexpected HTTP error occurred while sending your report.", + "gui.abuseReport.send.json_error": "Encountered malformed payload while sending your report.", + "gui.abuseReport.send.no_reason": "Please select a report category", + "gui.abuseReport.send.not_attested": "Please read the text above and tick the checkbox to be able to send the report", + "gui.abuseReport.send.service_unavailable": "Unable to reach the Abuse Reporting service. Please make sure you are connected to the internet and try again.", + "gui.abuseReport.sending.title": "Sending your report...", + "gui.abuseReport.sent.title": "Report sent", + "gui.abuseReport.skin.title": "Report Player Skin", + "gui.abuseReport.title": "Report Player", + "gui.abuseReport.type.chat": "Chat Messages", + "gui.abuseReport.type.name": "Player Name", + "gui.abuseReport.type.skin": "Player Skin", + "gui.acknowledge": "Acknowledge", + "gui.advancements": "Advancements", + "gui.all": "All", + "gui.back": "Back", + "gui.banned.description": "%s\n\n%s\n\nLearn more at the following link: %s", + "gui.banned.description.permanent": "Your account is permanently banned, which means you can't play online or join Realms.", + "gui.banned.description.reason": "We recently received a report for bad behavior by your account. Our moderators have now reviewed your case and identified it as %s, which goes against the Minecraft Community Standards.", + "gui.banned.description.reason_id": "Code: %s", + "gui.banned.description.reason_id_message": "Code: %s - %s", + "gui.banned.description.temporary": "%s Until then, you can't play online or join Realms.", + "gui.banned.description.temporary.duration": "Your account is temporarily suspended and will be reactivated in %s.", + "gui.banned.description.unknownreason": "We recently received a report for bad behavior by your account. Our moderators have now reviewed your case and identified that it goes against the Minecraft Community Standards.", + "gui.banned.name.description": "Your current name - \"%s\" - violates our Community Standards. You can play singleplayer, but will need to change your name to play online.\n\nLearn more or submit a case review at the following link: %s", + "gui.banned.name.title": "Name Not Allowed in Multiplayer", + "gui.banned.reason.defamation_impersonation_false_information": "Impersonation or sharing information to exploit or mislead others", + "gui.banned.reason.drugs": "References to illegal drugs", + "gui.banned.reason.extreme_violence_or_gore": "Depictions of real-life excessive violence or gore", + "gui.banned.reason.false_reporting": "Excessive false or inaccurate reports", + "gui.banned.reason.fraud": "Fraudulent acquisition or use of content", + "gui.banned.reason.generic_violation": "Violating Community Standards", + "gui.banned.reason.harassment_or_bullying": "Abusive language used in a directed, harmful manner", + "gui.banned.reason.hate_speech": "Hate speech or discrimination", + "gui.banned.reason.hate_terrorism_notorious_figure": "References to hate groups, terrorist organizations, or notorious figures", + "gui.banned.reason.imminent_harm_to_person_or_property": "Intent to cause real-life harm to persons or property", + "gui.banned.reason.nudity_or_pornography": "Displaying lewd or pornographic material", + "gui.banned.reason.sexually_inappropriate": "Topics or content of a sexual nature", + "gui.banned.reason.spam_or_advertising": "Spam or advertising", + "gui.banned.skin.description": "Your current skin violates our Community Standards. You can still play with a default skin, or select a new one.\n\nLearn more or submit a case review at the following link: %s", + "gui.banned.skin.title": "Skin Not Allowed", + "gui.banned.title.permanent": "Account permanently banned", + "gui.banned.title.temporary": "Account temporarily suspended", + "gui.cancel": "Cancel", + "gui.chatReport.comments": "Comments", + "gui.chatReport.describe": "Sharing details will help us make a well-informed decision.", + "gui.chatReport.discard.content": "If you leave, you'll lose this report and your comments.\nAre you sure you want to leave?", + "gui.chatReport.discard.discard": "Leave and Discard Report", + "gui.chatReport.discard.draft": "Save as Draft", + "gui.chatReport.discard.return": "Continue Editing", + "gui.chatReport.discard.title": "Discard report and comments?", + "gui.chatReport.draft.content": "Would you like to continue editing the existing report or discard it and create a new one?", + "gui.chatReport.draft.discard": "Discard", + "gui.chatReport.draft.edit": "Continue Editing", + "gui.chatReport.draft.quittotitle.content": "Would you like to continue editing it or discard it?", + "gui.chatReport.draft.quittotitle.title": "You have a draft chat report that will be lost if you quit", + "gui.chatReport.draft.title": "Edit draft chat report?", + "gui.chatReport.more_comments": "Please describe what happened:", + "gui.chatReport.observed_what": "Why are you reporting this?", + "gui.chatReport.read_info": "Learn About Reporting", + "gui.chatReport.report_sent_msg": "We've successfully received your report. Thank you!\n\nOur team will review it as soon as possible.", + "gui.chatReport.select_chat": "Select Chat Messages to Report", + "gui.chatReport.select_reason": "Select Report Category", + "gui.chatReport.selected_chat": "%s Chat Message(s) Selected to Report", + "gui.chatReport.send": "Send Report", + "gui.chatReport.send.comments_too_long": "Please shorten the comment", + "gui.chatReport.send.no_reason": "Please select a report category", + "gui.chatReport.send.no_reported_messages": "Please select at least one chat message to report", + "gui.chatReport.send.too_many_messages": "Trying to include too many messages in the report", + "gui.chatReport.title": "Report Player Chat", + "gui.chatSelection.context": "Messages surrounding this selection will be included to provide additional context", + "gui.chatSelection.fold": "%s message(s) hidden", + "gui.chatSelection.heading": "%s %s", + "gui.chatSelection.join": "%s joined the chat", + "gui.chatSelection.message.narrate": "%s said: %s at %s", + "gui.chatSelection.selected": "%s/%s message(s) selected", + "gui.chatSelection.title": "Select Chat Messages to Report", + "gui.continue": "Continue", + "gui.copy_link_to_clipboard": "Copy Link to Clipboard", + "gui.days": "%s day(s)", + "gui.done": "Done", + "gui.down": "Down", + "gui.entity_tooltip.type": "Type: %s", + "gui.experience.level": "%s", + "gui.fileDropFailure.detail": "Rejected %s files", + "gui.fileDropFailure.title": "Failed to add files", + "gui.hours": "%s hour(s)", + "gui.loadingMinecraft": "Loading Minecraft", + "gui.minutes": "%s minute(s)", + "gui.multiLineEditBox.character_limit": "%s/%s", + "gui.narrate.button": "%s button", + "gui.narrate.editBox": "%s edit box: %s", + "gui.narrate.slider": "%s slider", + "gui.narrate.tab": "%s tab", + "gui.no": "No", + "gui.none": "None", + "gui.ok": "Ok", + "gui.open_report_dir": "Open Report Directory", + "gui.proceed": "Proceed", + "gui.recipebook.moreRecipes": "Right Click for More", + "gui.recipebook.page": "%s/%s", + "gui.recipebook.search_hint": "Search...", + "gui.recipebook.toggleRecipes.all": "Showing All", + "gui.recipebook.toggleRecipes.blastable": "Showing Blastable", + "gui.recipebook.toggleRecipes.craftable": "Showing Craftable", + "gui.recipebook.toggleRecipes.smeltable": "Showing Smeltable", + "gui.recipebook.toggleRecipes.smokable": "Showing Smokable", + "gui.report_to_server": "Report To Server", + "gui.socialInteractions.blocking_hint": "Manage with Microsoft account", + "gui.socialInteractions.empty_blocked": "No blocked players in chat", + "gui.socialInteractions.empty_hidden": "No players hidden in chat", + "gui.socialInteractions.hidden_in_chat": "Chat messages from %s will be hidden", + "gui.socialInteractions.hide": "Hide in Chat", + "gui.socialInteractions.narration.hide": "Hide messages from %s", + "gui.socialInteractions.narration.report": "Report player %s", + "gui.socialInteractions.narration.show": "Show messages from %s", + "gui.socialInteractions.report": "Report", + "gui.socialInteractions.search_empty": "Couldn't find any players with that name", + "gui.socialInteractions.search_hint": "Search...", + "gui.socialInteractions.server_label.multiple": "%s - %s players", + "gui.socialInteractions.server_label.single": "%s - %s player", + "gui.socialInteractions.show": "Show in Chat", + "gui.socialInteractions.shown_in_chat": "Chat messages from %s will be shown", + "gui.socialInteractions.status_blocked": "Blocked", + "gui.socialInteractions.status_blocked_offline": "Blocked - Offline", + "gui.socialInteractions.status_hidden": "Hidden", + "gui.socialInteractions.status_hidden_offline": "Hidden - Offline", + "gui.socialInteractions.status_offline": "Offline", + "gui.socialInteractions.tab_all": "All", + "gui.socialInteractions.tab_blocked": "Blocked", + "gui.socialInteractions.tab_hidden": "Hidden", + "gui.socialInteractions.title": "Social Interactions", + "gui.socialInteractions.tooltip.hide": "Hide messages", + "gui.socialInteractions.tooltip.report": "Report player", + "gui.socialInteractions.tooltip.report.disabled": "The reporting service is unavailable", + "gui.socialInteractions.tooltip.report.no_messages": "No reportable messages from player %s", + "gui.socialInteractions.tooltip.report.not_reportable": "This player can't be reported, because their chat messages can't be verified on this server", + "gui.socialInteractions.tooltip.show": "Show messages", + "gui.stats": "Statistics", + "gui.togglable_slot": "Click to disable slot", + "gui.toMenu": "Back to Server List", + "gui.toRealms": "Back to Realms List", + "gui.toTitle": "Back to Title Screen", + "gui.toWorld": "Back to World List", + "gui.up": "Up", + "gui.waitingForResponse.button.inactive": "Back (%ss)", + "gui.waitingForResponse.title": "Waiting for Server", + "gui.yes": "Yes", + "hanging_sign.edit": "Edit Hanging Sign Message", + "instrument.minecraft.admire_goat_horn": "Admire", + "instrument.minecraft.call_goat_horn": "Call", + "instrument.minecraft.dream_goat_horn": "Dream", + "instrument.minecraft.feel_goat_horn": "Feel", + "instrument.minecraft.ponder_goat_horn": "Ponder", + "instrument.minecraft.seek_goat_horn": "Seek", + "instrument.minecraft.sing_goat_horn": "Sing", + "instrument.minecraft.yearn_goat_horn": "Yearn", + "inventory.binSlot": "Destroy Item", + "inventory.hotbarInfo": "Save hotbar with %1$s+%2$s", + "inventory.hotbarSaved": "Item hotbar saved (restore with %1$s+%2$s)", + "item_modifier.unknown": "Unknown item modifier: %s", + "item.canBreak": "Can break:", + "item.canPlace": "Can be placed on:", + "item.canUse.unknown": "Unknown", + "item.color": "Color: %s", + "item.components": "%s component(s)", + "item.disabled": "Disabled item", + "item.durability": "Durability: %s / %s", + "item.dyed": "Dyed", + "item.minecraft.acacia_boat": "Acacia Boat", + "item.minecraft.acacia_chest_boat": "Acacia Boat with Chest", + "item.minecraft.allay_spawn_egg": "Allay Spawn Egg", + "item.minecraft.amethyst_shard": "Amethyst Shard", + "item.minecraft.angler_pottery_shard": "Angler Pottery Shard", + "item.minecraft.angler_pottery_sherd": "Angler Pottery Sherd", + "item.minecraft.apple": "Apple", + "item.minecraft.archer_pottery_shard": "Archer Pottery Shard", + "item.minecraft.archer_pottery_sherd": "Archer Pottery Sherd", + "item.minecraft.armadillo_scute": "Armadillo Scute", + "item.minecraft.armadillo_spawn_egg": "Armadillo Spawn Egg", + "item.minecraft.armor_stand": "Armor Stand", + "item.minecraft.arms_up_pottery_shard": "Arms Up Pottery Shard", + "item.minecraft.arms_up_pottery_sherd": "Arms Up Pottery Sherd", + "item.minecraft.arrow": "Arrow", + "item.minecraft.axolotl_bucket": "Bucket of Axolotl", + "item.minecraft.axolotl_spawn_egg": "Axolotl Spawn Egg", + "item.minecraft.baked_potato": "Baked Potato", + "item.minecraft.bamboo_chest_raft": "Bamboo Raft with Chest", + "item.minecraft.bamboo_raft": "Bamboo Raft", + "item.minecraft.bat_spawn_egg": "Bat Spawn Egg", + "item.minecraft.bee_spawn_egg": "Bee Spawn Egg", + "item.minecraft.beef": "Raw Beef", + "item.minecraft.beetroot": "Beetroot", + "item.minecraft.beetroot_seeds": "Beetroot Seeds", + "item.minecraft.beetroot_soup": "Beetroot Soup", + "item.minecraft.birch_boat": "Birch Boat", + "item.minecraft.birch_chest_boat": "Birch Boat with Chest", + "item.minecraft.black_bundle": "Black Bundle", + "item.minecraft.black_dye": "Black Dye", + "item.minecraft.black_harness": "Black Harness", + "item.minecraft.blade_pottery_shard": "Blade Pottery Shard", + "item.minecraft.blade_pottery_sherd": "Blade Pottery Sherd", + "item.minecraft.blaze_powder": "Blaze Powder", + "item.minecraft.blaze_rod": "Blaze Rod", + "item.minecraft.blaze_spawn_egg": "Blaze Spawn Egg", + "item.minecraft.blue_bundle": "Blue Bundle", + "item.minecraft.blue_dye": "Blue Dye", + "item.minecraft.blue_egg": "Blue Egg", + "item.minecraft.blue_harness": "Blue Harness", + "item.minecraft.bogged_spawn_egg": "Bogged Spawn Egg", + "item.minecraft.bolt_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.bolt_armor_trim_smithing_template.new": "Bolt Armor Trim", + "item.minecraft.bone": "Bone", + "item.minecraft.bone_meal": "Bone Meal", + "item.minecraft.book": "Book", + "item.minecraft.bordure_indented_banner_pattern": "Bordure Indented Banner Pattern", + "item.minecraft.bow": "Bow", + "item.minecraft.bowl": "Bowl", + "item.minecraft.bread": "Bread", + "item.minecraft.breeze_rod": "Breeze Rod", + "item.minecraft.breeze_spawn_egg": "Breeze Spawn Egg", + "item.minecraft.brewer_pottery_shard": "Brewer Pottery Shard", + "item.minecraft.brewer_pottery_sherd": "Brewer Pottery Sherd", + "item.minecraft.brewing_stand": "Brewing Stand", + "item.minecraft.brick": "Brick", + "item.minecraft.brown_bundle": "Brown Bundle", + "item.minecraft.brown_dye": "Brown Dye", + "item.minecraft.brown_egg": "Brown Egg", + "item.minecraft.brown_harness": "Brown Harness", + "item.minecraft.brush": "Brush", + "item.minecraft.bucket": "Bucket", + "item.minecraft.bundle": "Bundle", + "item.minecraft.bundle.empty": "Empty", + "item.minecraft.bundle.empty.description": "Can hold a mixed stack of items", + "item.minecraft.bundle.full": "Full", + "item.minecraft.bundle.fullness": "%s/%s", + "item.minecraft.burn_pottery_shard": "Burn Pottery Shard", + "item.minecraft.burn_pottery_sherd": "Burn Pottery Sherd", + "item.minecraft.camel_spawn_egg": "Camel Spawn Egg", + "item.minecraft.carrot": "Carrot", + "item.minecraft.carrot_on_a_stick": "Carrot on a Stick", + "item.minecraft.cat_spawn_egg": "Cat Spawn Egg", + "item.minecraft.cauldron": "Cauldron", + "item.minecraft.cave_spider_spawn_egg": "Cave Spider Spawn Egg", + "item.minecraft.chainmail_boots": "Chainmail Boots", + "item.minecraft.chainmail_chestplate": "Chainmail Chestplate", + "item.minecraft.chainmail_helmet": "Chainmail Helmet", + "item.minecraft.chainmail_leggings": "Chainmail Leggings", + "item.minecraft.charcoal": "Charcoal", + "item.minecraft.cherry_boat": "Cherry Boat", + "item.minecraft.cherry_chest_boat": "Cherry Boat with Chest", + "item.minecraft.chest_minecart": "Minecart with Chest", + "item.minecraft.chicken": "Raw Chicken", + "item.minecraft.chicken_spawn_egg": "Chicken Spawn Egg", + "item.minecraft.chorus_fruit": "Chorus Fruit", + "item.minecraft.clay_ball": "Clay Ball", + "item.minecraft.clock": "Clock", + "item.minecraft.coal": "Coal", + "item.minecraft.coast_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.coast_armor_trim_smithing_template.new": "Coast Armor Trim", + "item.minecraft.cocoa_beans": "Cocoa Beans", + "item.minecraft.cod": "Raw Cod", + "item.minecraft.cod_bucket": "Bucket of Cod", + "item.minecraft.cod_spawn_egg": "Cod Spawn Egg", + "item.minecraft.command_block_minecart": "Minecart with Command Block", + "item.minecraft.compass": "Compass", + "item.minecraft.cooked_beef": "Steak", + "item.minecraft.cooked_chicken": "Cooked Chicken", + "item.minecraft.cooked_cod": "Cooked Cod", + "item.minecraft.cooked_mutton": "Cooked Mutton", + "item.minecraft.cooked_porkchop": "Cooked Porkchop", + "item.minecraft.cooked_rabbit": "Cooked Rabbit", + "item.minecraft.cooked_salmon": "Cooked Salmon", + "item.minecraft.cookie": "Cookie", + "item.minecraft.copper_ingot": "Copper Ingot", + "item.minecraft.cow_spawn_egg": "Cow Spawn Egg", + "item.minecraft.creaking_spawn_egg": "Creaking Spawn Egg", + "item.minecraft.creeper_banner_pattern": "Banner Pattern", + "item.minecraft.creeper_banner_pattern.desc": "Creeper Charge", + "item.minecraft.creeper_banner_pattern.new": "Creeper Charge Banner Pattern", + "item.minecraft.creeper_spawn_egg": "Creeper Spawn Egg", + "item.minecraft.crossbow": "Crossbow", + "item.minecraft.crossbow.projectile": "Projectile:", + "item.minecraft.crossbow.projectile.multiple": "Projectile: %s x %s", + "item.minecraft.crossbow.projectile.single": "Projectile: %s", + "item.minecraft.cyan_bundle": "Cyan Bundle", + "item.minecraft.cyan_dye": "Cyan Dye", + "item.minecraft.cyan_harness": "Cyan Harness", + "item.minecraft.danger_pottery_shard": "Danger Pottery Shard", + "item.minecraft.danger_pottery_sherd": "Danger Pottery Sherd", + "item.minecraft.dark_oak_boat": "Dark Oak Boat", + "item.minecraft.dark_oak_chest_boat": "Dark Oak Boat with Chest", + "item.minecraft.debug_stick": "Debug Stick", + "item.minecraft.debug_stick.empty": "%s has no properties", + "item.minecraft.debug_stick.select": "selected \"%s\" (%s)", + "item.minecraft.debug_stick.update": "\"%s\" to %s", + "item.minecraft.diamond": "Diamond", + "item.minecraft.diamond_axe": "Diamond Axe", + "item.minecraft.diamond_boots": "Diamond Boots", + "item.minecraft.diamond_chestplate": "Diamond Chestplate", + "item.minecraft.diamond_helmet": "Diamond Helmet", + "item.minecraft.diamond_hoe": "Diamond Hoe", + "item.minecraft.diamond_horse_armor": "Diamond Horse Armor", + "item.minecraft.diamond_leggings": "Diamond Leggings", + "item.minecraft.diamond_pickaxe": "Diamond Pickaxe", + "item.minecraft.diamond_shovel": "Diamond Shovel", + "item.minecraft.diamond_sword": "Diamond Sword", + "item.minecraft.disc_fragment_5": "Disc Fragment", + "item.minecraft.disc_fragment_5.desc": "Music Disc - 5", + "item.minecraft.dolphin_spawn_egg": "Dolphin Spawn Egg", + "item.minecraft.donkey_spawn_egg": "Donkey Spawn Egg", + "item.minecraft.dragon_breath": "Dragon's Breath", + "item.minecraft.dried_kelp": "Dried Kelp", + "item.minecraft.drowned_spawn_egg": "Drowned Spawn Egg", + "item.minecraft.dune_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.dune_armor_trim_smithing_template.new": "Dune Armor Trim", + "item.minecraft.echo_shard": "Echo Shard", + "item.minecraft.egg": "Egg", + "item.minecraft.elder_guardian_spawn_egg": "Elder Guardian Spawn Egg", + "item.minecraft.elytra": "Elytra", + "item.minecraft.emerald": "Emerald", + "item.minecraft.enchanted_book": "Enchanted Book", + "item.minecraft.enchanted_golden_apple": "Enchanted Golden Apple", + "item.minecraft.end_crystal": "End Crystal", + "item.minecraft.ender_dragon_spawn_egg": "Ender Dragon Spawn Egg", + "item.minecraft.ender_eye": "Eye of Ender", + "item.minecraft.ender_pearl": "Ender Pearl", + "item.minecraft.enderman_spawn_egg": "Enderman Spawn Egg", + "item.minecraft.endermite_spawn_egg": "Endermite Spawn Egg", + "item.minecraft.evoker_spawn_egg": "Evoker Spawn Egg", + "item.minecraft.experience_bottle": "Bottle o' Enchanting", + "item.minecraft.explorer_pottery_shard": "Explorer Pottery Shard", + "item.minecraft.explorer_pottery_sherd": "Explorer Pottery Sherd", + "item.minecraft.eye_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.eye_armor_trim_smithing_template.new": "Eye Armor Trim", + "item.minecraft.feather": "Feather", + "item.minecraft.fermented_spider_eye": "Fermented Spider Eye", + "item.minecraft.field_masoned_banner_pattern": "Field Masoned Banner Pattern", + "item.minecraft.filled_map": "Map", + "item.minecraft.fire_charge": "Fire Charge", + "item.minecraft.firework_rocket": "Firework Rocket", + "item.minecraft.firework_rocket.flight": "Flight Duration:", + "item.minecraft.firework_rocket.multiple_stars": "%s x %s", + "item.minecraft.firework_rocket.single_star": "%s", + "item.minecraft.firework_star": "Firework Star", + "item.minecraft.firework_star.black": "Black", + "item.minecraft.firework_star.blue": "Blue", + "item.minecraft.firework_star.brown": "Brown", + "item.minecraft.firework_star.custom_color": "Custom", + "item.minecraft.firework_star.cyan": "Cyan", + "item.minecraft.firework_star.fade_to": "Fade to", + "item.minecraft.firework_star.flicker": "Twinkle", + "item.minecraft.firework_star.gray": "Gray", + "item.minecraft.firework_star.green": "Green", + "item.minecraft.firework_star.light_blue": "Light Blue", + "item.minecraft.firework_star.light_gray": "Light Gray", + "item.minecraft.firework_star.lime": "Lime", + "item.minecraft.firework_star.magenta": "Magenta", + "item.minecraft.firework_star.orange": "Orange", + "item.minecraft.firework_star.pink": "Pink", + "item.minecraft.firework_star.purple": "Purple", + "item.minecraft.firework_star.red": "Red", + "item.minecraft.firework_star.shape": "Unknown Shape", + "item.minecraft.firework_star.shape.burst": "Burst", + "item.minecraft.firework_star.shape.creeper": "Creeper-shaped", + "item.minecraft.firework_star.shape.large_ball": "Large Ball", + "item.minecraft.firework_star.shape.small_ball": "Small Ball", + "item.minecraft.firework_star.shape.star": "Star-shaped", + "item.minecraft.firework_star.trail": "Trail", + "item.minecraft.firework_star.white": "White", + "item.minecraft.firework_star.yellow": "Yellow", + "item.minecraft.fishing_rod": "Fishing Rod", + "item.minecraft.flint": "Flint", + "item.minecraft.flint_and_steel": "Flint and Steel", + "item.minecraft.flow_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.flow_armor_trim_smithing_template.new": "Flow Armor Trim", + "item.minecraft.flow_banner_pattern": "Banner Pattern", + "item.minecraft.flow_banner_pattern.desc": "Flow", + "item.minecraft.flow_banner_pattern.new": "Flow Banner Pattern", + "item.minecraft.flow_pottery_sherd": "Flow Pottery Sherd", + "item.minecraft.flower_banner_pattern": "Banner Pattern", + "item.minecraft.flower_banner_pattern.desc": "Flower Charge", + "item.minecraft.flower_banner_pattern.new": "Flower Charge Banner Pattern", + "item.minecraft.flower_pot": "Flower Pot", + "item.minecraft.fox_spawn_egg": "Fox Spawn Egg", + "item.minecraft.friend_pottery_shard": "Friend Pottery Shard", + "item.minecraft.friend_pottery_sherd": "Friend Pottery Sherd", + "item.minecraft.frog_spawn_egg": "Frog Spawn Egg", + "item.minecraft.furnace_minecart": "Minecart with Furnace", + "item.minecraft.ghast_spawn_egg": "Ghast Spawn Egg", + "item.minecraft.ghast_tear": "Ghast Tear", + "item.minecraft.glass_bottle": "Glass Bottle", + "item.minecraft.glistering_melon_slice": "Glistering Melon Slice", + "item.minecraft.globe_banner_pattern": "Banner Pattern", + "item.minecraft.globe_banner_pattern.desc": "Globe", + "item.minecraft.globe_banner_pattern.new": "Globe Banner Pattern", + "item.minecraft.glow_berries": "Glow Berries", + "item.minecraft.glow_ink_sac": "Glow Ink Sac", + "item.minecraft.glow_item_frame": "Glow Item Frame", + "item.minecraft.glow_squid_spawn_egg": "Glow Squid Spawn Egg", + "item.minecraft.glowstone_dust": "Glowstone Dust", + "item.minecraft.goat_horn": "Goat Horn", + "item.minecraft.goat_spawn_egg": "Goat Spawn Egg", + "item.minecraft.gold_ingot": "Gold Ingot", + "item.minecraft.gold_nugget": "Gold Nugget", + "item.minecraft.golden_apple": "Golden Apple", + "item.minecraft.golden_axe": "Golden Axe", + "item.minecraft.golden_boots": "Golden Boots", + "item.minecraft.golden_carrot": "Golden Carrot", + "item.minecraft.golden_chestplate": "Golden Chestplate", + "item.minecraft.golden_helmet": "Golden Helmet", + "item.minecraft.golden_hoe": "Golden Hoe", + "item.minecraft.golden_horse_armor": "Golden Horse Armor", + "item.minecraft.golden_leggings": "Golden Leggings", + "item.minecraft.golden_pickaxe": "Golden Pickaxe", + "item.minecraft.golden_shovel": "Golden Shovel", + "item.minecraft.golden_sword": "Golden Sword", + "item.minecraft.gray_bundle": "Gray Bundle", + "item.minecraft.gray_dye": "Gray Dye", + "item.minecraft.gray_harness": "Gray Harness", + "item.minecraft.green_bundle": "Green Bundle", + "item.minecraft.green_dye": "Green Dye", + "item.minecraft.green_harness": "Green Harness", + "item.minecraft.guardian_spawn_egg": "Guardian Spawn Egg", + "item.minecraft.gunpowder": "Gunpowder", + "item.minecraft.guster_banner_pattern": "Banner Pattern", + "item.minecraft.guster_banner_pattern.desc": "Guster", + "item.minecraft.guster_banner_pattern.new": "Guster Banner Pattern", + "item.minecraft.guster_pottery_sherd": "Guster Pottery Sherd", + "item.minecraft.happy_ghast_spawn_egg": "Happy Ghast Spawn Egg", + "item.minecraft.harness": "Harness", + "item.minecraft.heart_of_the_sea": "Heart of the Sea", + "item.minecraft.heart_pottery_shard": "Heart Pottery Shard", + "item.minecraft.heart_pottery_sherd": "Heart Pottery Sherd", + "item.minecraft.heartbreak_pottery_shard": "Heartbreak Pottery Shard", + "item.minecraft.heartbreak_pottery_sherd": "Heartbreak Pottery Sherd", + "item.minecraft.hoglin_spawn_egg": "Hoglin Spawn Egg", + "item.minecraft.honey_bottle": "Honey Bottle", + "item.minecraft.honeycomb": "Honeycomb", + "item.minecraft.hopper_minecart": "Minecart with Hopper", + "item.minecraft.horse_spawn_egg": "Horse Spawn Egg", + "item.minecraft.host_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.host_armor_trim_smithing_template.new": "Host Armor Trim", + "item.minecraft.howl_pottery_shard": "Howl Pottery Shard", + "item.minecraft.howl_pottery_sherd": "Howl Pottery Sherd", + "item.minecraft.husk_spawn_egg": "Husk Spawn Egg", + "item.minecraft.ink_sac": "Ink Sac", + "item.minecraft.iron_axe": "Iron Axe", + "item.minecraft.iron_boots": "Iron Boots", + "item.minecraft.iron_chestplate": "Iron Chestplate", + "item.minecraft.iron_golem_spawn_egg": "Iron Golem Spawn Egg", + "item.minecraft.iron_helmet": "Iron Helmet", + "item.minecraft.iron_hoe": "Iron Hoe", + "item.minecraft.iron_horse_armor": "Iron Horse Armor", + "item.minecraft.iron_ingot": "Iron Ingot", + "item.minecraft.iron_leggings": "Iron Leggings", + "item.minecraft.iron_nugget": "Iron Nugget", + "item.minecraft.iron_pickaxe": "Iron Pickaxe", + "item.minecraft.iron_shovel": "Iron Shovel", + "item.minecraft.iron_sword": "Iron Sword", + "item.minecraft.item_frame": "Item Frame", + "item.minecraft.jungle_boat": "Jungle Boat", + "item.minecraft.jungle_chest_boat": "Jungle Boat with Chest", + "item.minecraft.knowledge_book": "Knowledge Book", + "item.minecraft.lapis_lazuli": "Lapis Lazuli", + "item.minecraft.lava_bucket": "Lava Bucket", + "item.minecraft.lead": "Lead", + "item.minecraft.leather": "Leather", + "item.minecraft.leather_boots": "Leather Boots", + "item.minecraft.leather_chestplate": "Leather Tunic", + "item.minecraft.leather_helmet": "Leather Cap", + "item.minecraft.leather_horse_armor": "Leather Horse Armor", + "item.minecraft.leather_leggings": "Leather Pants", + "item.minecraft.light_blue_bundle": "Light Blue Bundle", + "item.minecraft.light_blue_dye": "Light Blue Dye", + "item.minecraft.light_blue_harness": "Light Blue Harness", + "item.minecraft.light_gray_bundle": "Light Gray Bundle", + "item.minecraft.light_gray_dye": "Light Gray Dye", + "item.minecraft.light_gray_harness": "Light Gray Harness", + "item.minecraft.lime_bundle": "Lime Bundle", + "item.minecraft.lime_dye": "Lime Dye", + "item.minecraft.lime_harness": "Lime Harness", + "item.minecraft.lingering_potion": "Lingering Potion", + "item.minecraft.lingering_potion.effect.awkward": "Awkward Lingering Potion", + "item.minecraft.lingering_potion.effect.empty": "Lingering Uncraftable Potion", + "item.minecraft.lingering_potion.effect.fire_resistance": "Lingering Potion of Fire Resistance", + "item.minecraft.lingering_potion.effect.harming": "Lingering Potion of Harming", + "item.minecraft.lingering_potion.effect.healing": "Lingering Potion of Healing", + "item.minecraft.lingering_potion.effect.infested": "Lingering Potion of Infestation", + "item.minecraft.lingering_potion.effect.invisibility": "Lingering Potion of Invisibility", + "item.minecraft.lingering_potion.effect.leaping": "Lingering Potion of Leaping", + "item.minecraft.lingering_potion.effect.levitation": "Lingering Potion of Levitation", + "item.minecraft.lingering_potion.effect.luck": "Lingering Potion of Luck", + "item.minecraft.lingering_potion.effect.mundane": "Mundane Lingering Potion", + "item.minecraft.lingering_potion.effect.night_vision": "Lingering Potion of Night Vision", + "item.minecraft.lingering_potion.effect.oozing": "Lingering Potion of Oozing", + "item.minecraft.lingering_potion.effect.poison": "Lingering Potion of Poison", + "item.minecraft.lingering_potion.effect.regeneration": "Lingering Potion of Regeneration", + "item.minecraft.lingering_potion.effect.slow_falling": "Lingering Potion of Slow Falling", + "item.minecraft.lingering_potion.effect.slowness": "Lingering Potion of Slowness", + "item.minecraft.lingering_potion.effect.strength": "Lingering Potion of Strength", + "item.minecraft.lingering_potion.effect.swiftness": "Lingering Potion of Swiftness", + "item.minecraft.lingering_potion.effect.thick": "Thick Lingering Potion", + "item.minecraft.lingering_potion.effect.turtle_master": "Lingering Potion of the Turtle Master", + "item.minecraft.lingering_potion.effect.water": "Lingering Water Bottle", + "item.minecraft.lingering_potion.effect.water_breathing": "Lingering Potion of Water Breathing", + "item.minecraft.lingering_potion.effect.weakness": "Lingering Potion of Weakness", + "item.minecraft.lingering_potion.effect.weaving": "Lingering Potion of Weaving", + "item.minecraft.lingering_potion.effect.wind_charged": "Lingering Potion of Wind Charging", + "item.minecraft.llama_spawn_egg": "Llama Spawn Egg", + "item.minecraft.lodestone_compass": "Lodestone Compass", + "item.minecraft.mace": "Mace", + "item.minecraft.magenta_bundle": "Magenta Bundle", + "item.minecraft.magenta_dye": "Magenta Dye", + "item.minecraft.magenta_harness": "Magenta Harness", + "item.minecraft.magma_cream": "Magma Cream", + "item.minecraft.magma_cube_spawn_egg": "Magma Cube Spawn Egg", + "item.minecraft.mangrove_boat": "Mangrove Boat", + "item.minecraft.mangrove_chest_boat": "Mangrove Boat with Chest", + "item.minecraft.map": "Empty Map", + "item.minecraft.melon_seeds": "Melon Seeds", + "item.minecraft.melon_slice": "Melon Slice", + "item.minecraft.milk_bucket": "Milk Bucket", + "item.minecraft.minecart": "Minecart", + "item.minecraft.miner_pottery_shard": "Miner Pottery Shard", + "item.minecraft.miner_pottery_sherd": "Miner Pottery Sherd", + "item.minecraft.mojang_banner_pattern": "Banner Pattern", + "item.minecraft.mojang_banner_pattern.desc": "Thing", + "item.minecraft.mojang_banner_pattern.new": "Thing Banner Pattern", + "item.minecraft.mooshroom_spawn_egg": "Mooshroom Spawn Egg", + "item.minecraft.mourner_pottery_shard": "Mourner Pottery Shard", + "item.minecraft.mourner_pottery_sherd": "Mourner Pottery Sherd", + "item.minecraft.mule_spawn_egg": "Mule Spawn Egg", + "item.minecraft.mushroom_stew": "Mushroom Stew", + "item.minecraft.music_disc_5": "Music Disc", + "item.minecraft.music_disc_5.desc": "Samuel Åberg - 5", + "item.minecraft.music_disc_11": "Music Disc", + "item.minecraft.music_disc_11.desc": "C418 - 11", + "item.minecraft.music_disc_13": "Music Disc", + "item.minecraft.music_disc_13.desc": "C418 - 13", + "item.minecraft.music_disc_blocks": "Music Disc", + "item.minecraft.music_disc_blocks.desc": "C418 - blocks", + "item.minecraft.music_disc_cat": "Music Disc", + "item.minecraft.music_disc_cat.desc": "C418 - cat", + "item.minecraft.music_disc_chirp": "Music Disc", + "item.minecraft.music_disc_chirp.desc": "C418 - chirp", + "item.minecraft.music_disc_creator": "Music Disc", + "item.minecraft.music_disc_creator_music_box": "Music Disc", + "item.minecraft.music_disc_creator_music_box.desc": "Lena Raine - Creator (Music Box)", + "item.minecraft.music_disc_creator.desc": "Lena Raine - Creator", + "item.minecraft.music_disc_far": "Music Disc", + "item.minecraft.music_disc_far.desc": "C418 - far", + "item.minecraft.music_disc_lava_chicken": "Music Disc", + "item.minecraft.music_disc_lava_chicken.desc": "Hyper Potions - Lava Chicken", + "item.minecraft.music_disc_mall": "Music Disc", + "item.minecraft.music_disc_mall.desc": "C418 - mall", + "item.minecraft.music_disc_mellohi": "Music Disc", + "item.minecraft.music_disc_mellohi.desc": "C418 - mellohi", + "item.minecraft.music_disc_otherside": "Music Disc", + "item.minecraft.music_disc_otherside.desc": "Lena Raine - otherside", + "item.minecraft.music_disc_pigstep": "Music Disc", + "item.minecraft.music_disc_pigstep.desc": "Lena Raine - Pigstep", + "item.minecraft.music_disc_precipice": "Music Disc", + "item.minecraft.music_disc_precipice.desc": "Aaron Cherof - Precipice", + "item.minecraft.music_disc_relic": "Music Disc", + "item.minecraft.music_disc_relic.desc": "Aaron Cherof - Relic", + "item.minecraft.music_disc_stal": "Music Disc", + "item.minecraft.music_disc_stal.desc": "C418 - stal", + "item.minecraft.music_disc_strad": "Music Disc", + "item.minecraft.music_disc_strad.desc": "C418 - strad", + "item.minecraft.music_disc_tears": "Music Disc", + "item.minecraft.music_disc_tears.desc": "Amos Roddy - Tears", + "item.minecraft.music_disc_wait": "Music Disc", + "item.minecraft.music_disc_wait.desc": "C418 - wait", + "item.minecraft.music_disc_ward": "Music Disc", + "item.minecraft.music_disc_ward.desc": "C418 - ward", + "item.minecraft.mutton": "Raw Mutton", + "item.minecraft.name_tag": "Name Tag", + "item.minecraft.nautilus_shell": "Nautilus Shell", + "item.minecraft.nether_brick": "Nether Brick", + "item.minecraft.nether_star": "Nether Star", + "item.minecraft.nether_wart": "Nether Wart", + "item.minecraft.netherite_axe": "Netherite Axe", + "item.minecraft.netherite_boots": "Netherite Boots", + "item.minecraft.netherite_chestplate": "Netherite Chestplate", + "item.minecraft.netherite_helmet": "Netherite Helmet", + "item.minecraft.netherite_hoe": "Netherite Hoe", + "item.minecraft.netherite_ingot": "Netherite Ingot", + "item.minecraft.netherite_leggings": "Netherite Leggings", + "item.minecraft.netherite_pickaxe": "Netherite Pickaxe", + "item.minecraft.netherite_scrap": "Netherite Scrap", + "item.minecraft.netherite_shovel": "Netherite Shovel", + "item.minecraft.netherite_sword": "Netherite Sword", + "item.minecraft.netherite_upgrade_smithing_template": "Smithing Template", + "item.minecraft.netherite_upgrade_smithing_template.new": "Netherite Upgrade", + "item.minecraft.oak_boat": "Oak Boat", + "item.minecraft.oak_chest_boat": "Oak Boat with Chest", + "item.minecraft.ocelot_spawn_egg": "Ocelot Spawn Egg", + "item.minecraft.ominous_bottle": "Ominous Bottle", + "item.minecraft.ominous_trial_key": "Ominous Trial Key", + "item.minecraft.orange_bundle": "Orange Bundle", + "item.minecraft.orange_dye": "Orange Dye", + "item.minecraft.orange_harness": "Orange Harness", + "item.minecraft.painting": "Painting", + "item.minecraft.pale_oak_boat": "Pale Oak Boat", + "item.minecraft.pale_oak_chest_boat": "Pale Oak Boat with Chest", + "item.minecraft.panda_spawn_egg": "Panda Spawn Egg", + "item.minecraft.paper": "Paper", + "item.minecraft.parrot_spawn_egg": "Parrot Spawn Egg", + "item.minecraft.phantom_membrane": "Phantom Membrane", + "item.minecraft.phantom_spawn_egg": "Phantom Spawn Egg", + "item.minecraft.pig_spawn_egg": "Pig Spawn Egg", + "item.minecraft.piglin_banner_pattern": "Banner Pattern", + "item.minecraft.piglin_banner_pattern.desc": "Snout", + "item.minecraft.piglin_banner_pattern.new": "Snout Banner Pattern", + "item.minecraft.piglin_brute_spawn_egg": "Piglin Brute Spawn Egg", + "item.minecraft.piglin_spawn_egg": "Piglin Spawn Egg", + "item.minecraft.pillager_spawn_egg": "Pillager Spawn Egg", + "item.minecraft.pink_bundle": "Pink Bundle", + "item.minecraft.pink_dye": "Pink Dye", + "item.minecraft.pink_harness": "Pink Harness", + "item.minecraft.pitcher_plant": "Pitcher Plant", + "item.minecraft.pitcher_pod": "Pitcher Pod", + "item.minecraft.plenty_pottery_shard": "Plenty Pottery Shard", + "item.minecraft.plenty_pottery_sherd": "Plenty Pottery Sherd", + "item.minecraft.poisonous_potato": "Poisonous Potato", + "item.minecraft.polar_bear_spawn_egg": "Polar Bear Spawn Egg", + "item.minecraft.popped_chorus_fruit": "Popped Chorus Fruit", + "item.minecraft.porkchop": "Raw Porkchop", + "item.minecraft.potato": "Potato", + "item.minecraft.potion": "Potion", + "item.minecraft.potion.effect.awkward": "Awkward Potion", + "item.minecraft.potion.effect.empty": "Uncraftable Potion", + "item.minecraft.potion.effect.fire_resistance": "Potion of Fire Resistance", + "item.minecraft.potion.effect.harming": "Potion of Harming", + "item.minecraft.potion.effect.healing": "Potion of Healing", + "item.minecraft.potion.effect.infested": "Potion of Infestation", + "item.minecraft.potion.effect.invisibility": "Potion of Invisibility", + "item.minecraft.potion.effect.leaping": "Potion of Leaping", + "item.minecraft.potion.effect.levitation": "Potion of Levitation", + "item.minecraft.potion.effect.luck": "Potion of Luck", + "item.minecraft.potion.effect.mundane": "Mundane Potion", + "item.minecraft.potion.effect.night_vision": "Potion of Night Vision", + "item.minecraft.potion.effect.oozing": "Potion of Oozing", + "item.minecraft.potion.effect.poison": "Potion of Poison", + "item.minecraft.potion.effect.regeneration": "Potion of Regeneration", + "item.minecraft.potion.effect.slow_falling": "Potion of Slow Falling", + "item.minecraft.potion.effect.slowness": "Potion of Slowness", + "item.minecraft.potion.effect.strength": "Potion of Strength", + "item.minecraft.potion.effect.swiftness": "Potion of Swiftness", + "item.minecraft.potion.effect.thick": "Thick Potion", + "item.minecraft.potion.effect.turtle_master": "Potion of the Turtle Master", + "item.minecraft.potion.effect.water": "Water Bottle", + "item.minecraft.potion.effect.water_breathing": "Potion of Water Breathing", + "item.minecraft.potion.effect.weakness": "Potion of Weakness", + "item.minecraft.potion.effect.weaving": "Potion of Weaving", + "item.minecraft.potion.effect.wind_charged": "Potion of Wind Charging", + "item.minecraft.pottery_shard_archer": "Archer Pottery Shard", + "item.minecraft.pottery_shard_arms_up": "Arms Up Pottery Shard", + "item.minecraft.pottery_shard_prize": "Prize Pottery Shard", + "item.minecraft.pottery_shard_skull": "Skull Pottery Shard", + "item.minecraft.powder_snow_bucket": "Powder Snow Bucket", + "item.minecraft.prismarine_crystals": "Prismarine Crystals", + "item.minecraft.prismarine_shard": "Prismarine Shard", + "item.minecraft.prize_pottery_shard": "Prize Pottery Shard", + "item.minecraft.prize_pottery_sherd": "Prize Pottery Sherd", + "item.minecraft.pufferfish": "Pufferfish", + "item.minecraft.pufferfish_bucket": "Bucket of Pufferfish", + "item.minecraft.pufferfish_spawn_egg": "Pufferfish Spawn Egg", + "item.minecraft.pumpkin_pie": "Pumpkin Pie", + "item.minecraft.pumpkin_seeds": "Pumpkin Seeds", + "item.minecraft.purple_bundle": "Purple Bundle", + "item.minecraft.purple_dye": "Purple Dye", + "item.minecraft.purple_harness": "Purple Harness", + "item.minecraft.quartz": "Nether Quartz", + "item.minecraft.rabbit": "Raw Rabbit", + "item.minecraft.rabbit_foot": "Rabbit's Foot", + "item.minecraft.rabbit_hide": "Rabbit Hide", + "item.minecraft.rabbit_spawn_egg": "Rabbit Spawn Egg", + "item.minecraft.rabbit_stew": "Rabbit Stew", + "item.minecraft.raiser_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.raiser_armor_trim_smithing_template.new": "Raiser Armor Trim", + "item.minecraft.ravager_spawn_egg": "Ravager Spawn Egg", + "item.minecraft.raw_copper": "Raw Copper", + "item.minecraft.raw_gold": "Raw Gold", + "item.minecraft.raw_iron": "Raw Iron", + "item.minecraft.recovery_compass": "Recovery Compass", + "item.minecraft.red_bundle": "Red Bundle", + "item.minecraft.red_dye": "Red Dye", + "item.minecraft.red_harness": "Red Harness", + "item.minecraft.redstone": "Redstone Dust", + "item.minecraft.resin_brick": "Resin Brick", + "item.minecraft.resin_clump": "Resin Clump", + "item.minecraft.rib_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.rib_armor_trim_smithing_template.new": "Rib Armor Trim", + "item.minecraft.rotten_flesh": "Rotten Flesh", + "item.minecraft.saddle": "Saddle", + "item.minecraft.salmon": "Raw Salmon", + "item.minecraft.salmon_bucket": "Bucket of Salmon", + "item.minecraft.salmon_spawn_egg": "Salmon Spawn Egg", + "item.minecraft.scrape_pottery_sherd": "Scrape Pottery Sherd", + "item.minecraft.scute": "Scute", + "item.minecraft.sentry_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.sentry_armor_trim_smithing_template.new": "Sentry Armor Trim", + "item.minecraft.shaper_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.shaper_armor_trim_smithing_template.new": "Shaper Armor Trim", + "item.minecraft.sheaf_pottery_shard": "Sheaf Pottery Shard", + "item.minecraft.sheaf_pottery_sherd": "Sheaf Pottery Sherd", + "item.minecraft.shears": "Shears", + "item.minecraft.sheep_spawn_egg": "Sheep Spawn Egg", + "item.minecraft.shelter_pottery_shard": "Shelter Pottery Shard", + "item.minecraft.shelter_pottery_sherd": "Shelter Pottery Sherd", + "item.minecraft.shield": "Shield", + "item.minecraft.shield.black": "Black Shield", + "item.minecraft.shield.blue": "Blue Shield", + "item.minecraft.shield.brown": "Brown Shield", + "item.minecraft.shield.cyan": "Cyan Shield", + "item.minecraft.shield.gray": "Gray Shield", + "item.minecraft.shield.green": "Green Shield", + "item.minecraft.shield.light_blue": "Light Blue Shield", + "item.minecraft.shield.light_gray": "Light Gray Shield", + "item.minecraft.shield.lime": "Lime Shield", + "item.minecraft.shield.magenta": "Magenta Shield", + "item.minecraft.shield.orange": "Orange Shield", + "item.minecraft.shield.pink": "Pink Shield", + "item.minecraft.shield.purple": "Purple Shield", + "item.minecraft.shield.red": "Red Shield", + "item.minecraft.shield.white": "White Shield", + "item.minecraft.shield.yellow": "Yellow Shield", + "item.minecraft.shulker_shell": "Shulker Shell", + "item.minecraft.shulker_spawn_egg": "Shulker Spawn Egg", + "item.minecraft.sign": "Sign", + "item.minecraft.silence_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.silence_armor_trim_smithing_template.new": "Silence Armor Trim", + "item.minecraft.silverfish_spawn_egg": "Silverfish Spawn Egg", + "item.minecraft.skeleton_horse_spawn_egg": "Skeleton Horse Spawn Egg", + "item.minecraft.skeleton_spawn_egg": "Skeleton Spawn Egg", + "item.minecraft.skull_banner_pattern": "Banner Pattern", + "item.minecraft.skull_banner_pattern.desc": "Skull Charge", + "item.minecraft.skull_banner_pattern.new": "Skull Charge Banner Pattern", + "item.minecraft.skull_pottery_shard": "Skull Pottery Shard", + "item.minecraft.skull_pottery_sherd": "Skull Pottery Sherd", + "item.minecraft.slime_ball": "Slimeball", + "item.minecraft.slime_spawn_egg": "Slime Spawn Egg", + "item.minecraft.smithing_template": "Smithing Template", + "item.minecraft.smithing_template.applies_to": "Applies to:", + "item.minecraft.smithing_template.armor_trim.additions_slot_description": "Add ingot or crystal", + "item.minecraft.smithing_template.armor_trim.applies_to": "Armor", + "item.minecraft.smithing_template.armor_trim.base_slot_description": "Add a piece of armor", + "item.minecraft.smithing_template.armor_trim.ingredients": "Ingots & Crystals", + "item.minecraft.smithing_template.ingredients": "Ingredients:", + "item.minecraft.smithing_template.netherite_upgrade.additions_slot_description": "Add Netherite Ingot", + "item.minecraft.smithing_template.netherite_upgrade.applies_to": "Diamond Equipment", + "item.minecraft.smithing_template.netherite_upgrade.base_slot_description": "Add diamond armor, weapon, or tool", + "item.minecraft.smithing_template.netherite_upgrade.ingredients": "Netherite Ingot", + "item.minecraft.smithing_template.upgrade": "Upgrade: ", + "item.minecraft.sniffer_spawn_egg": "Sniffer Spawn Egg", + "item.minecraft.snort_pottery_shard": "Snort Pottery Shard", + "item.minecraft.snort_pottery_sherd": "Snort Pottery Sherd", + "item.minecraft.snout_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.snout_armor_trim_smithing_template.new": "Snout Armor Trim", + "item.minecraft.snow_golem_spawn_egg": "Snow Golem Spawn Egg", + "item.minecraft.snowball": "Snowball", + "item.minecraft.spectral_arrow": "Spectral Arrow", + "item.minecraft.spider_eye": "Spider Eye", + "item.minecraft.spider_spawn_egg": "Spider Spawn Egg", + "item.minecraft.spire_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.spire_armor_trim_smithing_template.new": "Spire Armor Trim", + "item.minecraft.splash_potion": "Splash Potion", + "item.minecraft.splash_potion.effect.awkward": "Awkward Splash Potion", + "item.minecraft.splash_potion.effect.empty": "Splash Uncraftable Potion", + "item.minecraft.splash_potion.effect.fire_resistance": "Splash Potion of Fire Resistance", + "item.minecraft.splash_potion.effect.harming": "Splash Potion of Harming", + "item.minecraft.splash_potion.effect.healing": "Splash Potion of Healing", + "item.minecraft.splash_potion.effect.infested": "Splash Potion of Infestation", + "item.minecraft.splash_potion.effect.invisibility": "Splash Potion of Invisibility", + "item.minecraft.splash_potion.effect.leaping": "Splash Potion of Leaping", + "item.minecraft.splash_potion.effect.levitation": "Splash Potion of Levitation", + "item.minecraft.splash_potion.effect.luck": "Splash Potion of Luck", + "item.minecraft.splash_potion.effect.mundane": "Mundane Splash Potion", + "item.minecraft.splash_potion.effect.night_vision": "Splash Potion of Night Vision", + "item.minecraft.splash_potion.effect.oozing": "Splash Potion of Oozing", + "item.minecraft.splash_potion.effect.poison": "Splash Potion of Poison", + "item.minecraft.splash_potion.effect.regeneration": "Splash Potion of Regeneration", + "item.minecraft.splash_potion.effect.slow_falling": "Splash Potion of Slow Falling", + "item.minecraft.splash_potion.effect.slowness": "Splash Potion of Slowness", + "item.minecraft.splash_potion.effect.strength": "Splash Potion of Strength", + "item.minecraft.splash_potion.effect.swiftness": "Splash Potion of Swiftness", + "item.minecraft.splash_potion.effect.thick": "Thick Splash Potion", + "item.minecraft.splash_potion.effect.turtle_master": "Splash Potion of the Turtle Master", + "item.minecraft.splash_potion.effect.water": "Splash Water Bottle", + "item.minecraft.splash_potion.effect.water_breathing": "Splash Potion of Water Breathing", + "item.minecraft.splash_potion.effect.weakness": "Splash Potion of Weakness", + "item.minecraft.splash_potion.effect.weaving": "Splash Potion of Weaving", + "item.minecraft.splash_potion.effect.wind_charged": "Splash Potion of Wind Charging", + "item.minecraft.spruce_boat": "Spruce Boat", + "item.minecraft.spruce_chest_boat": "Spruce Boat with Chest", + "item.minecraft.spyglass": "Spyglass", + "item.minecraft.squid_spawn_egg": "Squid Spawn Egg", + "item.minecraft.stick": "Stick", + "item.minecraft.stone_axe": "Stone Axe", + "item.minecraft.stone_hoe": "Stone Hoe", + "item.minecraft.stone_pickaxe": "Stone Pickaxe", + "item.minecraft.stone_shovel": "Stone Shovel", + "item.minecraft.stone_sword": "Stone Sword", + "item.minecraft.stray_spawn_egg": "Stray Spawn Egg", + "item.minecraft.strider_spawn_egg": "Strider Spawn Egg", + "item.minecraft.string": "String", + "item.minecraft.sugar": "Sugar", + "item.minecraft.suspicious_stew": "Suspicious Stew", + "item.minecraft.sweet_berries": "Sweet Berries", + "item.minecraft.tadpole_bucket": "Bucket of Tadpole", + "item.minecraft.tadpole_spawn_egg": "Tadpole Spawn Egg", + "item.minecraft.tide_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.tide_armor_trim_smithing_template.new": "Tide Armor Trim", + "item.minecraft.tipped_arrow": "Tipped Arrow", + "item.minecraft.tipped_arrow.effect.awkward": "Tipped Arrow", + "item.minecraft.tipped_arrow.effect.empty": "Uncraftable Tipped Arrow", + "item.minecraft.tipped_arrow.effect.fire_resistance": "Arrow of Fire Resistance", + "item.minecraft.tipped_arrow.effect.harming": "Arrow of Harming", + "item.minecraft.tipped_arrow.effect.healing": "Arrow of Healing", + "item.minecraft.tipped_arrow.effect.infested": "Arrow of Infestation", + "item.minecraft.tipped_arrow.effect.invisibility": "Arrow of Invisibility", + "item.minecraft.tipped_arrow.effect.leaping": "Arrow of Leaping", + "item.minecraft.tipped_arrow.effect.levitation": "Arrow of Levitation", + "item.minecraft.tipped_arrow.effect.luck": "Arrow of Luck", + "item.minecraft.tipped_arrow.effect.mundane": "Tipped Arrow", + "item.minecraft.tipped_arrow.effect.night_vision": "Arrow of Night Vision", + "item.minecraft.tipped_arrow.effect.oozing": "Arrow of Oozing", + "item.minecraft.tipped_arrow.effect.poison": "Arrow of Poison", + "item.minecraft.tipped_arrow.effect.regeneration": "Arrow of Regeneration", + "item.minecraft.tipped_arrow.effect.slow_falling": "Arrow of Slow Falling", + "item.minecraft.tipped_arrow.effect.slowness": "Arrow of Slowness", + "item.minecraft.tipped_arrow.effect.strength": "Arrow of Strength", + "item.minecraft.tipped_arrow.effect.swiftness": "Arrow of Swiftness", + "item.minecraft.tipped_arrow.effect.thick": "Tipped Arrow", + "item.minecraft.tipped_arrow.effect.turtle_master": "Arrow of the Turtle Master", + "item.minecraft.tipped_arrow.effect.water": "Arrow of Splashing", + "item.minecraft.tipped_arrow.effect.water_breathing": "Arrow of Water Breathing", + "item.minecraft.tipped_arrow.effect.weakness": "Arrow of Weakness", + "item.minecraft.tipped_arrow.effect.weaving": "Arrow of Weaving", + "item.minecraft.tipped_arrow.effect.wind_charged": "Arrow of Wind Charging", + "item.minecraft.tnt_minecart": "Minecart with TNT", + "item.minecraft.torchflower_seeds": "Torchflower Seeds", + "item.minecraft.totem_of_undying": "Totem of Undying", + "item.minecraft.trader_llama_spawn_egg": "Trader Llama Spawn Egg", + "item.minecraft.trial_key": "Trial Key", + "item.minecraft.trident": "Trident", + "item.minecraft.tropical_fish": "Tropical Fish", + "item.minecraft.tropical_fish_bucket": "Bucket of Tropical Fish", + "item.minecraft.tropical_fish_spawn_egg": "Tropical Fish Spawn Egg", + "item.minecraft.turtle_helmet": "Turtle Shell", + "item.minecraft.turtle_scute": "Turtle Scute", + "item.minecraft.turtle_spawn_egg": "Turtle Spawn Egg", + "item.minecraft.vex_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.vex_armor_trim_smithing_template.new": "Vex Armor Trim", + "item.minecraft.vex_spawn_egg": "Vex Spawn Egg", + "item.minecraft.villager_spawn_egg": "Villager Spawn Egg", + "item.minecraft.vindicator_spawn_egg": "Vindicator Spawn Egg", + "item.minecraft.wandering_trader_spawn_egg": "Wandering Trader Spawn Egg", + "item.minecraft.ward_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.ward_armor_trim_smithing_template.new": "Ward Armor Trim", + "item.minecraft.warden_spawn_egg": "Warden Spawn Egg", + "item.minecraft.warped_fungus_on_a_stick": "Warped Fungus on a Stick", + "item.minecraft.water_bucket": "Water Bucket", + "item.minecraft.wayfinder_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.wayfinder_armor_trim_smithing_template.new": "Wayfinder Armor Trim", + "item.minecraft.wheat": "Wheat", + "item.minecraft.wheat_seeds": "Wheat Seeds", + "item.minecraft.white_bundle": "White Bundle", + "item.minecraft.white_dye": "White Dye", + "item.minecraft.white_harness": "White Harness", + "item.minecraft.wild_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.wild_armor_trim_smithing_template.new": "Wild Armor Trim", + "item.minecraft.wind_charge": "Wind Charge", + "item.minecraft.witch_spawn_egg": "Witch Spawn Egg", + "item.minecraft.wither_skeleton_spawn_egg": "Wither Skeleton Spawn Egg", + "item.minecraft.wither_spawn_egg": "Wither Spawn Egg", + "item.minecraft.wolf_armor": "Wolf Armor", + "item.minecraft.wolf_spawn_egg": "Wolf Spawn Egg", + "item.minecraft.wooden_axe": "Wooden Axe", + "item.minecraft.wooden_hoe": "Wooden Hoe", + "item.minecraft.wooden_pickaxe": "Wooden Pickaxe", + "item.minecraft.wooden_shovel": "Wooden Shovel", + "item.minecraft.wooden_sword": "Wooden Sword", + "item.minecraft.writable_book": "Book and Quill", + "item.minecraft.written_book": "Written Book", + "item.minecraft.yellow_bundle": "Yellow Bundle", + "item.minecraft.yellow_dye": "Yellow Dye", + "item.minecraft.yellow_harness": "Yellow Harness", + "item.minecraft.zoglin_spawn_egg": "Zoglin Spawn Egg", + "item.minecraft.zombie_horse_spawn_egg": "Zombie Horse Spawn Egg", + "item.minecraft.zombie_spawn_egg": "Zombie Spawn Egg", + "item.minecraft.zombie_villager_spawn_egg": "Zombie Villager Spawn Egg", + "item.minecraft.zombified_piglin_spawn_egg": "Zombified Piglin Spawn Egg", + "item.modifiers.any": "When equipped:", + "item.modifiers.armor": "When worn:", + "item.modifiers.body": "When equipped:", + "item.modifiers.chest": "When on Chest:", + "item.modifiers.feet": "When on Feet:", + "item.modifiers.hand": "When held:", + "item.modifiers.head": "When on Head:", + "item.modifiers.legs": "When on Legs:", + "item.modifiers.mainhand": "When in Main Hand:", + "item.modifiers.offhand": "When in Off Hand:", + "item.modifiers.saddle": "When saddled:", + "item.nbt_tags": "NBT: %s tag(s)", + "item.op_block_warning.line1": "Warning:", + "item.op_block_warning.line2": "Use of this item might lead to command execution", + "item.op_block_warning.line3": "Do not use unless you know the exact contents!", + "item.unbreakable": "Unbreakable", + "itemGroup.buildingBlocks": "Building Blocks", + "itemGroup.coloredBlocks": "Colored Blocks", + "itemGroup.combat": "Combat", + "itemGroup.consumables": "Consumables", + "itemGroup.crafting": "Crafting", + "itemGroup.foodAndDrink": "Food & Drinks", + "itemGroup.functional": "Functional Blocks", + "itemGroup.hotbar": "Saved Hotbars", + "itemGroup.ingredients": "Ingredients", + "itemGroup.inventory": "Survival Inventory", + "itemGroup.natural": "Natural Blocks", + "itemGroup.op": "Operator Utilities", + "itemGroup.redstone": "Redstone Blocks", + "itemGroup.search": "Search Items", + "itemGroup.spawnEggs": "Spawn Eggs", + "itemGroup.tools": "Tools & Utilities", + "jigsaw_block.final_state": "Turns into:", + "jigsaw_block.generate": "Generate", + "jigsaw_block.joint_label": "Joint Type:", + "jigsaw_block.joint.aligned": "Aligned", + "jigsaw_block.joint.rollable": "Rollable", + "jigsaw_block.keep_jigsaws": "Keep Jigsaws", + "jigsaw_block.levels": "Levels: %s", + "jigsaw_block.name": "Name:", + "jigsaw_block.placement_priority": "Placement Priority:", + "jigsaw_block.placement_priority.tooltip": "When this Jigsaw block connects to a piece, this is the order in which that piece is processed for connections in the wider structure.\n\nPieces will be processed in descending priority with insertion order breaking ties.", + "jigsaw_block.pool": "Target Pool:", + "jigsaw_block.selection_priority": "Selection Priority:", + "jigsaw_block.selection_priority.tooltip": "When the parent piece is being processed for connections, this is the order in which this Jigsaw block attempts to connect to its target piece.\n\nJigsaws will be processed in descending priority with random ordering breaking ties.", + "jigsaw_block.target": "Target Name:", + "jukebox_song.minecraft.5": "Samuel Åberg - 5", + "jukebox_song.minecraft.11": "C418 - 11", + "jukebox_song.minecraft.13": "C418 - 13", + "jukebox_song.minecraft.blocks": "C418 - blocks", + "jukebox_song.minecraft.cat": "C418 - cat", + "jukebox_song.minecraft.chirp": "C418 - chirp", + "jukebox_song.minecraft.creator": "Lena Raine - Creator", + "jukebox_song.minecraft.creator_music_box": "Lena Raine - Creator (Music Box)", + "jukebox_song.minecraft.far": "C418 - far", + "jukebox_song.minecraft.lava_chicken": "Hyper Potions - Lava Chicken", + "jukebox_song.minecraft.mall": "C418 - mall", + "jukebox_song.minecraft.mellohi": "C418 - mellohi", + "jukebox_song.minecraft.otherside": "Lena Raine - otherside", + "jukebox_song.minecraft.pigstep": "Lena Raine - Pigstep", + "jukebox_song.minecraft.precipice": "Aaron Cherof - Precipice", + "jukebox_song.minecraft.relic": "Aaron Cherof - Relic", + "jukebox_song.minecraft.stal": "C418 - stal", + "jukebox_song.minecraft.strad": "C418 - strad", + "jukebox_song.minecraft.tears": "Amos Roddy - Tears", + "jukebox_song.minecraft.wait": "C418 - wait", + "jukebox_song.minecraft.ward": "C418 - ward", + "key.advancements": "Advancements", + "key.attack": "Attack/Destroy", + "key.back": "Walk Backward", + "key.categories.creative": "Creative Mode", + "key.categories.gameplay": "Gameplay", + "key.categories.inventory": "Inventory", + "key.categories.misc": "Miscellaneous", + "key.categories.movement": "Movement", + "key.categories.multiplayer": "Multiplayer", + "key.categories.ui": "Game Interface", + "key.chat": "Open Chat", + "key.command": "Open Command", + "key.drop": "Drop Selected Item", + "key.forward": "Walk Forward", + "key.fullscreen": "Toggle Fullscreen", + "key.hotbar.1": "Hotbar Slot 1", + "key.hotbar.2": "Hotbar Slot 2", + "key.hotbar.3": "Hotbar Slot 3", + "key.hotbar.4": "Hotbar Slot 4", + "key.hotbar.5": "Hotbar Slot 5", + "key.hotbar.6": "Hotbar Slot 6", + "key.hotbar.7": "Hotbar Slot 7", + "key.hotbar.8": "Hotbar Slot 8", + "key.hotbar.9": "Hotbar Slot 9", + "key.inventory": "Open/Close Inventory", + "key.jump": "Jump", + "key.keyboard.apostrophe": "'", + "key.keyboard.backslash": "\\", + "key.keyboard.backspace": "Backspace", + "key.keyboard.caps.lock": "Caps Lock", + "key.keyboard.comma": ",", + "key.keyboard.delete": "Delete", + "key.keyboard.down": "Down Arrow", + "key.keyboard.end": "End", + "key.keyboard.enter": "Enter", + "key.keyboard.equal": "=", + "key.keyboard.escape": "Escape", + "key.keyboard.f1": "F1", + "key.keyboard.f2": "F2", + "key.keyboard.f3": "F3", + "key.keyboard.f4": "F4", + "key.keyboard.f5": "F5", + "key.keyboard.f6": "F6", + "key.keyboard.f7": "F7", + "key.keyboard.f8": "F8", + "key.keyboard.f9": "F9", + "key.keyboard.f10": "F10", + "key.keyboard.f11": "F11", + "key.keyboard.f12": "F12", + "key.keyboard.f13": "F13", + "key.keyboard.f14": "F14", + "key.keyboard.f15": "F15", + "key.keyboard.f16": "F16", + "key.keyboard.f17": "F17", + "key.keyboard.f18": "F18", + "key.keyboard.f19": "F19", + "key.keyboard.f20": "F20", + "key.keyboard.f21": "F21", + "key.keyboard.f22": "F22", + "key.keyboard.f23": "F23", + "key.keyboard.f24": "F24", + "key.keyboard.f25": "F25", + "key.keyboard.grave.accent": "`", + "key.keyboard.home": "Home", + "key.keyboard.insert": "Insert", + "key.keyboard.keypad.0": "Keypad 0", + "key.keyboard.keypad.1": "Keypad 1", + "key.keyboard.keypad.2": "Keypad 2", + "key.keyboard.keypad.3": "Keypad 3", + "key.keyboard.keypad.4": "Keypad 4", + "key.keyboard.keypad.5": "Keypad 5", + "key.keyboard.keypad.6": "Keypad 6", + "key.keyboard.keypad.7": "Keypad 7", + "key.keyboard.keypad.8": "Keypad 8", + "key.keyboard.keypad.9": "Keypad 9", + "key.keyboard.keypad.add": "Keypad +", + "key.keyboard.keypad.decimal": "Keypad Decimal", + "key.keyboard.keypad.divide": "Keypad /", + "key.keyboard.keypad.enter": "Keypad Enter", + "key.keyboard.keypad.equal": "Keypad =", + "key.keyboard.keypad.multiply": "Keypad *", + "key.keyboard.keypad.subtract": "Keypad -", + "key.keyboard.left": "Left Arrow", + "key.keyboard.left.alt": "Left Alt", + "key.keyboard.left.bracket": "[", + "key.keyboard.left.control": "Left Control", + "key.keyboard.left.shift": "Left Shift", + "key.keyboard.left.win": "Left Win", + "key.keyboard.menu": "Menu", + "key.keyboard.minus": "-", + "key.keyboard.num.lock": "Num Lock", + "key.keyboard.page.down": "Page Down", + "key.keyboard.page.up": "Page Up", + "key.keyboard.pause": "Pause", + "key.keyboard.period": ".", + "key.keyboard.print.screen": "Print Screen", + "key.keyboard.right": "Right Arrow", + "key.keyboard.right.alt": "Right Alt", + "key.keyboard.right.bracket": "]", + "key.keyboard.right.control": "Right Control", + "key.keyboard.right.shift": "Right Shift", + "key.keyboard.right.win": "Right Win", + "key.keyboard.scroll.lock": "Scroll Lock", + "key.keyboard.semicolon": ";", + "key.keyboard.slash": "/", + "key.keyboard.space": "Space", + "key.keyboard.tab": "Tab", + "key.keyboard.unknown": "Not Bound", + "key.keyboard.up": "Up Arrow", + "key.keyboard.world.1": "World 1", + "key.keyboard.world.2": "World 2", + "key.left": "Strafe Left", + "key.loadToolbarActivator": "Load Hotbar Activator", + "key.mouse": "Button %1$s", + "key.mouse.left": "Left Button", + "key.mouse.middle": "Middle Button", + "key.mouse.right": "Right Button", + "key.pickItem": "Pick Block", + "key.playerlist": "List Players", + "key.quickActions": "Quick Actions", + "key.right": "Strafe Right", + "key.saveToolbarActivator": "Save Hotbar Activator", + "key.screenshot": "Take Screenshot", + "key.smoothCamera": "Toggle Cinematic Camera", + "key.sneak": "Sneak", + "key.socialInteractions": "Social Interactions Screen", + "key.spectatorOutlines": "Highlight Players (Spectators)", + "key.sprint": "Sprint", + "key.swapOffhand": "Swap Item With Off Hand", + "key.togglePerspective": "Toggle Perspective", + "key.use": "Use Item/Place Block", + "known_server_link.announcements": "Announcements", + "known_server_link.community": "Community", + "known_server_link.community_guidelines": "Community Guidelines", + "known_server_link.feedback": "Feedback", + "known_server_link.forums": "Forums", + "known_server_link.news": "News", + "known_server_link.report_bug": "Report Server Bug", + "known_server_link.status": "Status", + "known_server_link.support": "Support", + "known_server_link.website": "Website", + "language.code": "en_us", + "language.name": "English", + "language.region": "United States", + "lanServer.otherPlayers": "Settings for Other Players", + "lanServer.port": "Port Number", + "lanServer.port.invalid": "Not a valid port.\nLeave the edit box empty or enter a number between 1024 and 65535.", + "lanServer.port.invalid.new": "Not a valid port.\nLeave the edit box empty or enter a number between %s and %s.", + "lanServer.port.unavailable": "Port not available.\nLeave the edit box empty or enter a different number between 1024 and 65535.", + "lanServer.port.unavailable.new": "Port not available.\nLeave the edit box empty or enter a different number between %s and %s.", + "lanServer.scanning": "Scanning for games on your local network", + "lanServer.start": "Start LAN World", + "lanServer.title": "LAN World", + "lectern.take_book": "Take Book", + "loading.progress": "%s%%", + "mco.account.privacy.info": "Read more about Mojang and privacy laws", + "mco.account.privacy.info.button": "Read more about GDPR", + "mco.account.privacy.information": "Mojang implements certain procedures to help protect children and their privacy including complying with the Children's Online Privacy Protection Act (COPPA) and General Data Protection Regulation (GDPR).\n\nYou may need to obtain parental consent before accessing your Realms account.", + "mco.account.privacyinfo": "Mojang implements certain procedures to help protect children and their privacy including complying with the Children's Online Privacy Protection Act (COPPA) and General Data Protection Regulation (GDPR).\n\nYou may need to obtain parental consent before accessing your Realms account.\n\nIf you have an older Minecraft account (you log in with your username), you need to migrate the account to a Mojang account in order to access Realms.", + "mco.account.update": "Update account", + "mco.activity.noactivity": "No activity for the past %s day(s)", + "mco.activity.title": "Player activity", + "mco.backup.button.download": "Download Latest", + "mco.backup.button.reset": "Reset World", + "mco.backup.button.restore": "Restore", + "mco.backup.button.upload": "Upload World", + "mco.backup.changes.tooltip": "Changes", + "mco.backup.entry": "Backup (%s)", + "mco.backup.entry.description": "Description", + "mco.backup.entry.enabledPack": "Enabled Pack(s)", + "mco.backup.entry.gameDifficulty": "Game Difficulty", + "mco.backup.entry.gameMode": "Game Mode", + "mco.backup.entry.gameServerVersion": "Game Server Version", + "mco.backup.entry.name": "Name", + "mco.backup.entry.seed": "Seed", + "mco.backup.entry.templateName": "Template Name", + "mco.backup.entry.undefined": "Undefined Change", + "mco.backup.entry.uploaded": "Uploaded", + "mco.backup.entry.worldType": "World Type", + "mco.backup.generate.world": "Generate world", + "mco.backup.info.title": "Changes From Last Backup", + "mco.backup.narration": "Backup from %s", + "mco.backup.nobackups": "This Realm doesn't have any backups currently.", + "mco.backup.restoring": "Restoring your Realm", + "mco.backup.unknown": "UNKNOWN", + "mco.brokenworld.download": "Download", + "mco.brokenworld.downloaded": "Downloaded", + "mco.brokenworld.message.line1": "Please reset or select another world.", + "mco.brokenworld.message.line2": "You can also choose to download the world to singleplayer.", + "mco.brokenworld.minigame.title": "This minigame is no longer supported", + "mco.brokenworld.nonowner.error": "Please wait for the Realm owner to reset the world", + "mco.brokenworld.nonowner.title": "World is out of date", + "mco.brokenworld.play": "Play", + "mco.brokenworld.reset": "Reset", + "mco.brokenworld.title": "Your current world is no longer supported", + "mco.client.incompatible.msg.line1": "Your client is not compatible with Realms.", + "mco.client.incompatible.msg.line2": "Please use the most recent version of Minecraft.", + "mco.client.incompatible.msg.line3": "Realms is not compatible with snapshot versions.", + "mco.client.incompatible.title": "Client incompatible!", + "mco.client.outdated.stable.version": "Your client version (%s) is not compatible with Realms.\n\nPlease use the most recent version of Minecraft.", + "mco.client.unsupported.snapshot.version": "Your client version (%s) is not compatible with Realms.\n\nRealms is not available for this snapshot version.", + "mco.compatibility.downgrade": "Downgrade", + "mco.compatibility.downgrade.description": "This world was last played in version %s; you are on version %s. Downgrading a world could cause corruption - we cannot guarantee that it will load or work.\n\nA backup of your world will be saved under \"World Backups\". Please restore your world if needed.", + "mco.compatibility.incompatible.popup.title": "Incompatible version", + "mco.compatibility.incompatible.releaseType.popup.message": "The world you are trying to join is incompatible with the version you are on.", + "mco.compatibility.incompatible.series.popup.message": "This world was last played in version %s; you are on version %s.\n\nThese series are not compatible with each other. A new world is needed to play on this version.", + "mco.compatibility.unverifiable.message": "The version this world was last played in could not be verified. If the world gets upgraded or downgraded, a backup will be automatically created and saved under \"World Backups\".", + "mco.compatibility.unverifiable.title": "Compatibility not verifiable", + "mco.compatibility.upgrade": "Upgrade", + "mco.compatibility.upgrade.description": "This world was last played in version %s; you are on version %s.\n\nA backup of your world will be saved under \"World Backups\".\n\nPlease restore your world if needed.", + "mco.compatibility.upgrade.friend.description": "This world was last played in version %s; you are on version %s.\n\nA backup of the world will be saved under \"World Backups\".\n\nThe owner of the Realm can restore the world if needed.", + "mco.compatibility.upgrade.title": "Do you really want to upgrade this world?", + "mco.configure.current.minigame": "Current", + "mco.configure.world.activityfeed.disabled": "Player feed temporarily disabled", + "mco.configure.world.backup": "World Backups", + "mco.configure.world.buttons.activity": "Player activity", + "mco.configure.world.buttons.close": "Temporarily Close Realm", + "mco.configure.world.buttons.delete": "Delete", + "mco.configure.world.buttons.done": "Done", + "mco.configure.world.buttons.edit": "Settings", + "mco.configure.world.buttons.invite": "Invite Player", + "mco.configure.world.buttons.moreoptions": "More options", + "mco.configure.world.buttons.newworld": "New World", + "mco.configure.world.buttons.open": "Reopen Realm", + "mco.configure.world.buttons.options": "World Options", + "mco.configure.world.buttons.players": "Players", + "mco.configure.world.buttons.region_preference": "Select Region...", + "mco.configure.world.buttons.resetworld": "Reset World", + "mco.configure.world.buttons.save": "Save", + "mco.configure.world.buttons.settings": "Settings", + "mco.configure.world.buttons.subscription": "Subscription", + "mco.configure.world.buttons.switchminigame": "Switch Minigame", + "mco.configure.world.close.question.line1": "You can temporarily close your Realm, preventing play while you make adjustments. Open it back up when you're ready. \n\nThis does not cancel your Realms Subscription.", + "mco.configure.world.close.question.line2": "Are you sure you want to continue?", + "mco.configure.world.close.question.title": "Need to make changes without disruption?", + "mco.configure.world.closing": "Temporarily closing the Realm...", + "mco.configure.world.commandBlocks": "Command Blocks", + "mco.configure.world.delete.button": "Delete Realm", + "mco.configure.world.delete.question.line1": "Your Realm will be permanently deleted", + "mco.configure.world.delete.question.line2": "Are you sure you want to continue?", + "mco.configure.world.description": "Realm Description", + "mco.configure.world.edit.slot.name": "World Name", + "mco.configure.world.edit.subscreen.adventuremap": "Some settings are disabled since your current world is an adventure", + "mco.configure.world.edit.subscreen.experience": "Some settings are disabled since your current world is an experience", + "mco.configure.world.edit.subscreen.inspiration": "Some settings are disabled since your current world is an inspiration", + "mco.configure.world.forceGameMode": "Force Game Mode", + "mco.configure.world.invite.narration": "You have %s new invite(s)", + "mco.configure.world.invite.profile.name": "Name", + "mco.configure.world.invited": "Invited", + "mco.configure.world.invited.number": "Invited (%s)", + "mco.configure.world.invites.normal.tooltip": "Normal User", + "mco.configure.world.invites.ops.tooltip": "Operator", + "mco.configure.world.invites.remove.tooltip": "Remove", + "mco.configure.world.leave.question.line1": "If you leave this Realm you won't see it unless you are invited again", + "mco.configure.world.leave.question.line2": "Are you sure you want to continue?", + "mco.configure.world.loading": "Loading Realm", + "mco.configure.world.location": "Location", + "mco.configure.world.minigame": "Current: %s", + "mco.configure.world.name": "Realm Name", + "mco.configure.world.opening": "Opening the Realm...", + "mco.configure.world.players.error": "A player with the provided name does not exist", + "mco.configure.world.players.inviting": "Inviting player...", + "mco.configure.world.players.title": "Players", + "mco.configure.world.pvp": "PVP", + "mco.configure.world.region_preference": "Region Preference", + "mco.configure.world.region_preference.title": "Region Preference Selection", + "mco.configure.world.reset.question.line1": "Your world will be regenerated and your current world will be lost", + "mco.configure.world.reset.question.line2": "Are you sure you want to continue?", + "mco.configure.world.resourcepack.question": "You need a custom resource pack to play on this Realm\n\nDo you want to download it and play?", + "mco.configure.world.resourcepack.question.line1": "You need a custom resource pack to play on this Realm", + "mco.configure.world.resourcepack.question.line2": "Do you want to download it and play?", + "mco.configure.world.restore.download.question.line1": "The world will be downloaded and added to your single player worlds.", + "mco.configure.world.restore.download.question.line2": "Do you want to continue?", + "mco.configure.world.restore.question.line1": "Your world will be restored to date '%s' (%s)", + "mco.configure.world.restore.question.line2": "Are you sure you want to continue?", + "mco.configure.world.settings.expired": "You cannot edit settings of an expired Realm", + "mco.configure.world.settings.title": "Settings", + "mco.configure.world.slot": "World %s", + "mco.configure.world.slot.empty": "Empty", + "mco.configure.world.slot.switch.question.line1": "Your Realm will be switched to another world", + "mco.configure.world.slot.switch.question.line2": "Are you sure you want to continue?", + "mco.configure.world.slot.tooltip": "Switch to world", + "mco.configure.world.slot.tooltip.active": "Join", + "mco.configure.world.slot.tooltip.minigame": "Switch to minigame", + "mco.configure.world.spawn_toggle.message": "Turning this option off will remove all existing entities of that type", + "mco.configure.world.spawn_toggle.message.npc": "Turning this option off will remove all existing entities of that type, like Villagers", + "mco.configure.world.spawn_toggle.title": "Warning!", + "mco.configure.world.spawnAnimals": "Spawn Animals", + "mco.configure.world.spawnMonsters": "Spawn Monsters", + "mco.configure.world.spawnNPCs": "Spawn NPCs", + "mco.configure.world.spawnProtection": "Spawn Protection", + "mco.configure.world.status": "Status", + "mco.configure.world.subscription.day": "day", + "mco.configure.world.subscription.days": "days", + "mco.configure.world.subscription.expired": "Expired", + "mco.configure.world.subscription.extend": "Extend Subscription", + "mco.configure.world.subscription.less_than_a_day": "Less than a day", + "mco.configure.world.subscription.month": "month", + "mco.configure.world.subscription.months": "months", + "mco.configure.world.subscription.recurring.daysleft": "Renewed automatically in", + "mco.configure.world.subscription.recurring.info": "Changes made to your Realms subscription such as stacking time or turning off recurring billing will not be reflected until your next bill date.", + "mco.configure.world.subscription.remaining.days": "%1$s day(s)", + "mco.configure.world.subscription.remaining.months": "%1$s month(s)", + "mco.configure.world.subscription.remaining.months.days": "%1$s month(s), %2$s day(s)", + "mco.configure.world.subscription.start": "Start Date", + "mco.configure.world.subscription.tab": "Subscription", + "mco.configure.world.subscription.timeleft": "Time Left", + "mco.configure.world.subscription.title": "Your Subscription", + "mco.configure.world.subscription.unknown": "Unknown", + "mco.configure.world.switch.slot": "Create World", + "mco.configure.world.switch.slot.subtitle": "This world is empty, choose how to create your world", + "mco.configure.world.title": "Configure Realm:", + "mco.configure.world.uninvite.player": "Are you sure that you want to uninvite '%s'?", + "mco.configure.world.uninvite.question": "Are you sure that you want to uninvite", + "mco.configure.worlds.title": "Worlds", + "mco.connect.authorizing": "Logging in...", + "mco.connect.connecting": "Connecting to the Realm...", + "mco.connect.failed": "Failed to connect to the Realm", + "mco.connect.region": "Server region: %s", + "mco.connect.success": "Done", + "mco.create.world": "Create", + "mco.create.world.error": "You must enter a name!", + "mco.create.world.failed": "Failed to create world!", + "mco.create.world.reset.title": "Creating world...", + "mco.create.world.skip": "Skip", + "mco.create.world.subtitle": "Optionally, select what world to put on your new Realm", + "mco.create.world.wait": "Creating the Realm...", + "mco.download.cancelled": "Download cancelled", + "mco.download.confirmation.line1": "The world you are going to download is larger than %s", + "mco.download.confirmation.line2": "You won't be able to upload this world to your Realm again", + "mco.download.confirmation.oversized": "The world you are going to download is larger than %s\n\nYou won't be able to upload this world to your Realm again", + "mco.download.done": "Download done", + "mco.download.downloading": "Downloading", + "mco.download.extracting": "Extracting", + "mco.download.failed": "Download failed", + "mco.download.percent": "%s %%", + "mco.download.preparing": "Preparing download", + "mco.download.resourcePack.fail": "Failed to download resource pack!", + "mco.download.speed": "(%s/s)", + "mco.download.speed.narration": "%s/s", + "mco.download.title": "Downloading Latest World", + "mco.error.invalid.session.message": "Please try restarting Minecraft", + "mco.error.invalid.session.title": "Invalid Session", + "mco.errorMessage.6001": "Client outdated", + "mco.errorMessage.6002": "Terms of service not accepted", + "mco.errorMessage.6003": "Download limit reached", + "mco.errorMessage.6004": "Upload limit reached", + "mco.errorMessage.6005": "World locked", + "mco.errorMessage.6006": "World is out of date", + "mco.errorMessage.6007": "User in too many Realms", + "mco.errorMessage.6008": "Invalid Realm name", + "mco.errorMessage.6009": "Invalid Realm description", + "mco.errorMessage.connectionFailure": "An error occurred, please try again later.", + "mco.errorMessage.generic": "An error occurred: ", + "mco.errorMessage.initialize.failed": "Failed to initialize Realm", + "mco.errorMessage.noDetails": "No error details provided", + "mco.errorMessage.realmsService": "An error occurred (%s):", + "mco.errorMessage.realmsService.configurationError": "An unexpected error occurred while editing world options", + "mco.errorMessage.realmsService.connectivity": "Could not connect to Realms: %s", + "mco.errorMessage.realmsService.realmsError": "Realms (%s):", + "mco.errorMessage.realmsService.unknownCompatibility": "Could not check compatible version, got response: %s", + "mco.errorMessage.retry": "Retry operation", + "mco.errorMessage.serviceBusy": "Realms is busy at the moment.\nPlease try connecting to your Realm again in a couple of minutes.", + "mco.gui.button": "Button", + "mco.gui.ok": "Ok", + "mco.info": "Info!", + "mco.invited.player.narration": "Invited player %s", + "mco.invites.button.accept": "Accept", + "mco.invites.button.reject": "Reject", + "mco.invites.nopending": "No pending invites!", + "mco.invites.pending": "New invite(s)!", + "mco.invites.title": "Pending Invites", + "mco.minigame.world.changeButton": "Select Another Minigame", + "mco.minigame.world.info.line1": "This will temporarily replace your world with a minigame!", + "mco.minigame.world.info.line2": "You can later return to your original world without losing anything.", + "mco.minigame.world.noSelection": "Please make a selection", + "mco.minigame.world.restore": "Ending Minigame...", + "mco.minigame.world.restore.question.line1": "The minigame will end and your Realm will be restored.", + "mco.minigame.world.restore.question.line2": "Are you sure you want to continue?", + "mco.minigame.world.selected": "Selected Minigame:", + "mco.minigame.world.slot.screen.title": "Switching World...", + "mco.minigame.world.startButton": "Switch", + "mco.minigame.world.starting.screen.title": "Starting Minigame...", + "mco.minigame.world.stopButton": "End Minigame", + "mco.minigame.world.switch.new": "Select another minigame?", + "mco.minigame.world.switch.title": "Switch Minigame", + "mco.minigame.world.title": "Switch Realm to Minigame", + "mco.news": "Realms news", + "mco.notification.dismiss": "Dismiss", + "mco.notification.transferSubscription.buttonText": "Transfer Now", + "mco.notification.transferSubscription.message": "Java Realms subscriptions are moving to the Microsoft Store. Do not let your subscription expire!\nTransfer now and get 30 days of Realms for free.\nGo to Profile on minecraft.net to transfer your subscription.", + "mco.notification.visitUrl.buttonText.default": "Open Link", + "mco.notification.visitUrl.message.default": "Please visit the link below", + "mco.onlinePlayers": "Online Players", + "mco.play.button.realm.closed": "Realm is closed", + "mco.question": "Question", + "mco.reset.world.adventure": "Adventures", + "mco.reset.world.experience": "Experiences", + "mco.reset.world.generate": "New World", + "mco.reset.world.inspiration": "Inspiration", + "mco.reset.world.resetting.screen.title": "Resetting world...", + "mco.reset.world.seed": "Seed (Optional)", + "mco.reset.world.template": "World Templates", + "mco.reset.world.title": "Reset World", + "mco.reset.world.upload": "Upload world", + "mco.reset.world.warning": "This will replace the current world of your Realm", + "mco.selectServer.buy": "Buy a Realm!", + "mco.selectServer.close": "Close", + "mco.selectServer.closed": "Deactivated Realm", + "mco.selectServer.closeserver": "Close Realm", + "mco.selectServer.configure": "Configure", + "mco.selectServer.configureRealm": "Configure Realm", + "mco.selectServer.create": "Create Realm", + "mco.selectServer.create.subtitle": "Select what world to put on your new Realm", + "mco.selectServer.expired": "Expired Realm", + "mco.selectServer.expiredList": "Your subscription has expired", + "mco.selectServer.expiredRenew": "Renew", + "mco.selectServer.expiredSubscribe": "Subscribe", + "mco.selectServer.expiredTrial": "Your trial has ended", + "mco.selectServer.expires.day": "Expires in a day", + "mco.selectServer.expires.days": "Expires in %s days", + "mco.selectServer.expires.soon": "Expires soon", + "mco.selectServer.leave": "Leave Realm", + "mco.selectServer.loading": "Loading Realms List", + "mco.selectServer.mapOnlySupportedForVersion": "This map is unsupported in %s", + "mco.selectServer.minigame": "Minigame:", + "mco.selectServer.minigameName": "Minigame: %s", + "mco.selectServer.minigameNotSupportedInVersion": "Can't play this minigame in %s", + "mco.selectServer.noRealms": "You don't seem to have a Realm. Add a Realm to play together with your friends.", + "mco.selectServer.note": "Note:", + "mco.selectServer.open": "Open Realm", + "mco.selectServer.openserver": "Open Realm", + "mco.selectServer.play": "Play", + "mco.selectServer.popup": "Realms is a safe, simple way to enjoy an online Minecraft world with up to ten friends at a time. It supports loads of minigames and plenty of custom worlds! Only the owner of the realm needs to pay.", + "mco.selectServer.purchase": "Add Realm", + "mco.selectServer.trial": "Get a Trial!", + "mco.selectServer.uninitialized": "Click to start your new Realm!", + "mco.snapshot.createSnapshotPopup.text": "You are about to create a free Snapshot Realm that will be paired with your paid Realms subscription. This new Snapshot Realm will be accessible for as long as the paid subscription is active. Your paid Realm will not be affected.", + "mco.snapshot.createSnapshotPopup.title": "Create Snapshot Realm?", + "mco.snapshot.creating": "Creating Snapshot Realm...", + "mco.snapshot.description": "Paired with \"%s\"", + "mco.snapshot.friendsRealm.downgrade": "You need to be on version %s to join this Realm", + "mco.snapshot.friendsRealm.upgrade": "%s needs to upgrade their Realm before you can play from this version", + "mco.snapshot.paired": "This Snapshot Realm is paired with \"%s\"", + "mco.snapshot.parent.tooltip": "Use the latest release of Minecraft to play on this Realm", + "mco.snapshot.start": "Start free Snapshot Realm", + "mco.snapshot.subscription.info": "This is a Snapshot Realm that is paired to the subscription of your Realm '%s'. It will stay active for as long as its paired Realm is.", + "mco.snapshot.tooltip": "Use Snapshot Realms to get a sneak peek at upcoming versions of Minecraft, which might include new features and other changes.\n\nYou can find your normal Realms in the release version of the game.", + "mco.snapshotRealmsPopup.message": "Realms are now available in Snapshots starting with Snapshot 23w41a. Every Realms subscription comes with a free Snapshot Realm that is separate from your normal Java Realm!", + "mco.snapshotRealmsPopup.title": "Realms now available in Snapshots", + "mco.snapshotRealmsPopup.urlText": "Learn More", + "mco.template.button.publisher": "Publisher", + "mco.template.button.select": "Select", + "mco.template.button.trailer": "Trailer", + "mco.template.default.name": "World template", + "mco.template.info.tooltip": "Publisher website", + "mco.template.name": "Template", + "mco.template.select.failure": "We couldn't retrieve the list of content for this category.\nPlease check your internet connection, or try again later.", + "mco.template.select.narrate.authors": "Authors: %s", + "mco.template.select.narrate.version": "version %s", + "mco.template.select.none": "Oops, it looks like this content category is currently empty.\nPlease check back later for new content, or if you're a creator,\n%s.", + "mco.template.select.none.linkTitle": "consider submitting something yourself", + "mco.template.title": "World templates", + "mco.template.title.minigame": "Minigames", + "mco.template.trailer.tooltip": "Map trailer", + "mco.terms.buttons.agree": "Agree", + "mco.terms.buttons.disagree": "Don't agree", + "mco.terms.sentence.1": "I agree to the Minecraft Realms", + "mco.terms.sentence.2": "Terms of Service", + "mco.terms.title": "Realms Terms of Service", + "mco.time.daysAgo": "%1$s day(s) ago", + "mco.time.hoursAgo": "%1$s hour(s) ago", + "mco.time.minutesAgo": "%1$s minute(s) ago", + "mco.time.now": "right now", + "mco.time.secondsAgo": "%1$s second(s) ago", + "mco.trial.message.line1": "Want to get your own Realm?", + "mco.trial.message.line2": "Click here for more info!", + "mco.upload.button.name": "Upload", + "mco.upload.cancelled": "Upload cancelled", + "mco.upload.close.failure": "Could not close your Realm, please try again later", + "mco.upload.done": "Upload done", + "mco.upload.entry.cheats": "%1$s, %2$s", + "mco.upload.entry.commands": "%1$s, %2$s", + "mco.upload.entry.id": "%1$s (%2$s)", + "mco.upload.failed": "Upload failed! (%s)", + "mco.upload.failed.too_big.description": "The selected world is too big. The maximum allowed size is %s.", + "mco.upload.failed.too_big.title": "World too big", + "mco.upload.hardcore": "Hardcore worlds can't be uploaded!", + "mco.upload.percent": "%s %%", + "mco.upload.preparing": "Preparing your world", + "mco.upload.select.world.none": "No singleplayer worlds found!", + "mco.upload.select.world.subtitle": "Please select a singleplayer world to upload", + "mco.upload.select.world.title": "Upload World", + "mco.upload.size.failure.line1": "'%s' is too big!", + "mco.upload.size.failure.line2": "It is %s. The maximum allowed size is %s.", + "mco.upload.uploading": "Uploading '%s'", + "mco.upload.verifying": "Verifying your world", + "mco.version": "Version: %s", + "mco.warning": "Warning!", + "mco.worldSlot.minigame": "Minigame", + "menu.custom_options": "Custom Options...", + "menu.custom_options.title": "Custom Options", + "menu.custom_options.tooltip": "Note: Custom options are provided by third-party servers and/or content.\nHandle with care!", + "menu.custom_screen_info.button_narration": "This is a custom screen. Learn more.", + "menu.custom_screen_info.contents": "The contents of this screen are controlled by third-party servers and maps that are not owned, operated, or supervised by Mojang Studios or Microsoft.\n\nHandle with care! Always be careful when following links and never give away your personal information, including login details.\n\nIf this screen prevents you from playing, you can also disconnect from the current server by using the button below.", + "menu.custom_screen_info.disconnect": "Custom screen rejected", + "menu.custom_screen_info.title": "Note about custom screens", + "menu.custom_screen_info.tooltip": "This is a custom screen. Click here to learn more.", + "menu.disconnect": "Disconnect", + "menu.feedback": "Feedback...", + "menu.feedback.title": "Feedback", + "menu.game": "Game Menu", + "menu.modded": " (Modded)", + "menu.multiplayer": "Multiplayer", + "menu.online": "Minecraft Realms", + "menu.options": "Options...", + "menu.paused": "Game Paused", + "menu.playdemo": "Play Demo World", + "menu.playerReporting": "Player Reporting", + "menu.preparingSpawn": "Preparing spawn area: %s%%", + "menu.quick_actions": "Quick Actions...", + "menu.quick_actions.title": "Quick Actions", + "menu.quit": "Quit Game", + "menu.reportBugs": "Report Bugs", + "menu.resetdemo": "Reset Demo World", + "menu.returnToGame": "Back to Game", + "menu.returnToMenu": "Save and Quit to Title", + "menu.savingChunks": "Saving chunks", + "menu.savingLevel": "Saving world", + "menu.sendFeedback": "Give Feedback", + "menu.server_links": "Server Links...", + "menu.server_links.title": "Server Links", + "menu.shareToLan": "Open to LAN", + "menu.singleplayer": "Singleplayer", + "menu.working": "Working...", + "merchant.deprecated": "Villagers restock up to two times per day.", + "merchant.level.1": "Novice", + "merchant.level.2": "Apprentice", + "merchant.level.3": "Journeyman", + "merchant.level.4": "Expert", + "merchant.level.5": "Master", + "merchant.title": "%s - %s", + "merchant.trades": "Trades", + "mirror.front_back": "↑ ↓", + "mirror.left_right": "← →", + "mirror.none": "|", + "mount.onboard": "Press %1$s to Dismount", + "multiplayer.applyingPack": "Applying resource pack", + "multiplayer.confirm_command.parse_errors": "You are trying to execute an unrecognized or invalid command.\nAre you sure?\nCommand: %s", + "multiplayer.confirm_command.permissions_required": "You are trying to execute a command that requires elevated permissions.\nThis might negatively affect your game.\nAre you sure?\nCommand: %s", + "multiplayer.confirm_command.title": "Confirm Command Execution", + "multiplayer.disconnect.authservers_down": "Authentication servers are down. Please try again later, sorry!", + "multiplayer.disconnect.bad_chat_index": "Detected missed or reordered chat message from server", + "multiplayer.disconnect.banned": "You are banned from this server", + "multiplayer.disconnect.banned_ip.expiration": "\nYour ban will be removed on %s", + "multiplayer.disconnect.banned_ip.reason": "Your IP address is banned from this server.\nReason: %s", + "multiplayer.disconnect.banned.expiration": "\nYour ban will be removed on %s", + "multiplayer.disconnect.banned.reason": "You are banned from this server.\nReason: %s", + "multiplayer.disconnect.chat_validation_failed": "Chat message validation failure", + "multiplayer.disconnect.duplicate_login": "You logged in from another location", + "multiplayer.disconnect.expired_public_key": "Expired profile public key. Check that your system time is synchronized, and try restarting your game.", + "multiplayer.disconnect.flying": "Flying is not enabled on this server", + "multiplayer.disconnect.generic": "Disconnected", + "multiplayer.disconnect.idling": "You have been idle for too long!", + "multiplayer.disconnect.illegal_characters": "Illegal characters in chat", + "multiplayer.disconnect.incompatible": "Incompatible client! Please use %s", + "multiplayer.disconnect.invalid_entity_attacked": "Attempting to attack an invalid entity", + "multiplayer.disconnect.invalid_packet": "Server sent an invalid packet", + "multiplayer.disconnect.invalid_player_data": "Invalid player data", + "multiplayer.disconnect.invalid_player_movement": "Invalid move player packet received", + "multiplayer.disconnect.invalid_public_key_signature": "Invalid signature for profile public key.\nTry restarting your game.", + "multiplayer.disconnect.invalid_public_key_signature.new": "Invalid signature for profile public key.\nTry restarting your game.", + "multiplayer.disconnect.invalid_vehicle_movement": "Invalid move vehicle packet received", + "multiplayer.disconnect.ip_banned": "You have been IP banned from this server", + "multiplayer.disconnect.kicked": "Kicked by an operator", + "multiplayer.disconnect.missing_tags": "Incomplete set of tags received from server.\nPlease contact server operator.", + "multiplayer.disconnect.name_taken": "That name is already taken", + "multiplayer.disconnect.not_whitelisted": "You are not white-listed on this server!", + "multiplayer.disconnect.out_of_order_chat": "Out-of-order chat packet received. Did your system time change?", + "multiplayer.disconnect.outdated_client": "Incompatible client! Please use %s", + "multiplayer.disconnect.outdated_server": "Incompatible client! Please use %s", + "multiplayer.disconnect.server_full": "The server is full!", + "multiplayer.disconnect.server_shutdown": "Server closed", + "multiplayer.disconnect.slow_login": "Took too long to log in", + "multiplayer.disconnect.too_many_pending_chats": "Too many unacknowledged chat messages", + "multiplayer.disconnect.transfers_disabled": "Server does not accept transfers", + "multiplayer.disconnect.unexpected_query_response": "Unexpected custom data from client", + "multiplayer.disconnect.unsigned_chat": "Received chat packet with missing or invalid signature.", + "multiplayer.disconnect.unverified_username": "Failed to verify username!", + "multiplayer.downloadingStats": "Retrieving statistics...", + "multiplayer.downloadingTerrain": "Loading terrain...", + "multiplayer.lan.server_found": "New server found: %s", + "multiplayer.message_not_delivered": "Can't deliver chat message, check server logs: %s", + "multiplayer.player.joined": "%s joined the game", + "multiplayer.player.joined.renamed": "%s (formerly known as %s) joined the game", + "multiplayer.player.left": "%s left the game", + "multiplayer.player.list.hp": "%shp", + "multiplayer.player.list.narration": "Online players: %s", + "multiplayer.requiredTexturePrompt.disconnect": "Server requires a custom resource pack", + "multiplayer.requiredTexturePrompt.line1": "This server requires the use of a custom resource pack.", + "multiplayer.requiredTexturePrompt.line2": "Rejecting this custom resource pack will disconnect you from this server.", + "multiplayer.socialInteractions.not_available": "Social Interactions are only available in Multiplayer worlds", + "multiplayer.status.and_more": "... and %s more ...", + "multiplayer.status.cancelled": "Cancelled", + "multiplayer.status.cannot_connect": "Can't connect to server", + "multiplayer.status.cannot_resolve": "Can't resolve hostname", + "multiplayer.status.finished": "Finished", + "multiplayer.status.incompatible": "Incompatible version!", + "multiplayer.status.motd.narration": "Message of the day: %s", + "multiplayer.status.no_connection": "(no connection)", + "multiplayer.status.old": "Old", + "multiplayer.status.online": "Online", + "multiplayer.status.ping": "%s ms", + "multiplayer.status.ping.narration": "Ping %s milliseconds", + "multiplayer.status.pinging": "Pinging...", + "multiplayer.status.player_count": "%s/%s", + "multiplayer.status.player_count.narration": "%s out of %s players online", + "multiplayer.status.quitting": "Quitting", + "multiplayer.status.request_handled": "Status request has been handled", + "multiplayer.status.unknown": "???", + "multiplayer.status.unrequested": "Received unrequested status", + "multiplayer.status.version.narration": "Server version: %s", + "multiplayer.stopSleeping": "Leave Bed", + "multiplayer.texturePrompt.failure.line1": "Server resource pack couldn't be applied", + "multiplayer.texturePrompt.failure.line2": "Any functionality that requires custom resources might not work as expected", + "multiplayer.texturePrompt.line1": "This server recommends the use of a custom resource pack.", + "multiplayer.texturePrompt.line2": "Would you like to download and install it automagically?", + "multiplayer.texturePrompt.serverPrompt": "%s\n\nMessage from server:\n%s", + "multiplayer.title": "Play Multiplayer", + "multiplayer.unsecureserver.toast": "Messages sent on this server may be modified and might not reflect the original message", + "multiplayer.unsecureserver.toast.title": "Chat messages can't be verified", + "multiplayerWarning.check": "Do not show this screen again", + "multiplayerWarning.header": "Caution: Third-Party Online Play", + "multiplayerWarning.message": "Caution: Online play is offered by third-party servers that are not owned, operated, or supervised by Mojang Studios or Microsoft. During online play, you may be exposed to unmoderated chat messages or other types of user-generated content that may not be suitable for everyone.", + "music.game.a_familiar_room": "Aaron Cherof - A Familiar Room", + "music.game.an_ordinary_day": "Kumi Tanioka - An Ordinary Day", + "music.game.ancestry": "Lena Raine - Ancestry", + "music.game.below_and_above": "Amos Roddy - Below and Above", + "music.game.broken_clocks": "Amos Roddy - Broken Clocks", + "music.game.bromeliad": "Aaron Cherof - Bromeliad", + "music.game.clark": "C418 - Clark", + "music.game.comforting_memories": "Kumi Tanioka - Comforting Memories", + "music.game.creative.aria_math": "C418 - Aria Math", + "music.game.creative.biome_fest": "C418 - Biome Fest", + "music.game.creative.blind_spots": "C418 - Blind Spots", + "music.game.creative.dreiton": "C418 - Dreiton", + "music.game.creative.haunt_muskie": "C418 - Haunt Muskie", + "music.game.creative.taswell": "C418 - Taswell", + "music.game.crescent_dunes": "Aaron Cherof - Crescent Dunes", + "music.game.danny": "C418 - Danny", + "music.game.deeper": "Lena Raine - Deeper", + "music.game.dry_hands": "C418 - Dry Hands", + "music.game.echo_in_the_wind": "Aaron Cherof - Echo in the Wind", + "music.game.eld_unknown": "Lena Raine - Eld Unknown", + "music.game.end.alpha": "C418 - Alpha", + "music.game.end.boss": "C418 - Boss", + "music.game.end.the_end": "C418 - The End", + "music.game.endless": "Lena Raine - Endless", + "music.game.featherfall": "Aaron Cherof - Featherfall", + "music.game.fireflies": "Amos Roddy - Fireflies", + "music.game.floating_dream": "Kumi Tanioka - Floating Dream", + "music.game.haggstrom": "C418 - Haggstrom", + "music.game.infinite_amethyst": "Lena Raine - Infinite Amethyst", + "music.game.key": "C418 - Key", + "music.game.komorebi": "Kumi Tanioka - komorebi", + "music.game.left_to_bloom": "Lena Raine - Left to Bloom", + "music.game.lilypad": "Amos Roddy - Lilypad", + "music.game.living_mice": "C418 - Living Mice", + "music.game.mice_on_venus": "C418 - Mice on Venus", + "music.game.minecraft": "C418 - Minecraft", + "music.game.nether.ballad_of_the_cats": "C418 - Ballad of the Cats", + "music.game.nether.concrete_halls": "C418 - Concrete Halls", + "music.game.nether.crimson_forest.chrysopoeia": "Lena Raine - Chrysopoeia", + "music.game.nether.dead_voxel": "C418 - Dead Voxel", + "music.game.nether.nether_wastes.rubedo": "Lena Raine - Rubedo", + "music.game.nether.soulsand_valley.so_below": "Lena Raine - So Below", + "music.game.nether.warmth": "C418 - Warmth", + "music.game.one_more_day": "Lena Raine - One More Day", + "music.game.os_piano": "Amos Roddy - O's Piano", + "music.game.oxygene": "C418 - Oxygène", + "music.game.pokopoko": "Kumi Tanioka - pokopoko", + "music.game.puzzlebox": "Aaron Cherof - Puzzlebox", + "music.game.stand_tall": "Lena Raine - Stand Tall", + "music.game.subwoofer_lullaby": "C418 - Subwoofer Lullaby", + "music.game.swamp.aerie": "Lena Raine - Aerie", + "music.game.swamp.firebugs": "Lena Raine - Firebugs", + "music.game.swamp.labyrinthine": "Lena Raine - Labyrinthine", + "music.game.sweden": "C418 - Sweden", + "music.game.watcher": "Aaron Cherof - Watcher", + "music.game.water.axolotl": "C418 - Axolotl", + "music.game.water.dragon_fish": "C418 - Dragon Fish", + "music.game.water.shuniji": "C418 - Shuniji", + "music.game.wending": "Lena Raine - Wending", + "music.game.wet_hands": "C418 - Wet Hands", + "music.game.yakusoku": "Kumi Tanioka - yakusoku", + "music.menu.beginning_2": "C418 - Beginning 2", + "music.menu.floating_trees": "C418 - Floating Trees", + "music.menu.moog_city_2": "C418 - Moog City 2", + "music.menu.mutation": "C418 - Mutation", + "narration.button": "Button: %s", + "narration.button.usage.focused": "Press Enter to activate", + "narration.button.usage.hovered": "Left click to activate", + "narration.checkbox": "Checkbox: %s", + "narration.checkbox.usage.focused": "Press Enter to toggle", + "narration.checkbox.usage.hovered": "Left click to toggle", + "narration.component_list.usage": "Press Tab to navigate to next element", + "narration.cycle_button.usage.focused": "Press Enter to switch to %s", + "narration.cycle_button.usage.hovered": "Left click to switch to %s", + "narration.edit_box": "Edit box: %s", + "narration.item": "Item: %s", + "narration.recipe": "Recipe for %s", + "narration.recipe.usage": "Left click to select", + "narration.recipe.usage.more": "Right click to show more recipes", + "narration.selection.usage": "Press up and down buttons to move to another entry", + "narration.slider.usage.focused": "Press left or right keyboard buttons to change value", + "narration.slider.usage.hovered": "Drag slider to change value", + "narration.suggestion": "Selected suggestion %s out of %s: %s", + "narration.suggestion.tooltip": "Selected suggestion %s out of %s: %s (%s)", + "narration.suggestion.usage.cycle.fixed": "Press Tab to cycle to the next suggestion", + "narration.suggestion.usage.cycle.hidable": "Press Tab to cycle to the next suggestion, or Escape to leave suggestions", + "narration.suggestion.usage.fill.fixed": "Press Tab to use suggestion", + "narration.suggestion.usage.fill.hidable": "Press Tab to use suggestion, or Escape to leave suggestions", + "narration.tab_navigation.usage": "Press Ctrl and Tab to switch between tabs", + "narrator.button.accessibility": "Accessibility", + "narrator.button.difficulty_lock": "Difficulty lock", + "narrator.button.difficulty_lock.locked": "Locked", + "narrator.button.difficulty_lock.unlocked": "Unlocked", + "narrator.button.language": "Language", + "narrator.controls.bound": "%s is bound to %s", + "narrator.controls.reset": "Reset %s button", + "narrator.controls.unbound": "%s is not bound", + "narrator.joining": "Joining", + "narrator.loading": "Loading: %s", + "narrator.loading.done": "Done", + "narrator.position.list": "Selected list row %s out of %s", + "narrator.position.object_list": "Selected row element %s out of %s", + "narrator.position.screen": "Screen element %s out of %s", + "narrator.position.tab": "Selected tab %s out of %s", + "narrator.ready_to_play": "Ready to play", + "narrator.screen.title": "Title Screen", + "narrator.screen.usage": "Use mouse cursor or Tab button to select element", + "narrator.select": "Selected: %s", + "narrator.select.world": "Selected %s, last played: %s, %s, %s, version: %s", + "narrator.select.world_info": "Selected %s, last played: %s, %s", + "narrator.toast.disabled": "Narrator Disabled", + "narrator.toast.enabled": "Narrator Enabled", + "optimizeWorld.confirm.description": "This will attempt to optimize your world by making sure all data is stored in the most recent game format. This can take a very long time, depending on your world. Once done, your world may play faster but will no longer be compatible with older versions of the game. Are you sure you wish to proceed?", + "optimizeWorld.confirm.proceed": "Create Backup and Optimize", + "optimizeWorld.confirm.title": "Optimize World", + "optimizeWorld.info.converted": "Upgraded chunks: %s", + "optimizeWorld.info.skipped": "Skipped chunks: %s", + "optimizeWorld.info.total": "Total chunks: %s", + "optimizeWorld.progress.counter": "%s / %s", + "optimizeWorld.progress.percentage": "%s%%", + "optimizeWorld.stage.counting": "Counting chunks...", + "optimizeWorld.stage.failed": "Failed! :(", + "optimizeWorld.stage.finished": "Finishing up...", + "optimizeWorld.stage.finished.chunks": "Finishing up upgrading chunks...", + "optimizeWorld.stage.finished.entities": "Finishing up upgrading entities...", + "optimizeWorld.stage.finished.poi": "Finishing up upgrading points of interest...", + "optimizeWorld.stage.upgrading": "Upgrading all chunks...", + "optimizeWorld.stage.upgrading.chunks": "Upgrading all chunks...", + "optimizeWorld.stage.upgrading.entities": "Upgrading all entities...", + "optimizeWorld.stage.upgrading.poi": "Upgrading all points of interest...", + "optimizeWorld.title": "Optimizing World '%s'", + "options.accessibility": "Accessibility Settings...", + "options.accessibility.high_contrast": "High Contrast", + "options.accessibility.high_contrast_block_outline": "High Contrast Block Outlines", + "options.accessibility.high_contrast_block_outline.tooltip": "Enhances the block outline contrast of the targeted block.", + "options.accessibility.high_contrast.error.tooltip": "High Contrast resource pack is not available.", + "options.accessibility.high_contrast.tooltip": "Enhances the contrast of UI elements.", + "options.accessibility.link": "Accessibility Guide", + "options.accessibility.menu_background_blurriness": "Menu Background Blur", + "options.accessibility.menu_background_blurriness.tooltip": "Changes the blurriness of menu backgrounds.", + "options.accessibility.narrator_hotkey": "Narrator Hotkey", + "options.accessibility.narrator_hotkey.mac.tooltip": "Allows the Narrator to be toggled on and off with 'Cmd+B'.", + "options.accessibility.narrator_hotkey.tooltip": "Allows the Narrator to be toggled on and off with 'Ctrl+B'.", + "options.accessibility.panorama_speed": "Panorama Scroll Speed", + "options.accessibility.text_background": "Text Background", + "options.accessibility.text_background_opacity": "Text Background Opacity", + "options.accessibility.text_background.chat": "Chat", + "options.accessibility.text_background.everywhere": "Everywhere", + "options.accessibility.title": "Accessibility Settings", + "options.allowServerListing": "Allow Server Listings", + "options.allowServerListing.tooltip": "Servers may list online players as part of their public status.\nWith this option off your name will not show up in such lists.", + "options.ao": "Smooth Lighting", + "options.ao.max": "Maximum", + "options.ao.min": "Minimum", + "options.ao.off": "OFF", + "options.attack.crosshair": "Crosshair", + "options.attack.hotbar": "Hotbar", + "options.attackIndicator": "Attack Indicator", + "options.audioDevice": "Device", + "options.audioDevice.default": "System Default", + "options.autoJump": "Auto-Jump", + "options.autosaveIndicator": "Autosave Indicator", + "options.autoSuggestCommands": "Command Suggestions", + "options.biomeBlendRadius": "Biome Blend", + "options.biomeBlendRadius.1": "OFF (Fastest)", + "options.biomeBlendRadius.3": "3x3 (Fast)", + "options.biomeBlendRadius.5": "5x5 (Normal)", + "options.biomeBlendRadius.7": "7x7 (High)", + "options.biomeBlendRadius.9": "9x9 (Very High)", + "options.biomeBlendRadius.11": "11x11 (Extreme)", + "options.biomeBlendRadius.13": "13x13 (Showoff)", + "options.biomeBlendRadius.15": "15x15 (Maximum)", + "options.chat": "Chat Settings...", + "options.chat.color": "Colors", + "options.chat.delay": "Chat Delay: %s second(s)", + "options.chat.delay_none": "Chat Delay: None", + "options.chat.height.focused": "Focused Height", + "options.chat.height.unfocused": "Unfocused Height", + "options.chat.line_spacing": "Line Spacing", + "options.chat.links": "Web Links", + "options.chat.links.prompt": "Prompt on Links", + "options.chat.opacity": "Chat Text Opacity", + "options.chat.scale": "Chat Text Size", + "options.chat.title": "Chat Settings", + "options.chat.visibility": "Chat", + "options.chat.visibility.full": "Shown", + "options.chat.visibility.hidden": "Hidden", + "options.chat.visibility.system": "Commands Only", + "options.chat.width": "Width", + "options.chunks": "%s chunks", + "options.clouds.fancy": "Fancy", + "options.clouds.fast": "Fast", + "options.controls": "Controls...", + "options.credits_and_attribution": "Credits & Attribution...", + "options.damageTiltStrength": "Damage Tilt", + "options.damageTiltStrength.tooltip": "The amount of camera shake caused by being hurt.", + "options.darkMojangStudiosBackgroundColor": "Monochrome Logo", + "options.darkMojangStudiosBackgroundColor.tooltip": "Changes the Mojang Studios loading screen background color to black.", + "options.darknessEffectScale": "Darkness Pulsing", + "options.darknessEffectScale.tooltip": "Controls how much the Darkness effect pulses when a Warden or Sculk Shrieker gives it to you.", + "options.difficulty": "Difficulty", + "options.difficulty.easy": "Easy", + "options.difficulty.easy.info": "Hostile mobs spawn but deal less damage. Hunger bar depletes and drains health down to 5 hearts.", + "options.difficulty.hard": "Hard", + "options.difficulty.hard.info": "Hostile mobs spawn and deal more damage. Hunger bar depletes and drains all health.", + "options.difficulty.hardcore": "Hardcore", + "options.difficulty.normal": "Normal", + "options.difficulty.normal.info": "Hostile mobs spawn and deal standard damage. Hunger bar depletes and drains health down to half a heart.", + "options.difficulty.online": "Server Difficulty", + "options.difficulty.peaceful": "Peaceful", + "options.difficulty.peaceful.info": "No hostile mobs and only some neutral mobs spawn. Hunger bar doesn't deplete and health replenishes over time.", + "options.directionalAudio": "Directional Audio", + "options.directionalAudio.off.tooltip": "Classic Stereo sound.", + "options.directionalAudio.on.tooltip": "Uses HRTF-based directional audio to improve the simulation of 3D sound. Requires HRTF compatible audio hardware, and is best experienced with headphones.", + "options.discrete_mouse_scroll": "Discrete Scrolling", + "options.entityDistanceScaling": "Entity Distance", + "options.entityShadows": "Entity Shadows", + "options.font": "Font Settings...", + "options.font.title": "Font Settings", + "options.forceUnicodeFont": "Force Unicode Font", + "options.fov": "FOV", + "options.fov.max": "Quake Pro", + "options.fov.min": "Normal", + "options.fovEffectScale": "FOV Effects", + "options.fovEffectScale.tooltip": "Controls how much the field of view can change with gameplay effects.", + "options.framerate": "%s fps", + "options.framerateLimit": "Max Framerate", + "options.framerateLimit.max": "Unlimited", + "options.fullscreen": "Fullscreen", + "options.fullscreen.current": "Current", + "options.fullscreen.entry": "%sx%s@%s (%sbit)", + "options.fullscreen.resolution": "Fullscreen Resolution", + "options.fullscreen.unavailable": "Setting unavailable", + "options.gamma": "Brightness", + "options.gamma.default": "Default", + "options.gamma.max": "Bright", + "options.gamma.min": "Moody", + "options.generic_value": "%s: %s", + "options.glintSpeed": "Glint Speed", + "options.glintSpeed.tooltip": "Controls how fast the visual glint shimmers across enchanted items.", + "options.glintStrength": "Glint Strength", + "options.glintStrength.tooltip": "Controls how transparent the visual glint is on enchanted items.", + "options.graphics": "Graphics", + "options.graphics.fabulous": "Fabulous!", + "options.graphics.fabulous.tooltip": "%s graphics uses screen shaders for drawing weather, clouds, and particles behind translucent blocks and water.\nThis may severely impact performance for portable devices and 4K displays.", + "options.graphics.fancy": "Fancy", + "options.graphics.fancy.tooltip": "Fancy graphics balances performance and quality for the majority of machines.\nWeather, clouds, and particles may not appear behind translucent blocks or water.", + "options.graphics.fast": "Fast", + "options.graphics.fast.tooltip": "Fast graphics reduces the amount of visible rain and snow.\nTransparency effects are disabled for various blocks such as leaves.", + "options.graphics.warning.accept": "Continue Without Support", + "options.graphics.warning.cancel": "Take Me Back", + "options.graphics.warning.message": "Your graphics device is detected as unsupported for the %s graphics option.\n\nYou may ignore this and continue, however support will not be provided for your device if you choose to use %s graphics.", + "options.graphics.warning.renderer": "Renderer detected: [%s]", + "options.graphics.warning.title": "Graphics Device Unsupported", + "options.graphics.warning.vendor": "Vendor detected: [%s]", + "options.graphics.warning.version": "OpenGL Version detected: [%s]", + "options.guiScale": "GUI Scale", + "options.guiScale.auto": "Auto", + "options.hidden": "Hidden", + "options.hideLightningFlashes": "Hide Lightning Flashes", + "options.hideLightningFlashes.tooltip": "Prevents Lightning Bolts from making the sky flash. The bolts themselves will still be visible.", + "options.hideMatchedNames": "Hide Matched Names", + "options.hideMatchedNames.tooltip": "3rd-party Servers may send chat messages in non-standard formats.\nWith this option on, hidden players will be matched based on chat sender names.", + "options.hideSplashTexts": "Hide Splash Texts", + "options.hideSplashTexts.tooltip": "Hides the yellow splash text in the main menu.", + "options.inactivityFpsLimit": "Reduce FPS when", + "options.inactivityFpsLimit.afk": "AFK", + "options.inactivityFpsLimit.afk.tooltip": "Limits framerate to 30 when the game is not getting any player input for more than a minute. Further limits it to 10 after 9 more minutes.", + "options.inactivityFpsLimit.minimized": "Minimized", + "options.inactivityFpsLimit.minimized.tooltip": "Limits framerate only when the game window is minimized.", + "options.invertMouse": "Invert Mouse", + "options.japaneseGlyphVariants": "Japanese Glyph Variants", + "options.japaneseGlyphVariants.tooltip": "Uses Japanese variants of CJK characters in the default font.", + "options.key.hold": "Hold", + "options.key.toggle": "Toggle", + "options.language": "Language...", + "options.language.title": "Language", + "options.languageAccuracyWarning": "(Language translations may not be 100%% accurate)", + "options.languageWarning": "Language translations may not be 100%% accurate", + "options.mainHand": "Main Hand", + "options.mainHand.left": "Left", + "options.mainHand.right": "Right", + "options.mipmapLevels": "Mipmap Levels", + "options.modelPart.cape": "Cape", + "options.modelPart.hat": "Hat", + "options.modelPart.jacket": "Jacket", + "options.modelPart.left_pants_leg": "Left Pant Leg", + "options.modelPart.left_sleeve": "Left Sleeve", + "options.modelPart.right_pants_leg": "Right Pant Leg", + "options.modelPart.right_sleeve": "Right Sleeve", + "options.mouse_settings": "Mouse Settings...", + "options.mouse_settings.title": "Mouse Settings", + "options.mouseWheelSensitivity": "Scroll Sensitivity", + "options.multiplayer.title": "Multiplayer Settings...", + "options.multiplier": "%sx", + "options.music_frequency": "Music Frequency", + "options.music_frequency.constant": "Constant", + "options.music_frequency.default": "Default", + "options.music_frequency.frequent": "Frequent", + "options.music_frequency.tooltip": "Changes how frequently music plays while in a game world.", + "options.narrator": "Narrator", + "options.narrator.all": "Narrates All", + "options.narrator.chat": "Narrates Chat", + "options.narrator.notavailable": "Not Available", + "options.narrator.off": "OFF", + "options.narrator.system": "Narrates System", + "options.notifications.display_time": "Notification Time", + "options.notifications.display_time.tooltip": "Affects the length of time that all notifications stay visible on the screen.", + "options.off": "OFF", + "options.off.composed": "%s: OFF", + "options.on": "ON", + "options.on.composed": "%s: ON", + "options.online": "Online...", + "options.online.title": "Online Options", + "options.onlyShowSecureChat": "Only Show Secure Chat", + "options.onlyShowSecureChat.tooltip": "Only display messages from other players that can be verified to have been sent by that player, and have not been modified.", + "options.operatorItemsTab": "Operator Items Tab", + "options.particles": "Particles", + "options.particles.all": "All", + "options.particles.decreased": "Decreased", + "options.particles.minimal": "Minimal", + "options.percent_add_value": "%s: +%s%%", + "options.percent_value": "%s: %s%%", + "options.pixel_value": "%s: %spx", + "options.prioritizeChunkUpdates": "Chunk Builder", + "options.prioritizeChunkUpdates.byPlayer": "Semi Blocking", + "options.prioritizeChunkUpdates.byPlayer.tooltip": "Some actions within a chunk will recompile the chunk immediately. This includes block placing & destroying.", + "options.prioritizeChunkUpdates.nearby": "Fully Blocking", + "options.prioritizeChunkUpdates.nearby.tooltip": "Nearby chunks are always compiled immediately. This may impact game performance when blocks are placed or destroyed.", + "options.prioritizeChunkUpdates.none": "Threaded", + "options.prioritizeChunkUpdates.none.tooltip": "Nearby chunks are compiled in parallel threads. This may result in brief visual holes when blocks are destroyed.", + "options.rawMouseInput": "Raw Input", + "options.realmsNotifications": "Realms News & Invites", + "options.realmsNotifications.tooltip": "Fetches Realms news and invites in the title screen and displays their respective icon on the Realms button.", + "options.reducedDebugInfo": "Reduced Debug Info", + "options.renderClouds": "Clouds", + "options.renderCloudsDistance": "Cloud Distance", + "options.renderDistance": "Render Distance", + "options.resourcepack": "Resource Packs...", + "options.rotateWithMinecart": "Rotate with Minecarts", + "options.rotateWithMinecart.tooltip": "Whether the player's view should rotate with a turning Minecart. Only available in worlds with the 'Minecart Improvements' experimental setting turned on.", + "options.screenEffectScale": "Distortion Effects", + "options.screenEffectScale.tooltip": "Strength of nausea and Nether portal screen distortion effects.\nAt lower values, the nausea effect is replaced with a green overlay.", + "options.sensitivity": "Sensitivity", + "options.sensitivity.max": "HYPERSPEED!!!", + "options.sensitivity.min": "*yawn*", + "options.showNowPlayingToast": "Show Music Toast", + "options.showNowPlayingToast.tooltip": "Displays a toast whenever a song starts playing. The same toast is constantly displayed in the in-game pause menu while a song is playing.", + "options.showSubtitles": "Show Subtitles", + "options.simulationDistance": "Simulation Distance", + "options.skinCustomisation": "Skin Customization...", + "options.skinCustomisation.title": "Skin Customization", + "options.sounds": "Music & Sounds...", + "options.sounds.title": "Music & Sound Options", + "options.telemetry": "Telemetry Data...", + "options.telemetry.button": "Data Collection", + "options.telemetry.button.tooltip": "\"%s\" includes only the required data.\n\"%s\" includes optional, as well as the required data.", + "options.telemetry.disabled": "Telemetry is disabled.", + "options.telemetry.state.all": "All", + "options.telemetry.state.minimal": "Minimal", + "options.telemetry.state.none": "None", + "options.title": "Options", + "options.touchscreen": "Touchscreen Mode", + "options.video": "Video Settings...", + "options.videoTitle": "Video Settings", + "options.viewBobbing": "View Bobbing", + "options.visible": "Shown", + "options.vsync": "VSync", + "outOfMemory.message": "Minecraft has run out of memory.\n\nThis could be caused by a bug in the game or by the Java Virtual Machine not being allocated enough memory.\n\nTo prevent world corruption, the current game has quit. We've tried to free up enough memory to let you go back to the main menu and back to playing, but this may not have worked.\n\nPlease restart the game if you see this message again.", + "outOfMemory.title": "Out of memory!", + "pack.available.title": "Available", + "pack.copyFailure": "Failed to copy packs", + "pack.dropConfirm": "Do you want to add the following packs to Minecraft?", + "pack.dropInfo": "Drag and drop files into this window to add packs", + "pack.dropRejected.message": "The following entries were not valid packs and were not copied:\n %s", + "pack.dropRejected.title": "Non-pack entries", + "pack.folderInfo": "(Place pack files here)", + "pack.incompatible": "Incompatible", + "pack.incompatible.confirm.new": "This pack was made for a newer version of Minecraft and may not work correctly.", + "pack.incompatible.confirm.old": "This pack was made for an older version of Minecraft and may no longer work correctly.", + "pack.incompatible.confirm.title": "Are you sure you want to load this pack?", + "pack.incompatible.new": "(Made for a newer version of Minecraft)", + "pack.incompatible.old": "(Made for an older version of Minecraft)", + "pack.nameAndSource": "%s (%s)", + "pack.openFolder": "Open Pack Folder", + "pack.selected.title": "Selected", + "pack.source.builtin": "built-in", + "pack.source.feature": "feature", + "pack.source.local": "local", + "pack.source.server": "server", + "pack.source.world": "world", + "painting.dimensions": "%sx%s", + "painting.minecraft.alban.author": "Kristoffer Zetterstrand", + "painting.minecraft.alban.title": "Albanian", + "painting.minecraft.aztec.author": "Kristoffer Zetterstrand", + "painting.minecraft.aztec.title": "de_aztec", + "painting.minecraft.aztec2.author": "Kristoffer Zetterstrand", + "painting.minecraft.aztec2.title": "de_aztec", + "painting.minecraft.backyard.author": "Kristoffer Zetterstrand", + "painting.minecraft.backyard.title": "Backyard", + "painting.minecraft.baroque.author": "Sarah Boeving", + "painting.minecraft.baroque.title": "Baroque", + "painting.minecraft.bomb.author": "Kristoffer Zetterstrand", + "painting.minecraft.bomb.title": "Target Successfully Bombed", + "painting.minecraft.bouquet.author": "Kristoffer Zetterstrand", + "painting.minecraft.bouquet.title": "Bouquet", + "painting.minecraft.burning_skull.author": "Kristoffer Zetterstrand", + "painting.minecraft.burning_skull.title": "Skull On Fire", + "painting.minecraft.bust.author": "Kristoffer Zetterstrand", + "painting.minecraft.bust.title": "Bust", + "painting.minecraft.cavebird.author": "Kristoffer Zetterstrand", + "painting.minecraft.cavebird.title": "Cavebird", + "painting.minecraft.changing.author": "Kristoffer Zetterstrand", + "painting.minecraft.changing.title": "Changing", + "painting.minecraft.cotan.author": "Kristoffer Zetterstrand", + "painting.minecraft.cotan.title": "Cotán", + "painting.minecraft.courbet.author": "Kristoffer Zetterstrand", + "painting.minecraft.courbet.title": "Bonjour Monsieur Courbet", + "painting.minecraft.creebet.author": "Kristoffer Zetterstrand", + "painting.minecraft.creebet.title": "Creebet", + "painting.minecraft.dennis.author": "Sarah Boeving", + "painting.minecraft.dennis.title": "Dennis", + "painting.minecraft.donkey_kong.author": "Kristoffer Zetterstrand", + "painting.minecraft.donkey_kong.title": "Kong", + "painting.minecraft.earth.author": "Mojang", + "painting.minecraft.earth.title": "Earth", + "painting.minecraft.endboss.author": "Kristoffer Zetterstrand", + "painting.minecraft.endboss.title": "Endboss", + "painting.minecraft.fern.author": "Kristoffer Zetterstrand", + "painting.minecraft.fern.title": "Fern", + "painting.minecraft.fighters.author": "Kristoffer Zetterstrand", + "painting.minecraft.fighters.title": "Fighters", + "painting.minecraft.finding.author": "Kristoffer Zetterstrand", + "painting.minecraft.finding.title": "Finding", + "painting.minecraft.fire.author": "Mojang", + "painting.minecraft.fire.title": "Fire", + "painting.minecraft.graham.author": "Kristoffer Zetterstrand", + "painting.minecraft.graham.title": "Graham", + "painting.minecraft.humble.author": "Sarah Boeving", + "painting.minecraft.humble.title": "Humble", + "painting.minecraft.kebab.author": "Kristoffer Zetterstrand", + "painting.minecraft.kebab.title": "Kebab med tre pepperoni", + "painting.minecraft.lowmist.author": "Kristoffer Zetterstrand", + "painting.minecraft.lowmist.title": "Lowmist", + "painting.minecraft.match.author": "Kristoffer Zetterstrand", + "painting.minecraft.match.title": "Match", + "painting.minecraft.meditative.author": "Sarah Boeving", + "painting.minecraft.meditative.title": "Meditative", + "painting.minecraft.orb.author": "Kristoffer Zetterstrand", + "painting.minecraft.orb.title": "Orb", + "painting.minecraft.owlemons.author": "Kristoffer Zetterstrand", + "painting.minecraft.owlemons.title": "Owlemons", + "painting.minecraft.passage.author": "Kristoffer Zetterstrand", + "painting.minecraft.passage.title": "Passage", + "painting.minecraft.pigscene.author": "Kristoffer Zetterstrand", + "painting.minecraft.pigscene.title": "Pigscene", + "painting.minecraft.plant.author": "Kristoffer Zetterstrand", + "painting.minecraft.plant.title": "Paradisträd", + "painting.minecraft.pointer.author": "Kristoffer Zetterstrand", + "painting.minecraft.pointer.title": "Pointer", + "painting.minecraft.pond.author": "Kristoffer Zetterstrand", + "painting.minecraft.pond.title": "Pond", + "painting.minecraft.pool.author": "Kristoffer Zetterstrand", + "painting.minecraft.pool.title": "The Pool", + "painting.minecraft.prairie_ride.author": "Sarah Boeving", + "painting.minecraft.prairie_ride.title": "Prairie Ride", + "painting.minecraft.sea.author": "Kristoffer Zetterstrand", + "painting.minecraft.sea.title": "Seaside", + "painting.minecraft.skeleton.author": "Kristoffer Zetterstrand", + "painting.minecraft.skeleton.title": "Mortal Coil", + "painting.minecraft.skull_and_roses.author": "Kristoffer Zetterstrand", + "painting.minecraft.skull_and_roses.title": "Skull and Roses", + "painting.minecraft.stage.author": "Kristoffer Zetterstrand", + "painting.minecraft.stage.title": "The Stage Is Set", + "painting.minecraft.sunflowers.author": "Kristoffer Zetterstrand", + "painting.minecraft.sunflowers.title": "Sunflowers", + "painting.minecraft.sunset.author": "Kristoffer Zetterstrand", + "painting.minecraft.sunset.title": "sunset_dense", + "painting.minecraft.tides.author": "Kristoffer Zetterstrand", + "painting.minecraft.tides.title": "Tides", + "painting.minecraft.unpacked.author": "Sarah Boeving", + "painting.minecraft.unpacked.title": "Unpacked", + "painting.minecraft.void.author": "Kristoffer Zetterstrand", + "painting.minecraft.void.title": "The void", + "painting.minecraft.wanderer.author": "Kristoffer Zetterstrand", + "painting.minecraft.wanderer.title": "Wanderer", + "painting.minecraft.wasteland.author": "Kristoffer Zetterstrand", + "painting.minecraft.wasteland.title": "Wasteland", + "painting.minecraft.water.author": "Mojang", + "painting.minecraft.water.title": "Water", + "painting.minecraft.wind.author": "Mojang", + "painting.minecraft.wind.title": "Wind", + "painting.minecraft.wither.author": "Mojang", + "painting.minecraft.wither.title": "Wither", + "painting.random": "Random variant", + "parsing.bool.expected": "Expected boolean", + "parsing.bool.invalid": "Invalid boolean, expected 'true' or 'false' but found '%s'", + "parsing.double.expected": "Expected double", + "parsing.double.invalid": "Invalid double '%s'", + "parsing.expected": "Expected '%s'", + "parsing.float.expected": "Expected float", + "parsing.float.invalid": "Invalid float '%s'", + "parsing.int.expected": "Expected integer", + "parsing.int.invalid": "Invalid integer '%s'", + "parsing.long.expected": "Expected long", + "parsing.long.invalid": "Invalid long '%s'", + "parsing.quote.escape": "Invalid escape sequence '\\%s' in quoted string", + "parsing.quote.expected.end": "Unclosed quoted string", + "parsing.quote.expected.start": "Expected quote to start a string", + "particle.invalidOptions": "Can't parse particle options: %s", + "particle.notFound": "Unknown particle: %s", + "permissions.requires.entity": "An entity is required to run this command here", + "permissions.requires.player": "A player is required to run this command here", + "potion.potency.0": "", + "potion.potency.1": "II", + "potion.potency.2": "III", + "potion.potency.3": "IV", + "potion.potency.4": "V", + "potion.potency.5": "VI", + "potion.whenDrank": "When Applied:", + "potion.withAmplifier": "%s %s", + "potion.withDuration": "%s (%s)", + "predicate.unknown": "Unknown predicate: %s", + "quickplay.error.invalid_identifier": "Could not find world with the provided identifier", + "quickplay.error.realm_connect": "Could not connect to Realm", + "quickplay.error.realm_permission": "Lacking permission to connect to this Realm", + "quickplay.error.title": "Failed to Quick Play", + "realms.configuration.region_preference.automatic_owner": "Automatic (Realm owner ping)", + "realms.configuration.region_preference.automatic_player": "Automatic (first to join session)", + "realms.configuration.region.australia_east": "New South Wales, Australia", + "realms.configuration.region.australia_southeast": "Victoria, Australia", + "realms.configuration.region.brazil_south": "Brazil", + "realms.configuration.region.central_india": "India", + "realms.configuration.region.central_us": "Iowa, USA", + "realms.configuration.region.east_asia": "Hong Kong", + "realms.configuration.region.east_us": "Virginia, USA", + "realms.configuration.region.east_us_2": "North Carolina, USA", + "realms.configuration.region.france_central": "France", + "realms.configuration.region.japan_east": "Eastern Japan", + "realms.configuration.region.japan_west": "Western Japan", + "realms.configuration.region.korea_central": "South Korea", + "realms.configuration.region.north_central_us": "Illinois, USA", + "realms.configuration.region.north_europe": "Ireland", + "realms.configuration.region.south_central_us": "Texas, USA", + "realms.configuration.region.southeast_asia": "Singapore", + "realms.configuration.region.sweden_central": "Sweden", + "realms.configuration.region.uae_north": "United Arab Emirates (UAE)", + "realms.configuration.region.uk_south": "Southern England", + "realms.configuration.region.west_central_us": "Utah, USA", + "realms.configuration.region.west_europe": "Netherlands", + "realms.configuration.region.west_us": "California, USA", + "realms.configuration.region.west_us_2": "Washington, USA", + "realms.missing.snapshot.error.text": "Realms is currently not supported in snapshots", + "recipe.notFound": "Unknown recipe: %s", + "recipe.toast.description": "Check your recipe book", + "recipe.toast.title": "New Recipe(s) Unlocked!", + "record.nowPlaying": "Now Playing: %s", + "recover_world.bug_tracker": "Report a Bug", + "recover_world.button": "Attempt to Recover", + "recover_world.done.failed": "Failed to recover from previous state.", + "recover_world.done.success": "Recovery was successful!", + "recover_world.done.title": "Recovery done", + "recover_world.issue.missing_file": "Missing file", + "recover_world.issue.none": "No issues", + "recover_world.message": "The following issues occurred while trying to read world folder \"%s\".\nIt might be possible to restore the world from an older state or you can report this issue on the bug tracker.", + "recover_world.no_fallback": "No state to recover from available", + "recover_world.restore": "Attempt to Restore", + "recover_world.restoring": "Attempting to restore world...", + "recover_world.state_entry": "State from %s: ", + "recover_world.state_entry.unknown": "unknown", + "recover_world.title": "Failed to load world", + "recover_world.warning": "Failed to load world summary", + "resourcePack.broken_assets": "BROKEN ASSETS DETECTED", + "resourcepack.downloading": "Downloading Resource Pack", + "resourcePack.high_contrast.name": "High Contrast", + "resourcePack.load_fail": "Resource reload failed", + "resourcePack.programmer_art.name": "Programmer Art", + "resourcepack.progress": "Downloading file (%s MB)...", + "resourcepack.requesting": "Making Request...", + "resourcePack.runtime_failure": "Resource pack error detected", + "resourcePack.server.name": "World Specific Resources", + "resourcePack.title": "Select Resource Packs", + "resourcePack.vanilla.description": "The default look and feel of Minecraft", + "resourcePack.vanilla.name": "Default", + "screenshot.failure": "Couldn't save screenshot: %s", + "screenshot.success": "Saved screenshot as %s", + "selectServer.add": "Add Server", + "selectServer.defaultName": "Minecraft Server", + "selectServer.delete": "Delete", + "selectServer.deleteButton": "Delete", + "selectServer.deleteQuestion": "Are you sure you want to remove this server?", + "selectServer.deleteWarning": "'%s' will be lost forever! (A long time!)", + "selectServer.direct": "Direct Connection", + "selectServer.edit": "Edit", + "selectServer.hiddenAddress": "(Hidden)", + "selectServer.refresh": "Refresh", + "selectServer.select": "Join Server", + "selectWorld.access_failure": "Failed to access world", + "selectWorld.allowCommands": "Allow Cheats", + "selectWorld.allowCommands.info": "Commands like /gamemode, /experience", + "selectWorld.allowCommands.new": "Allow Commands", + "selectWorld.backupEraseCache": "Erase Cached Data", + "selectWorld.backupJoinConfirmButton": "Create Backup and Load", + "selectWorld.backupJoinSkipButton": "I know what I'm doing!", + "selectWorld.backupQuestion.customized": "Customized worlds are no longer supported", + "selectWorld.backupQuestion.downgrade": "Downgrading a world is not supported", + "selectWorld.backupQuestion.experimental": "Worlds using Experimental Settings are not supported", + "selectWorld.backupQuestion.snapshot": "Do you really want to load this world?", + "selectWorld.backupWarning.customized": "Unfortunately, we do not support customized worlds in this version of Minecraft. We can still load this world and keep everything the way it was, but any newly generated terrain will no longer be customized. We're sorry for the inconvenience!", + "selectWorld.backupWarning.downgrade": "This world was last played in version %s; you are on version %s. Downgrading a world could cause corruption - we cannot guarantee that it will load or work. If you still want to continue, please make a backup.", + "selectWorld.backupWarning.experimental": "This world uses experimental settings that could stop working at any time. We cannot guarantee it will load or work. Here be dragons!", + "selectWorld.backupWarning.snapshot": "This world was last played in version %s; you are on version %s. Please make a backup in case you experience world corruptions.", + "selectWorld.bonusItems": "Bonus Chest", + "selectWorld.cheats": "Cheats", + "selectWorld.commands": "Commands", + "selectWorld.conversion": "Must be converted!", + "selectWorld.conversion.tooltip": "This world must be opened in an older version (like 1.6.4) to be safely converted", + "selectWorld.create": "Create New World", + "selectWorld.customizeType": "Customize", + "selectWorld.data_read": "Reading world data...", + "selectWorld.dataPacks": "Data Packs", + "selectWorld.delete": "Delete", + "selectWorld.delete_failure": "Failed to delete world", + "selectWorld.deleteButton": "Delete", + "selectWorld.deleteQuestion": "Are you sure you want to delete this world?", + "selectWorld.deleteWarning": "'%s' will be lost forever! (A long time!)", + "selectWorld.edit": "Edit", + "selectWorld.edit.backup": "Make Backup", + "selectWorld.edit.backupCreated": "Backed up: %s", + "selectWorld.edit.backupFailed": "Backup failed", + "selectWorld.edit.backupFolder": "Open Backups Folder", + "selectWorld.edit.backupSize": "size: %s MB", + "selectWorld.edit.export_worldgen_settings": "Export World Generation Settings", + "selectWorld.edit.export_worldgen_settings.failure": "Export failed", + "selectWorld.edit.export_worldgen_settings.success": "Exported", + "selectWorld.edit.openFolder": "Open World Folder", + "selectWorld.edit.optimize": "Optimize World", + "selectWorld.edit.resetIcon": "Reset Icon", + "selectWorld.edit.save": "Save", + "selectWorld.edit.title": "Edit World", + "selectWorld.enterName": "World Name", + "selectWorld.enterSeed": "Seed for the world generator", + "selectWorld.experimental": "Experimental", + "selectWorld.experimental.details": "Details", + "selectWorld.experimental.details.entry": "Required experimental features: %s", + "selectWorld.experimental.details.title": "Experimental Feature Requirements", + "selectWorld.experimental.message": "Be careful!\nThis configuration requires features that are still under development. Your world might crash, break, or not work with future updates.", + "selectWorld.experimental.title": "Experimental Features Warning", + "selectWorld.experiments": "Experiments", + "selectWorld.experiments.info": "Experiments are potential new features. Be careful as things might break. Experiments can't be turned off after world creation.", + "selectWorld.futureworld.error.text": "Something went wrong while trying to load a world from a future version. This was a risky operation to begin with; sorry it didn't work.", + "selectWorld.futureworld.error.title": "An error occurred!", + "selectWorld.gameMode": "Game Mode", + "selectWorld.gameMode.adventure": "Adventure", + "selectWorld.gameMode.adventure.info": "Same as Survival Mode, but blocks can't be added or removed.", + "selectWorld.gameMode.adventure.line1": "Same as Survival Mode, but blocks can't", + "selectWorld.gameMode.adventure.line2": "be added or removed", + "selectWorld.gameMode.creative": "Creative", + "selectWorld.gameMode.creative.info": "Create, build, and explore without limits. You can fly, have endless materials, and can't be hurt by monsters.", + "selectWorld.gameMode.creative.line1": "Unlimited resources, free flying and", + "selectWorld.gameMode.creative.line2": "destroy blocks instantly", + "selectWorld.gameMode.hardcore": "Hardcore", + "selectWorld.gameMode.hardcore.info": "Survival Mode locked to 'Hard' difficulty. You can't respawn if you die.", + "selectWorld.gameMode.hardcore.line1": "Same as Survival Mode, locked at hardest", + "selectWorld.gameMode.hardcore.line2": "difficulty, and one life only", + "selectWorld.gameMode.spectator": "Spectator", + "selectWorld.gameMode.spectator.info": "You can look but don't touch.", + "selectWorld.gameMode.spectator.line1": "You can look but don't touch", + "selectWorld.gameMode.spectator.line2": "", + "selectWorld.gameMode.survival": "Survival", + "selectWorld.gameMode.survival.info": "Explore a mysterious world where you build, collect, craft, and fight monsters.", + "selectWorld.gameMode.survival.line1": "Search for resources, craft, gain", + "selectWorld.gameMode.survival.line2": "levels, health and hunger", + "selectWorld.gameRules": "Game Rules", + "selectWorld.import_worldgen_settings": "Import Settings", + "selectWorld.import_worldgen_settings.failure": "Error importing settings", + "selectWorld.import_worldgen_settings.select_file": "Select settings file (.json)", + "selectWorld.incompatible_series": "Created by an incompatible version", + "selectWorld.incompatible.description": "This world cannot be opened in this version.\nIt was last played in version %s.", + "selectWorld.incompatible.info": "Incompatible version: %s", + "selectWorld.incompatible.title": "Incompatible version", + "selectWorld.incompatible.tooltip": "This world cannot be opened because it was created by an incompatible version.", + "selectWorld.load_folder_access": "Unable to read or access folder where game worlds are saved!", + "selectWorld.loading_list": "Loading World List", + "selectWorld.locked": "Locked by another running instance of Minecraft", + "selectWorld.mapFeatures": "Generate Structures", + "selectWorld.mapFeatures.info": "Villages, Shipwrecks, etc.", + "selectWorld.mapType": "World Type", + "selectWorld.mapType.normal": "Normal", + "selectWorld.moreWorldOptions": "More World Options...", + "selectWorld.newWorld": "New World", + "selectWorld.recreate": "Re-Create", + "selectWorld.recreate.customized.text": "Customized worlds are no longer supported in this version of Minecraft. We can try to recreate it with the same seed and properties, but any terrain customizations will be lost. We're sorry for the inconvenience!", + "selectWorld.recreate.customized.title": "Customized worlds are no longer supported", + "selectWorld.recreate.error.text": "Something went wrong while trying to recreate a world.", + "selectWorld.recreate.error.title": "An error occurred!", + "selectWorld.resource_load": "Preparing Resources...", + "selectWorld.resultFolder": "Will be saved in:", + "selectWorld.search": "search for worlds", + "selectWorld.seedInfo": "Leave blank for a random seed", + "selectWorld.select": "Play Selected World", + "selectWorld.targetFolder": "Save folder: %s", + "selectWorld.title": "Select World", + "selectWorld.tooltip.fromNewerVersion1": "World was saved in a newer version,", + "selectWorld.tooltip.fromNewerVersion2": "loading this world could cause problems!", + "selectWorld.tooltip.snapshot1": "Don't forget to back up this world", + "selectWorld.tooltip.snapshot2": "before you load it in this snapshot.", + "selectWorld.unable_to_load": "Unable to load worlds", + "selectWorld.version": "Version:", + "selectWorld.versionJoinButton": "Load Anyway", + "selectWorld.versionQuestion": "Do you really want to load this world?", + "selectWorld.versionUnknown": "unknown", + "selectWorld.versionWarning": "This world was last played in version %s and loading it in this version could cause corruption!", + "selectWorld.warning.deprecated.question": "Some features used are deprecated and will stop working in the future. Do you wish to proceed?", + "selectWorld.warning.deprecated.title": "Warning! These settings are using deprecated features", + "selectWorld.warning.experimental.question": "These settings are experimental and could one day stop working. Do you wish to proceed?", + "selectWorld.warning.experimental.title": "Warning! These settings are using experimental features", + "selectWorld.warning.lowDiskSpace.description": "There is not much space left on your device.\nRunning out of disk space while in game can lead to your world being damaged.", + "selectWorld.warning.lowDiskSpace.title": "Warning! Low disk space!", + "selectWorld.world": "World", + "sign.edit": "Edit Sign Message", + "sleep.not_possible": "No amount of rest can pass this night", + "sleep.players_sleeping": "%s/%s players sleeping", + "sleep.skipping_night": "Sleeping through this night", + "slot.only_single_allowed": "Only single slots allowed, got '%s'", + "slot.unknown": "Unknown slot '%s'", + "snbt.parser.empty_key": "Key cannot be empty", + "snbt.parser.expected_binary_numeral": "Expected a binary number", + "snbt.parser.expected_decimal_numeral": "Expected a decimal number", + "snbt.parser.expected_float_type": "Expected a floating point number", + "snbt.parser.expected_hex_escape": "Expected a character literal of length %s", + "snbt.parser.expected_hex_numeral": "Expected a hexadecimal number", + "snbt.parser.expected_integer_type": "Expected an integer number", + "snbt.parser.expected_non_negative_number": "Expected a non-negative number", + "snbt.parser.expected_number_or_boolean": "Expected a number or a boolean", + "snbt.parser.expected_string_uuid": "Expected a string representing a valid UUID", + "snbt.parser.expected_unquoted_string": "Expected a valid unquoted string", + "snbt.parser.infinity_not_allowed": "Non-finite numbers are not allowed", + "snbt.parser.invalid_array_element_type": "Invalid array element type", + "snbt.parser.invalid_character_name": "Invalid Unicode character name", + "snbt.parser.invalid_codepoint": "Invalid Unicode character value: %s", + "snbt.parser.invalid_string_contents": "Invalid string contents", + "snbt.parser.invalid_unquoted_start": "Unquoted strings can't start with digits 0-9, + or -", + "snbt.parser.leading_zero_not_allowed": "Decimal numbers can't start with 0", + "snbt.parser.no_such_operation": "No such operation: %s", + "snbt.parser.number_parse_failure": "Failed to parse number: %s", + "snbt.parser.undescore_not_allowed": "Underscore characters are not allowed at the start or end of a number", + "soundCategory.ambient": "Ambient/Environment", + "soundCategory.block": "Blocks", + "soundCategory.hostile": "Hostile Mobs", + "soundCategory.master": "Master Volume", + "soundCategory.music": "Music", + "soundCategory.neutral": "Friendly Mobs", + "soundCategory.player": "Players", + "soundCategory.record": "Jukebox/Note Blocks", + "soundCategory.ui": "UI", + "soundCategory.voice": "Voice/Speech", + "soundCategory.weather": "Weather", + "spectatorMenu.close": "Close Menu", + "spectatorMenu.next_page": "Next Page", + "spectatorMenu.previous_page": "Previous Page", + "spectatorMenu.root.prompt": "Press a key to select a command, and again to use it.", + "spectatorMenu.team_teleport": "Teleport to Team Member", + "spectatorMenu.team_teleport.prompt": "Select a team to teleport to", + "spectatorMenu.teleport": "Teleport to Player", + "spectatorMenu.teleport.prompt": "Select a player to teleport to", + "stat_type.minecraft.broken": "Times Broken", + "stat_type.minecraft.crafted": "Times Crafted", + "stat_type.minecraft.dropped": "Dropped", + "stat_type.minecraft.killed": "You killed %s %s", + "stat_type.minecraft.killed_by": "%s killed you %s time(s)", + "stat_type.minecraft.killed_by.none": "You have never been killed by %s", + "stat_type.minecraft.killed.none": "You have never killed %s", + "stat_type.minecraft.mined": "Times Mined", + "stat_type.minecraft.picked_up": "Picked Up", + "stat_type.minecraft.used": "Times Used", + "stat.generalButton": "General", + "stat.itemsButton": "Items", + "stat.minecraft.animals_bred": "Animals Bred", + "stat.minecraft.aviate_one_cm": "Distance by Elytra", + "stat.minecraft.bell_ring": "Bells Rung", + "stat.minecraft.boat_one_cm": "Distance by Boat", + "stat.minecraft.clean_armor": "Armor Pieces Cleaned", + "stat.minecraft.clean_banner": "Banners Cleaned", + "stat.minecraft.clean_shulker_box": "Shulker Boxes Cleaned", + "stat.minecraft.climb_one_cm": "Distance Climbed", + "stat.minecraft.crouch_one_cm": "Distance Crouched", + "stat.minecraft.damage_absorbed": "Damage Absorbed", + "stat.minecraft.damage_blocked_by_shield": "Damage Blocked by Shield", + "stat.minecraft.damage_dealt": "Damage Dealt", + "stat.minecraft.damage_dealt_absorbed": "Damage Dealt (Absorbed)", + "stat.minecraft.damage_dealt_resisted": "Damage Dealt (Resisted)", + "stat.minecraft.damage_resisted": "Damage Resisted", + "stat.minecraft.damage_taken": "Damage Taken", + "stat.minecraft.deaths": "Number of Deaths", + "stat.minecraft.drop": "Items Dropped", + "stat.minecraft.eat_cake_slice": "Cake Slices Eaten", + "stat.minecraft.enchant_item": "Items Enchanted", + "stat.minecraft.fall_one_cm": "Distance Fallen", + "stat.minecraft.fill_cauldron": "Cauldrons Filled", + "stat.minecraft.fish_caught": "Fish Caught", + "stat.minecraft.fly_one_cm": "Distance Flown", + "stat.minecraft.happy_ghast_one_cm": "Distance by Happy Ghast", + "stat.minecraft.horse_one_cm": "Distance by Horse", + "stat.minecraft.inspect_dispenser": "Dispensers Searched", + "stat.minecraft.inspect_dropper": "Droppers Searched", + "stat.minecraft.inspect_hopper": "Hoppers Searched", + "stat.minecraft.interact_with_anvil": "Interactions with Anvil", + "stat.minecraft.interact_with_beacon": "Interactions with Beacon", + "stat.minecraft.interact_with_blast_furnace": "Interactions with Blast Furnace", + "stat.minecraft.interact_with_brewingstand": "Interactions with Brewing Stand", + "stat.minecraft.interact_with_campfire": "Interactions with Campfire", + "stat.minecraft.interact_with_cartography_table": "Interactions with Cartography Table", + "stat.minecraft.interact_with_crafting_table": "Interactions with Crafting Table", + "stat.minecraft.interact_with_furnace": "Interactions with Furnace", + "stat.minecraft.interact_with_grindstone": "Interactions with Grindstone", + "stat.minecraft.interact_with_lectern": "Interactions with Lectern", + "stat.minecraft.interact_with_loom": "Interactions with Loom", + "stat.minecraft.interact_with_smithing_table": "Interactions with Smithing Table", + "stat.minecraft.interact_with_smoker": "Interactions with Smoker", + "stat.minecraft.interact_with_stonecutter": "Interactions with Stonecutter", + "stat.minecraft.jump": "Jumps", + "stat.minecraft.leave_game": "Games Quit", + "stat.minecraft.minecart_one_cm": "Distance by Minecart", + "stat.minecraft.mob_kills": "Mob Kills", + "stat.minecraft.open_barrel": "Barrels Opened", + "stat.minecraft.open_chest": "Chests Opened", + "stat.minecraft.open_enderchest": "Ender Chests Opened", + "stat.minecraft.open_shulker_box": "Shulker Boxes Opened", + "stat.minecraft.pig_one_cm": "Distance by Pig", + "stat.minecraft.play_noteblock": "Note Blocks Played", + "stat.minecraft.play_record": "Music Discs Played", + "stat.minecraft.play_time": "Time Played", + "stat.minecraft.player_kills": "Player Kills", + "stat.minecraft.pot_flower": "Plants Potted", + "stat.minecraft.raid_trigger": "Raids Triggered", + "stat.minecraft.raid_win": "Raids Won", + "stat.minecraft.sleep_in_bed": "Times Slept in a Bed", + "stat.minecraft.sneak_time": "Sneak Time", + "stat.minecraft.sprint_one_cm": "Distance Sprinted", + "stat.minecraft.strider_one_cm": "Distance by Strider", + "stat.minecraft.swim_one_cm": "Distance Swum", + "stat.minecraft.talked_to_villager": "Talked to Villagers", + "stat.minecraft.target_hit": "Targets Hit", + "stat.minecraft.time_since_death": "Time Since Last Death", + "stat.minecraft.time_since_rest": "Time Since Last Rest", + "stat.minecraft.total_world_time": "Time with World Open", + "stat.minecraft.traded_with_villager": "Traded with Villagers", + "stat.minecraft.trigger_trapped_chest": "Trapped Chests Triggered", + "stat.minecraft.tune_noteblock": "Note Blocks Tuned", + "stat.minecraft.use_cauldron": "Water Taken from Cauldron", + "stat.minecraft.walk_on_water_one_cm": "Distance Walked on Water", + "stat.minecraft.walk_one_cm": "Distance Walked", + "stat.minecraft.walk_under_water_one_cm": "Distance Walked under Water", + "stat.mobsButton": "Mobs", + "stats.none": "-", + "structure_block.button.detect_size": "DETECT", + "structure_block.button.load": "LOAD", + "structure_block.button.save": "SAVE", + "structure_block.custom_data": "Custom Data Tag Name", + "structure_block.detect_size": "Detect Structure Size and Position:", + "structure_block.hover.corner": "Corner: %s", + "structure_block.hover.data": "Data: %s", + "structure_block.hover.load": "Load: %s", + "structure_block.hover.save": "Save: %s", + "structure_block.include_entities": "Include Entities:", + "structure_block.integrity": "Structure Integrity and Seed", + "structure_block.integrity.integrity": "Structure Integrity", + "structure_block.integrity.seed": "Structure Seed", + "structure_block.invalid_structure_name": "Invalid structure name '%s'", + "structure_block.load_not_found": "Structure '%s' is not available", + "structure_block.load_prepare": "Structure '%s' position prepared", + "structure_block.load_success": "Structure loaded from '%s'", + "structure_block.mode_info.corner": "Corner Mode - Placement and size marker", + "structure_block.mode_info.data": "Data Mode - Game logic marker", + "structure_block.mode_info.load": "Load Mode - Load from file", + "structure_block.mode_info.save": "Save Mode - Write to file", + "structure_block.mode.corner": "Corner", + "structure_block.mode.data": "Data", + "structure_block.mode.load": "Load", + "structure_block.mode.save": "Save", + "structure_block.position": "Relative Position", + "structure_block.position.x": "relative Position x", + "structure_block.position.y": "relative position y", + "structure_block.position.z": "relative position z", + "structure_block.save_failure": "Unable to save structure '%s'", + "structure_block.save_success": "Structure saved as '%s'", + "structure_block.show_air": "Show Invisible Blocks:", + "structure_block.show_boundingbox": "Show Bounding Box:", + "structure_block.size": "Structure Size", + "structure_block.size_failure": "Unable to detect structure size. Add corners with matching structure names", + "structure_block.size_success": "Size successfully detected for '%s'", + "structure_block.size.x": "structure size x", + "structure_block.size.y": "structure size y", + "structure_block.size.z": "structure size z", + "structure_block.strict": "Strict Placement:", + "structure_block.structure_name": "Structure Name", + "subtitles.ambient.cave": "Eerie noise", + "subtitles.ambient.sound": "Eerie noise", + "subtitles.block.amethyst_block.chime": "Amethyst chimes", + "subtitles.block.amethyst_block.resonate": "Amethyst resonates", + "subtitles.block.anvil.destroy": "Anvil destroyed", + "subtitles.block.anvil.land": "Anvil landed", + "subtitles.block.anvil.use": "Anvil used", + "subtitles.block.barrel.close": "Barrel closes", + "subtitles.block.barrel.open": "Barrel opens", + "subtitles.block.beacon.activate": "Beacon activates", + "subtitles.block.beacon.ambient": "Beacon hums", + "subtitles.block.beacon.deactivate": "Beacon deactivates", + "subtitles.block.beacon.power_select": "Beacon power selected", + "subtitles.block.beehive.drip": "Honey drips", + "subtitles.block.beehive.enter": "Bee enters hive", + "subtitles.block.beehive.exit": "Bee leaves hive", + "subtitles.block.beehive.shear": "Shears scrape", + "subtitles.block.beehive.work": "Bees work", + "subtitles.block.bell.resonate": "Bell resonates", + "subtitles.block.bell.use": "Bell rings", + "subtitles.block.big_dripleaf.tilt_down": "Dripleaf tilts down", + "subtitles.block.big_dripleaf.tilt_up": "Dripleaf tilts up", + "subtitles.block.blastfurnace.fire_crackle": "Blast Furnace crackles", + "subtitles.block.brewing_stand.brew": "Brewing Stand bubbles", + "subtitles.block.bubble_column.bubble_pop": "Bubbles pop", + "subtitles.block.bubble_column.upwards_ambient": "Bubbles flow", + "subtitles.block.bubble_column.upwards_inside": "Bubbles woosh", + "subtitles.block.bubble_column.whirlpool_ambient": "Bubbles whirl", + "subtitles.block.bubble_column.whirlpool_inside": "Bubbles zoom", + "subtitles.block.button.click": "Button clicks", + "subtitles.block.cake.add_candle": "Cake squishes", + "subtitles.block.campfire.crackle": "Campfire crackles", + "subtitles.block.candle.crackle": "Candle crackles", + "subtitles.block.candle.extinguish": "Candle extinguishes", + "subtitles.block.chest.close": "Chest closes", + "subtitles.block.chest.locked": "Chest locked", + "subtitles.block.chest.open": "Chest opens", + "subtitles.block.chorus_flower.death": "Chorus Flower withers", + "subtitles.block.chorus_flower.grow": "Chorus Flower grows", + "subtitles.block.comparator.click": "Comparator clicks", + "subtitles.block.composter.empty": "Composter emptied", + "subtitles.block.composter.fill": "Composter filled", + "subtitles.block.composter.ready": "Composter composts", + "subtitles.block.conduit.activate": "Conduit activates", + "subtitles.block.conduit.ambient": "Conduit pulses", + "subtitles.block.conduit.attack.target": "Conduit attacks", + "subtitles.block.conduit.deactivate": "Conduit deactivates", + "subtitles.block.copper_bulb.turn_off": "Copper Bulb turns off", + "subtitles.block.copper_bulb.turn_on": "Copper Bulb turns on", + "subtitles.block.copper_trapdoor.close": "Trapdoor closes", + "subtitles.block.copper_trapdoor.open": "Trapdoor opens", + "subtitles.block.crafter.craft": "Crafter crafts", + "subtitles.block.crafter.fail": "Crafter fails crafting", + "subtitles.block.creaking_heart.hurt": "Creaking Heart grumbles", + "subtitles.block.creaking_heart.idle": "Eerie noise", + "subtitles.block.creaking_heart.spawn": "Creaking Heart awakens", + "subtitles.block.deadbush.idle": "Dry sounds", + "subtitles.block.decorated_pot.insert": "Decorated Pot fills", + "subtitles.block.decorated_pot.insert_fail": "Decorated Pot wobbles", + "subtitles.block.decorated_pot.shatter": "Decorated Pot shatters", + "subtitles.block.dispenser.dispense": "Dispensed item", + "subtitles.block.dispenser.fail": "Dispenser failed", + "subtitles.block.door.toggle": "Door creaks", + "subtitles.block.dried_ghast.ambient": "Sounds of dryness", + "subtitles.block.dried_ghast.ambient_water": "Dried Ghast rehydrates", + "subtitles.block.dried_ghast.place_in_water": "Dried Ghast soaks", + "subtitles.block.dried_ghast.transition": "Dried Ghast feels better", + "subtitles.block.dry_grass.ambient": "Windy sounds", + "subtitles.block.enchantment_table.use": "Enchanting Table used", + "subtitles.block.end_portal_frame.fill": "Eye of Ender attaches", + "subtitles.block.end_portal.spawn": "End Portal opens", + "subtitles.block.eyeblossom.close": "Eyeblossom closes", + "subtitles.block.eyeblossom.idle": "Eyeblossom whispers", + "subtitles.block.eyeblossom.open": "Eyeblossom opens", + "subtitles.block.fence_gate.toggle": "Fence Gate creaks", + "subtitles.block.fire.ambient": "Fire crackles", + "subtitles.block.fire.extinguish": "Fire extinguished", + "subtitles.block.firefly_bush.idle": "Fireflies buzz", + "subtitles.block.frogspawn.hatch": "Tadpole hatches", + "subtitles.block.furnace.fire_crackle": "Furnace crackles", + "subtitles.block.generic.break": "Block broken", + "subtitles.block.generic.fall": "Something falls on a block", + "subtitles.block.generic.footsteps": "Footsteps", + "subtitles.block.generic.hit": "Block breaking", + "subtitles.block.generic.place": "Block placed", + "subtitles.block.grindstone.use": "Grindstone used", + "subtitles.block.growing_plant.crop": "Plant cropped", + "subtitles.block.hanging_sign.waxed_interact_fail": "Sign wobbles", + "subtitles.block.honey_block.slide": "Sliding down a honey block", + "subtitles.block.iron_trapdoor.close": "Trapdoor closes", + "subtitles.block.iron_trapdoor.open": "Trapdoor opens", + "subtitles.block.lava.ambient": "Lava pops", + "subtitles.block.lava.extinguish": "Lava hisses", + "subtitles.block.lever.click": "Lever clicks", + "subtitles.block.note_block.note": "Note Block plays", + "subtitles.block.pale_hanging_moss.idle": "Eerie noise", + "subtitles.block.piston.move": "Piston moves", + "subtitles.block.pointed_dripstone.drip_lava": "Lava drips", + "subtitles.block.pointed_dripstone.drip_lava_into_cauldron": "Lava drips into Cauldron", + "subtitles.block.pointed_dripstone.drip_water": "Water drips", + "subtitles.block.pointed_dripstone.drip_water_into_cauldron": "Water drips into Cauldron", + "subtitles.block.pointed_dripstone.land": "Stalactite crashes down", + "subtitles.block.portal.ambient": "Portal whooshes", + "subtitles.block.portal.travel": "Portal noise fades", + "subtitles.block.portal.trigger": "Portal noise intensifies", + "subtitles.block.pressure_plate.click": "Pressure Plate clicks", + "subtitles.block.pumpkin.carve": "Shears carve", + "subtitles.block.redstone_torch.burnout": "Torch fizzes", + "subtitles.block.respawn_anchor.ambient": "Respawn Anchor whooshes", + "subtitles.block.respawn_anchor.charge": "Respawn Anchor is charged", + "subtitles.block.respawn_anchor.deplete": "Respawn Anchor depletes", + "subtitles.block.respawn_anchor.set_spawn": "Respawn Anchor sets spawn", + "subtitles.block.sand.idle": "Sandy sounds", + "subtitles.block.sand.wind": "Windy sounds", + "subtitles.block.sculk_catalyst.bloom": "Sculk Catalyst blooms", + "subtitles.block.sculk_sensor.clicking": "Sculk Sensor clicks", + "subtitles.block.sculk_sensor.clicking_stop": "Sculk Sensor stops clicking", + "subtitles.block.sculk_shrieker.shriek": "Sculk Shrieker shrieks", + "subtitles.block.sculk.charge": "Sculk bubbles", + "subtitles.block.sculk.spread": "Sculk spreads", + "subtitles.block.shulker_box.close": "Shulker box closes", + "subtitles.block.shulker_box.open": "Shulker box opens", + "subtitles.block.sign.waxed_interact_fail": "Sign wobbles", + "subtitles.block.smithing_table.use": "Smithing Table used", + "subtitles.block.smoker.smoke": "Smoker smokes", + "subtitles.block.sniffer_egg.crack": "Sniffer Egg cracks", + "subtitles.block.sniffer_egg.hatch": "Sniffer Egg hatches", + "subtitles.block.sniffer_egg.plop": "Sniffer plops", + "subtitles.block.sponge.absorb": "Sponge sucks", + "subtitles.block.sweet_berry_bush.pick_berries": "Berries pop", + "subtitles.block.trapdoor.close": "Trapdoor closes", + "subtitles.block.trapdoor.open": "Trapdoor opens", + "subtitles.block.trapdoor.toggle": "Trapdoor creaks", + "subtitles.block.trial_spawner.about_to_spawn_item": "Ominous item prepares", + "subtitles.block.trial_spawner.ambient": "Trial Spawner crackles", + "subtitles.block.trial_spawner.ambient_charged": "Ominous crackling", + "subtitles.block.trial_spawner.ambient_ominous": "Ominous crackling", + "subtitles.block.trial_spawner.charge_activate": "Omen engulfs Trial Spawner", + "subtitles.block.trial_spawner.close_shutter": "Trial Spawner closes", + "subtitles.block.trial_spawner.detect_player": "Trial Spawner charges up", + "subtitles.block.trial_spawner.eject_item": "Trial Spawner ejects items", + "subtitles.block.trial_spawner.ominous_activate": "Omen engulfs Trial Spawner", + "subtitles.block.trial_spawner.open_shutter": "Trial Spawner opens", + "subtitles.block.trial_spawner.spawn_item": "Ominous item drops", + "subtitles.block.trial_spawner.spawn_item_begin": "Ominous item appears", + "subtitles.block.trial_spawner.spawn_mob": "Trial Spawner spawns a mob", + "subtitles.block.tripwire.attach": "Tripwire attaches", + "subtitles.block.tripwire.click": "Tripwire clicks", + "subtitles.block.tripwire.detach": "Tripwire detaches", + "subtitles.block.vault.activate": "Vault ignites", + "subtitles.block.vault.ambient": "Vault crackles", + "subtitles.block.vault.close_shutter": "Vault closes", + "subtitles.block.vault.deactivate": "Vault extinguishes", + "subtitles.block.vault.eject_item": "Vault ejects item", + "subtitles.block.vault.insert_item": "Vault unlocks", + "subtitles.block.vault.insert_item_fail": "Vault rejects item", + "subtitles.block.vault.open_shutter": "Vault opens", + "subtitles.block.vault.reject_rewarded_player": "Vault rejects player", + "subtitles.block.water.ambient": "Water flows", + "subtitles.block.wet_sponge.dries": "Sponge dries", + "subtitles.chiseled_bookshelf.insert": "Book placed", + "subtitles.chiseled_bookshelf.insert_enchanted": "Enchanted Book placed", + "subtitles.chiseled_bookshelf.take": "Book taken", + "subtitles.chiseled_bookshelf.take_enchanted": "Enchanted Book taken", + "subtitles.enchant.thorns.hit": "Thorns prick", + "subtitles.entity.allay.ambient_with_item": "Allay seeks", + "subtitles.entity.allay.ambient_without_item": "Allay yearns", + "subtitles.entity.allay.death": "Allay dies", + "subtitles.entity.allay.hurt": "Allay hurts", + "subtitles.entity.allay.item_given": "Allay chortles", + "subtitles.entity.allay.item_taken": "Allay allays", + "subtitles.entity.allay.item_thrown": "Allay tosses", + "subtitles.entity.armadillo.ambient": "Armadillo grunts", + "subtitles.entity.armadillo.brush": "Scute is brushed off", + "subtitles.entity.armadillo.death": "Armadillo dies", + "subtitles.entity.armadillo.eat": "Armadillo eats", + "subtitles.entity.armadillo.hurt": "Armadillo hurts", + "subtitles.entity.armadillo.hurt_reduced": "Armadillo shields itself", + "subtitles.entity.armadillo.land": "Armadillo lands", + "subtitles.entity.armadillo.peek": "Armadillo peeks", + "subtitles.entity.armadillo.roll": "Armadillo rolls up", + "subtitles.entity.armadillo.scute_drop": "Armadillo sheds scute", + "subtitles.entity.armadillo.unroll_finish": "Armadillo unrolls", + "subtitles.entity.armadillo.unroll_start": "Armadillo peeks", + "subtitles.entity.armor_stand.fall": "Something fell", + "subtitles.entity.arrow.hit": "Arrow hits", + "subtitles.entity.arrow.hit_player": "Player hit", + "subtitles.entity.arrow.shoot": "Arrow fired", + "subtitles.entity.axolotl.attack": "Axolotl attacks", + "subtitles.entity.axolotl.death": "Axolotl dies", + "subtitles.entity.axolotl.hurt": "Axolotl hurts", + "subtitles.entity.axolotl.idle_air": "Axolotl chirps", + "subtitles.entity.axolotl.idle_water": "Axolotl chirps", + "subtitles.entity.axolotl.splash": "Axolotl splashes", + "subtitles.entity.axolotl.swim": "Axolotl swims", + "subtitles.entity.bat.ambient": "Bat screeches", + "subtitles.entity.bat.death": "Bat dies", + "subtitles.entity.bat.hurt": "Bat hurts", + "subtitles.entity.bat.takeoff": "Bat takes off", + "subtitles.entity.bee.ambient": "Bee buzzes", + "subtitles.entity.bee.death": "Bee dies", + "subtitles.entity.bee.hurt": "Bee hurts", + "subtitles.entity.bee.loop": "Bee buzzes", + "subtitles.entity.bee.loop_aggressive": "Bee buzzes angrily", + "subtitles.entity.bee.pollinate": "Bee buzzes happily", + "subtitles.entity.bee.sting": "Bee stings", + "subtitles.entity.blaze.ambient": "Blaze breathes", + "subtitles.entity.blaze.burn": "Blaze crackles", + "subtitles.entity.blaze.death": "Blaze dies", + "subtitles.entity.blaze.hurt": "Blaze hurts", + "subtitles.entity.blaze.shoot": "Blaze shoots", + "subtitles.entity.boat.paddle_land": "Rowing", + "subtitles.entity.boat.paddle_water": "Rowing", + "subtitles.entity.bogged.ambient": "Bogged rattles", + "subtitles.entity.bogged.death": "Bogged dies", + "subtitles.entity.bogged.hurt": "Bogged hurts", + "subtitles.entity.breeze.charge": "Breeze charges", + "subtitles.entity.breeze.death": "Breeze dies", + "subtitles.entity.breeze.deflect": "Breeze deflects", + "subtitles.entity.breeze.hurt": "Breeze hurts", + "subtitles.entity.breeze.idle_air": "Breeze flies", + "subtitles.entity.breeze.idle_ground": "Breeze whirs", + "subtitles.entity.breeze.inhale": "Breeze inhales", + "subtitles.entity.breeze.jump": "Breeze jumps", + "subtitles.entity.breeze.land": "Breeze lands", + "subtitles.entity.breeze.shoot": "Breeze shoots", + "subtitles.entity.breeze.slide": "Breeze slides", + "subtitles.entity.breeze.whirl": "Breeze whirls", + "subtitles.entity.breeze.wind_burst": "Wind Charge bursts", + "subtitles.entity.camel.ambient": "Camel grunts", + "subtitles.entity.camel.dash": "Camel yeets", + "subtitles.entity.camel.dash_ready": "Camel recovers", + "subtitles.entity.camel.death": "Camel dies", + "subtitles.entity.camel.eat": "Camel eats", + "subtitles.entity.camel.hurt": "Camel hurts", + "subtitles.entity.camel.saddle": "Saddle equips", + "subtitles.entity.camel.sit": "Camel sits down", + "subtitles.entity.camel.stand": "Camel stands up", + "subtitles.entity.camel.step": "Camel steps", + "subtitles.entity.camel.step_sand": "Camel sands", + "subtitles.entity.cat.ambient": "Cat meows", + "subtitles.entity.cat.beg_for_food": "Cat begs", + "subtitles.entity.cat.death": "Cat dies", + "subtitles.entity.cat.eat": "Cat eats", + "subtitles.entity.cat.hiss": "Cat hisses", + "subtitles.entity.cat.hurt": "Cat hurts", + "subtitles.entity.cat.purr": "Cat purrs", + "subtitles.entity.chicken.ambient": "Chicken clucks", + "subtitles.entity.chicken.death": "Chicken dies", + "subtitles.entity.chicken.egg": "Chicken plops", + "subtitles.entity.chicken.hurt": "Chicken hurts", + "subtitles.entity.cod.death": "Cod dies", + "subtitles.entity.cod.flop": "Cod flops", + "subtitles.entity.cod.hurt": "Cod hurts", + "subtitles.entity.cow.ambient": "Cow moos", + "subtitles.entity.cow.death": "Cow dies", + "subtitles.entity.cow.hurt": "Cow hurts", + "subtitles.entity.cow.milk": "Cow gets milked", + "subtitles.entity.creaking.activate": "Creaking watches", + "subtitles.entity.creaking.ambient": "Creaking creaks", + "subtitles.entity.creaking.attack": "Creaking attacks", + "subtitles.entity.creaking.deactivate": "Creaking calms", + "subtitles.entity.creaking.death": "Creaking crumbles", + "subtitles.entity.creaking.freeze": "Creaking stops", + "subtitles.entity.creaking.spawn": "Creaking manifests", + "subtitles.entity.creaking.sway": "Creaking is hit", + "subtitles.entity.creaking.twitch": "Creaking twitches", + "subtitles.entity.creaking.unfreeze": "Creaking moves", + "subtitles.entity.creeper.death": "Creeper dies", + "subtitles.entity.creeper.hurt": "Creeper hurts", + "subtitles.entity.creeper.primed": "Creeper hisses", + "subtitles.entity.dolphin.ambient": "Dolphin chirps", + "subtitles.entity.dolphin.ambient_water": "Dolphin whistles", + "subtitles.entity.dolphin.attack": "Dolphin attacks", + "subtitles.entity.dolphin.death": "Dolphin dies", + "subtitles.entity.dolphin.eat": "Dolphin eats", + "subtitles.entity.dolphin.hurt": "Dolphin hurts", + "subtitles.entity.dolphin.jump": "Dolphin jumps", + "subtitles.entity.dolphin.play": "Dolphin plays", + "subtitles.entity.dolphin.splash": "Dolphin splashes", + "subtitles.entity.dolphin.swim": "Dolphin swims", + "subtitles.entity.donkey.ambient": "Donkey hee-haws", + "subtitles.entity.donkey.angry": "Donkey neighs", + "subtitles.entity.donkey.chest": "Donkey Chest equips", + "subtitles.entity.donkey.death": "Donkey dies", + "subtitles.entity.donkey.eat": "Donkey eats", + "subtitles.entity.donkey.hurt": "Donkey hurts", + "subtitles.entity.donkey.jump": "Donkey jumps", + "subtitles.entity.drowned.ambient": "Drowned gurgles", + "subtitles.entity.drowned.ambient_water": "Drowned gurgles", + "subtitles.entity.drowned.death": "Drowned dies", + "subtitles.entity.drowned.hurt": "Drowned hurts", + "subtitles.entity.drowned.shoot": "Drowned throws Trident", + "subtitles.entity.drowned.step": "Drowned steps", + "subtitles.entity.drowned.swim": "Drowned swims", + "subtitles.entity.egg.throw": "Egg flies", + "subtitles.entity.elder_guardian.ambient": "Elder Guardian moans", + "subtitles.entity.elder_guardian.ambient_land": "Elder Guardian flaps", + "subtitles.entity.elder_guardian.curse": "Elder Guardian curses", + "subtitles.entity.elder_guardian.death": "Elder Guardian dies", + "subtitles.entity.elder_guardian.flop": "Elder Guardian flops", + "subtitles.entity.elder_guardian.hurt": "Elder Guardian hurts", + "subtitles.entity.ender_dragon.ambient": "Dragon roars", + "subtitles.entity.ender_dragon.death": "Dragon dies", + "subtitles.entity.ender_dragon.flap": "Dragon flaps", + "subtitles.entity.ender_dragon.growl": "Dragon growls", + "subtitles.entity.ender_dragon.hurt": "Dragon hurts", + "subtitles.entity.ender_dragon.shoot": "Dragon shoots", + "subtitles.entity.ender_eye.death": "Eye of Ender falls", + "subtitles.entity.ender_eye.launch": "Eye of Ender shoots", + "subtitles.entity.ender_pearl.throw": "Ender Pearl flies", + "subtitles.entity.enderman.ambient": "Enderman vwoops", + "subtitles.entity.enderman.death": "Enderman dies", + "subtitles.entity.enderman.hurt": "Enderman hurts", + "subtitles.entity.enderman.scream": "Enderman screams", + "subtitles.entity.enderman.stare": "Enderman cries out", + "subtitles.entity.enderman.teleport": "Enderman teleports", + "subtitles.entity.endermite.ambient": "Endermite scuttles", + "subtitles.entity.endermite.death": "Endermite dies", + "subtitles.entity.endermite.hurt": "Endermite hurts", + "subtitles.entity.evoker_fangs.attack": "Fangs snap", + "subtitles.entity.evoker.ambient": "Evoker murmurs", + "subtitles.entity.evoker.cast_spell": "Evoker casts spell", + "subtitles.entity.evoker.celebrate": "Evoker cheers", + "subtitles.entity.evoker.death": "Evoker dies", + "subtitles.entity.evoker.hurt": "Evoker hurts", + "subtitles.entity.evoker.prepare_attack": "Evoker prepares attack", + "subtitles.entity.evoker.prepare_summon": "Evoker prepares summoning", + "subtitles.entity.evoker.prepare_wololo": "Evoker prepares charming", + "subtitles.entity.experience_orb.pickup": "Experience gained", + "subtitles.entity.firework_rocket.blast": "Firework blasts", + "subtitles.entity.firework_rocket.launch": "Firework launches", + "subtitles.entity.firework_rocket.twinkle": "Firework twinkles", + "subtitles.entity.fish.swim": "Splashes", + "subtitles.entity.fishing_bobber.retrieve": "Bobber retrieved", + "subtitles.entity.fishing_bobber.splash": "Fishing Bobber splashes", + "subtitles.entity.fishing_bobber.throw": "Bobber thrown", + "subtitles.entity.fox.aggro": "Fox angers", + "subtitles.entity.fox.ambient": "Fox squeaks", + "subtitles.entity.fox.bite": "Fox bites", + "subtitles.entity.fox.death": "Fox dies", + "subtitles.entity.fox.eat": "Fox eats", + "subtitles.entity.fox.hurt": "Fox hurts", + "subtitles.entity.fox.screech": "Fox screeches", + "subtitles.entity.fox.sleep": "Fox snores", + "subtitles.entity.fox.sniff": "Fox sniffs", + "subtitles.entity.fox.spit": "Fox spits", + "subtitles.entity.fox.teleport": "Fox teleports", + "subtitles.entity.frog.ambient": "Frog croaks", + "subtitles.entity.frog.death": "Frog dies", + "subtitles.entity.frog.eat": "Frog eats", + "subtitles.entity.frog.hurt": "Frog hurts", + "subtitles.entity.frog.lay_spawn": "Frog lays spawn", + "subtitles.entity.frog.long_jump": "Frog jumps", + "subtitles.entity.generic.big_fall": "Something fell", + "subtitles.entity.generic.burn": "Burning", + "subtitles.entity.generic.death": "Dying", + "subtitles.entity.generic.drink": "Sipping", + "subtitles.entity.generic.eat": "Eating", + "subtitles.entity.generic.explode": "Explosion", + "subtitles.entity.generic.extinguish_fire": "Fire extinguishes", + "subtitles.entity.generic.hurt": "Something hurts", + "subtitles.entity.generic.small_fall": "Something trips", + "subtitles.entity.generic.splash": "Splashing", + "subtitles.entity.generic.swim": "Swimming", + "subtitles.entity.generic.wind_burst": "Wind Charge bursts", + "subtitles.entity.ghast.ambient": "Ghast cries", + "subtitles.entity.ghast.death": "Ghast dies", + "subtitles.entity.ghast.hurt": "Ghast hurts", + "subtitles.entity.ghast.shoot": "Ghast shoots", + "subtitles.entity.ghastling.ambient": "Ghastling coos", + "subtitles.entity.ghastling.death": "Ghastling dies", + "subtitles.entity.ghastling.hurt": "Ghastling hurts", + "subtitles.entity.ghastling.spawn": "Ghastling appears", + "subtitles.entity.glow_item_frame.add_item": "Glow Item Frame fills", + "subtitles.entity.glow_item_frame.break": "Glow Item Frame broken", + "subtitles.entity.glow_item_frame.place": "Glow Item Frame placed", + "subtitles.entity.glow_item_frame.remove_item": "Glow Item Frame empties", + "subtitles.entity.glow_item_frame.rotate_item": "Glow Item Frame clicks", + "subtitles.entity.glow_squid.ambient": "Glow Squid swims", + "subtitles.entity.glow_squid.death": "Glow Squid dies", + "subtitles.entity.glow_squid.hurt": "Glow Squid hurts", + "subtitles.entity.glow_squid.squirt": "Glow Squid shoots ink", + "subtitles.entity.goat.ambient": "Goat bleats", + "subtitles.entity.goat.death": "Goat dies", + "subtitles.entity.goat.eat": "Goat eats", + "subtitles.entity.goat.horn_break": "Goat Horn breaks off", + "subtitles.entity.goat.hurt": "Goat hurts", + "subtitles.entity.goat.long_jump": "Goat leaps", + "subtitles.entity.goat.milk": "Goat gets milked", + "subtitles.entity.goat.prepare_ram": "Goat stomps", + "subtitles.entity.goat.ram_impact": "Goat rams", + "subtitles.entity.goat.screaming.ambient": "Goat bellows", + "subtitles.entity.goat.step": "Goat steps", + "subtitles.entity.guardian.ambient": "Guardian moans", + "subtitles.entity.guardian.ambient_land": "Guardian flaps", + "subtitles.entity.guardian.attack": "Guardian shoots", + "subtitles.entity.guardian.death": "Guardian dies", + "subtitles.entity.guardian.flop": "Guardian flops", + "subtitles.entity.guardian.hurt": "Guardian hurts", + "subtitles.entity.happy_ghast.ambient": "Happy Ghast croons", + "subtitles.entity.happy_ghast.death": "Happy Ghast dies", + "subtitles.entity.happy_ghast.equip": "Harness equips", + "subtitles.entity.happy_ghast.harness_goggles_down": "Happy Ghast is ready", + "subtitles.entity.happy_ghast.harness_goggles_up": "Happy Ghast stops", + "subtitles.entity.happy_ghast.hurt": "Happy Ghast hurts", + "subtitles.entity.happy_ghast.unequip": "Harness unequips", + "subtitles.entity.hoglin.ambient": "Hoglin growls", + "subtitles.entity.hoglin.angry": "Hoglin growls angrily", + "subtitles.entity.hoglin.attack": "Hoglin attacks", + "subtitles.entity.hoglin.converted_to_zombified": "Hoglin converts to Zoglin", + "subtitles.entity.hoglin.death": "Hoglin dies", + "subtitles.entity.hoglin.hurt": "Hoglin hurts", + "subtitles.entity.hoglin.retreat": "Hoglin retreats", + "subtitles.entity.hoglin.step": "Hoglin steps", + "subtitles.entity.horse.ambient": "Horse neighs", + "subtitles.entity.horse.angry": "Horse neighs", + "subtitles.entity.horse.armor": "Horse armor equips", + "subtitles.entity.horse.breathe": "Horse breathes", + "subtitles.entity.horse.death": "Horse dies", + "subtitles.entity.horse.eat": "Horse eats", + "subtitles.entity.horse.gallop": "Horse gallops", + "subtitles.entity.horse.hurt": "Horse hurts", + "subtitles.entity.horse.jump": "Horse jumps", + "subtitles.entity.horse.saddle": "Saddle equips", + "subtitles.entity.husk.ambient": "Husk groans", + "subtitles.entity.husk.converted_to_zombie": "Husk converts to Zombie", + "subtitles.entity.husk.death": "Husk dies", + "subtitles.entity.husk.hurt": "Husk hurts", + "subtitles.entity.illusioner.ambient": "Illusioner murmurs", + "subtitles.entity.illusioner.cast_spell": "Illusioner casts spell", + "subtitles.entity.illusioner.death": "Illusioner dies", + "subtitles.entity.illusioner.hurt": "Illusioner hurts", + "subtitles.entity.illusioner.mirror_move": "Illusioner displaces", + "subtitles.entity.illusioner.prepare_blindness": "Illusioner prepares blindness", + "subtitles.entity.illusioner.prepare_mirror": "Illusioner prepares mirror image", + "subtitles.entity.iron_golem.attack": "Iron Golem attacks", + "subtitles.entity.iron_golem.damage": "Iron Golem breaks", + "subtitles.entity.iron_golem.death": "Iron Golem dies", + "subtitles.entity.iron_golem.hurt": "Iron Golem hurts", + "subtitles.entity.iron_golem.repair": "Iron Golem repaired", + "subtitles.entity.item_frame.add_item": "Item Frame fills", + "subtitles.entity.item_frame.break": "Item Frame broken", + "subtitles.entity.item_frame.place": "Item Frame placed", + "subtitles.entity.item_frame.remove_item": "Item Frame empties", + "subtitles.entity.item_frame.rotate_item": "Item Frame clicks", + "subtitles.entity.item.break": "Item breaks", + "subtitles.entity.item.pickup": "Item plops", + "subtitles.entity.leash_knot.break": "Leash Knot broken", + "subtitles.entity.leash_knot.place": "Leash Knot tied", + "subtitles.entity.lightning_bolt.impact": "Lightning strikes", + "subtitles.entity.lightning_bolt.thunder": "Thunder roars", + "subtitles.entity.llama.ambient": "Llama bleats", + "subtitles.entity.llama.angry": "Llama bleats angrily", + "subtitles.entity.llama.chest": "Llama Chest equips", + "subtitles.entity.llama.death": "Llama dies", + "subtitles.entity.llama.eat": "Llama eats", + "subtitles.entity.llama.hurt": "Llama hurts", + "subtitles.entity.llama.spit": "Llama spits", + "subtitles.entity.llama.step": "Llama steps", + "subtitles.entity.llama.swag": "Llama is decorated", + "subtitles.entity.magma_cube.death": "Magma Cube dies", + "subtitles.entity.magma_cube.hurt": "Magma Cube hurts", + "subtitles.entity.magma_cube.squish": "Magma Cube squishes", + "subtitles.entity.minecart.inside": "Minecart jangles", + "subtitles.entity.minecart.inside_underwater": "Minecart jangles underwater", + "subtitles.entity.minecart.riding": "Minecart rolls", + "subtitles.entity.mooshroom.convert": "Mooshroom transforms", + "subtitles.entity.mooshroom.eat": "Mooshroom eats", + "subtitles.entity.mooshroom.milk": "Mooshroom gets milked", + "subtitles.entity.mooshroom.suspicious_milk": "Mooshroom gets milked suspiciously", + "subtitles.entity.mule.ambient": "Mule hee-haws", + "subtitles.entity.mule.angry": "Mule neighs", + "subtitles.entity.mule.chest": "Mule Chest equips", + "subtitles.entity.mule.death": "Mule dies", + "subtitles.entity.mule.eat": "Mule eats", + "subtitles.entity.mule.hurt": "Mule hurts", + "subtitles.entity.mule.jump": "Mule jumps", + "subtitles.entity.painting.break": "Painting broken", + "subtitles.entity.painting.place": "Painting placed", + "subtitles.entity.panda.aggressive_ambient": "Panda huffs", + "subtitles.entity.panda.ambient": "Panda pants", + "subtitles.entity.panda.bite": "Panda bites", + "subtitles.entity.panda.cant_breed": "Panda bleats", + "subtitles.entity.panda.death": "Panda dies", + "subtitles.entity.panda.eat": "Panda eats", + "subtitles.entity.panda.hurt": "Panda hurts", + "subtitles.entity.panda.pre_sneeze": "Panda's nose tickles", + "subtitles.entity.panda.sneeze": "Panda sneezes", + "subtitles.entity.panda.step": "Panda steps", + "subtitles.entity.panda.worried_ambient": "Panda whimpers", + "subtitles.entity.parrot.ambient": "Parrot talks", + "subtitles.entity.parrot.death": "Parrot dies", + "subtitles.entity.parrot.eats": "Parrot eats", + "subtitles.entity.parrot.fly": "Parrot flutters", + "subtitles.entity.parrot.hurts": "Parrot hurts", + "subtitles.entity.parrot.imitate.blaze": "Parrot breathes", + "subtitles.entity.parrot.imitate.bogged": "Parrot rattles", + "subtitles.entity.parrot.imitate.breeze": "Parrot whirs", + "subtitles.entity.parrot.imitate.creaking": "Parrot creaks", + "subtitles.entity.parrot.imitate.creeper": "Parrot hisses", + "subtitles.entity.parrot.imitate.drowned": "Parrot gurgles", + "subtitles.entity.parrot.imitate.elder_guardian": "Parrot moans", + "subtitles.entity.parrot.imitate.ender_dragon": "Parrot roars", + "subtitles.entity.parrot.imitate.endermite": "Parrot scuttles", + "subtitles.entity.parrot.imitate.evoker": "Parrot murmurs", + "subtitles.entity.parrot.imitate.ghast": "Parrot cries", + "subtitles.entity.parrot.imitate.guardian": "Parrot moans", + "subtitles.entity.parrot.imitate.hoglin": "Parrot growls", + "subtitles.entity.parrot.imitate.husk": "Parrot groans", + "subtitles.entity.parrot.imitate.illusioner": "Parrot murmurs", + "subtitles.entity.parrot.imitate.magma_cube": "Parrot squishes", + "subtitles.entity.parrot.imitate.phantom": "Parrot screeches", + "subtitles.entity.parrot.imitate.piglin": "Parrot snorts", + "subtitles.entity.parrot.imitate.piglin_brute": "Parrot snorts", + "subtitles.entity.parrot.imitate.pillager": "Parrot murmurs", + "subtitles.entity.parrot.imitate.ravager": "Parrot grunts", + "subtitles.entity.parrot.imitate.shulker": "Parrot lurks", + "subtitles.entity.parrot.imitate.silverfish": "Parrot hisses", + "subtitles.entity.parrot.imitate.skeleton": "Parrot rattles", + "subtitles.entity.parrot.imitate.slime": "Parrot squishes", + "subtitles.entity.parrot.imitate.spider": "Parrot hisses", + "subtitles.entity.parrot.imitate.stray": "Parrot rattles", + "subtitles.entity.parrot.imitate.vex": "Parrot vexes", + "subtitles.entity.parrot.imitate.vindicator": "Parrot mutters", + "subtitles.entity.parrot.imitate.warden": "Parrot whines", + "subtitles.entity.parrot.imitate.witch": "Parrot giggles", + "subtitles.entity.parrot.imitate.wither": "Parrot angers", + "subtitles.entity.parrot.imitate.wither_skeleton": "Parrot rattles", + "subtitles.entity.parrot.imitate.zoglin": "Parrot growls", + "subtitles.entity.parrot.imitate.zombie": "Parrot groans", + "subtitles.entity.parrot.imitate.zombie_villager": "Parrot groans", + "subtitles.entity.phantom.ambient": "Phantom screeches", + "subtitles.entity.phantom.bite": "Phantom bites", + "subtitles.entity.phantom.death": "Phantom dies", + "subtitles.entity.phantom.flap": "Phantom flaps", + "subtitles.entity.phantom.hurt": "Phantom hurts", + "subtitles.entity.phantom.swoop": "Phantom swoops", + "subtitles.entity.pig.ambient": "Pig oinks", + "subtitles.entity.pig.death": "Pig dies", + "subtitles.entity.pig.hurt": "Pig hurts", + "subtitles.entity.pig.saddle": "Saddle equips", + "subtitles.entity.piglin_brute.ambient": "Piglin Brute snorts", + "subtitles.entity.piglin_brute.angry": "Piglin Brute snorts angrily", + "subtitles.entity.piglin_brute.converted_to_zombified": "Piglin Brute converts to Zombified Piglin", + "subtitles.entity.piglin_brute.death": "Piglin Brute dies", + "subtitles.entity.piglin_brute.hurt": "Piglin Brute hurts", + "subtitles.entity.piglin_brute.step": "Piglin Brute steps", + "subtitles.entity.piglin.admiring_item": "Piglin admires item", + "subtitles.entity.piglin.ambient": "Piglin snorts", + "subtitles.entity.piglin.angry": "Piglin snorts angrily", + "subtitles.entity.piglin.celebrate": "Piglin celebrates", + "subtitles.entity.piglin.converted_to_zombified": "Piglin converts to Zombified Piglin", + "subtitles.entity.piglin.death": "Piglin dies", + "subtitles.entity.piglin.hurt": "Piglin hurts", + "subtitles.entity.piglin.jealous": "Piglin snorts enviously", + "subtitles.entity.piglin.retreat": "Piglin retreats", + "subtitles.entity.piglin.step": "Piglin steps", + "subtitles.entity.pillager.ambient": "Pillager murmurs", + "subtitles.entity.pillager.celebrate": "Pillager cheers", + "subtitles.entity.pillager.death": "Pillager dies", + "subtitles.entity.pillager.hurt": "Pillager hurts", + "subtitles.entity.player.attack.crit": "Critical attack", + "subtitles.entity.player.attack.knockback": "Knockback attack", + "subtitles.entity.player.attack.strong": "Strong attack", + "subtitles.entity.player.attack.sweep": "Sweeping attack", + "subtitles.entity.player.attack.weak": "Weak attack", + "subtitles.entity.player.burp": "Burp", + "subtitles.entity.player.death": "Player dies", + "subtitles.entity.player.freeze_hurt": "Player freezes", + "subtitles.entity.player.hurt": "Player hurts", + "subtitles.entity.player.hurt_drown": "Player drowning", + "subtitles.entity.player.hurt_on_fire": "Player burns", + "subtitles.entity.player.levelup": "Player dings", + "subtitles.entity.player.teleport": "Player teleports", + "subtitles.entity.polar_bear.ambient": "Polar Bear groans", + "subtitles.entity.polar_bear.ambient_baby": "Baby Polar Bear hums", + "subtitles.entity.polar_bear.death": "Polar Bear dies", + "subtitles.entity.polar_bear.hurt": "Polar Bear hurts", + "subtitles.entity.polar_bear.warning": "Polar Bear roars", + "subtitles.entity.potion.splash": "Bottle smashes", + "subtitles.entity.potion.throw": "Bottle thrown", + "subtitles.entity.puffer_fish.blow_out": "Pufferfish deflates", + "subtitles.entity.puffer_fish.blow_up": "Pufferfish inflates", + "subtitles.entity.puffer_fish.death": "Pufferfish dies", + "subtitles.entity.puffer_fish.flop": "Pufferfish flops", + "subtitles.entity.puffer_fish.hurt": "Pufferfish hurts", + "subtitles.entity.puffer_fish.sting": "Pufferfish stings", + "subtitles.entity.rabbit.ambient": "Rabbit squeaks", + "subtitles.entity.rabbit.attack": "Rabbit attacks", + "subtitles.entity.rabbit.death": "Rabbit dies", + "subtitles.entity.rabbit.hurt": "Rabbit hurts", + "subtitles.entity.rabbit.jump": "Rabbit hops", + "subtitles.entity.ravager.ambient": "Ravager grunts", + "subtitles.entity.ravager.attack": "Ravager bites", + "subtitles.entity.ravager.celebrate": "Ravager cheers", + "subtitles.entity.ravager.death": "Ravager dies", + "subtitles.entity.ravager.hurt": "Ravager hurts", + "subtitles.entity.ravager.roar": "Ravager roars", + "subtitles.entity.ravager.step": "Ravager steps", + "subtitles.entity.ravager.stunned": "Ravager stunned", + "subtitles.entity.salmon.death": "Salmon dies", + "subtitles.entity.salmon.flop": "Salmon flops", + "subtitles.entity.salmon.hurt": "Salmon hurts", + "subtitles.entity.sheep.ambient": "Sheep baahs", + "subtitles.entity.sheep.death": "Sheep dies", + "subtitles.entity.sheep.hurt": "Sheep hurts", + "subtitles.entity.shulker_bullet.hit": "Shulker Bullet explodes", + "subtitles.entity.shulker_bullet.hurt": "Shulker Bullet breaks", + "subtitles.entity.shulker.ambient": "Shulker lurks", + "subtitles.entity.shulker.close": "Shulker closes", + "subtitles.entity.shulker.death": "Shulker dies", + "subtitles.entity.shulker.hurt": "Shulker hurts", + "subtitles.entity.shulker.open": "Shulker opens", + "subtitles.entity.shulker.shoot": "Shulker shoots", + "subtitles.entity.shulker.teleport": "Shulker teleports", + "subtitles.entity.silverfish.ambient": "Silverfish hisses", + "subtitles.entity.silverfish.death": "Silverfish dies", + "subtitles.entity.silverfish.hurt": "Silverfish hurts", + "subtitles.entity.skeleton_horse.ambient": "Skeleton Horse cries", + "subtitles.entity.skeleton_horse.death": "Skeleton Horse dies", + "subtitles.entity.skeleton_horse.hurt": "Skeleton Horse hurts", + "subtitles.entity.skeleton_horse.jump_water": "Skeleton Horse jumps", + "subtitles.entity.skeleton_horse.swim": "Skeleton Horse swims", + "subtitles.entity.skeleton.ambient": "Skeleton rattles", + "subtitles.entity.skeleton.converted_to_stray": "Skeleton converts to Stray", + "subtitles.entity.skeleton.death": "Skeleton dies", + "subtitles.entity.skeleton.hurt": "Skeleton hurts", + "subtitles.entity.skeleton.shoot": "Skeleton shoots", + "subtitles.entity.slime.attack": "Slime attacks", + "subtitles.entity.slime.death": "Slime dies", + "subtitles.entity.slime.hurt": "Slime hurts", + "subtitles.entity.slime.squish": "Slime squishes", + "subtitles.entity.sniffer.death": "Sniffer dies", + "subtitles.entity.sniffer.digging": "Sniffer digs", + "subtitles.entity.sniffer.digging_stop": "Sniffer stands up", + "subtitles.entity.sniffer.drop_seed": "Sniffer drops seed", + "subtitles.entity.sniffer.eat": "Sniffer eats", + "subtitles.entity.sniffer.egg_crack": "Sniffer Egg cracks", + "subtitles.entity.sniffer.egg_hatch": "Sniffer Egg hatches", + "subtitles.entity.sniffer.happy": "Sniffer delights", + "subtitles.entity.sniffer.hurt": "Sniffer hurts", + "subtitles.entity.sniffer.idle": "Sniffer grunts", + "subtitles.entity.sniffer.scenting": "Sniffer scents", + "subtitles.entity.sniffer.searching": "Sniffer searches", + "subtitles.entity.sniffer.sniffing": "Sniffer sniffs", + "subtitles.entity.sniffer.step": "Sniffer steps", + "subtitles.entity.snow_golem.death": "Snow Golem dies", + "subtitles.entity.snow_golem.hurt": "Snow Golem hurts", + "subtitles.entity.snowball.throw": "Snowball flies", + "subtitles.entity.spider.ambient": "Spider hisses", + "subtitles.entity.spider.death": "Spider dies", + "subtitles.entity.spider.hurt": "Spider hurts", + "subtitles.entity.squid.ambient": "Squid swims", + "subtitles.entity.squid.death": "Squid dies", + "subtitles.entity.squid.hurt": "Squid hurts", + "subtitles.entity.squid.squirt": "Squid shoots ink", + "subtitles.entity.stray.ambient": "Stray rattles", + "subtitles.entity.stray.death": "Stray dies", + "subtitles.entity.stray.hurt": "Stray hurts", + "subtitles.entity.strider.death": "Strider dies", + "subtitles.entity.strider.eat": "Strider eats", + "subtitles.entity.strider.happy": "Strider warbles", + "subtitles.entity.strider.hurt": "Strider hurts", + "subtitles.entity.strider.idle": "Strider chirps", + "subtitles.entity.strider.retreat": "Strider retreats", + "subtitles.entity.tadpole.death": "Tadpole dies", + "subtitles.entity.tadpole.flop": "Tadpole flops", + "subtitles.entity.tadpole.grow_up": "Tadpole grows up", + "subtitles.entity.tadpole.hurt": "Tadpole hurts", + "subtitles.entity.tnt.primed": "TNT fizzes", + "subtitles.entity.tropical_fish.death": "Tropical Fish dies", + "subtitles.entity.tropical_fish.flop": "Tropical Fish flops", + "subtitles.entity.tropical_fish.hurt": "Tropical Fish hurts", + "subtitles.entity.turtle.ambient_land": "Turtle chirps", + "subtitles.entity.turtle.death": "Turtle dies", + "subtitles.entity.turtle.death_baby": "Baby Turtle dies", + "subtitles.entity.turtle.egg_break": "Turtle Egg breaks", + "subtitles.entity.turtle.egg_crack": "Turtle Egg cracks", + "subtitles.entity.turtle.egg_hatch": "Turtle Egg hatches", + "subtitles.entity.turtle.hurt": "Turtle hurts", + "subtitles.entity.turtle.hurt_baby": "Baby Turtle hurts", + "subtitles.entity.turtle.lay_egg": "Turtle lays egg", + "subtitles.entity.turtle.shamble": "Turtle shambles", + "subtitles.entity.turtle.shamble_baby": "Baby Turtle shambles", + "subtitles.entity.turtle.swim": "Turtle swims", + "subtitles.entity.vex.ambient": "Vex vexes", + "subtitles.entity.vex.charge": "Vex shrieks", + "subtitles.entity.vex.death": "Vex dies", + "subtitles.entity.vex.hurt": "Vex hurts", + "subtitles.entity.villager.ambient": "Villager mumbles", + "subtitles.entity.villager.celebrate": "Villager cheers", + "subtitles.entity.villager.death": "Villager dies", + "subtitles.entity.villager.hurt": "Villager hurts", + "subtitles.entity.villager.no": "Villager disagrees", + "subtitles.entity.villager.trade": "Villager trades", + "subtitles.entity.villager.work_armorer": "Armorer works", + "subtitles.entity.villager.work_butcher": "Butcher works", + "subtitles.entity.villager.work_cartographer": "Cartographer works", + "subtitles.entity.villager.work_cleric": "Cleric works", + "subtitles.entity.villager.work_farmer": "Farmer works", + "subtitles.entity.villager.work_fisherman": "Fisherman works", + "subtitles.entity.villager.work_fletcher": "Fletcher works", + "subtitles.entity.villager.work_leatherworker": "Leatherworker works", + "subtitles.entity.villager.work_librarian": "Librarian works", + "subtitles.entity.villager.work_mason": "Mason works", + "subtitles.entity.villager.work_shepherd": "Shepherd works", + "subtitles.entity.villager.work_toolsmith": "Toolsmith works", + "subtitles.entity.villager.work_weaponsmith": "Weaponsmith works", + "subtitles.entity.villager.yes": "Villager agrees", + "subtitles.entity.vindicator.ambient": "Vindicator mutters", + "subtitles.entity.vindicator.celebrate": "Vindicator cheers", + "subtitles.entity.vindicator.death": "Vindicator dies", + "subtitles.entity.vindicator.hurt": "Vindicator hurts", + "subtitles.entity.wandering_trader.ambient": "Wandering Trader mumbles", + "subtitles.entity.wandering_trader.death": "Wandering Trader dies", + "subtitles.entity.wandering_trader.disappeared": "Wandering Trader disappears", + "subtitles.entity.wandering_trader.drink_milk": "Wandering Trader drinks milk", + "subtitles.entity.wandering_trader.drink_potion": "Wandering Trader drinks potion", + "subtitles.entity.wandering_trader.hurt": "Wandering Trader hurts", + "subtitles.entity.wandering_trader.no": "Wandering Trader disagrees", + "subtitles.entity.wandering_trader.reappeared": "Wandering Trader appears", + "subtitles.entity.wandering_trader.trade": "Wandering Trader trades", + "subtitles.entity.wandering_trader.yes": "Wandering Trader agrees", + "subtitles.entity.warden.agitated": "Warden groans angrily", + "subtitles.entity.warden.ambient": "Warden whines", + "subtitles.entity.warden.angry": "Warden rages", + "subtitles.entity.warden.attack_impact": "Warden lands hit", + "subtitles.entity.warden.death": "Warden dies", + "subtitles.entity.warden.dig": "Warden digs", + "subtitles.entity.warden.emerge": "Warden emerges", + "subtitles.entity.warden.heartbeat": "Warden's heart beats", + "subtitles.entity.warden.hurt": "Warden hurts", + "subtitles.entity.warden.listening": "Warden takes notice", + "subtitles.entity.warden.listening_angry": "Warden takes notice angrily", + "subtitles.entity.warden.nearby_close": "Warden approaches", + "subtitles.entity.warden.nearby_closer": "Warden advances", + "subtitles.entity.warden.nearby_closest": "Warden draws close", + "subtitles.entity.warden.roar": "Warden roars", + "subtitles.entity.warden.sniff": "Warden sniffs", + "subtitles.entity.warden.sonic_boom": "Warden booms", + "subtitles.entity.warden.sonic_charge": "Warden charges", + "subtitles.entity.warden.step": "Warden steps", + "subtitles.entity.warden.tendril_clicks": "Warden's tendrils click", + "subtitles.entity.wind_charge.throw": "Wind Charge flies", + "subtitles.entity.wind_charge.wind_burst": "Wind Charge bursts", + "subtitles.entity.witch.ambient": "Witch giggles", + "subtitles.entity.witch.celebrate": "Witch cheers", + "subtitles.entity.witch.death": "Witch dies", + "subtitles.entity.witch.drink": "Witch drinks", + "subtitles.entity.witch.hurt": "Witch hurts", + "subtitles.entity.witch.throw": "Witch throws", + "subtitles.entity.wither_skeleton.ambient": "Wither Skeleton rattles", + "subtitles.entity.wither_skeleton.death": "Wither Skeleton dies", + "subtitles.entity.wither_skeleton.hurt": "Wither Skeleton hurts", + "subtitles.entity.wither.ambient": "Wither angers", + "subtitles.entity.wither.death": "Wither dies", + "subtitles.entity.wither.hurt": "Wither hurts", + "subtitles.entity.wither.shoot": "Wither attacks", + "subtitles.entity.wither.spawn": "Wither released", + "subtitles.entity.wolf.ambient": "Wolf pants", + "subtitles.entity.wolf.bark": "Wolf barks", + "subtitles.entity.wolf.death": "Wolf dies", + "subtitles.entity.wolf.growl": "Wolf growls", + "subtitles.entity.wolf.hurt": "Wolf hurts", + "subtitles.entity.wolf.pant": "Wolf pants", + "subtitles.entity.wolf.shake": "Wolf shakes", + "subtitles.entity.wolf.whine": "Wolf whines", + "subtitles.entity.zoglin.ambient": "Zoglin growls", + "subtitles.entity.zoglin.angry": "Zoglin growls angrily", + "subtitles.entity.zoglin.attack": "Zoglin attacks", + "subtitles.entity.zoglin.death": "Zoglin dies", + "subtitles.entity.zoglin.hurt": "Zoglin hurts", + "subtitles.entity.zoglin.step": "Zoglin steps", + "subtitles.entity.zombie_horse.ambient": "Zombie Horse cries", + "subtitles.entity.zombie_horse.death": "Zombie Horse dies", + "subtitles.entity.zombie_horse.hurt": "Zombie Horse hurts", + "subtitles.entity.zombie_villager.ambient": "Zombie Villager groans", + "subtitles.entity.zombie_villager.converted": "Zombie Villager vociferates", + "subtitles.entity.zombie_villager.cure": "Zombie Villager snuffles", + "subtitles.entity.zombie_villager.death": "Zombie Villager dies", + "subtitles.entity.zombie_villager.hurt": "Zombie Villager hurts", + "subtitles.entity.zombie.ambient": "Zombie groans", + "subtitles.entity.zombie.attack_wooden_door": "Door shakes", + "subtitles.entity.zombie.break_wooden_door": "Door breaks", + "subtitles.entity.zombie.converted_to_drowned": "Zombie converts to Drowned", + "subtitles.entity.zombie.death": "Zombie dies", + "subtitles.entity.zombie.destroy_egg": "Turtle Egg stomped", + "subtitles.entity.zombie.hurt": "Zombie hurts", + "subtitles.entity.zombie.infect": "Zombie infects", + "subtitles.entity.zombified_piglin.ambient": "Zombified Piglin grunts", + "subtitles.entity.zombified_piglin.angry": "Zombified Piglin grunts angrily", + "subtitles.entity.zombified_piglin.death": "Zombified Piglin dies", + "subtitles.entity.zombified_piglin.hurt": "Zombified Piglin hurts", + "subtitles.event.mob_effect.bad_omen": "Omen takes hold", + "subtitles.event.mob_effect.raid_omen": "Raid looms nearby", + "subtitles.event.mob_effect.trial_omen": "Ominous trial looms nearby", + "subtitles.event.raid.horn": "Ominous horn blares", + "subtitles.item.armor.equip": "Gear equips", + "subtitles.item.armor.equip_chain": "Chain armor jingles", + "subtitles.item.armor.equip_diamond": "Diamond armor clangs", + "subtitles.item.armor.equip_elytra": "Elytra rustle", + "subtitles.item.armor.equip_gold": "Gold armor clinks", + "subtitles.item.armor.equip_iron": "Iron armor clanks", + "subtitles.item.armor.equip_leather": "Leather armor rustles", + "subtitles.item.armor.equip_netherite": "Netherite armor clanks", + "subtitles.item.armor.equip_turtle": "Turtle Shell thunks", + "subtitles.item.armor.equip_wolf": "Wolf Armor is fastened", + "subtitles.item.armor.unequip_wolf": "Wolf Armor snips away", + "subtitles.item.axe.scrape": "Axe scrapes", + "subtitles.item.axe.strip": "Axe strips", + "subtitles.item.axe.wax_off": "Wax off", + "subtitles.item.bone_meal.use": "Bone Meal crinkles", + "subtitles.item.book.page_turn": "Page rustles", + "subtitles.item.book.put": "Book thumps", + "subtitles.item.bottle.empty": "Bottle empties", + "subtitles.item.bottle.fill": "Bottle fills", + "subtitles.item.brush.brushing.generic": "Brushing", + "subtitles.item.brush.brushing.gravel": "Brushing Gravel", + "subtitles.item.brush.brushing.gravel.complete": "Brushing Gravel completed", + "subtitles.item.brush.brushing.sand": "Brushing Sand", + "subtitles.item.brush.brushing.sand.complete": "Brushing Sand completed", + "subtitles.item.bucket.empty": "Bucket empties", + "subtitles.item.bucket.fill": "Bucket fills", + "subtitles.item.bucket.fill_axolotl": "Axolotl scooped", + "subtitles.item.bucket.fill_fish": "Fish captured", + "subtitles.item.bucket.fill_tadpole": "Tadpole captured", + "subtitles.item.bundle.drop_contents": "Bundle empties", + "subtitles.item.bundle.insert": "Item packed", + "subtitles.item.bundle.insert_fail": "Bundle full", + "subtitles.item.bundle.remove_one": "Item unpacked", + "subtitles.item.chorus_fruit.teleport": "Player teleports", + "subtitles.item.crop.plant": "Crop planted", + "subtitles.item.crossbow.charge": "Crossbow charges up", + "subtitles.item.crossbow.hit": "Arrow hits", + "subtitles.item.crossbow.load": "Crossbow loads", + "subtitles.item.crossbow.shoot": "Crossbow fires", + "subtitles.item.dye.use": "Dye stains", + "subtitles.item.elytra.flying": "Swoosh", + "subtitles.item.firecharge.use": "Fireball whooshes", + "subtitles.item.flintandsteel.use": "Flint and Steel click", + "subtitles.item.glow_ink_sac.use": "Glow Ink Sac splotches", + "subtitles.item.goat_horn.play": "Goat Horn plays", + "subtitles.item.hoe.till": "Hoe tills", + "subtitles.item.honey_bottle.drink": "Gulping", + "subtitles.item.honeycomb.wax_on": "Wax on", + "subtitles.item.horse_armor.unequip": "Horse Armor snips away", + "subtitles.item.ink_sac.use": "Ink Sac splotches", + "subtitles.item.lead.break": "Lead snaps", + "subtitles.item.lead.tied": "Lead tied", + "subtitles.item.lead.untied": "Lead untied", + "subtitles.item.llama_carpet.unequip": "Carpet snips away", + "subtitles.item.lodestone_compass.lock": "Lodestone Compass locks onto Lodestone", + "subtitles.item.mace.smash_air": "Mace smashes", + "subtitles.item.mace.smash_ground": "Mace smashes", + "subtitles.item.nether_wart.plant": "Crop planted", + "subtitles.item.ominous_bottle.dispose": "Bottle breaks", + "subtitles.item.saddle.unequip": "Saddle snips away", + "subtitles.item.shears.shear": "Shears click", + "subtitles.item.shears.snip": "Shears snip", + "subtitles.item.shield.block": "Shield blocks", + "subtitles.item.shovel.flatten": "Shovel flattens", + "subtitles.item.spyglass.stop_using": "Spyglass retracts", + "subtitles.item.spyglass.use": "Spyglass expands", + "subtitles.item.totem.use": "Totem activates", + "subtitles.item.trident.hit": "Trident stabs", + "subtitles.item.trident.hit_ground": "Trident vibrates", + "subtitles.item.trident.return": "Trident returns", + "subtitles.item.trident.riptide": "Trident zooms", + "subtitles.item.trident.throw": "Trident clangs", + "subtitles.item.trident.thunder": "Trident thunder cracks", + "subtitles.item.wolf_armor.break": "Wolf Armor breaks", + "subtitles.item.wolf_armor.crack": "Wolf Armor cracks", + "subtitles.item.wolf_armor.damage": "Wolf Armor takes damage", + "subtitles.item.wolf_armor.repair": "Wolf Armor is repaired", + "subtitles.particle.soul_escape": "Soul escapes", + "subtitles.ui.cartography_table.take_result": "Map drawn", + "subtitles.ui.hud.bubble_pop": "Breath meter dropping", + "subtitles.ui.loom.take_result": "Loom used", + "subtitles.ui.stonecutter.take_result": "Stonecutter used", + "subtitles.weather.rain": "Rain falls", + "symlink_warning.message": "Loading worlds from folders with symbolic links can be unsafe if you don't know exactly what you are doing. Please visit %s to learn more.", + "symlink_warning.message.pack": "Loading packs with symbolic links can be unsafe if you don't know exactly what you are doing. Please visit %s to learn more.", + "symlink_warning.message.world": "Loading worlds from folders with symbolic links can be unsafe if you don't know exactly what you are doing. Please visit %s to learn more.", + "symlink_warning.more_info": "More Information", + "symlink_warning.title": "World folder contains symbolic links", + "symlink_warning.title.pack": "Added pack(s) contain(s) symbolic links", + "symlink_warning.title.world": "The world folder contains symbolic links", + "team.collision.always": "Always", + "team.collision.never": "Never", + "team.collision.pushOtherTeams": "Push other teams", + "team.collision.pushOwnTeam": "Push own team", + "team.notFound": "Unknown team '%s'", + "team.visibility.always": "Always", + "team.visibility.hideForOtherTeams": "Hide for other teams", + "team.visibility.hideForOwnTeam": "Hide for own team", + "team.visibility.never": "Never", + "telemetry_info.button.give_feedback": "Give Feedback", + "telemetry_info.button.privacy_statement": "Privacy Statement", + "telemetry_info.button.show_data": "View My Data", + "telemetry_info.opt_in.description": "I consent to sending optional telemetry data", + "telemetry_info.property_title": "Included Data", + "telemetry_info.screen.description": "Collecting this data helps us improve Minecraft by guiding us in directions that are relevant to our players.\nYou can also send in additional feedback to help us keep improving Minecraft.", + "telemetry_info.screen.title": "Telemetry Data Collection", + "telemetry.event.advancement_made.description": "Understanding the context behind receiving an advancement can help us better understand and improve the progression of the game.", + "telemetry.event.advancement_made.title": "Advancement Made", + "telemetry.event.game_load_times.description": "This event can help us figure out where startup performance improvements are needed by measuring the execution times of the startup phases.", + "telemetry.event.game_load_times.title": "Game Load Times", + "telemetry.event.optional": "%s (Optional)", + "telemetry.event.optional.disabled": "%s (Optional) - Disabled", + "telemetry.event.performance_metrics.description": "Knowing the overall performance profile of Minecraft helps us tune and optimize the game for a wide range of machine specifications and operating systems. \nGame version is included to help us compare the performance profile for new versions of Minecraft.", + "telemetry.event.performance_metrics.title": "Performance Metrics", + "telemetry.event.required": "%s (Required)", + "telemetry.event.world_load_times.description": "It's important for us to understand how long it takes to join a world, and how that changes over time. For example, when we add new features or do larger technical changes, we need to see what impact that had on load times.", + "telemetry.event.world_load_times.title": "World Load Times", + "telemetry.event.world_loaded.description": "Knowing how players play Minecraft (such as Game Mode, client or server modded, and game version) allows us to focus game updates to improve the areas that players care about most.\nThe World Loaded event is paired with the World Unloaded event to calculate how long the play session has lasted.", + "telemetry.event.world_loaded.title": "World Loaded", + "telemetry.event.world_unloaded.description": "This event is paired with the World Loaded event to calculate how long the world session has lasted.\nThe duration (in seconds and ticks) is measured when a world session has ended (quitting to title, disconnecting from a server).", + "telemetry.event.world_unloaded.title": "World Unloaded", + "telemetry.property.advancement_game_time.title": "Game Time (Ticks)", + "telemetry.property.advancement_id.title": "Advancement ID", + "telemetry.property.client_id.title": "Client ID", + "telemetry.property.client_modded.title": "Client Modded", + "telemetry.property.dedicated_memory_kb.title": "Dedicated Memory (kB)", + "telemetry.property.event_timestamp_utc.title": "Event Timestamp (UTC)", + "telemetry.property.frame_rate_samples.title": "Frame Rate Samples (FPS)", + "telemetry.property.game_mode.title": "Game Mode", + "telemetry.property.game_version.title": "Game Version", + "telemetry.property.launcher_name.title": "Launcher Name", + "telemetry.property.load_time_bootstrap_ms.title": "Bootstrap Time (Milliseconds)", + "telemetry.property.load_time_loading_overlay_ms.title": "Time in Loading Screen (Milliseconds)", + "telemetry.property.load_time_pre_window_ms.title": "Time Before Window Opens (Milliseconds)", + "telemetry.property.load_time_total_time_ms.title": "Total Load Time (Milliseconds)", + "telemetry.property.minecraft_session_id.title": "Minecraft Session ID", + "telemetry.property.new_world.title": "New World", + "telemetry.property.number_of_samples.title": "Sample Count", + "telemetry.property.operating_system.title": "Operating System", + "telemetry.property.opt_in.title": "Opt-In", + "telemetry.property.platform.title": "Platform", + "telemetry.property.realms_map_content.title": "Realms Map Content (Minigame Name)", + "telemetry.property.render_distance.title": "Render Distance", + "telemetry.property.render_time_samples.title": "Render Time Samples", + "telemetry.property.seconds_since_load.title": "Time Since Load (Seconds)", + "telemetry.property.server_modded.title": "Server Modded", + "telemetry.property.server_type.title": "Server Type", + "telemetry.property.ticks_since_load.title": "Time Since Load (Ticks)", + "telemetry.property.used_memory_samples.title": "Used Random Access Memory", + "telemetry.property.user_id.title": "User ID", + "telemetry.property.world_load_time_ms.title": "World Load Time (Milliseconds)", + "telemetry.property.world_session_id.title": "World Session ID", + "test_block.error.missing": "Test structure missing %s block", + "test_block.error.too_many": "Too many %s blocks", + "test_block.invalid_timeout": "Invalid timeout (%s) - must be a positive number of ticks", + "test_block.message": "Message:", + "test_block.mode_info.accept": "Accept Mode - Accept success for (part of) a test", + "test_block.mode_info.fail": "Fail Mode - Fail the test", + "test_block.mode_info.log": "Log Mode - Log a message", + "test_block.mode_info.start": "Start Mode - The starting point for a test", + "test_block.mode.accept": "Accept", + "test_block.mode.fail": "Fail", + "test_block.mode.log": "Log", + "test_block.mode.start": "Start", + "test_instance_block.entities": "Entities:", + "test_instance_block.error.no_test": "Unable to run test instance at %s, %s, %s since it has an undefined test", + "test_instance_block.error.no_test_structure": "Unable to run test instance at %s, %s, %s since it has no test structure", + "test_instance_block.error.unable_to_save": "Unable to save test structure template for test instance at %s, %s, %s", + "test_instance_block.invalid": "[invalid]", + "test_instance_block.reset_success": "Reset succeeded for test: %s", + "test_instance_block.rotation": "Rotation:", + "test_instance_block.size": "Test Structure Size", + "test_instance_block.starting": "Starting test %s", + "test_instance_block.test_id": "Test Instance ID", + "test_instance.action.reset": "Reset and Load", + "test_instance.action.run": "Load and Run", + "test_instance.action.save": "Save Structure", + "test_instance.description.batch": "Batch: %s", + "test_instance.description.failed": "Failed: %s", + "test_instance.description.function": "Function: %s", + "test_instance.description.invalid_id": "Invalid test ID", + "test_instance.description.no_test": "No such test", + "test_instance.description.structure": "Structure: %s", + "test_instance.description.type": "Type: %s", + "test_instance.type.block_based": "Block-Based Test", + "test_instance.type.function": "Built-in Function Test", + "test.error.block_property_mismatch": "Expected property %s to be %s, was %s", + "test.error.block_property_missing": "Block property missing, expected property %s to be %s", + "test.error.entity_property": "Entity %s failed test: %s", + "test.error.entity_property_details": "Entity %s failed test: %s, expected: %s, was: %s", + "test.error.expected_block": "Expected block %s, got %s", + "test.error.expected_block_tag": "Expected block in #%s, got %s", + "test.error.expected_container_contents": "Container should contain: %s", + "test.error.expected_container_contents_single": "Container should contain a single: %s", + "test.error.expected_empty_container": "Container should be empty", + "test.error.expected_entity": "Expected %s", + "test.error.expected_entity_around": "Expected %s to exist around %s, %s, %s", + "test.error.expected_entity_count": "Expected %s entities of type %s, found %s", + "test.error.expected_entity_data": "Expected entity data to be: %s, was: %s", + "test.error.expected_entity_data_predicate": "Entity data mismatch for %s", + "test.error.expected_entity_effect": "Expected %s to have effect %s %s", + "test.error.expected_entity_having": "Entity inventory should contain %s", + "test.error.expected_entity_holding": "Entity should be holding %s", + "test.error.expected_entity_in_test": "Expected %s to exist in test", + "test.error.expected_entity_not_touching": "Did not expect %s touching %s, %s, %s (relative: %s, %s, %s)", + "test.error.expected_entity_touching": "Expected %s touching %s, %s, %s (relative: %s, %s, %s)", + "test.error.expected_item": "Expected item of type %s", + "test.error.expected_items_count": "Expected %s items of type %s, found %s", + "test.error.fail": "Fail conditions met", + "test.error.invalid_block_type": "Unexpected block type found: %s", + "test.error.missing_block_entity": "Missing block entity", + "test.error.position": "%s at %s, %s, %s (relative: %s, %s, %s) on tick %s", + "test.error.sequence.condition_already_triggered": "Condition already triggered at %s", + "test.error.sequence.condition_not_triggered": "Condition not triggered", + "test.error.sequence.invalid_tick": "Succeeded in invalid tick: expected %s", + "test.error.sequence.not_completed": "Test timed out before sequence completed", + "test.error.set_biome": "Failed to set biome for test", + "test.error.spawn_failure": "Failed to create entity %s", + "test.error.state_not_equal": "Incorrect state. Expected %s, was %s", + "test.error.structure.failure": "Failed to place test structure for %s", + "test.error.tick": "%s on tick %s", + "test.error.ticking_without_structure": "Ticking test before placing structure", + "test.error.timeout.no_result": "Didn't succeed or fail within %s ticks", + "test.error.timeout.no_sequences_finished": "No sequences finished within %s ticks", + "test.error.too_many_entities": "Expected only one %s to exist around %s, %s, %s but found %s", + "test.error.unexpected_block": "Did not expect block to be %s", + "test.error.unexpected_entity": "Did not expect %s to exist", + "test.error.unexpected_item": "Did not expect item of type %s", + "test.error.unknown": "Unknown internal error: %s", + "test.error.value_not_equal": "Expected %s to be %s, was %s", + "test.error.wrong_block_entity": "Wrong block entity type: %s", + "title.32bit.deprecation": "32-bit system detected: this may prevent you from playing in the future as a 64-bit system will be required!", + "title.32bit.deprecation.realms": "Minecraft will soon require a 64-bit system, which will prevent you from playing or using Realms on this device. You will need to manually cancel any Realms subscription.", + "title.32bit.deprecation.realms.check": "Do not show this screen again", + "title.32bit.deprecation.realms.header": "32-bit system detected", + "title.credits": "Copyright Mojang AB. Do not distribute!", + "title.multiplayer.disabled": "Multiplayer is disabled. Please check your Microsoft account settings.", + "title.multiplayer.disabled.banned.name": "You must change your name before you can play online", + "title.multiplayer.disabled.banned.permanent": "Your account is permanently suspended from online play", + "title.multiplayer.disabled.banned.temporary": "Your account is temporarily suspended from online play", + "title.multiplayer.lan": "Multiplayer (LAN)", + "title.multiplayer.other": "Multiplayer (3rd-party Server)", + "title.multiplayer.realms": "Multiplayer (Realms)", + "title.singleplayer": "Singleplayer", + "translation.test.args": "%s %s", + "translation.test.complex": "Prefix, %s%2$s again %s and %1$s lastly %s and also %1$s again!", + "translation.test.escape": "%%s %%%s %%%%s %%%%%s", + "translation.test.invalid": "hi %", + "translation.test.invalid2": "hi % s", + "translation.test.none": "Hello, world!", + "translation.test.world": "world", + "trim_material.minecraft.amethyst": "Amethyst Material", + "trim_material.minecraft.copper": "Copper Material", + "trim_material.minecraft.diamond": "Diamond Material", + "trim_material.minecraft.emerald": "Emerald Material", + "trim_material.minecraft.gold": "Gold Material", + "trim_material.minecraft.iron": "Iron Material", + "trim_material.minecraft.lapis": "Lapis Material", + "trim_material.minecraft.netherite": "Netherite Material", + "trim_material.minecraft.quartz": "Quartz Material", + "trim_material.minecraft.redstone": "Redstone Material", + "trim_material.minecraft.resin": "Resin Material", + "trim_pattern.minecraft.bolt": "Bolt Armor Trim", + "trim_pattern.minecraft.coast": "Coast Armor Trim", + "trim_pattern.minecraft.dune": "Dune Armor Trim", + "trim_pattern.minecraft.eye": "Eye Armor Trim", + "trim_pattern.minecraft.flow": "Flow Armor Trim", + "trim_pattern.minecraft.host": "Host Armor Trim", + "trim_pattern.minecraft.raiser": "Raiser Armor Trim", + "trim_pattern.minecraft.rib": "Rib Armor Trim", + "trim_pattern.minecraft.sentry": "Sentry Armor Trim", + "trim_pattern.minecraft.shaper": "Shaper Armor Trim", + "trim_pattern.minecraft.silence": "Silence Armor Trim", + "trim_pattern.minecraft.snout": "Snout Armor Trim", + "trim_pattern.minecraft.spire": "Spire Armor Trim", + "trim_pattern.minecraft.tide": "Tide Armor Trim", + "trim_pattern.minecraft.vex": "Vex Armor Trim", + "trim_pattern.minecraft.ward": "Ward Armor Trim", + "trim_pattern.minecraft.wayfinder": "Wayfinder Armor Trim", + "trim_pattern.minecraft.wild": "Wild Armor Trim", + "tutorial.bundleInsert.description": "Right Click to add items", + "tutorial.bundleInsert.title": "Use a Bundle", + "tutorial.craft_planks.description": "The recipe book can help", + "tutorial.craft_planks.title": "Craft wooden planks", + "tutorial.find_tree.description": "Punch it to collect wood", + "tutorial.find_tree.title": "Find a tree", + "tutorial.look.description": "Use your mouse to turn", + "tutorial.look.title": "Look around", + "tutorial.move.description": "Jump with %s", + "tutorial.move.title": "Move with %s, %s, %s and %s", + "tutorial.open_inventory.description": "Press %s", + "tutorial.open_inventory.title": "Open your inventory", + "tutorial.punch_tree.description": "Hold down %s", + "tutorial.punch_tree.title": "Destroy the tree", + "tutorial.socialInteractions.description": "Press %s to open", + "tutorial.socialInteractions.title": "Social Interactions", + "upgrade.minecraft.netherite_upgrade": "Netherite Upgrade" +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_button.json new file mode 100644 index 000000000..e3ee4499a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_button_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_button_inventory.json new file mode 100644 index 000000000..0b50c6259 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_button_pressed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_button_pressed.json new file mode 100644 index 000000000..486e6edd6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_left.json new file mode 100644 index 000000000..aeab9dd0c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/acacia_door_bottom", + "top": "minecraft:block/acacia_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_left_open.json new file mode 100644 index 000000000..0e71dd585 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/acacia_door_bottom", + "top": "minecraft:block/acacia_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_right.json new file mode 100644 index 000000000..d4f4be3e7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/acacia_door_bottom", + "top": "minecraft:block/acacia_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_right_open.json new file mode 100644 index 000000000..c39619d16 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/acacia_door_bottom", + "top": "minecraft:block/acacia_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_top_left.json new file mode 100644 index 000000000..ba9356a01 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/acacia_door_bottom", + "top": "minecraft:block/acacia_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_top_left_open.json new file mode 100644 index 000000000..a279c8a47 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/acacia_door_bottom", + "top": "minecraft:block/acacia_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_top_right.json new file mode 100644 index 000000000..751739267 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/acacia_door_bottom", + "top": "minecraft:block/acacia_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_top_right_open.json new file mode 100644 index 000000000..dc29f13a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/acacia_door_bottom", + "top": "minecraft:block/acacia_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_gate.json new file mode 100644 index 000000000..f121a1830 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_open.json new file mode 100644 index 000000000..28fe835ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_wall.json new file mode 100644 index 000000000..0ac31d077 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_wall_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_wall_open.json new file mode 100644 index 000000000..2ea84d226 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_inventory.json new file mode 100644 index 000000000..1300a2337 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_post.json new file mode 100644 index 000000000..96e4d4449 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_side.json new file mode 100644 index 000000000..9d7c83ea4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_hanging_sign.json new file mode 100644 index 000000000..9d088d111 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_leaves.json new file mode 100644 index 000000000..9d1d8e16c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/acacia_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_log.json new file mode 100644 index 000000000..6eab23b0c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/acacia_log_top", + "side": "minecraft:block/acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_log_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_log_horizontal.json new file mode 100644 index 000000000..c0ff6ac49 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/acacia_log_top", + "side": "minecraft:block/acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_planks.json new file mode 100644 index 000000000..5efe51c0b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_pressure_plate.json new file mode 100644 index 000000000..8c40c47bc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_pressure_plate_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_pressure_plate_down.json new file mode 100644 index 000000000..b437bc261 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_sapling.json new file mode 100644 index 000000000..ea6fd73b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/acacia_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_sign.json new file mode 100644 index 000000000..700d9b8a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_slab.json new file mode 100644 index 000000000..b8d31c827 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/acacia_planks", + "side": "minecraft:block/acacia_planks", + "top": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_slab_top.json new file mode 100644 index 000000000..a2995410c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/acacia_planks", + "side": "minecraft:block/acacia_planks", + "top": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_stairs.json new file mode 100644 index 000000000..fee16e55c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/acacia_planks", + "side": "minecraft:block/acacia_planks", + "top": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_stairs_inner.json new file mode 100644 index 000000000..323018d55 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/acacia_planks", + "side": "minecraft:block/acacia_planks", + "top": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_stairs_outer.json new file mode 100644 index 000000000..a4978fbd9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/acacia_planks", + "side": "minecraft:block/acacia_planks", + "top": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_bottom.json new file mode 100644 index 000000000..38bd46e27 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/acacia_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_open.json new file mode 100644 index 000000000..de4be4d52 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/acacia_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_top.json new file mode 100644 index 000000000..4f5124098 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/acacia_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_wood.json new file mode 100644 index 000000000..2ef9da9ca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/acacia_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/acacia_log", + "side": "minecraft:block/acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail.json new file mode 100644 index 000000000..fbb2f56c8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/rail_flat", + "textures": { + "rail": "minecraft:block/activator_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail_on.json new file mode 100644 index 000000000..770a3bf5d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail_on.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/rail_flat", + "textures": { + "rail": "minecraft:block/activator_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail_on_raised_ne.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail_on_raised_ne.json new file mode 100644 index 000000000..9d82f7b68 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail_on_raised_ne.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_ne", + "textures": { + "rail": "minecraft:block/activator_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail_on_raised_sw.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail_on_raised_sw.json new file mode 100644 index 000000000..43c773a1a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail_on_raised_sw.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_sw", + "textures": { + "rail": "minecraft:block/activator_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail_raised_ne.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail_raised_ne.json new file mode 100644 index 000000000..d953b0888 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail_raised_ne.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_ne", + "textures": { + "rail": "minecraft:block/activator_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail_raised_sw.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail_raised_sw.json new file mode 100644 index 000000000..9b8c8587c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/activator_rail_raised_sw.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_sw", + "textures": { + "rail": "minecraft:block/activator_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/air.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/air.json new file mode 100644 index 000000000..e7062e637 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/air.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:missingno" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/allium.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/allium.json new file mode 100644 index 000000000..3c13827ca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/allium.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/allium" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/amethyst_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/amethyst_block.json new file mode 100644 index 000000000..3e0a7f7f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/amethyst_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/amethyst_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/amethyst_cluster.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/amethyst_cluster.json new file mode 100644 index 000000000..6f2e0497a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/amethyst_cluster.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/amethyst_cluster" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ancient_debris.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ancient_debris.json new file mode 100644 index 000000000..d16af45fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ancient_debris.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/ancient_debris_top", + "side": "minecraft:block/ancient_debris_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite.json new file mode 100644 index 000000000..3f9f0234e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_slab.json new file mode 100644 index 000000000..07f6eadea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/andesite", + "side": "minecraft:block/andesite", + "top": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_slab_top.json new file mode 100644 index 000000000..705a7db4c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/andesite", + "side": "minecraft:block/andesite", + "top": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_stairs.json new file mode 100644 index 000000000..63a4fc953 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/andesite", + "side": "minecraft:block/andesite", + "top": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_stairs_inner.json new file mode 100644 index 000000000..b0f469a19 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/andesite", + "side": "minecraft:block/andesite", + "top": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_stairs_outer.json new file mode 100644 index 000000000..e823edcfe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/andesite", + "side": "minecraft:block/andesite", + "top": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_wall_inventory.json new file mode 100644 index 000000000..1c61acfd7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_wall_post.json new file mode 100644 index 000000000..6c117e6f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_wall_side.json new file mode 100644 index 000000000..8dfcd81bc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_wall_side_tall.json new file mode 100644 index 000000000..f4075f2ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/andesite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/anvil.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/anvil.json new file mode 100644 index 000000000..dc9d25556 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/anvil.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_anvil", + "textures": { + "top": "minecraft:block/anvil_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/attached_melon_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/attached_melon_stem.json new file mode 100644 index 000000000..1ebaf505f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/attached_melon_stem.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/stem_fruit", + "textures": { + "stem": "minecraft:block/melon_stem", + "upperstem": "minecraft:block/attached_melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/attached_pumpkin_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/attached_pumpkin_stem.json new file mode 100644 index 000000000..0a7c5692a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/attached_pumpkin_stem.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/stem_fruit", + "textures": { + "stem": "minecraft:block/pumpkin_stem", + "upperstem": "minecraft:block/attached_pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/azalea.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/azalea.json new file mode 100644 index 000000000..61f668539 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/azalea.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_azalea", + "textures": { + "side": "minecraft:block/azalea_side", + "top": "minecraft:block/azalea_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/azalea_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/azalea_leaves.json new file mode 100644 index 000000000..4c6814a55 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/azalea_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/azalea_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/azure_bluet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/azure_bluet.json new file mode 100644 index 000000000..35cac69ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/azure_bluet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/azure_bluet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo1_age0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo1_age0.json new file mode 100644 index 000000000..0f5244e5b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo1_age0.json @@ -0,0 +1,19 @@ +{ + "textures": { + "all": "block/bamboo_stalk", + "particle": "block/bamboo_stalk" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "down": { "uv": [ 13, 4, 15, 6 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 13, 0, 15, 2], "texture": "#all", "cullface": "up" }, + "north": { "uv": [ 0, 0, 2, 16 ], "texture": "#all" }, + "south": { "uv": [ 0, 0, 2, 16 ], "texture": "#all" }, + "west": { "uv": [ 0, 0, 2, 16 ], "texture": "#all" }, + "east": { "uv": [ 0, 0, 2, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo1_age1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo1_age1.json new file mode 100644 index 000000000..d121263fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo1_age1.json @@ -0,0 +1,19 @@ +{ + "textures": { + "all": "block/bamboo_stalk", + "particle": "block/bamboo_stalk" + }, + "elements": [ + { "from": [ 6.5, 0, 6.5 ], + "to": [ 9.5, 16, 9.5 ], + "faces": { + "down": { "uv": [ 13, 4, 16, 7 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 13, 0, 16, 3 ], "texture": "#all", "cullface": "up" }, + "north": { "uv": [ 0, 0, 3, 16 ], "texture": "#all" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#all" }, + "west": { "uv": [ 0, 0, 3, 16 ], "texture": "#all" }, + "east": { "uv": [ 0, 0, 3, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo2_age0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo2_age0.json new file mode 100644 index 000000000..bc6e56c64 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo2_age0.json @@ -0,0 +1,19 @@ +{ + "textures": { + "all": "block/bamboo_stalk", + "particle": "block/bamboo_stalk" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "down": { "uv": [ 13, 4, 15, 6 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 13, 0, 15, 2], "texture": "#all", "cullface": "up" }, + "north": { "uv": [ 3, 0, 5, 16 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 5, 16 ], "texture": "#all" }, + "west": { "uv": [ 3, 0, 5, 16 ], "texture": "#all" }, + "east": { "uv": [ 3, 0, 5, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo2_age1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo2_age1.json new file mode 100644 index 000000000..55b2f4d19 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo2_age1.json @@ -0,0 +1,19 @@ +{ + "textures": { + "all": "block/bamboo_stalk", + "particle": "block/bamboo_stalk" + }, + "elements": [ + { "from": [ 6.5, 0, 6.5 ], + "to": [ 9.5, 16, 9.5 ], + "faces": { + "down": { "uv": [ 13, 4, 16, 7 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 13, 0, 16, 3 ], "texture": "#all", "cullface": "up" }, + "north": { "uv": [ 3, 0, 6, 16 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 6, 16 ], "texture": "#all" }, + "west": { "uv": [ 3, 0, 6, 16 ], "texture": "#all" }, + "east": { "uv": [ 3, 0, 6, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo3_age0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo3_age0.json new file mode 100644 index 000000000..d72b3e645 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo3_age0.json @@ -0,0 +1,19 @@ +{ + "textures": { + "all": "block/bamboo_stalk", + "particle": "block/bamboo_stalk" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "down": { "uv": [ 13, 4, 15, 6 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 13, 0, 15, 2], "texture": "#all", "cullface": "up" }, + "north": { "uv": [ 6, 0, 8, 16 ], "texture": "#all" }, + "south": { "uv": [ 6, 0, 8, 16 ], "texture": "#all" }, + "west": { "uv": [ 6, 0, 8, 16 ], "texture": "#all" }, + "east": { "uv": [ 6, 0, 8, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo3_age1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo3_age1.json new file mode 100644 index 000000000..499cd02e6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo3_age1.json @@ -0,0 +1,19 @@ +{ + "textures": { + "all": "block/bamboo_stalk", + "particle": "block/bamboo_stalk" + }, + "elements": [ + { "from": [ 6.5, 0, 6.5 ], + "to": [ 9.5, 16, 9.5 ], + "faces": { + "down": { "uv": [ 13, 4, 16, 7 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 13, 0, 16, 3 ], "texture": "#all", "cullface": "up" }, + "north": { "uv": [ 6, 0, 9, 16 ], "texture": "#all" }, + "south": { "uv": [ 6, 0, 9, 16 ], "texture": "#all" }, + "west": { "uv": [ 6, 0, 9, 16 ], "texture": "#all" }, + "east": { "uv": [ 6, 0, 9, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo4_age0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo4_age0.json new file mode 100644 index 000000000..cc9c1dcce --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo4_age0.json @@ -0,0 +1,19 @@ +{ + "textures": { + "all": "block/bamboo_stalk", + "particle": "block/bamboo_stalk" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "down": { "uv": [ 13, 4, 15, 6 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 13, 0, 15, 2], "texture": "#all", "cullface": "up" }, + "north": { "uv": [ 9, 0, 11, 16 ], "texture": "#all" }, + "south": { "uv": [ 9, 0, 11, 16 ], "texture": "#all" }, + "west": { "uv": [ 9, 0, 11, 16 ], "texture": "#all" }, + "east": { "uv": [ 9, 0, 11, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo4_age1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo4_age1.json new file mode 100644 index 000000000..4b8b86813 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo4_age1.json @@ -0,0 +1,19 @@ +{ + "textures": { + "all": "block/bamboo_stalk", + "particle": "block/bamboo_stalk" + }, + "elements": [ + { "from": [ 6.5, 0, 6.5 ], + "to": [ 9.5, 16, 9.5 ], + "faces": { + "down": { "uv": [ 13, 4, 16, 7 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 13, 0, 16, 3 ], "texture": "#all", "cullface": "up" }, + "north": { "uv": [ 9, 0, 12, 16 ], "texture": "#all" }, + "south": { "uv": [ 9, 0, 12, 16 ], "texture": "#all" }, + "west": { "uv": [ 9, 0, 12, 16 ], "texture": "#all" }, + "east": { "uv": [ 9, 0, 12, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_block.json new file mode 100644 index 000000000..6fa86028b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_block.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/bamboo_block_top", + "side": "minecraft:block/bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_block_x.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_block_x.json new file mode 100644 index 000000000..8b66c3fc4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_block_x.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_x", + "textures": { + "end": "minecraft:block/bamboo_block_top", + "side": "minecraft:block/bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_block_y.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_block_y.json new file mode 100644 index 000000000..a904e2837 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_block_y.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_y", + "textures": { + "end": "minecraft:block/bamboo_block_top", + "side": "minecraft:block/bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_block_z.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_block_z.json new file mode 100644 index 000000000..60e8c019a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_block_z.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_z", + "textures": { + "end": "minecraft:block/bamboo_block_top", + "side": "minecraft:block/bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_button.json new file mode 100644 index 000000000..b63d5bd34 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_button_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_button_inventory.json new file mode 100644 index 000000000..ad8122643 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_button_pressed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_button_pressed.json new file mode 100644 index 000000000..198214028 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_left.json new file mode 100644 index 000000000..3a17d2379 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/bamboo_door_bottom", + "top": "minecraft:block/bamboo_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_left_open.json new file mode 100644 index 000000000..c91079595 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/bamboo_door_bottom", + "top": "minecraft:block/bamboo_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_right.json new file mode 100644 index 000000000..09cd69042 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/bamboo_door_bottom", + "top": "minecraft:block/bamboo_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_right_open.json new file mode 100644 index 000000000..d869d65a7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/bamboo_door_bottom", + "top": "minecraft:block/bamboo_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_top_left.json new file mode 100644 index 000000000..0ce32f122 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/bamboo_door_bottom", + "top": "minecraft:block/bamboo_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_top_left_open.json new file mode 100644 index 000000000..05e969efe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/bamboo_door_bottom", + "top": "minecraft:block/bamboo_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_top_right.json new file mode 100644 index 000000000..a6a21e9cf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/bamboo_door_bottom", + "top": "minecraft:block/bamboo_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_top_right_open.json new file mode 100644 index 000000000..782f4af6a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/bamboo_door_bottom", + "top": "minecraft:block/bamboo_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate.json new file mode 100644 index 000000000..8a5d91aa5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_custom_fence_gate", + "textures": { + "particle": "minecraft:block/bamboo_fence_gate_particle", + "texture": "minecraft:block/bamboo_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_open.json new file mode 100644 index 000000000..046ad1eaa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_custom_fence_gate_open", + "textures": { + "particle": "minecraft:block/bamboo_fence_gate_particle", + "texture": "minecraft:block/bamboo_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_wall.json new file mode 100644 index 000000000..43bb833ae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_wall.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_custom_fence_gate_wall", + "textures": { + "particle": "minecraft:block/bamboo_fence_gate_particle", + "texture": "minecraft:block/bamboo_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_wall_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_wall_open.json new file mode 100644 index 000000000..ab15a5104 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_wall_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_custom_fence_gate_wall_open", + "textures": { + "particle": "minecraft:block/bamboo_fence_gate_particle", + "texture": "minecraft:block/bamboo_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_inventory.json new file mode 100644 index 000000000..87d9cb925 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/custom_fence_inventory", + "textures": { + "texture": "minecraft:block/bamboo_fence" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_post.json new file mode 100644 index 000000000..66e8880fd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/custom_fence_post", + "textures": { + "particle": "minecraft:block/bamboo_fence_particle", + "texture": "minecraft:block/bamboo_fence" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_east.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_east.json new file mode 100644 index 000000000..4d70eb37e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_east.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/custom_fence_side_east", + "textures": { + "texture": "minecraft:block/bamboo_fence" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_north.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_north.json new file mode 100644 index 000000000..56d48e47c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_north.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/custom_fence_side_north", + "textures": { + "texture": "minecraft:block/bamboo_fence" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_south.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_south.json new file mode 100644 index 000000000..7dbf5975a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_south.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/custom_fence_side_south", + "textures": { + "texture": "minecraft:block/bamboo_fence" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_west.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_west.json new file mode 100644 index 000000000..0d4106583 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_west.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/custom_fence_side_west", + "textures": { + "texture": "minecraft:block/bamboo_fence" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_hanging_sign.json new file mode 100644 index 000000000..00c837bfb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_large_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_large_leaves.json new file mode 100644 index 000000000..3ddead94f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_large_leaves.json @@ -0,0 +1,25 @@ +{ + "ambientocclusion": false, + "textures": { + "texture": "block/bamboo_large_leaves", + "particle": "block/bamboo_large_leaves" + }, + "elements": [ + { "from": [ 0.8, 0, 8 ], + "to": [ 15.2, 16, 8 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 } + } + }, + { "from": [ 8, 0, 0.8 ], + "to": [ 8, 16, 15.2 ], + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic.json new file mode 100644 index 000000000..7432c9896 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/bamboo_mosaic" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_slab.json new file mode 100644 index 000000000..02ceb8fa2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/bamboo_mosaic", + "side": "minecraft:block/bamboo_mosaic", + "top": "minecraft:block/bamboo_mosaic" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_slab_top.json new file mode 100644 index 000000000..7be74a485 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/bamboo_mosaic", + "side": "minecraft:block/bamboo_mosaic", + "top": "minecraft:block/bamboo_mosaic" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs.json new file mode 100644 index 000000000..6a8a99d36 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/bamboo_mosaic", + "side": "minecraft:block/bamboo_mosaic", + "top": "minecraft:block/bamboo_mosaic" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs_inner.json new file mode 100644 index 000000000..02edfd751 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/bamboo_mosaic", + "side": "minecraft:block/bamboo_mosaic", + "top": "minecraft:block/bamboo_mosaic" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs_outer.json new file mode 100644 index 000000000..64b61b656 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/bamboo_mosaic", + "side": "minecraft:block/bamboo_mosaic", + "top": "minecraft:block/bamboo_mosaic" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_planks.json new file mode 100644 index 000000000..670a66f9f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_pressure_plate.json new file mode 100644 index 000000000..ea2b50d8e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_pressure_plate_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_pressure_plate_down.json new file mode 100644 index 000000000..54a332808 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_sapling.json new file mode 100644 index 000000000..f658e68ea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/bamboo_stage0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_sign.json new file mode 100644 index 000000000..00c837bfb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_slab.json new file mode 100644 index 000000000..569c1847f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/bamboo_planks", + "side": "minecraft:block/bamboo_planks", + "top": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_slab_top.json new file mode 100644 index 000000000..04e017fca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/bamboo_planks", + "side": "minecraft:block/bamboo_planks", + "top": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_small_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_small_leaves.json new file mode 100644 index 000000000..c21694ea0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_small_leaves.json @@ -0,0 +1,25 @@ +{ + "ambientocclusion": false, + "textures": { + "texture": "block/bamboo_small_leaves", + "particle": "block/bamboo_small_leaves" + }, + "elements": [ + { "from": [ 0.8, 0, 8 ], + "to": [ 15.2, 16, 8 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 } + } + }, + { "from": [ 8, 0, 0.8 ], + "to": [ 8, 16, 15.2 ], + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_stairs.json new file mode 100644 index 000000000..ed8578fbb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/bamboo_planks", + "side": "minecraft:block/bamboo_planks", + "top": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_stairs_inner.json new file mode 100644 index 000000000..c4c2c4b4a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/bamboo_planks", + "side": "minecraft:block/bamboo_planks", + "top": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_stairs_outer.json new file mode 100644 index 000000000..4cd653007 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/bamboo_planks", + "side": "minecraft:block/bamboo_planks", + "top": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_bottom.json new file mode 100644 index 000000000..d7925a41e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/bamboo_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_open.json new file mode 100644 index 000000000..abbece260 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/bamboo_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_top.json new file mode 100644 index 000000000..778861d07 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/bamboo_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/banner.json new file mode 100644 index 000000000..9406a8491 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/banner.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/barrel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/barrel.json new file mode 100644 index 000000000..cff930084 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/barrel.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/barrel_bottom", + "side": "minecraft:block/barrel_side", + "top": "minecraft:block/barrel_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/barrel_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/barrel_open.json new file mode 100644 index 000000000..c7d013e7b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/barrel_open.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/barrel_bottom", + "side": "minecraft:block/barrel_side", + "top": "minecraft:block/barrel_top_open" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/barrier.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/barrier.json new file mode 100644 index 000000000..7d855f501 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/barrier.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/barrier" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/basalt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/basalt.json new file mode 100644 index 000000000..9a43b3d70 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/basalt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/basalt_top", + "side": "minecraft:block/basalt_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beacon.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beacon.json new file mode 100644 index 000000000..de4bca2e1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beacon.json @@ -0,0 +1,46 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/glass", + "glass": "block/glass", + "obsidian": "block/obsidian", + "beacon": "block/beacon" + }, + "elements": [ + { "__comment": "Glass shell", + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#glass" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#glass" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#glass" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#glass" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#glass" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#glass" } + } + }, + { "__comment": "Obsidian base", + "from": [ 2, 0.1, 2 ], + "to": [ 14, 3, 14 ], + "faces": { + "down": { "uv": [ 2, 2, 14, 14 ], "texture": "#obsidian" }, + "up": { "uv": [ 2, 2, 14, 14 ], "texture": "#obsidian" }, + "north": { "uv": [ 2, 13, 14, 16 ], "texture": "#obsidian" }, + "south": { "uv": [ 2, 13, 14, 16 ], "texture": "#obsidian" }, + "west": { "uv": [ 2, 13, 14, 16 ], "texture": "#obsidian" }, + "east": { "uv": [ 2, 13, 14, 16 ], "texture": "#obsidian" } + } + }, + { "__comment": "Inner beacon texture", + "from": [ 3, 3, 3 ], + "to": [ 13, 14, 13 ], + "faces": { + "down": { "uv": [ 3, 3, 13, 13 ], "texture": "#beacon" }, + "up": { "uv": [ 3, 3, 13, 13 ], "texture": "#beacon" }, + "north": { "uv": [ 3, 2, 13, 13 ], "texture": "#beacon" }, + "south": { "uv": [ 3, 2, 13, 13 ], "texture": "#beacon" }, + "west": { "uv": [ 3, 2, 13, 13 ], "texture": "#beacon" }, + "east": { "uv": [ 3, 2, 13, 13 ], "texture": "#beacon" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bed.json new file mode 100644 index 000000000..9406a8491 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bed.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bedrock.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bedrock.json new file mode 100644 index 000000000..adc6359e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bedrock.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/bedrock" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bedrock_mirrored.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bedrock_mirrored.json new file mode 100644 index 000000000..a75ef1fbf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bedrock_mirrored.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_mirrored_all", + "textures": { + "all": "minecraft:block/bedrock" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bee_nest_empty.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bee_nest_empty.json new file mode 100644 index 000000000..ac0aa6236 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bee_nest_empty.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/orientable_with_bottom", + "textures": { + "bottom": "minecraft:block/bee_nest_bottom", + "front": "minecraft:block/bee_nest_front", + "particle": "minecraft:block/bee_nest_side", + "side": "minecraft:block/bee_nest_side", + "top": "minecraft:block/bee_nest_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bee_nest_honey.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bee_nest_honey.json new file mode 100644 index 000000000..25850dbf4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bee_nest_honey.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/orientable_with_bottom", + "textures": { + "bottom": "minecraft:block/bee_nest_bottom", + "front": "minecraft:block/bee_nest_front_honey", + "particle": "minecraft:block/bee_nest_side", + "side": "minecraft:block/bee_nest_side", + "top": "minecraft:block/bee_nest_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beehive_empty.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beehive_empty.json new file mode 100644 index 000000000..4c875e63a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beehive_empty.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/orientable_with_bottom", + "textures": { + "bottom": "minecraft:block/beehive_end", + "front": "minecraft:block/beehive_front", + "particle": "minecraft:block/beehive_side", + "side": "minecraft:block/beehive_side", + "top": "minecraft:block/beehive_end" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beehive_honey.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beehive_honey.json new file mode 100644 index 000000000..1973867cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beehive_honey.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/orientable_with_bottom", + "textures": { + "bottom": "minecraft:block/beehive_end", + "front": "minecraft:block/beehive_front_honey", + "particle": "minecraft:block/beehive_side", + "side": "minecraft:block/beehive_side", + "top": "minecraft:block/beehive_end" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beetroots_stage0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beetroots_stage0.json new file mode 100644 index 000000000..47fbf6f82 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beetroots_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/beetroots_stage0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beetroots_stage1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beetroots_stage1.json new file mode 100644 index 000000000..06177c9c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beetroots_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/beetroots_stage1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beetroots_stage2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beetroots_stage2.json new file mode 100644 index 000000000..d843c09d2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beetroots_stage2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/beetroots_stage2" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beetroots_stage3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beetroots_stage3.json new file mode 100644 index 000000000..3fa2170b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/beetroots_stage3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/beetroots_stage3" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bell_between_walls.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bell_between_walls.json new file mode 100644 index 000000000..8e7903f36 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bell_between_walls.json @@ -0,0 +1,20 @@ +{ + "textures": { + "particle": "block/bell_bottom", + "bar": "block/dark_oak_planks" + }, + "elements": [ + { + "from": [ 0, 13, 7 ], + "to": [ 16, 15, 9 ], + "faces": { + "north": { "uv": [ 2, 2, 14, 4 ], "texture": "#bar" }, + "east": { "uv": [ 5, 4, 7, 6 ], "texture": "#bar", "cullface": "east" }, + "south": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" }, + "west": { "uv": [ 5, 4, 7, 6 ], "texture": "#bar", "cullface": "west" }, + "up": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" }, + "down": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bell_ceiling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bell_ceiling.json new file mode 100644 index 000000000..a105fb98a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bell_ceiling.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "block/bell_bottom", + "bar": "block/dark_oak_planks" + }, + "elements": [ + { + "from": [ 7, 13, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "north": {"uv": [ 7, 2, 9, 5 ], "texture": "#bar" }, + "east": {"uv": [ 1, 2, 3, 5 ], "texture": "#bar" }, + "south": {"uv": [ 6, 2, 8, 5 ], "texture": "#bar" }, + "west": {"uv": [ 4, 2, 6, 5 ], "texture": "#bar" }, + "up": {"uv": [ 1, 3, 3, 5 ], "texture": "#bar", "cullface": "up" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bell_floor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bell_floor.json new file mode 100644 index 000000000..c2abfcbd5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bell_floor.json @@ -0,0 +1,43 @@ +{ + "textures": { + "particle": "block/bell_bottom", + "bar": "block/dark_oak_planks", + "post": "block/stone" + }, + "elements": [ + { + "from": [ 2, 13, 7 ], + "to": [ 14, 15, 9 ], + "faces": { + "north": { "uv": [ 2, 2, 14, 4 ], "texture": "#bar" }, + "south": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" }, + "up": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" }, + "down": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" } + } + }, + { + "from": [ 14, 0, 6 ], + "to": [ 16, 16, 10 ], + "faces": { + "north": { "uv": [ 0, 1, 2, 16 ], "texture": "#post" }, + "east": { "uv": [ 0, 1, 4, 16 ], "texture": "#post" }, + "south": { "uv": [ 0, 1, 2, 16 ], "texture": "#post" }, + "west": { "uv": [ 0, 1, 4, 16 ], "texture": "#post" }, + "up": { "uv": [ 0, 0, 2, 4 ], "texture": "#post", "cullface": "up" }, + "down": { "uv": [ 0, 0, 2, 4 ], "texture": "#post", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 6 ], + "to": [ 2, 16, 10 ], + "faces": { + "north": { "uv": [ 0, 1, 2, 16 ], "texture": "#post" }, + "east": { "uv": [ 0, 1, 4, 16 ], "texture": "#post" }, + "south": { "uv": [ 0, 1, 2, 16 ], "texture": "#post" }, + "west": { "uv": [ 0, 1, 4, 16 ], "texture": "#post" }, + "up": { "uv": [ 0, 0, 2, 4 ], "texture": "#post","cullface": "up" }, + "down": { "uv": [ 0, 0, 2, 4 ], "texture": "#post", "cullface": "down" } + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bell_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bell_wall.json new file mode 100644 index 000000000..92927bd25 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bell_wall.json @@ -0,0 +1,20 @@ +{ + "textures": { + "particle": "block/bell_bottom", + "bar": "block/dark_oak_planks" + }, + "elements": [ + { + "from": [ 3, 13, 7 ], + "to": [ 16, 15, 9 ], + "faces": { + "north": { "uv": [ 2, 2, 14, 4 ], "texture": "#bar" }, + "east": { "uv": [ 5, 4, 7, 6 ], "texture": "#bar", "cullface": "east" }, + "south": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" }, + "west": { "uv": [ 5, 4, 7, 6 ], "texture": "#bar" }, + "up": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" }, + "down": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/big_dripleaf.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/big_dripleaf.json new file mode 100644 index 000000000..edd3947a8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/big_dripleaf.json @@ -0,0 +1,62 @@ +{ + "parent": "block/block", + "textures": { + "top": "minecraft:block/big_dripleaf_top", + "stem": "minecraft:block/big_dripleaf_stem", + "side": "minecraft:block/big_dripleaf_side", + "tip": "minecraft:block/big_dripleaf_tip", + "particle": "block/big_dripleaf_top" + }, + "elements": [ + { "from": [ 0, 15, 0 ], + "to": [ 16, 15, 16 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#top" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" } + } + }, + { "from": [ 0, 11, 0 ], + "to": [ 16, 15, 0.002 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 4 ], "texture": "#tip", "cullface": "north" }, + "south": { "uv": [ 16, 0, 0, 4 ], "texture": "#tip" } + } + }, + { "from": [ 0, 11, 0 ], + "to": [ 0.002, 15, 16 ], + "shade": false, + "faces": { + "east": { "uv": [ 16, 0, 0, 4 ], "texture": "#side" }, + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "cullface": "west" } + } + }, + { "from": [ 15.998, 11, 0 ], + "to": [ 16, 15, 16 ], + "shade": false, + "faces": { + "east": { "uv": [ 16, 0, 0, 4 ], "texture": "#side", "cullface": "east" }, + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#side" } + } + }, + { "from": [ 5, 0, 12 ], + "to": [ 11, 15, 12 ], + "rotation": { "origin": [ 8, 8, 12 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" }, + "south": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" } + } + }, + { "from": [ 5, 0, 12 ], + "to": [ 11, 15, 12 ], + "rotation": { "origin": [ 8, 8, 12 ], "axis": "y", "angle": -45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" }, + "south": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/big_dripleaf_full_tilt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/big_dripleaf_full_tilt.json new file mode 100644 index 000000000..e0ebb6d30 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/big_dripleaf_full_tilt.json @@ -0,0 +1,66 @@ +{ + "parent": "block/block", + "textures": { + "top": "minecraft:block/big_dripleaf_top", + "stem": "minecraft:block/big_dripleaf_stem", + "side": "minecraft:block/big_dripleaf_side", + "tip": "minecraft:block/big_dripleaf_tip", + "particle": "block/big_dripleaf_top" + }, + "elements": [ + { "from": [ 0, 15, 0 ], + "to": [ 16, 15, 16 ], + "rotation": { "origin": [ 8, 15, 16 ], "axis": "x", "angle": -45 }, + "shade": false, + "faces": { + "down": { "uv": [ 16, 16, 0, 0 ], "texture": "#top" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" } + } + }, + { "from": [ 0, 11, 0 ], + "to": [ 16, 15, 0 ], + "rotation": { "origin": [ 8, 15, 16 ], "axis": "x", "angle": -45 }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 4 ], "texture": "#tip" }, + "south": { "uv": [ 0, 0, 16, 4 ], "texture": "#tip" } + } + }, + { "from": [ 0, 11, 0 ], + "to": [ 0.002, 15, 16 ], + "rotation": { "origin": [ 8, 15, 16 ], "axis": "x", "angle": -45 }, + "shade": false, + "faces": { + "east": { "uv": [ 16, 0, 0, 4 ], "texture": "#side" }, + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "cullface": "west" } + } + }, + { "from": [ 15.998, 11, 0 ], + "to": [ 16, 15, 16 ], + "rotation": { "origin": [ 8, 15, 16 ], "axis": "x", "angle": -45 }, + "shade": false, + "faces": { + "east": { "uv": [ 16, 0, 0, 4 ], "texture": "#side", "cullface": "east" }, + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#side" } + } + }, + { "from": [ 5, 0, 12 ], + "to": [ 11, 15, 12 ], + "rotation": { "origin": [ 8, 8, 12 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" }, + "south": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" } + } + }, + { "from": [ 5, 0, 12 ], + "to": [ 11, 15, 12 ], + "rotation": { "origin": [ 8, 8, 12 ], "axis": "y", "angle": -45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" }, + "south": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/big_dripleaf_partial_tilt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/big_dripleaf_partial_tilt.json new file mode 100644 index 000000000..27950f59c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/big_dripleaf_partial_tilt.json @@ -0,0 +1,66 @@ +{ + "parent": "block/block", + "textures": { + "top": "minecraft:block/big_dripleaf_top", + "stem": "minecraft:block/big_dripleaf_stem", + "side": "minecraft:block/big_dripleaf_side", + "tip": "minecraft:block/big_dripleaf_tip", + "particle": "block/big_dripleaf_top" + }, + "elements": [ + { "from": [ 0, 15, 0 ], + "to": [ 16, 15, 16 ], + "rotation": { "origin": [ 8, 15, 16 ], "axis": "x", "angle": -22.5 }, + "shade": false, + "faces": { + "down": { "uv": [ 16, 16, 0, 0 ], "texture": "#top" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" } + } + }, + { "from": [ 0, 11, 0 ], + "to": [ 16, 15, 0 ], + "rotation": { "origin": [ 8, 15, 16 ], "axis": "x", "angle": -22.5 }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 4 ], "texture": "#tip" }, + "south": { "uv": [ 0, 0, 16, 4 ], "texture": "#tip" } + } + }, + { "from": [ 0, 11, 0 ], + "to": [ 0.002, 15, 16 ], + "rotation": { "origin": [ 8, 15, 16 ], "axis": "x", "angle": -22.5 }, + "shade": false, + "faces": { + "east": { "uv": [ 16, 0, 0, 4 ], "texture": "#side" }, + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "cullface": "west" } + } + }, + { "from": [ 15.998, 11, 0 ], + "to": [ 16, 15, 16 ], + "rotation": { "origin": [ 8, 15, 16 ], "axis": "x", "angle": -22.5 }, + "shade": false, + "faces": { + "east": { "uv": [ 16, 0, 0, 4 ], "texture": "#side", "cullface": "east" }, + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#side" } + } + }, + { "from": [ 5, 0, 12 ], + "to": [ 11, 15, 12 ], + "rotation": { "origin": [ 8, 8, 12 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" }, + "south": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" } + } + }, + { "from": [ 5, 0, 12 ], + "to": [ 11, 15, 12 ], + "rotation": { "origin": [ 8, 8, 12 ], "axis": "y", "angle": -45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" }, + "south": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/big_dripleaf_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/big_dripleaf_stem.json new file mode 100644 index 000000000..a40caefc3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/big_dripleaf_stem.json @@ -0,0 +1,27 @@ +{ + "parent": "block/block", + "textures": { + "stem": "block/big_dripleaf_stem", + "particle": "block/big_dripleaf_stem" + }, + "elements": [ + { "from": [ 5, 0, 12 ], + "to": [ 11, 16, 12 ], + "rotation": { "origin": [ 8, 8, 12 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" }, + "south": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" } + } + }, + { "from": [ 5, 0, 12 ], + "to": [ 11, 16, 12 ], + "rotation": { "origin": [ 8, 8, 12 ], "axis": "y", "angle": -45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" }, + "south": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_button.json new file mode 100644 index 000000000..751b7e916 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_button_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_button_inventory.json new file mode 100644 index 000000000..1f6420f5e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_button_pressed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_button_pressed.json new file mode 100644 index 000000000..e9438da29 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_bottom_left.json new file mode 100644 index 000000000..3195b3170 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/birch_door_bottom", + "top": "minecraft:block/birch_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_bottom_left_open.json new file mode 100644 index 000000000..57a880742 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/birch_door_bottom", + "top": "minecraft:block/birch_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_bottom_right.json new file mode 100644 index 000000000..f53cfdc45 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/birch_door_bottom", + "top": "minecraft:block/birch_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_bottom_right_open.json new file mode 100644 index 000000000..cd3b6b1a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/birch_door_bottom", + "top": "minecraft:block/birch_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_top_left.json new file mode 100644 index 000000000..2d337e0ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/birch_door_bottom", + "top": "minecraft:block/birch_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_top_left_open.json new file mode 100644 index 000000000..82c4d8f59 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/birch_door_bottom", + "top": "minecraft:block/birch_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_top_right.json new file mode 100644 index 000000000..953abe7f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/birch_door_bottom", + "top": "minecraft:block/birch_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_top_right_open.json new file mode 100644 index 000000000..982e3ca4d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/birch_door_bottom", + "top": "minecraft:block/birch_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_gate.json new file mode 100644 index 000000000..2e0e15669 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_gate_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_gate_open.json new file mode 100644 index 000000000..db6f4a89f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_gate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_gate_wall.json new file mode 100644 index 000000000..5402b037b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_gate_wall_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_gate_wall_open.json new file mode 100644 index 000000000..442138c09 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_inventory.json new file mode 100644 index 000000000..4ef0bc094 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_post.json new file mode 100644 index 000000000..83661438f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_side.json new file mode 100644 index 000000000..f5a12c9f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_hanging_sign.json new file mode 100644 index 000000000..53f27ad57 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_leaves.json new file mode 100644 index 000000000..6f7f331c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/birch_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_log.json new file mode 100644 index 000000000..5d43e85c1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/birch_log_top", + "side": "minecraft:block/birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_log_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_log_horizontal.json new file mode 100644 index 000000000..ce988a8e6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/birch_log_top", + "side": "minecraft:block/birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_planks.json new file mode 100644 index 000000000..de6d17576 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_pressure_plate.json new file mode 100644 index 000000000..8df007e96 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_pressure_plate_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_pressure_plate_down.json new file mode 100644 index 000000000..4b36009ea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_sapling.json new file mode 100644 index 000000000..274a3afa2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/birch_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_sign.json new file mode 100644 index 000000000..2bfa5bcfe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_slab.json new file mode 100644 index 000000000..c7fd05bc3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/birch_planks", + "side": "minecraft:block/birch_planks", + "top": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_slab_top.json new file mode 100644 index 000000000..dbde21ef9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/birch_planks", + "side": "minecraft:block/birch_planks", + "top": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_stairs.json new file mode 100644 index 000000000..e7d798fc4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/birch_planks", + "side": "minecraft:block/birch_planks", + "top": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_stairs_inner.json new file mode 100644 index 000000000..347cdb1ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/birch_planks", + "side": "minecraft:block/birch_planks", + "top": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_stairs_outer.json new file mode 100644 index 000000000..2c1faa60a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/birch_planks", + "side": "minecraft:block/birch_planks", + "top": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_trapdoor_bottom.json new file mode 100644 index 000000000..0aa6e6ab5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/birch_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_trapdoor_open.json new file mode 100644 index 000000000..041ad1780 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/birch_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_trapdoor_top.json new file mode 100644 index 000000000..838e5cff6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/birch_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_wood.json new file mode 100644 index 000000000..ab78963a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/birch_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/birch_log", + "side": "minecraft:block/birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_cake.json new file mode 100644 index 000000000..84aa73b9b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/black_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_cake_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_cake_lit.json new file mode 100644 index 000000000..8b688c4ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/black_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_four_candles.json new file mode 100644 index 000000000..e9f31ad5f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/black_candle", + "particle": "minecraft:block/black_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_four_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_four_candles_lit.json new file mode 100644 index 000000000..6c3d27421 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/black_candle_lit", + "particle": "minecraft:block/black_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_one_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_one_candle.json new file mode 100644 index 000000000..9bcb8eedc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/black_candle", + "particle": "minecraft:block/black_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_one_candle_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_one_candle_lit.json new file mode 100644 index 000000000..e04d7b15b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/black_candle_lit", + "particle": "minecraft:block/black_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_three_candles.json new file mode 100644 index 000000000..31b82ceee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/black_candle", + "particle": "minecraft:block/black_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_three_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_three_candles_lit.json new file mode 100644 index 000000000..31693bb4d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/black_candle_lit", + "particle": "minecraft:block/black_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_two_candles.json new file mode 100644 index 000000000..298bd70a3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/black_candle", + "particle": "minecraft:block/black_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_two_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_two_candles_lit.json new file mode 100644 index 000000000..5ad49a083 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/black_candle_lit", + "particle": "minecraft:block/black_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_carpet.json new file mode 100644 index 000000000..a89fa4812 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/black_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_concrete.json new file mode 100644 index 000000000..a2748b557 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/black_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_concrete_powder.json new file mode 100644 index 000000000..633743510 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/black_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_glazed_terracotta.json new file mode 100644 index 000000000..f973bbba2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/black_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_shulker_box.json new file mode 100644 index 000000000..0e74df954 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/black_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass.json new file mode 100644 index 000000000..5d66a695a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/black_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_noside.json new file mode 100644 index 000000000..bc943b0a7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/black_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..3d66b75f9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/black_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_post.json new file mode 100644 index 000000000..629860453 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/black_stained_glass_pane_top", + "pane": "minecraft:block/black_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_side.json new file mode 100644 index 000000000..d0d90d10a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/black_stained_glass_pane_top", + "pane": "minecraft:block/black_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..7c4e7c977 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/black_stained_glass_pane_top", + "pane": "minecraft:block/black_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_terracotta.json new file mode 100644 index 000000000..a8ff478c2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/black_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_wool.json new file mode 100644 index 000000000..7fea63ff5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/black_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/black_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone.json new file mode 100644 index 000000000..d6e7b5852 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/blackstone_top", + "side": "minecraft:block/blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_slab.json new file mode 100644 index 000000000..f4f7fe888 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/blackstone_top", + "side": "minecraft:block/blackstone", + "top": "minecraft:block/blackstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_slab_top.json new file mode 100644 index 000000000..7ffe490e4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/blackstone_top", + "side": "minecraft:block/blackstone", + "top": "minecraft:block/blackstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_stairs.json new file mode 100644 index 000000000..15a8eefd2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/blackstone_top", + "side": "minecraft:block/blackstone", + "top": "minecraft:block/blackstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_stairs_inner.json new file mode 100644 index 000000000..ff1597db8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/blackstone_top", + "side": "minecraft:block/blackstone", + "top": "minecraft:block/blackstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_stairs_outer.json new file mode 100644 index 000000000..130777e4e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/blackstone_top", + "side": "minecraft:block/blackstone", + "top": "minecraft:block/blackstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_wall_inventory.json new file mode 100644 index 000000000..6e8029cef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_wall_post.json new file mode 100644 index 000000000..a2b66ca3d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_wall_side.json new file mode 100644 index 000000000..152d2fe4f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_wall_side_tall.json new file mode 100644 index 000000000..3a6622549 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blackstone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blast_furnace.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blast_furnace.json new file mode 100644 index 000000000..8c8aa4501 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blast_furnace.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "front": "minecraft:block/blast_furnace_front", + "side": "minecraft:block/blast_furnace_side", + "top": "minecraft:block/blast_furnace_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blast_furnace_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blast_furnace_on.json new file mode 100644 index 000000000..4d14c0be8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blast_furnace_on.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "front": "minecraft:block/blast_furnace_front_on", + "side": "minecraft:block/blast_furnace_side", + "top": "minecraft:block/blast_furnace_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/block.json new file mode 100644 index 000000000..aefa892bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/block.json @@ -0,0 +1,35 @@ +{ + "gui_light": "side", + "display": { + "gui": { + "rotation": [ 30, 225, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 3, 0], + "scale":[ 0.25, 0.25, 0.25 ] + }, + "fixed": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.5, 0.5, 0.5 ] + }, + "thirdperson_righthand": { + "rotation": [ 75, 45, 0 ], + "translation": [ 0, 2.5, 0], + "scale": [ 0.375, 0.375, 0.375 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 45, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.40, 0.40, 0.40 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 225, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.40, 0.40, 0.40 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_cake.json new file mode 100644 index 000000000..c6ffe7206 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/blue_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_cake_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_cake_lit.json new file mode 100644 index 000000000..515e258d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/blue_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_four_candles.json new file mode 100644 index 000000000..31d0de83f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/blue_candle", + "particle": "minecraft:block/blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_four_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_four_candles_lit.json new file mode 100644 index 000000000..b71df39ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/blue_candle_lit", + "particle": "minecraft:block/blue_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_one_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_one_candle.json new file mode 100644 index 000000000..dc89790e5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/blue_candle", + "particle": "minecraft:block/blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_one_candle_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_one_candle_lit.json new file mode 100644 index 000000000..b3410f675 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/blue_candle_lit", + "particle": "minecraft:block/blue_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_three_candles.json new file mode 100644 index 000000000..e9527b984 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/blue_candle", + "particle": "minecraft:block/blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_three_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_three_candles_lit.json new file mode 100644 index 000000000..992be450a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/blue_candle_lit", + "particle": "minecraft:block/blue_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_two_candles.json new file mode 100644 index 000000000..efc0f7a27 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/blue_candle", + "particle": "minecraft:block/blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_two_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_two_candles_lit.json new file mode 100644 index 000000000..22ab088f0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/blue_candle_lit", + "particle": "minecraft:block/blue_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_carpet.json new file mode 100644 index 000000000..be41fd875 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/blue_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_concrete.json new file mode 100644 index 000000000..b2423fb60 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/blue_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_concrete_powder.json new file mode 100644 index 000000000..7ceaeb510 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/blue_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_glazed_terracotta.json new file mode 100644 index 000000000..ecb17356b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/blue_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_ice.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_ice.json new file mode 100644 index 000000000..9164aee5f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_ice.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/blue_ice" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_orchid.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_orchid.json new file mode 100644 index 000000000..a7f9b4b26 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_orchid.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/blue_orchid" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_shulker_box.json new file mode 100644 index 000000000..29b739d85 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/blue_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass.json new file mode 100644 index 000000000..e372ce34e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_noside.json new file mode 100644 index 000000000..fa1dd06d2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..70faad046 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_post.json new file mode 100644 index 000000000..6c778945f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/blue_stained_glass_pane_top", + "pane": "minecraft:block/blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_side.json new file mode 100644 index 000000000..e88321ef7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/blue_stained_glass_pane_top", + "pane": "minecraft:block/blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..b891c7179 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/blue_stained_glass_pane_top", + "pane": "minecraft:block/blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_terracotta.json new file mode 100644 index 000000000..ead569747 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/blue_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_wool.json new file mode 100644 index 000000000..4fb7fa5b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/blue_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/blue_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bone_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bone_block.json new file mode 100644 index 000000000..f6594f0d3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bone_block.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/bone_block_top", + "side": "minecraft:block/bone_block_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bookshelf.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bookshelf.json new file mode 100644 index 000000000..c095a7d7e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bookshelf.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/oak_planks", + "side": "minecraft:block/bookshelf" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brain_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brain_coral.json new file mode 100644 index 000000000..308083fc1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brain_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/brain_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brain_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brain_coral_block.json new file mode 100644 index 000000000..6e7ddb618 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brain_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/brain_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brain_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brain_coral_fan.json new file mode 100644 index 000000000..a2128699c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brain_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/brain_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brain_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brain_coral_wall_fan.json new file mode 100644 index 000000000..20b561031 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brain_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/brain_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand.json new file mode 100644 index 000000000..809d3d88b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand.json @@ -0,0 +1,53 @@ +{ + "textures": { + "particle": "block/brewing_stand", + "base": "block/brewing_stand_base", + "stand": "block/brewing_stand" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 14, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 9 ], "texture": "#stand" }, + "up": { "uv": [ 7, 7, 9, 9 ], "texture": "#stand" }, + "north": { "uv": [ 7, 2, 9, 16 ], "texture": "#stand" }, + "south": { "uv": [ 7, 2, 9, 16 ], "texture": "#stand" }, + "west": { "uv": [ 7, 2, 9, 16 ], "texture": "#stand" }, + "east": { "uv": [ 7, 2, 9, 16 ], "texture": "#stand" } + } + }, + { "from": [ 9, 0, 5 ], + "to": [ 15, 2, 11 ], + "faces": { + "down": { "uv": [ 9, 5, 15, 11 ], "texture": "#base", "cullface": "down" }, + "up": { "uv": [ 9, 5, 15, 11 ], "texture": "#base" }, + "north": { "uv": [ 9, 14, 15, 16 ], "texture": "#base" }, + "south": { "uv": [ 9, 14, 15, 16 ], "texture": "#base" }, + "west": { "uv": [ 5, 14, 11, 16 ], "texture": "#base" }, + "east": { "uv": [ 5, 14, 11, 16 ], "texture": "#base" } + } + }, + { "from": [ 1, 0, 1 ], + "to": [ 7, 2, 7 ], + "faces": { + "down": { "uv": [ 1, 1, 7, 7 ], "texture": "#base", "cullface": "down" }, + "up": { "uv": [ 1, 1, 7, 7 ], "texture": "#base" }, + "north": { "uv": [ 1, 14, 7, 16 ], "texture": "#base" }, + "south": { "uv": [ 1, 14, 7, 16 ], "texture": "#base" }, + "west": { "uv": [ 1, 14, 7, 16 ], "texture": "#base" }, + "east": { "uv": [ 1, 14, 7, 16 ], "texture": "#base" } + } + }, + { "from": [ 1, 0, 9 ], + "to": [ 7, 2, 15 ], + "faces": { + "down": { "uv": [ 1, 9, 7, 15 ], "texture": "#base", "cullface": "down" }, + "up": { "uv": [ 1, 9, 7, 15 ], "texture": "#base" }, + "north": { "uv": [ 1, 14, 7, 16 ], "texture": "#base" }, + "south": { "uv": [ 1, 14, 7, 16 ], "texture": "#base" }, + "west": { "uv": [ 9, 14, 15, 16 ], "texture": "#base" }, + "east": { "uv": [ 9, 14, 15, 16 ], "texture": "#base" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle0.json new file mode 100644 index 000000000..012ffa85e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle0.json @@ -0,0 +1,15 @@ +{ + "textures": { + "particle": "block/brewing_stand", + "stand": "block/brewing_stand" + }, + "elements": [ + { "from": [ 8, 0, 8 ], + "to": [ 16, 16, 8 ], + "faces": { + "north": { "uv": [ 0, 0, 8, 16 ], "texture": "#stand" }, + "south": { "uv": [ 8, 0, 0, 16 ], "texture": "#stand" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle1.json new file mode 100644 index 000000000..9e989cdee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle1.json @@ -0,0 +1,20 @@ +{ + "textures": { + "particle": "block/brewing_stand", + "stand": "block/brewing_stand" + }, + "elements": [ + { "from": [ -0.41, 0, 8 ], + "to": [ 7.59, 16, 8 ], + "rotation": { + "origin": [ 8, 8, 8 ], + "axis": "y", + "angle": -45 + }, + "faces": { + "north": { "uv": [ 8, 0, 0, 16 ], "texture": "#stand" }, + "south": { "uv": [ 0, 0, 8, 16 ], "texture": "#stand" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle2.json new file mode 100644 index 000000000..4796f71fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle2.json @@ -0,0 +1,20 @@ +{ + "textures": { + "particle": "block/brewing_stand", + "stand": "block/brewing_stand" + }, + "elements": [ + { "from": [ -0.41, 0, 8 ], + "to": [ 7.59, 16, 8 ], + "rotation": { + "origin": [ 8, 8, 8 ], + "axis": "y", + "angle": 45 + }, + "faces": { + "north": { "uv": [ 8, 0, 0, 16 ], "texture": "#stand" }, + "south": { "uv": [ 0, 0, 8, 16 ], "texture": "#stand" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_empty0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_empty0.json new file mode 100644 index 000000000..a99c90ccd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_empty0.json @@ -0,0 +1,15 @@ +{ + "textures": { + "particle": "block/brewing_stand", + "stand": "block/brewing_stand" + }, + "elements": [ + { "from": [ 8, 0, 8 ], + "to": [ 16, 16, 8 ], + "faces": { + "north": { "uv": [ 16, 0, 8, 16 ], "texture": "#stand" }, + "south": { "uv": [ 8, 0, 16, 16 ], "texture": "#stand" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_empty1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_empty1.json new file mode 100644 index 000000000..0936497ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_empty1.json @@ -0,0 +1,20 @@ +{ + "textures": { + "particle": "block/brewing_stand", + "stand": "block/brewing_stand" + }, + "elements": [ + { "from": [ -0.41, 0, 8 ], + "to": [ 7.59, 16, 8 ], + "rotation": { + "origin": [ 8, 8, 8 ], + "axis": "y", + "angle": -45 + }, + "faces": { + "north": { "uv": [ 8, 0, 16, 16 ], "texture": "#stand" }, + "south": { "uv": [ 16, 0, 8, 16 ], "texture": "#stand" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_empty2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_empty2.json new file mode 100644 index 000000000..50b948d07 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brewing_stand_empty2.json @@ -0,0 +1,20 @@ +{ + "textures": { + "particle": "block/brewing_stand", + "stand": "block/brewing_stand" + }, + "elements": [ + { "from": [ -0.41, 0, 8 ], + "to": [ 7.59, 16, 8 ], + "rotation": { + "origin": [ 8, 8, 8 ], + "axis": "y", + "angle": 45 + }, + "faces": { + "north": { "uv": [ 8, 0, 16, 16 ], "texture": "#stand" }, + "south": { "uv": [ 16, 0, 8, 16 ], "texture": "#stand" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_slab.json new file mode 100644 index 000000000..d068166aa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/bricks", + "side": "minecraft:block/bricks", + "top": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_slab_top.json new file mode 100644 index 000000000..1e68c3b7a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/bricks", + "side": "minecraft:block/bricks", + "top": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_stairs.json new file mode 100644 index 000000000..675b07750 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/bricks", + "side": "minecraft:block/bricks", + "top": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_stairs_inner.json new file mode 100644 index 000000000..737219ad2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/bricks", + "side": "minecraft:block/bricks", + "top": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_stairs_outer.json new file mode 100644 index 000000000..977459dd7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/bricks", + "side": "minecraft:block/bricks", + "top": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_wall_inventory.json new file mode 100644 index 000000000..5d6f8a8f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_wall_post.json new file mode 100644 index 000000000..5d343dfe2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_wall_side.json new file mode 100644 index 000000000..94872eff5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_wall_side_tall.json new file mode 100644 index 000000000..798399827 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bricks.json new file mode 100644 index 000000000..b3d7b55b5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_cake.json new file mode 100644 index 000000000..baf53dddd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/brown_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_cake_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_cake_lit.json new file mode 100644 index 000000000..cdb2b4918 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/brown_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_four_candles.json new file mode 100644 index 000000000..a203e8f7f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/brown_candle", + "particle": "minecraft:block/brown_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_four_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_four_candles_lit.json new file mode 100644 index 000000000..3fb0766dd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/brown_candle_lit", + "particle": "minecraft:block/brown_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_one_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_one_candle.json new file mode 100644 index 000000000..24d97d5a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/brown_candle", + "particle": "minecraft:block/brown_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_one_candle_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_one_candle_lit.json new file mode 100644 index 000000000..571ef6e35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/brown_candle_lit", + "particle": "minecraft:block/brown_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_three_candles.json new file mode 100644 index 000000000..a0ff176ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/brown_candle", + "particle": "minecraft:block/brown_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_three_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_three_candles_lit.json new file mode 100644 index 000000000..5a51f463f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/brown_candle_lit", + "particle": "minecraft:block/brown_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_two_candles.json new file mode 100644 index 000000000..aaa9dca04 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/brown_candle", + "particle": "minecraft:block/brown_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_two_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_two_candles_lit.json new file mode 100644 index 000000000..6cae28b41 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/brown_candle_lit", + "particle": "minecraft:block/brown_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_carpet.json new file mode 100644 index 000000000..1befa6252 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/brown_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_concrete.json new file mode 100644 index 000000000..217098d98 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/brown_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_concrete_powder.json new file mode 100644 index 000000000..d095ddf0a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/brown_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_glazed_terracotta.json new file mode 100644 index 000000000..4d70d0adf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/brown_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_mushroom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_mushroom.json new file mode 100644 index 000000000..488139305 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_mushroom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/brown_mushroom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_mushroom_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_mushroom_block.json new file mode 100644 index 000000000..5ce72be64 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_mushroom_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_single_face", + "textures": { + "texture": "minecraft:block/brown_mushroom_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_mushroom_block_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_mushroom_block_inventory.json new file mode 100644 index 000000000..8062fcee8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_mushroom_block_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/brown_mushroom_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_shulker_box.json new file mode 100644 index 000000000..b7118090d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/brown_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass.json new file mode 100644 index 000000000..cb8975b29 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/brown_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_noside.json new file mode 100644 index 000000000..3b43194ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/brown_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..594f3059a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/brown_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_post.json new file mode 100644 index 000000000..0299f4362 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/brown_stained_glass_pane_top", + "pane": "minecraft:block/brown_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_side.json new file mode 100644 index 000000000..5e06559fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/brown_stained_glass_pane_top", + "pane": "minecraft:block/brown_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..c5cc30eb0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/brown_stained_glass_pane_top", + "pane": "minecraft:block/brown_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_terracotta.json new file mode 100644 index 000000000..4bbb7fe74 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/brown_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_wool.json new file mode 100644 index 000000000..25c884291 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/brown_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/brown_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bubble_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bubble_coral.json new file mode 100644 index 000000000..b0f75a330 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bubble_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/bubble_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bubble_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bubble_coral_block.json new file mode 100644 index 000000000..fc5708cdb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bubble_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/bubble_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bubble_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bubble_coral_fan.json new file mode 100644 index 000000000..5f6d2d2b4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bubble_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/bubble_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bubble_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bubble_coral_wall_fan.json new file mode 100644 index 000000000..b13aa967f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bubble_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/bubble_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/budding_amethyst.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/budding_amethyst.json new file mode 100644 index 000000000..48efc25ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/budding_amethyst.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/budding_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bush.json new file mode 100644 index 000000000..e58ffca26 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/bush.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/bush" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/button.json new file mode 100644 index 000000000..b3dc8a56e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/button.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 5, 0, 6 ], + "to": [ 11, 2, 10 ], + "faces": { + "down": { "uv": [ 5, 6, 11, 10 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 5, 6, 11, 10 ], "texture": "#texture" }, + "north": { "uv": [ 5, 14, 11, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5, 14, 11, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6, 14, 10, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6, 14, 10, 16 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/button_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/button_inventory.json new file mode 100644 index 000000000..7a13742db --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/button_inventory.json @@ -0,0 +1,18 @@ +{ "parent": "block/block", + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 5, 6, 6 ], + "to": [ 11, 10, 10 ], + "faces": { + "down": { "uv": [ 5, 6, 11, 10 ], "texture": "#texture" }, + "up": { "uv": [ 5, 10, 11, 6 ], "texture": "#texture" }, + "north": { "uv": [ 5, 12, 11, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5, 12, 11, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6, 12, 10, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6, 12, 10, 16 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/button_pressed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/button_pressed.json new file mode 100644 index 000000000..a4da58f6a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/button_pressed.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 5, 0, 6 ], + "to": [ 11, 1.02, 10 ], + "faces": { + "down": { "uv": [ 5, 6, 11, 10 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 5, 6, 11, 10 ], "texture": "#texture" }, + "north": { "uv": [ 5, 14, 11, 15 ], "texture": "#texture" }, + "south": { "uv": [ 5, 14, 11, 15 ], "texture": "#texture" }, + "west": { "uv": [ 6, 14, 10, 15 ], "texture": "#texture" }, + "east": { "uv": [ 6, 14, 10, 15 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cactus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cactus.json new file mode 100644 index 000000000..d8e205478 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cactus.json @@ -0,0 +1,31 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/cactus_side", + "bottom": "block/cactus_bottom", + "top": "block/cactus_top", + "side": "block/cactus_side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "up" } + } + }, + { "from": [ 0, 0, 1 ], + "to": [ 16, 16, 15 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#side" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#side" } + } + }, + { "from": [ 1, 0, 0 ], + "to": [ 15, 16, 16 ], + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#side" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cactus_flower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cactus_flower.json new file mode 100644 index 000000000..541d458c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cactus_flower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/cactus_flower" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake.json new file mode 100644 index 000000000..1bc93473e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake.json @@ -0,0 +1,21 @@ +{ + "textures": { + "particle": "block/cake_side", + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "side": "block/cake_side" + }, + "elements": [ + { "from": [ 1, 0, 1 ], + "to": [ 15, 8, 15 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice1.json new file mode 100644 index 000000000..ca6d8d85e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice1.json @@ -0,0 +1,22 @@ +{ + "textures": { + "particle": "block/cake_side", + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { "from": [ 3, 0, 1 ], + "to": [ 15, 8, 15 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#inside" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice2.json new file mode 100644 index 000000000..7714c0d09 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice2.json @@ -0,0 +1,22 @@ +{ + "textures": { + "particle": "block/cake_side", + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { "from": [ 5, 0, 1 ], + "to": [ 15, 8, 15 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#inside" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice3.json new file mode 100644 index 000000000..8d45a88a7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice3.json @@ -0,0 +1,22 @@ +{ + "textures": { + "particle": "block/cake_side", + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { "from": [ 7, 0, 1 ], + "to": [ 15, 8, 15 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#inside" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice4.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice4.json new file mode 100644 index 000000000..00bab48eb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice4.json @@ -0,0 +1,22 @@ +{ + "textures": { + "particle": "block/cake_side", + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { "from": [ 9, 0, 1 ], + "to": [ 15, 8, 15 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#inside" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice5.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice5.json new file mode 100644 index 000000000..518af8385 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice5.json @@ -0,0 +1,22 @@ +{ + "textures": { + "particle": "block/cake_side", + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { "from": [ 11, 0, 1 ], + "to": [ 15, 8, 15 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#inside" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice6.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice6.json new file mode 100644 index 000000000..97151ba5f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cake_slice6.json @@ -0,0 +1,22 @@ +{ + "textures": { + "particle": "block/cake_side", + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { "from": [ 13, 0, 1 ], + "to": [ 15, 8, 15 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#inside" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/calcite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/calcite.json new file mode 100644 index 000000000..1bb92ad4e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/calcite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/calcite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor.json new file mode 100644 index 000000000..97b007ac4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor.json @@ -0,0 +1,100 @@ +{ + "parent": "block/block", + "gui_light": "front", + "display": { + "gui": { + "rotation": [ 30, 45, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "head": { + "rotation": [ 0, -180, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ] + }, + "thirdperson_lefthand": { + "rotation": [ 75, -45, 0 ], + "translation": [ 0, 2.5, 0], + "scale": [ 0.375, 0.375, 0.375 ] + } + }, + "textures": { + "amethyst": "block/calibrated_sculk_sensor_amethyst", + "bottom": "block/sculk_sensor_bottom", + "side": "block/sculk_sensor_side", + "calibrated_side": "block/calibrated_sculk_sensor_input_side", + "tendrils": "block/sculk_sensor_tendril_inactive", + "top": "block/calibrated_sculk_sensor_top", + "particle": "block/sculk_sensor_bottom" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 8, 16], + "faces": { + "north": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "north"}, + "east": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "east"}, + "south": {"uv": [0, 8, 16, 16], "texture": "#calibrated_side", "cullface": "south"}, + "west": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#top"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [-1, 8, 3], + "to": [7, 16, 3], + "rotation": {"angle": 45, "axis": "y", "origin": [3, 12, 3]}, + "faces": { + "north": {"uv": [4, 8, 12, 16], "texture": "#tendrils" }, + "south": {"uv": [12, 8, 4, 16], "texture": "#tendrils" } + } + }, + { + "from": [9, 8, 3], + "to": [17, 16, 3], + "rotation": {"angle": -45, "axis": "y", "origin": [13, 12, 3]}, + "faces": { + "north": {"uv": [12, 8, 4, 16], "texture": "#tendrils" }, + "south": {"uv": [4, 8, 12, 16], "texture": "#tendrils" } + } + }, + { + "from": [9, 8, 13], + "to": [17, 16, 13], + "rotation": {"angle": 45, "axis": "y", "origin": [13, 12, 13]}, + "faces": { + "north": {"uv": [12, 8, 4, 16], "texture": "#tendrils" }, + "south": {"uv": [4, 8, 12, 16], "texture": "#tendrils" } + } + }, + { + "from": [-1, 8, 13], + "to": [7, 16, 13], + "rotation": {"angle": -45, "axis": "y", "origin": [3, 12, 13]}, + "faces": { + "north": {"uv": [4, 8, 12, 16], "texture": "#tendrils" }, + "south": {"uv": [12, 8, 4, 16], "texture": "#tendrils" } + } + }, + { + "from": [8, 8, 0], + "to": [8, 20, 16], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 9, 8], "rescale": true}, + "shade": false, + "faces": { + "east": {"uv": [0, 4, 16, 16], "texture": "#amethyst"}, + "west": {"uv": [0, 4, 16, 16], "texture": "#amethyst"} + } + }, + { + "from": [0, 8, 8], + "to": [16, 20, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 9, 8], "rescale": true}, + "shade": false, + "faces": { + "north": {"uv": [0, 4, 16, 16], "texture": "#amethyst"}, + "south": {"uv": [0, 4, 16, 16], "texture": "#amethyst"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor_active.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor_active.json new file mode 100644 index 000000000..e43241c59 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor_active.json @@ -0,0 +1,6 @@ +{ + "parent": "block/calibrated_sculk_sensor", + "textures": { + "tendrils": "block/sculk_sensor_tendril_active" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor_inactive.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor_inactive.json new file mode 100644 index 000000000..4976cf8b0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor_inactive.json @@ -0,0 +1,6 @@ +{ + "parent": "block/calibrated_sculk_sensor", + "textures": { + "tendrils": "block/sculk_sensor_tendril_inactive" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/campfire.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/campfire.json new file mode 100644 index 000000000..ff5db784e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/campfire.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_campfire", + "textures": { + "fire": "minecraft:block/campfire_fire", + "lit_log": "minecraft:block/campfire_log_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/campfire_off.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/campfire_off.json new file mode 100644 index 000000000..9dc54761d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/campfire_off.json @@ -0,0 +1,74 @@ +{ + "parent": "block/block", + "display": { + "head": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 10.5, 0 ], + "scale":[ 1, 1, 1 ] + } + }, + "textures": { + "particle": "block/campfire_log", + "log": "block/campfire_log" + }, + "elements": [ + { + "from": [ 1, 0, 0 ], + "to": [ 5, 4, 16 ], + "faces": { + "north": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "north" }, + "east": { "uv": [ 0, 1, 16, 5 ], "texture": "#log" }, + "south": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "south" }, + "west": { "uv": [ 16, 0, 0, 4 ], "texture": "#log" }, + "up": { "uv": [ 0, 0, 16, 4 ], "rotation": 90, "texture": "#log" }, + "down": { "uv": [ 0, 0, 16, 4 ], "rotation": 90, "texture": "#log", "cullface": "down" } + } + }, + { + "from": [ 0, 3, 11 ], + "to": [ 16, 7, 15 ], + "faces": { + "north": { "uv": [ 16, 0, 0, 4 ], "texture": "#log" }, + "east": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "east" }, + "south": { "uv": [ 0, 0, 16, 4 ], "texture": "#log" }, + "west": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "west" }, + "up": { "uv": [ 0, 0, 16, 4 ], "rotation": 180, "texture": "#log" }, + "down": { "uv": [ 0, 0, 16, 4 ], "texture": "#log" } + } + }, + { + "from": [ 11, 0, 0 ], + "to": [ 15, 4, 16 ], + "faces": { + "north": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "north" }, + "east": { "uv": [ 0, 0, 16, 4 ], "texture": "#log" }, + "south": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "south" }, + "west": { "uv": [ 16, 1, 0, 5 ], "texture": "#log" }, + "up": { "uv": [ 0, 0, 16, 4 ], "rotation": 90, "texture": "#log" }, + "down": { "uv": [ 0, 0, 16, 4 ], "rotation": 90, "texture": "#log", "cullface": "down" } + } + }, + { + "from": [ 0, 3, 1 ], + "to": [ 16, 7, 5 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 4 ], "texture": "#log" }, + "east": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "east" }, + "south": { "uv": [ 16, 0, 0, 4 ], "texture": "#log" }, + "west": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "west" }, + "up": { "uv": [ 0, 0, 16, 4 ], "rotation": 180, "texture": "#log" }, + "down": { "uv": [ 0, 0, 16, 4 ], "texture": "#log" } + } + }, + { + "from": [ 5, 0, 0 ], + "to": [ 11, 1, 16 ], + "faces": { + "north": {"uv": [ 0, 15, 6, 16 ], "texture": "#log", "cullface": "north" }, + "south": {"uv": [ 10, 15, 16, 16 ], "texture": "#log", "cullface": "south" }, + "up": {"uv": [ 0, 8, 16, 14 ], "rotation": 90, "texture": "#log" }, + "down": {"uv": [ 0, 8, 16, 14 ], "rotation": 90, "texture": "#log", "cullface": "down" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_cake.json new file mode 100644 index 000000000..56b23bf19 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_cake_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_cake_lit.json new file mode 100644 index 000000000..a0c980086 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_four_candles.json new file mode 100644 index 000000000..90eb7a433 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/candle", + "particle": "minecraft:block/candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_four_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_four_candles_lit.json new file mode 100644 index 000000000..00070da2f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/candle_lit", + "particle": "minecraft:block/candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_one_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_one_candle.json new file mode 100644 index 000000000..36c9b7672 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/candle", + "particle": "minecraft:block/candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_one_candle_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_one_candle_lit.json new file mode 100644 index 000000000..c66fbdad2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/candle_lit", + "particle": "minecraft:block/candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_three_candles.json new file mode 100644 index 000000000..b40569167 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/candle", + "particle": "minecraft:block/candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_three_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_three_candles_lit.json new file mode 100644 index 000000000..e706c7bd6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/candle_lit", + "particle": "minecraft:block/candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_two_candles.json new file mode 100644 index 000000000..cda5223f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/candle", + "particle": "minecraft:block/candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_two_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_two_candles_lit.json new file mode 100644 index 000000000..5c3618b17 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/candle_lit", + "particle": "minecraft:block/candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carpet.json new file mode 100644 index 000000000..b52a11054 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carpet.json @@ -0,0 +1,19 @@ +{ + "parent": "block/thin_block", + "textures": { + "particle": "#wool" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 1, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#wool", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#wool" }, + "north": { "uv": [ 0, 15, 16, 16 ], "texture": "#wool", "cullface": "north" }, + "south": { "uv": [ 0, 15, 16, 16 ], "texture": "#wool", "cullface": "south" }, + "west": { "uv": [ 0, 15, 16, 16 ], "texture": "#wool", "cullface": "west" }, + "east": { "uv": [ 0, 15, 16, 16 ], "texture": "#wool", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carrots_stage0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carrots_stage0.json new file mode 100644 index 000000000..f1dcc6e64 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carrots_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/carrots_stage0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carrots_stage1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carrots_stage1.json new file mode 100644 index 000000000..dda9356ea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carrots_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/carrots_stage1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carrots_stage2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carrots_stage2.json new file mode 100644 index 000000000..ffc0a5596 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carrots_stage2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/carrots_stage2" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carrots_stage3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carrots_stage3.json new file mode 100644 index 000000000..aeb7406a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carrots_stage3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/carrots_stage3" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cartography_table.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cartography_table.json new file mode 100644 index 000000000..770c10613 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cartography_table.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "down": "minecraft:block/dark_oak_planks", + "east": "minecraft:block/cartography_table_side3", + "north": "minecraft:block/cartography_table_side3", + "particle": "minecraft:block/cartography_table_side3", + "south": "minecraft:block/cartography_table_side1", + "up": "minecraft:block/cartography_table_top", + "west": "minecraft:block/cartography_table_side2" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carved_pumpkin.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carved_pumpkin.json new file mode 100644 index 000000000..69975acec --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/carved_pumpkin.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "front": "minecraft:block/carved_pumpkin", + "side": "minecraft:block/pumpkin_side", + "top": "minecraft:block/pumpkin_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cauldron.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cauldron.json new file mode 100644 index 000000000..788da3e14 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cauldron.json @@ -0,0 +1,148 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cauldron_side", + "top": "block/cauldron_top", + "bottom": "block/cauldron_bottom", + "side": "block/cauldron_side", + "inside": "block/cauldron_inner" + }, + "elements": [ + { + "from": [ 0, 3, 0 ], + "to": [ 2, 16, 16 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 2 ], + "to": [ 14, 4, 14 ], + "faces": { + "up": { "texture": "#inside" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 14, 3, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 0 ], + "to": [ 14, 16, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 14 ], + "to": [ 14, 16, 16 ], + "faces": { + "north": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 0, 0, 0 ], + "to": [ 4, 3, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 2 ], + "to": [ 2, 3, 4 ], + "faces": { + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 12, 0, 0 ], + "to": [ 16, 3, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 14, 0, 2 ], + "to": [ 16, 3, 4 ], + "faces": { + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 14 ], + "to": [ 4, 3, 16 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 12 ], + "to": [ 2, 3, 14 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 12, 0, 14 ], + "to": [ 16, 3, 16 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 14, 0, 12 ], + "to": [ 16, 3, 14 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cave_vines.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cave_vines.json new file mode 100644 index 000000000..96aafbf7c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cave_vines.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/cave_vines" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cave_vines_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cave_vines_lit.json new file mode 100644 index 000000000..55dd17a5f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cave_vines_lit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/cave_vines_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cave_vines_plant.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cave_vines_plant.json new file mode 100644 index 000000000..c0eb5e115 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cave_vines_plant.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/cave_vines_plant" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cave_vines_plant_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cave_vines_plant_lit.json new file mode 100644 index 000000000..e6d54de05 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cave_vines_plant_lit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/cave_vines_plant_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chain.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chain.json new file mode 100644 index 000000000..56d42c1e5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chain.json @@ -0,0 +1,29 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/chain", + "all": "block/chain" + }, + "elements": [ + { + "from": [ 6.5, 0, 8 ], + "to": [ 9.5, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45}, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#all" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#all" } + } + }, + { + "from": [ 8, 0, 6.5 ], + "to": [ 8, 16, 9.5 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45}, + "shade": false, + "faces": { + "west": { "uv": [ 6, 0, 3, 16 ], "texture": "#all" }, + "east": { "uv": [ 3, 0, 6, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chain_command_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chain_command_block.json new file mode 100644 index 000000000..bdb3d96ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chain_command_block.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_command_block", + "textures": { + "back": "minecraft:block/chain_command_block_back", + "front": "minecraft:block/chain_command_block_front", + "side": "minecraft:block/chain_command_block_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chain_command_block_conditional.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chain_command_block_conditional.json new file mode 100644 index 000000000..ebde0eea8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chain_command_block_conditional.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_command_block", + "textures": { + "back": "minecraft:block/chain_command_block_back", + "front": "minecraft:block/chain_command_block_front", + "side": "minecraft:block/chain_command_block_conditional" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_button.json new file mode 100644 index 000000000..4c064ed8b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_button_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_button_inventory.json new file mode 100644 index 000000000..01ff173a3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_button_pressed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_button_pressed.json new file mode 100644 index 000000000..a2f61179e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_left.json new file mode 100644 index 000000000..e0222a5d6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/cherry_door_bottom", + "top": "minecraft:block/cherry_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_left_open.json new file mode 100644 index 000000000..b89b5f1d2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/cherry_door_bottom", + "top": "minecraft:block/cherry_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_right.json new file mode 100644 index 000000000..81de9910a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/cherry_door_bottom", + "top": "minecraft:block/cherry_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_right_open.json new file mode 100644 index 000000000..8418377be --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/cherry_door_bottom", + "top": "minecraft:block/cherry_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_top_left.json new file mode 100644 index 000000000..c2e28c4e6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/cherry_door_bottom", + "top": "minecraft:block/cherry_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_top_left_open.json new file mode 100644 index 000000000..bedf29f58 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/cherry_door_bottom", + "top": "minecraft:block/cherry_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_top_right.json new file mode 100644 index 000000000..c5daf1b11 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/cherry_door_bottom", + "top": "minecraft:block/cherry_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_top_right_open.json new file mode 100644 index 000000000..9b83a413f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/cherry_door_bottom", + "top": "minecraft:block/cherry_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_gate.json new file mode 100644 index 000000000..677178b41 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_open.json new file mode 100644 index 000000000..36fbcb38c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_wall.json new file mode 100644 index 000000000..7e1af4407 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_wall_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_wall_open.json new file mode 100644 index 000000000..537d8dec1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_inventory.json new file mode 100644 index 000000000..a4a3b42d8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_post.json new file mode 100644 index 000000000..ef669564d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_side.json new file mode 100644 index 000000000..63a0c0642 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_hanging_sign.json new file mode 100644 index 000000000..fd3dc826e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_leaves.json new file mode 100644 index 000000000..1a87b03e1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/cherry_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_log.json new file mode 100644 index 000000000..d63b1d098 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/cherry_log_top", + "side": "minecraft:block/cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_log_x.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_log_x.json new file mode 100644 index 000000000..168310ec1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_log_x.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_x", + "textures": { + "end": "minecraft:block/cherry_log_top", + "side": "minecraft:block/cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_log_y.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_log_y.json new file mode 100644 index 000000000..9d83df748 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_log_y.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_y", + "textures": { + "end": "minecraft:block/cherry_log_top", + "side": "minecraft:block/cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_log_z.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_log_z.json new file mode 100644 index 000000000..15a529b37 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_log_z.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_z", + "textures": { + "end": "minecraft:block/cherry_log_top", + "side": "minecraft:block/cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_planks.json new file mode 100644 index 000000000..dd0b35902 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_pressure_plate.json new file mode 100644 index 000000000..d25b89dfa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_pressure_plate_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_pressure_plate_down.json new file mode 100644 index 000000000..0e9c0625f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_sapling.json new file mode 100644 index 000000000..a566dacdd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/cherry_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_sign.json new file mode 100644 index 000000000..3165e0892 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_slab.json new file mode 100644 index 000000000..a47748843 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/cherry_planks", + "side": "minecraft:block/cherry_planks", + "top": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_slab_top.json new file mode 100644 index 000000000..4c8f8a224 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/cherry_planks", + "side": "minecraft:block/cherry_planks", + "top": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_stairs.json new file mode 100644 index 000000000..1e0a17a9e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/cherry_planks", + "side": "minecraft:block/cherry_planks", + "top": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_stairs_inner.json new file mode 100644 index 000000000..0c4f7a42c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/cherry_planks", + "side": "minecraft:block/cherry_planks", + "top": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_stairs_outer.json new file mode 100644 index 000000000..ce1dce980 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/cherry_planks", + "side": "minecraft:block/cherry_planks", + "top": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_bottom.json new file mode 100644 index 000000000..3efdd1846 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/cherry_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_open.json new file mode 100644 index 000000000..6a5dc8697 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/cherry_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_top.json new file mode 100644 index 000000000..c74af6283 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/cherry_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_wood.json new file mode 100644 index 000000000..dbe5274e4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cherry_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/cherry_log", + "side": "minecraft:block/cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chest.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chest.json new file mode 100644 index 000000000..9406a8491 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chest.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chipped_anvil.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chipped_anvil.json new file mode 100644 index 000000000..57719879c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chipped_anvil.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_anvil", + "textures": { + "top": "minecraft:block/chipped_anvil_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf.json new file mode 100644 index 000000000..a9bda72e1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf.json @@ -0,0 +1,22 @@ +{ + "parent": "block/block", + "textures": { + "top": "block/chiseled_bookshelf_top", + "side": "block/chiseled_bookshelf_side", + "particle": "#top" + }, + "elements": [ + { + "name": "chiseled_bookshelf_body", + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "east": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "south"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#top", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#top", "cullface": "down"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_left.json new file mode 100644 index 000000000..1d68ce3b8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_left.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_bottom_left", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_empty" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_mid.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_mid.json new file mode 100644 index 000000000..b3a2dc572 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_mid.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_bottom_mid", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_empty" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_right.json new file mode 100644 index 000000000..8fb59f5ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_right.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_bottom_right", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_empty" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_left.json new file mode 100644 index 000000000..2b9817062 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_left.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_top_left", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_empty" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_mid.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_mid.json new file mode 100644 index 000000000..19f44bc16 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_mid.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_top_mid", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_empty" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_right.json new file mode 100644 index 000000000..778d8873b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_right.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_top_right", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_empty" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_inventory.json new file mode 100644 index 000000000..81cf4e910 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_inventory.json @@ -0,0 +1,24 @@ +{ + "parent": "block/block", + "textures": { + "top": "block/chiseled_bookshelf_top", + "side": "block/chiseled_bookshelf_side", + "front": "block/chiseled_bookshelf_empty", + "particle": "#top" + }, + "elements": [ + { + "name": "chiseled_bookshelf_body", + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#front"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#side"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#side"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#side"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#top"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#top"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_left.json new file mode 100644 index 000000000..69046e17d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_left.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_bottom_left", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_occupied" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_mid.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_mid.json new file mode 100644 index 000000000..f7b23147a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_mid.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_bottom_mid", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_occupied" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_right.json new file mode 100644 index 000000000..4d7ce5bc7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_right.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_bottom_right", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_occupied" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_left.json new file mode 100644 index 000000000..85331c01d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_left.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_top_left", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_occupied" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_mid.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_mid.json new file mode 100644 index 000000000..058eefc5b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_mid.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_top_mid", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_occupied" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_right.json new file mode 100644 index 000000000..d71c97ce7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_right.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_top_right", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_occupied" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_copper.json new file mode 100644 index 000000000..5baeb4402 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/chiseled_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_deepslate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_deepslate.json new file mode 100644 index 000000000..727cdc98c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_deepslate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/chiseled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_nether_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_nether_bricks.json new file mode 100644 index 000000000..c66e73c6c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_nether_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/chiseled_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_polished_blackstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_polished_blackstone.json new file mode 100644 index 000000000..4b0db517c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_polished_blackstone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/chiseled_polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_quartz_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_quartz_block.json new file mode 100644 index 000000000..562af81e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_quartz_block.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/chiseled_quartz_block_top", + "side": "minecraft:block/chiseled_quartz_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_red_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_red_sandstone.json new file mode 100644 index 000000000..d33075b1e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_red_sandstone.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/chiseled_red_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_resin_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_resin_bricks.json new file mode 100644 index 000000000..16b8f9af1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_resin_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/chiseled_resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_sandstone.json new file mode 100644 index 000000000..3ce228591 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_sandstone.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/sandstone_top", + "side": "minecraft:block/chiseled_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_stone_bricks.json new file mode 100644 index 000000000..6bbb7c88a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_stone_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/chiseled_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_tuff.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_tuff.json new file mode 100644 index 000000000..0ff4bbdc4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_tuff.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/chiseled_tuff_top", + "side": "minecraft:block/chiseled_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_tuff_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_tuff_bricks.json new file mode 100644 index 000000000..94accd403 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chiseled_tuff_bricks.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/chiseled_tuff_bricks_top", + "side": "minecraft:block/chiseled_tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_flower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_flower.json new file mode 100644 index 000000000..bec10d070 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_flower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chorus_flower", + "textures": { + "texture": "minecraft:block/chorus_flower" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_flower_dead.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_flower_dead.json new file mode 100644 index 000000000..10519e8aa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_flower_dead.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chorus_flower", + "textures": { + "texture": "minecraft:block/chorus_flower_dead" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant.json new file mode 100644 index 000000000..a69496700 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant.json @@ -0,0 +1,80 @@ +{ "parent": "block/block", + "textures": { + "texture": "block/chorus_plant", + "inside": "block/chorus_plant", + "particle": "block/chorus_plant" + }, + "elements": [ + { "from": [ 2, 14, 2 ], + "to": [ 14, 16, 14 ], + "faces": { + "up": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture", "cullface":"up" }, + "north": { "uv": [ 2, 0, 14, 2 ], "texture": "#texture", "cullface":"up" }, + "south": { "uv": [ 2, 0, 14, 2 ], "texture": "#texture", "cullface":"up" }, + "west": { "uv": [ 2, 0, 14, 2 ], "texture": "#texture", "cullface":"up" }, + "east": { "uv": [ 2, 0, 14, 2 ], "texture": "#texture", "cullface":"up" } + } + }, + { "from": [ 0, 2, 2 ], + "to": [ 2, 14, 14 ], + "faces": { + "down": { "uv": [ 16, 14, 14, 2 ], "texture": "#texture", "cullface":"west" }, + "up": { "uv": [ 0, 2, 2, 14 ], "texture": "#texture", "cullface":"west" }, + "north": { "uv": [ 14, 2, 16, 14 ], "texture": "#texture", "cullface":"west" }, + "south": { "uv": [ 0, 2, 2, 14 ], "texture": "#texture", "cullface":"west" }, + "west": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture", "cullface":"west" } + } + }, + { "from": [ 2, 2, 0 ], + "to": [ 14, 14, 2 ], + "faces": { + "down": { "uv": [ 14, 2, 2, 0 ], "texture": "#texture", "cullface":"north" }, + "up": { "uv": [ 2, 0, 14, 2 ], "texture": "#texture", "cullface":"north" }, + "north": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture", "cullface":"north" }, + "west": { "uv": [ 0, 2, 2, 14 ], "texture": "#texture", "cullface":"north" }, + "east": { "uv": [ 14, 2, 16, 14 ], "texture": "#texture", "cullface":"north" } + } + }, + { "from": [ 2, 2, 14 ], + "to": [ 14, 14, 16 ], + "faces": { + "down": { "uv": [ 14, 16, 2, 14 ], "texture": "#texture", "cullface":"south" }, + "up": { "uv": [ 2, 14, 14, 16 ], "texture": "#texture", "cullface":"south" }, + "south": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture", "cullface":"south" }, + "west": { "uv": [ 14, 2, 16, 14 ], "texture": "#texture", "cullface":"south" }, + "east": { "uv": [ 0, 2, 2, 14 ], "texture": "#texture", "cullface":"south" } + } + }, + { "from": [ 14, 2, 2 ], + "to": [ 16, 14, 14 ], + "faces": { + "down": { "uv": [ 2, 14, 0, 2 ], "texture": "#texture", "cullface":"east" }, + "up": { "uv": [ 14, 2, 16, 14 ], "texture": "#texture", "cullface":"east" }, + "north": { "uv": [ 0, 2, 2, 14 ], "texture": "#texture", "cullface":"east" }, + "south": { "uv": [ 14, 2, 16, 14 ], "texture": "#texture", "cullface":"east" }, + "east": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture", "cullface":"east" } + } + }, + { "from": [ 2, 0, 2 ], + "to": [ 14, 2, 14 ], + "faces": { + "down": { "uv": [ 14, 14, 2, 2 ], "texture": "#texture", "cullface":"down" }, + "north": { "uv": [ 2, 14, 14, 16 ], "texture": "#texture", "cullface":"down" }, + "south": { "uv": [ 2, 14, 14, 16 ], "texture": "#texture", "cullface":"down" }, + "west": { "uv": [ 2, 14, 14, 16 ], "texture": "#texture", "cullface":"down" }, + "east": { "uv": [ 2, 14, 14, 16 ], "texture": "#texture", "cullface":"down" } + } + }, + { "from": [ 2, 2, 2 ], + "to": [ 14, 14, 14 ], + "faces": { + "down": { "uv": [ 14, 14, 2, 2 ], "texture": "#inside" }, + "up": { "uv": [ 2, 2, 14, 14 ], "texture": "#inside" }, + "north": { "uv": [ 2, 2, 14, 14 ], "texture": "#inside" }, + "south": { "uv": [ 2, 2, 14, 14 ], "texture": "#inside" }, + "west": { "uv": [ 2, 2, 14, 14 ], "texture": "#inside" }, + "east": { "uv": [ 2, 2, 14, 14 ], "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant_noside.json new file mode 100644 index 000000000..e7e60ce68 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant_noside.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "texture": "block/chorus_plant", + "inside": "block/chorus_plant", + "particle": "block/chorus_plant" + }, + "elements": [ + { "from": [ 4, 4, 4 ], + "to": [ 12, 12, 12 ], + "faces": { + "north": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant_noside1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant_noside1.json new file mode 100644 index 000000000..f3fed503e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant_noside1.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": false, + "textures": { + "texture": "block/chorus_plant", + "inside": "block/chorus_plant", + "particle": "block/chorus_plant" + }, + "elements": [ + { "from": [ 4, 4, 4 ], + "to": [ 12, 12, 12 ], + "faces": { + "north": { "texture": "#inside" } + } + }, + { "from": [ 4, 4, 3 ], + "to": [ 12, 12, 4 ], + "faces": { + "down": { "texture": "#texture" }, + "up": { "texture": "#texture" }, + "north": { "texture": "#texture" }, + "west": { "texture": "#texture" }, + "east": { "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant_noside2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant_noside2.json new file mode 100644 index 000000000..e2627b9a4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant_noside2.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": false, + "textures": { + "texture": "block/chorus_plant", + "inside": "block/chorus_plant", + "particle": "block/chorus_plant" + }, + "elements": [ + { "from": [ 4, 4, 4 ], + "to": [ 12, 12, 12 ], + "faces": { + "north": { "texture": "#inside" } + } + }, + { "from": [ 5, 5, 2 ], + "to": [ 11, 11, 4 ], + "faces": { + "down": { "texture": "#texture" }, + "up": { "texture": "#texture" }, + "north": { "texture": "#texture" }, + "west": { "texture": "#texture" }, + "east": { "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant_noside3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant_noside3.json new file mode 100644 index 000000000..f3fed503e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant_noside3.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": false, + "textures": { + "texture": "block/chorus_plant", + "inside": "block/chorus_plant", + "particle": "block/chorus_plant" + }, + "elements": [ + { "from": [ 4, 4, 4 ], + "to": [ 12, 12, 12 ], + "faces": { + "north": { "texture": "#inside" } + } + }, + { "from": [ 4, 4, 3 ], + "to": [ 12, 12, 4 ], + "faces": { + "down": { "texture": "#texture" }, + "up": { "texture": "#texture" }, + "north": { "texture": "#texture" }, + "west": { "texture": "#texture" }, + "east": { "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant_side.json new file mode 100644 index 000000000..e8117d244 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/chorus_plant_side.json @@ -0,0 +1,20 @@ +{ + "ambientocclusion": false, + "textures": { + "texture": "block/chorus_plant", + "inside": "block/chorus_plant", + "particle": "block/chorus_plant" + }, + "elements": [ + { "from": [ 4, 4, 0 ], + "to": [ 12, 12, 4 ], + "faces": { + "down": { "texture": "#texture" }, + "up": { "texture": "#texture" }, + "north": { "texture": "#texture", "cullface":"north" }, + "west": { "texture": "#texture" }, + "east": { "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/clay.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/clay.json new file mode 100644 index 000000000..3e478cd7d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/clay.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/clay" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/closed_eyeblossom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/closed_eyeblossom.json new file mode 100644 index 000000000..a99d9a519 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/closed_eyeblossom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/closed_eyeblossom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/coal_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/coal_block.json new file mode 100644 index 000000000..9b1077f15 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/coal_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/coal_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/coal_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/coal_ore.json new file mode 100644 index 000000000..ef7b15411 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/coal_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/coal_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/coarse_dirt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/coarse_dirt.json new file mode 100644 index 000000000..2ecdb0d00 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/coarse_dirt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/coarse_dirt" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate.json new file mode 100644 index 000000000..bd99551da --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_slab.json new file mode 100644 index 000000000..92d335956 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/cobbled_deepslate", + "side": "minecraft:block/cobbled_deepslate", + "top": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_slab_top.json new file mode 100644 index 000000000..34da6b495 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/cobbled_deepslate", + "side": "minecraft:block/cobbled_deepslate", + "top": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs.json new file mode 100644 index 000000000..1ee791149 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/cobbled_deepslate", + "side": "minecraft:block/cobbled_deepslate", + "top": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs_inner.json new file mode 100644 index 000000000..17ea76115 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/cobbled_deepslate", + "side": "minecraft:block/cobbled_deepslate", + "top": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs_outer.json new file mode 100644 index 000000000..966d357d0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/cobbled_deepslate", + "side": "minecraft:block/cobbled_deepslate", + "top": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_inventory.json new file mode 100644 index 000000000..e7e2c31ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_post.json new file mode 100644 index 000000000..6a6f6480b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_side.json new file mode 100644 index 000000000..082cacc34 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_side_tall.json new file mode 100644 index 000000000..7e841daf2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone.json new file mode 100644 index 000000000..ab65fe908 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_slab.json new file mode 100644 index 000000000..8d65dd371 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/cobblestone", + "side": "minecraft:block/cobblestone", + "top": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_slab_top.json new file mode 100644 index 000000000..4caccc35c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/cobblestone", + "side": "minecraft:block/cobblestone", + "top": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_stairs.json new file mode 100644 index 000000000..feae9865e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/cobblestone", + "side": "minecraft:block/cobblestone", + "top": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_stairs_inner.json new file mode 100644 index 000000000..36f2f799e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/cobblestone", + "side": "minecraft:block/cobblestone", + "top": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_stairs_outer.json new file mode 100644 index 000000000..77c9fa479 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/cobblestone", + "side": "minecraft:block/cobblestone", + "top": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_wall_inventory.json new file mode 100644 index 000000000..3145d2deb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_wall_post.json new file mode 100644 index 000000000..7f47c03ff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_wall_side.json new file mode 100644 index 000000000..f0eabd2b3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_wall_side_tall.json new file mode 100644 index 000000000..d6f662562 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobweb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobweb.json new file mode 100644 index 000000000..0520c950f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cobweb.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/cobweb" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cocoa_stage0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cocoa_stage0.json new file mode 100644 index 000000000..9870dd80f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cocoa_stage0.json @@ -0,0 +1,27 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cocoa_stage0", + "cocoa": "block/cocoa_stage0" + }, + "elements": [ + { "from": [ 6, 7, 11 ], + "to": [ 10, 12, 15 ], + "faces": { + "down": { "uv": [ 0, 0, 4, 4 ], "texture": "#cocoa" }, + "up": { "uv": [ 0, 0, 4, 4 ], "texture": "#cocoa" }, + "north": { "uv": [ 11, 4, 15, 9 ], "texture": "#cocoa" }, + "south": { "uv": [ 11, 4, 15, 9 ], "texture": "#cocoa" }, + "west": { "uv": [ 11, 4, 15, 9 ], "texture": "#cocoa" }, + "east": { "uv": [ 11, 4, 15, 9 ], "texture": "#cocoa" } + } + }, + { "from": [ 8, 12, 12 ], + "to": [ 8, 16, 16 ], + "faces": { + "west": { "uv": [ 12, 0, 16, 4 ], "texture": "#cocoa" }, + "east": { "uv": [ 16, 0, 12, 4 ], "texture": "#cocoa" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cocoa_stage1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cocoa_stage1.json new file mode 100644 index 000000000..22d12d8d2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cocoa_stage1.json @@ -0,0 +1,27 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cocoa_stage1", + "cocoa": "block/cocoa_stage1" + }, + "elements": [ + { "from": [ 5, 5, 9 ], + "to": [ 11, 12, 15 ], + "faces": { + "down": { "uv": [ 0, 0, 6, 6 ], "texture": "#cocoa" }, + "up": { "uv": [ 0, 0, 6, 6 ], "texture": "#cocoa" }, + "north": { "uv": [ 9, 4, 15, 11 ], "texture": "#cocoa" }, + "south": { "uv": [ 9, 4, 15, 11 ], "texture": "#cocoa" }, + "west": { "uv": [ 9, 4, 15, 11 ], "texture": "#cocoa" }, + "east": { "uv": [ 9, 4, 15, 11 ], "texture": "#cocoa" } + } + }, + { "from": [ 8, 12, 12 ], + "to": [ 8, 16, 16 ], + "faces": { + "west": { "uv": [ 12, 0, 16, 4 ], "texture": "#cocoa" }, + "east": { "uv": [ 16, 0, 12, 4 ], "texture": "#cocoa" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cocoa_stage2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cocoa_stage2.json new file mode 100644 index 000000000..ad93432a9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cocoa_stage2.json @@ -0,0 +1,29 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cocoa_stage2", + "cocoa": "block/cocoa_stage2" + }, + "elements": [ + { + "from": [ 4, 3, 7 ], + "to": [ 12, 12, 15 ], + "faces": { + "up": { "uv": [ 0, 0, 8, 8 ], "texture": "#cocoa" }, + "down": { "uv": [ 0, 0, 8, 8 ], "texture": "#cocoa" }, + "north": { "uv": [ 8, 4, 16, 13 ], "texture": "#cocoa" }, + "south": { "uv": [ 8, 4, 16, 13 ], "texture": "#cocoa" }, + "west": { "uv": [ 8, 4, 16, 13 ], "texture": "#cocoa" }, + "east": { "uv": [ 8, 4, 16, 13 ], "texture": "#cocoa" } + } + }, + { + "from": [ 8, 12, 12 ], + "to": [ 8, 16, 16 ], + "faces": { + "east": { "uv": [ 16, 0, 12, 4 ], "texture": "#cocoa" }, + "west": { "uv": [ 12, 0, 16, 4 ], "texture": "#cocoa" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/command_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/command_block.json new file mode 100644 index 000000000..598a427c7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/command_block.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_command_block", + "textures": { + "back": "minecraft:block/command_block_back", + "front": "minecraft:block/command_block_front", + "side": "minecraft:block/command_block_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/command_block_conditional.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/command_block_conditional.json new file mode 100644 index 000000000..f489842d5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/command_block_conditional.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_command_block", + "textures": { + "back": "minecraft:block/command_block_back", + "front": "minecraft:block/command_block_front", + "side": "minecraft:block/command_block_conditional" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/comparator.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/comparator.json new file mode 100644 index 000000000..d886187cb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/comparator.json @@ -0,0 +1,53 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/comparator", + "slab": "block/smooth_stone", + "top": "block/comparator", + "unlit": "block/redstone_torch_off", + "lit": "block/redstone_torch" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 4, 2, 11 ], + "to": [ 6, 7, 13 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + }, + { "from": [ 10, 2, 11 ], + "to": [ 12, 7, 13 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 5, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 9 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 9 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 9 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 9 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/comparator_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/comparator_on.json new file mode 100644 index 000000000..00133846d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/comparator_on.json @@ -0,0 +1,151 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/comparator_on", + "slab": "block/smooth_stone", + "top": "block/comparator_on", + "unlit": "block/redstone_torch_off", + "lit": "block/redstone_torch" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 4, 2, 11 ], + "to": [ 6, 7, 13 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 5, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 9 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 9 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 9 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 9 ], "texture": "#unlit" } + } + }, + { "from": [ 10, 2, 11 ], + "to": [ 12, 7, 13 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 1.5, 10.5 ], + "to": [ 6.5, 4.5, 13.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 7.5, 10.5 ], + "to": [ 6.5, 10.5, 13.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 7.5 ], + "to": [ 6.5, 7.5, 10.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 13.5 ], + "to": [ 6.5, 7.5, 16.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 0.5, 4.5, 10.5 ], + "to": [ 3.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 10.5 ], + "to": [ 9.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 1.5, 10.5 ], + "to": [ 12.5, 4.5, 13.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 7.5, 10.5 ], + "to": [ 12.5, 10.5, 13.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 7.5 ], + "to": [ 12.5, 7.5, 10.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 13.5 ], + "to": [ 12.5, 7.5, 16.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 10.5 ], + "to": [ 9.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 12.5, 4.5, 10.5 ], + "to": [ 15.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/comparator_on_subtract.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/comparator_on_subtract.json new file mode 100644 index 000000000..7d86c2ba1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/comparator_on_subtract.json @@ -0,0 +1,200 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/comparator_on", + "slab": "block/smooth_stone", + "top": "block/comparator_on", + "unlit": "block/redstone_torch_off", + "lit": "block/redstone_torch" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 5, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 9 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 9 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 9 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 9 ], "texture": "#lit" } + } + }, + { "from": [ 4, 2, 11 ], + "to": [ 6, 7, 13 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { "from": [ 10, 2, 11 ], + "to": [ 12, 7, 13 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 1.5, 10.5 ], + "to": [ 6.5, 4.5, 13.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 7.5, 10.5 ], + "to": [ 6.5, 10.5, 13.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 7.5 ], + "to": [ 6.5, 7.5, 10.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 13.5 ], + "to": [ 6.5, 7.5, 16.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 0.5, 4.5, 10.5 ], + "to": [ 3.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 10.5 ], + "to": [ 9.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 1.5, 10.5 ], + "to": [ 12.5, 4.5, 13.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 7.5, 10.5 ], + "to": [ 12.5, 10.5, 13.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 7.5 ], + "to": [ 12.5, 7.5, 10.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 13.5 ], + "to": [ 12.5, 7.5, 16.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 10.5 ], + "to": [ 9.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 12.5, 4.5, 10.5 ], + "to": [ 15.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, -0.5, 1.5 ], + "to": [ 9.5, 2.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 5.5, 1.5 ], + "to": [ 9.5, 8.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 2.5, -1.5 ], + "to": [ 9.5, 5.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 2.5, 4.5 ], + "to": [ 9.5, 5.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 2.5, 1.5 ], + "to": [ 6.5, 5.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 2.5, 1.5 ], + "to": [ 12.5, 5.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/comparator_subtract.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/comparator_subtract.json new file mode 100644 index 000000000..1119d3702 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/comparator_subtract.json @@ -0,0 +1,102 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/comparator", + "slab": "block/smooth_stone", + "top": "block/comparator", + "unlit": "block/redstone_torch_off", + "lit": "block/redstone_torch" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 4, 2, 11 ], + "to": [ 6, 7, 13 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + }, + { "from": [ 10, 2, 11 ], + "to": [ 12, 7, 13 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 5, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 9 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 9 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 9 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 9 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, -0.5, 1.5 ], + "to": [ 9.5, 2.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 5.5, 1.5 ], + "to": [ 9.5, 8.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 2.5, -1.5 ], + "to": [ 9.5, 5.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 2.5, 4.5 ], + "to": [ 9.5, 5.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 2.5, 1.5 ], + "to": [ 6.5, 5.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 2.5, 1.5 ], + "to": [ 12.5, 5.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter.json new file mode 100644 index 000000000..9650f777a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter.json @@ -0,0 +1,55 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/composter_side", + "top": "block/composter_top", + "bottom": "block/composter_bottom", + "side": "block/composter_side", + "inside": "block/composter_bottom" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "up": { "texture": "#inside" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { "from": [ 0, 0, 0 ], + "to": [ 2, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "east": { "texture": "#side" } + } + }, + { "from": [ 14, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 2, 0, 0 ], + "to": [ 14, 16, 2 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side" } + } + }, + { "from": [ 2, 0, 14 ], + "to": [ 14, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents1.json new file mode 100644 index 000000000..fe6c8504a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents1.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "block/composter_compost", + "inside": "block/composter_compost" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 14, 3, 14 ], + "faces": { + "up": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents2.json new file mode 100644 index 000000000..b5cc54c46 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents2.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "block/composter_compost", + "inside": "block/composter_compost" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 14, 5, 14 ], + "faces": { + "up": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents3.json new file mode 100644 index 000000000..4c3cdc108 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents3.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "block/composter_compost", + "inside": "block/composter_compost" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 14, 7, 14 ], + "faces": { + "up": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents4.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents4.json new file mode 100644 index 000000000..48e0456f5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents4.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "block/composter_compost", + "inside": "block/composter_compost" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 14, 9, 14 ], + "faces": { + "up": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents5.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents5.json new file mode 100644 index 000000000..21e4b3035 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents5.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "block/composter_compost", + "inside": "block/composter_compost" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 14, 11, 14 ], + "faces": { + "up": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents6.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents6.json new file mode 100644 index 000000000..12b655168 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents6.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "block/composter_compost", + "inside": "block/composter_compost" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 14, 13, 14 ], + "faces": { + "up": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents7.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents7.json new file mode 100644 index 000000000..b135ad12c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents7.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "block/composter_compost", + "inside": "block/composter_compost" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 14, 15, 14 ], + "faces": { + "up": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents_ready.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents_ready.json new file mode 100644 index 000000000..63744ccac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/composter_contents_ready.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "block/composter_compost", + "inside": "block/composter_ready" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 14, 15, 14 ], + "faces": { + "up": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/conduit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/conduit.json new file mode 100644 index 000000000..5abfb3b65 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/conduit.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/conduit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_block.json new file mode 100644 index 000000000..aae715995 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/copper_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_bulb.json new file mode 100644 index 000000000..187e3d102 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_bulb.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/copper_bulb" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_bulb_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_bulb_lit.json new file mode 100644 index 000000000..6921fec73 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_bulb_lit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/copper_bulb_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_bulb_lit_powered.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_bulb_lit_powered.json new file mode 100644 index 000000000..1edad4142 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_bulb_lit_powered.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/copper_bulb_lit_powered" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_bulb_powered.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_bulb_powered.json new file mode 100644 index 000000000..4fb2ec8f5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_bulb_powered.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/copper_bulb_powered" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_bottom_left.json new file mode 100644 index 000000000..c3bba7859 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/copper_door_bottom", + "top": "minecraft:block/copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_bottom_left_open.json new file mode 100644 index 000000000..6fc748904 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/copper_door_bottom", + "top": "minecraft:block/copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_bottom_right.json new file mode 100644 index 000000000..dfdbe7132 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/copper_door_bottom", + "top": "minecraft:block/copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_bottom_right_open.json new file mode 100644 index 000000000..7494e6ff7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/copper_door_bottom", + "top": "minecraft:block/copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_top_left.json new file mode 100644 index 000000000..d76e7b1ce --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/copper_door_bottom", + "top": "minecraft:block/copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_top_left_open.json new file mode 100644 index 000000000..c198f40a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/copper_door_bottom", + "top": "minecraft:block/copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_top_right.json new file mode 100644 index 000000000..519aa170e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/copper_door_bottom", + "top": "minecraft:block/copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_top_right_open.json new file mode 100644 index 000000000..2850bad0c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/copper_door_bottom", + "top": "minecraft:block/copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_grate.json new file mode 100644 index 000000000..c2a308b1a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_grate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/copper_grate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_ore.json new file mode 100644 index 000000000..193dd9695 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/copper_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_trapdoor_bottom.json new file mode 100644 index 000000000..2816eca70 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_trapdoor_open.json new file mode 100644 index 000000000..f4d3a9dce --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_open", + "textures": { + "texture": "minecraft:block/copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_trapdoor_top.json new file mode 100644 index 000000000..b673c9e71 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/copper_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_top", + "textures": { + "texture": "minecraft:block/copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/coral_fan.json new file mode 100644 index 000000000..e28dd67b0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/coral_fan.json @@ -0,0 +1,44 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#fan" + }, + "elements": [ + { "from": [ 8, 0, 0 ], + "to": [ 24, 0, 16 ], + "rotation": { "origin": [ 8, 0, 0 ], "axis": "z", "angle": 22.5, "rescale": false }, + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#fan", "rotation": 90 }, + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#fan", "rotation": 270 } + } + }, + { "from": [ -8, 0, 0 ], + "to": [ 8, 0, 16 ], + "rotation": { "origin": [ 8, 0, 0 ], "axis": "z", "angle": -22.5, "rescale": false }, + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#fan", "rotation": 270 }, + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#fan", "rotation": 90 } + } + }, + { "from": [ 0, 0, 8 ], + "to": [ 16, 0, 24 ], + "rotation": { "origin": [ 0, 0, 8 ], "axis": "x", "angle": -22.5, "rescale": false }, + "shade": false, + "faces": { + "up": { "uv": [ 16, 16, 0, 0 ], "texture": "#fan" }, + "down": { "uv": [ 16, 0, 0, 16 ], "texture": "#fan" } + } + }, + { "from": [ 0, 0, -8 ], + "to": [ 16, 0, 8 ], + "rotation": { "origin": [ 0, 0, 8 ], "axis": "x", "angle": 22.5, "rescale": false }, + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#fan" }, + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#fan" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/coral_wall_fan.json new file mode 100644 index 000000000..eafe1f8fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/coral_wall_fan.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#fan" + }, + "elements": [ + { "from": [ 0, 8, 0 ], + "to": [ 16, 8, 16 ], + "rotation": { "origin": [ 8, 8, 14 ], "axis": "x", "angle": 22.5, "rescale": true }, + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#fan" }, + "down": { "uv": [ 16, 16, 0, 0 ], "texture": "#fan" } + } + }, + { "from": [ 0, 8, 0 ], + "to": [ 16, 8, 16 ], + "rotation": { "origin": [ 8, 8, 14 ], "axis": "x", "angle": -22.5, "rescale": true }, + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#fan" }, + "down": { "uv": [ 16, 16, 0, 0 ], "texture": "#fan" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cornflower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cornflower.json new file mode 100644 index 000000000..01ec1857c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cornflower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/cornflower" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cracked_deepslate_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cracked_deepslate_bricks.json new file mode 100644 index 000000000..255278670 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cracked_deepslate_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cracked_deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cracked_deepslate_tiles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cracked_deepslate_tiles.json new file mode 100644 index 000000000..264f80946 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cracked_deepslate_tiles.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cracked_deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cracked_nether_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cracked_nether_bricks.json new file mode 100644 index 000000000..403c18f01 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cracked_nether_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cracked_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cracked_polished_blackstone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cracked_polished_blackstone_bricks.json new file mode 100644 index 000000000..e36eda13d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cracked_polished_blackstone_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cracked_polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cracked_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cracked_stone_bricks.json new file mode 100644 index 000000000..8628046d8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cracked_stone_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cracked_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crafter.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crafter.json new file mode 100644 index 000000000..71e56849d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crafter.json @@ -0,0 +1,26 @@ +{ + "parent": "block/block", + "textures": { + "bottom": "block/crafter_bottom", + "top": "block/crafter_top", + "north": "block/crafter_north", + "south": "block/crafter_south", + "west": "block/crafter_west", + "east": "block/crafter_east", + "particle": "#north" + }, + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "rotation": 180, "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#north", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#south", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#west", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#east", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crafter_crafting.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crafter_crafting.json new file mode 100644 index 000000000..134a00dc0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crafter_crafting.json @@ -0,0 +1,9 @@ +{ + "parent": "block/crafter_triggered", + "textures": { + "top": "block/crafter_top_crafting", + "north": "block/crafter_north_crafting", + "east": "block/crafter_east_crafting", + "west": "block/crafter_west_crafting" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crafter_crafting_triggered.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crafter_crafting_triggered.json new file mode 100644 index 000000000..86e293ab0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crafter_crafting_triggered.json @@ -0,0 +1,3 @@ +{ + "parent": "block/crafter_crafting" +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crafter_triggered.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crafter_triggered.json new file mode 100644 index 000000000..3a66caf4a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crafter_triggered.json @@ -0,0 +1,9 @@ +{ + "parent": "block/crafter", + "textures": { + "top": "block/crafter_top_triggered", + "south": "block/crafter_south_triggered", + "west": "block/crafter_west_triggered", + "east": "block/crafter_east_triggered" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crafting_table.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crafting_table.json new file mode 100644 index 000000000..aa056b15e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crafting_table.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "down": "minecraft:block/oak_planks", + "east": "minecraft:block/crafting_table_side", + "north": "minecraft:block/crafting_table_front", + "particle": "minecraft:block/crafting_table_front", + "south": "minecraft:block/crafting_table_side", + "up": "minecraft:block/crafting_table_top", + "west": "minecraft:block/crafting_table_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart.json new file mode 100644 index 000000000..e40768a20 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/creaking_heart_top", + "side": "minecraft:block/creaking_heart" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart_awake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart_awake.json new file mode 100644 index 000000000..75db0a2f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart_awake.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/creaking_heart_top_awake", + "side": "minecraft:block/creaking_heart_awake" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart_awake_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart_awake_horizontal.json new file mode 100644 index 000000000..b4e45301d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart_awake_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/creaking_heart_top_awake", + "side": "minecraft:block/creaking_heart_awake" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart_dormant.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart_dormant.json new file mode 100644 index 000000000..6ae07d240 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart_dormant.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/creaking_heart_top_dormant", + "side": "minecraft:block/creaking_heart_dormant" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart_dormant_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart_dormant_horizontal.json new file mode 100644 index 000000000..acb48037a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart_dormant_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/creaking_heart_top_dormant", + "side": "minecraft:block/creaking_heart_dormant" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart_horizontal.json new file mode 100644 index 000000000..475abb74f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/creaking_heart_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/creaking_heart_top", + "side": "minecraft:block/creaking_heart" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_button.json new file mode 100644 index 000000000..c57c4255d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_button_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_button_inventory.json new file mode 100644 index 000000000..06d1baa2a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_button_pressed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_button_pressed.json new file mode 100644 index 000000000..2ba39bd93 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_left.json new file mode 100644 index 000000000..34db06cb5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/crimson_door_bottom", + "top": "minecraft:block/crimson_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_left_open.json new file mode 100644 index 000000000..a241d7e43 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/crimson_door_bottom", + "top": "minecraft:block/crimson_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_right.json new file mode 100644 index 000000000..5bcd78db2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/crimson_door_bottom", + "top": "minecraft:block/crimson_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_right_open.json new file mode 100644 index 000000000..9f24750f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/crimson_door_bottom", + "top": "minecraft:block/crimson_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_top_left.json new file mode 100644 index 000000000..597111a8e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/crimson_door_bottom", + "top": "minecraft:block/crimson_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_top_left_open.json new file mode 100644 index 000000000..ed8885797 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/crimson_door_bottom", + "top": "minecraft:block/crimson_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_top_right.json new file mode 100644 index 000000000..c033de2f5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/crimson_door_bottom", + "top": "minecraft:block/crimson_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_top_right_open.json new file mode 100644 index 000000000..c9d96fd93 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/crimson_door_bottom", + "top": "minecraft:block/crimson_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_gate.json new file mode 100644 index 000000000..6599c50b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_open.json new file mode 100644 index 000000000..9777833a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_wall.json new file mode 100644 index 000000000..b3704b27d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_wall_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_wall_open.json new file mode 100644 index 000000000..5ba60043c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_inventory.json new file mode 100644 index 000000000..16f625d5c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_post.json new file mode 100644 index 000000000..f5f146589 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_side.json new file mode 100644 index 000000000..627657641 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fungus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fungus.json new file mode 100644 index 000000000..351e2bce1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_fungus.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/crimson_fungus" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_hanging_sign.json new file mode 100644 index 000000000..5eeafe7d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_hyphae.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_hyphae.json new file mode 100644 index 000000000..43c990a58 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_hyphae.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/crimson_stem", + "side": "minecraft:block/crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_nylium.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_nylium.json new file mode 100644 index 000000000..00ac27b19 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_nylium.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/netherrack", + "side": "minecraft:block/crimson_nylium_side", + "top": "minecraft:block/crimson_nylium" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_planks.json new file mode 100644 index 000000000..9bf1ea137 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_pressure_plate.json new file mode 100644 index 000000000..6d6a22658 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_pressure_plate_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_pressure_plate_down.json new file mode 100644 index 000000000..df5febdd2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_roots.json new file mode 100644 index 000000000..5bf542bc6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_roots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/crimson_roots" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_sign.json new file mode 100644 index 000000000..1b9953d8d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_slab.json new file mode 100644 index 000000000..42f7e0882 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/crimson_planks", + "side": "minecraft:block/crimson_planks", + "top": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_slab_top.json new file mode 100644 index 000000000..ce0342320 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/crimson_planks", + "side": "minecraft:block/crimson_planks", + "top": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_stairs.json new file mode 100644 index 000000000..d12e043bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/crimson_planks", + "side": "minecraft:block/crimson_planks", + "top": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_stairs_inner.json new file mode 100644 index 000000000..9eb4b2768 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/crimson_planks", + "side": "minecraft:block/crimson_planks", + "top": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_stairs_outer.json new file mode 100644 index 000000000..ab3b02fb1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/crimson_planks", + "side": "minecraft:block/crimson_planks", + "top": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_stem.json new file mode 100644 index 000000000..c8f5c7849 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_stem.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/crimson_stem_top", + "side": "minecraft:block/crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_bottom.json new file mode 100644 index 000000000..b83e4bbc8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/crimson_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_open.json new file mode 100644 index 000000000..ad3d11e08 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/crimson_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_top.json new file mode 100644 index 000000000..2b8e4d9f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/crimson_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crop.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crop.json new file mode 100644 index 000000000..1afe355cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crop.json @@ -0,0 +1,40 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#crop" + }, + "elements": [ + { "from": [ 4, -1, 0 ], + "to": [ 4, 15, 16 ], + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#crop" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#crop" } + } + }, + { "from": [ 12, -1, 0 ], + "to": [ 12, 15, 16 ], + "shade": false, + "faces": { + "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#crop" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#crop" } + } + }, + { "from": [ 0, -1, 4 ], + "to": [ 16, 15, 4 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#crop" }, + "south": { "uv": [ 16, 0, 0, 16 ], "texture": "#crop" } + } + }, + { "from": [ 0, -1, 12 ], + "to": [ 16, 15, 12 ], + "shade": false, + "faces": { + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#crop" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#crop" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cross.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cross.json new file mode 100644 index 000000000..37c8b09f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cross.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#cross" + }, + "elements": [ + { "from": [ 0.8, 0, 8 ], + "to": [ 15.2, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" } + } + }, + { "from": [ 8, 0, 0.8 ], + "to": [ 8, 16, 15.2 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cross_emissive.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cross_emissive.json new file mode 100644 index 000000000..d8fe3490e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cross_emissive.json @@ -0,0 +1,46 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#cross" + }, + "elements": [ + { "from": [ 0.8, 0, 8 ], + "to": [ 15.2, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" } + } + }, + { "from": [ 8, 0, 0.8 ], + "to": [ 8, 16, 15.2 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" } + } + }, + { "from": [ 0.8, 0, 8 ], + "to": [ 15.2, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "light_emission": 15, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross_emissive" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross_emissive" } + } + }, + { "from": [ 8, 0, 0.8 ], + "to": [ 8, 16, 15.2 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "light_emission": 15, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross_emissive" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross_emissive" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crying_obsidian.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crying_obsidian.json new file mode 100644 index 000000000..95991746e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/crying_obsidian.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/crying_obsidian" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube.json new file mode 100644 index 000000000..1b9780b47 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube.json @@ -0,0 +1,16 @@ +{ + "parent": "block/block", + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "cullface": "down" }, + "up": { "texture": "#up", "cullface": "up" }, + "north": { "texture": "#north", "cullface": "north" }, + "south": { "texture": "#south", "cullface": "south" }, + "west": { "texture": "#west", "cullface": "west" }, + "east": { "texture": "#east", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_all.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_all.json new file mode 100644 index 000000000..fa2f9e776 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_all.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube", + "textures": { + "particle": "#all", + "down": "#all", + "up": "#all", + "north": "#all", + "east": "#all", + "south": "#all", + "west": "#all" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_all_inner_faces.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_all_inner_faces.json new file mode 100644 index 000000000..e119a568d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_all_inner_faces.json @@ -0,0 +1,29 @@ +{ + "parent": "block/cube_all", + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#all", "cullface": "north"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#all", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#all", "cullface": "south"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#all", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#all", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [15.998, 0.002, 0.002], + "to": [0.002, 15.998, 15.998], + "faces": { + "north": {"uv": [16, 0, 0, 16], "texture": "#all", "cullface": "south"}, + "east": {"uv": [16, 0, 0, 16], "texture": "#all", "cullface": "west"}, + "south": {"uv": [16, 0, 0, 16], "texture": "#all", "cullface": "north"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#all", "cullface": "east"}, + "up": {"uv": [16, 0, 0, 16], "texture": "#all", "cullface": "up"}, + "down": {"uv": [16, 0, 0, 16], "texture": "#all", "cullface": "down"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_bottom_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_bottom_top.json new file mode 100644 index 000000000..4c6105978 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_bottom_top.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube", + "textures": { + "particle": "#side", + "down": "#bottom", + "up": "#top", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_bottom_top_inner_faces.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_bottom_top_inner_faces.json new file mode 100644 index 000000000..cf842fef4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_bottom_top_inner_faces.json @@ -0,0 +1,29 @@ +{ + "parent": "block/cube_bottom_top", + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "north"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "south"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#top", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [15.998, 0.002, 0.002], + "to": [0.002, 15.998, 15.998], + "faces": { + "north": {"uv": [16, 0, 0, 16], "texture": "#side", "cullface": "south"}, + "east": {"uv": [16, 0, 0, 16], "texture": "#side", "cullface": "west"}, + "south": {"uv": [16, 0, 0, 16], "texture": "#side", "cullface": "north"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#side", "cullface": "east"}, + "up": {"uv": [16, 0, 0, 16], "texture": "#top", "cullface": "up"}, + "down": {"uv": [16, 0, 0, 16], "texture": "#bottom", "cullface": "down"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column.json new file mode 100644 index 000000000..358b9847e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube", + "textures": { + "particle": "#side", + "down": "#end", + "up": "#end", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column_horizontal.json new file mode 100644 index 000000000..713dd8196 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column_horizontal.json @@ -0,0 +1,25 @@ +{ + "parent": "block/block", + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "cullface": "down" }, + "up": { "texture": "#up", "rotation": 180, "cullface": "up" }, + "north": { "texture": "#north", "cullface": "north" }, + "south": { "texture": "#south", "cullface": "south" }, + "west": { "texture": "#west", "cullface": "west" }, + "east": { "texture": "#east", "cullface": "east" } + } + } + ], + "textures": { + "particle": "#side", + "down": "#end", + "up": "#end", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column_mirrored.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column_mirrored.json new file mode 100644 index 000000000..610cbd9b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column_mirrored.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube_mirrored", + "textures": { + "particle": "#side", + "down": "#end", + "up": "#end", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_x.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_x.json new file mode 100644 index 000000000..1c367156b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_x.json @@ -0,0 +1,26 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "rotation": 90, "cullface": "down" }, + "up": { "texture": "#up", "rotation": 90, "cullface": "up" }, + "north": { "texture": "#north", "rotation": 90, "cullface": "north" }, + "south": { "texture": "#south", "rotation": 90, "cullface": "south" }, + "west": { "texture": "#west", "cullface": "west" }, + "east": { "texture": "#east", "cullface": "east" } + } + } + ], + "textures": { + "particle": "#side", + "down": "#side", + "up": "#side", + "north": "#side", + "east": "#end", + "south": "#side", + "west": "#end" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_y.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_y.json new file mode 100644 index 000000000..8fc6e9dd1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_y.json @@ -0,0 +1,26 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "cullface": "down" }, + "up": { "texture": "#up", "cullface": "up" }, + "north": { "texture": "#north", "cullface": "north" }, + "south": { "texture": "#south", "cullface": "south" }, + "west": { "texture": "#west", "cullface": "west" }, + "east": { "texture": "#east", "cullface": "east" } + } + } + ], + "textures": { + "particle": "#side", + "down": "#end", + "up": "#end", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_z.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_z.json new file mode 100644 index 000000000..b227129fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_z.json @@ -0,0 +1,26 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "cullface": "down" }, + "up": { "texture": "#up", "cullface": "up" }, + "north": { "texture": "#north", "cullface": "north" }, + "south": { "texture": "#south", "cullface": "south" }, + "west": { "texture": "#west", "rotation": 90, "cullface": "west" }, + "east": { "texture": "#east", "rotation": 90, "cullface": "east" } + } + } + ], + "textures": { + "particle": "#side", + "down": "#side", + "up": "#side", + "north": "#end", + "east": "#side", + "south": "#end", + "west": "#side" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_directional.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_directional.json new file mode 100644 index 000000000..09fadd01e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_directional.json @@ -0,0 +1,16 @@ +{ + "parent": "block/block", + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "cullface": "down", "rotation": 180 }, + "up": { "texture": "#up", "cullface": "up" }, + "north": { "texture": "#north", "cullface": "north" }, + "south": { "texture": "#south", "cullface": "south" }, + "west": { "texture": "#west", "cullface": "west", "rotation": 270 }, + "east": { "texture": "#east", "cullface": "east", "rotation": 90 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_mirrored.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_mirrored.json new file mode 100644 index 000000000..38f44bda1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_mirrored.json @@ -0,0 +1,15 @@ +{ + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [16, 0, 0, 16], "texture": "#down", "cullface": "down" }, + "up": { "uv": [16, 0, 0, 16], "texture": "#up", "cullface": "up" }, + "north": { "uv": [16, 0, 0, 16], "texture": "#north", "cullface": "north" }, + "south": { "uv": [16, 0, 0, 16], "texture": "#south", "cullface": "south" }, + "west": { "uv": [16, 0, 0, 16], "texture": "#west", "cullface": "west" }, + "east": { "uv": [16, 0, 0, 16], "texture": "#east", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_mirrored_all.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_mirrored_all.json new file mode 100644 index 000000000..75743f20b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_mirrored_all.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube_mirrored", + "textures": { + "particle": "#all", + "down": "#all", + "up": "#all", + "north": "#all", + "east": "#all", + "south": "#all", + "west": "#all" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_north_west_mirrored.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_north_west_mirrored.json new file mode 100644 index 000000000..de5abeac0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_north_west_mirrored.json @@ -0,0 +1,15 @@ +{ + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "cullface": "down" }, + "up": { "texture": "#up", "cullface": "up" }, + "north": { "uv": [16, 0, 0, 16], "texture": "#north", "cullface": "north" }, + "south": { "texture": "#south", "cullface": "south" }, + "west": { "uv": [16, 0, 0, 16], "texture": "#west", "cullface": "west" }, + "east": { "texture": "#east", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_north_west_mirrored_all.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_north_west_mirrored_all.json new file mode 100644 index 000000000..74034ca54 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_north_west_mirrored_all.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube_north_west_mirrored", + "textures": { + "particle": "#all", + "down": "#all", + "up": "#all", + "north": "#all", + "east": "#all", + "south": "#all", + "west": "#all" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_top.json new file mode 100644 index 000000000..a0c1d5695 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cube_top.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube", + "textures": { + "particle": "#side", + "down": "#side", + "up": "#top", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_inventory.json new file mode 100644 index 000000000..8de00b6d3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_inventory.json @@ -0,0 +1,108 @@ +{ + "parent": "block/block", + "display": { + "gui": { + "rotation": [ 30, 135, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "fixed": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.5, 0.5, 0.5 ] + } + }, + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 6, 0, 0 ], + "to": [ 10, 16, 4 ], + "faces": { + "north": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "south": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "west": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "up": {"uv": [4, 0, 8, 4], "texture": "#texture"}, + "down": {"uv": [4, 0, 8, 4], "texture": "#texture", "cullface": "down"} + }, + "__comment": "Left post" + }, + { "from": [ 6, 0, 12 ], + "to": [ 10, 16, 16 ], + "faces": { + "north": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "south": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "west": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "up": {"uv": [4, 0, 8, 4], "texture": "#texture"}, + "down": {"uv": [4, 0, 8, 4], "texture": "#texture", "cullface": "down"} + }, + "__comment": "Right post" + }, + { "from": [ 7, 12, 4 ], + "to": [ 9, 15, 12 ], + "faces": { + "east": {"uv": [8, 0, 16, 3], "texture": "#texture"}, + "west": {"uv": [8, 0, 16, 3], "texture": "#texture"}, + "up": {"uv": [11, 7, 13, 15], "texture": "#texture"}, + "down": {"uv": [11, 15, 13, 7], "texture": "#texture"} + }, + "__comment": "Top bar" + }, + { "from": [ 7, 12, -2 ], + "to": [ 9, 15, 0 ], + "faces": { + "north": {"uv": [13, 4, 15, 7], "texture": "#texture"}, + "east": {"uv": [8, 0, 10, 3], "texture": "#texture"}, + "west": {"uv": [8, 0, 10, 3], "texture": "#texture"}, + "up": {"uv": [11, 7, 13, 9], "texture": "#texture"}, + "down": {"uv": [11, 7, 13, 9], "texture": "#texture"} + }, + "__comment": "Top bar left" + }, + { "from": [ 7, 12, 16 ], + "to": [ 9, 15, 18 ], + "faces": { + "east": {"uv": [14, 0, 16, 3], "texture": "#texture"}, + "south": {"uv": [13, 4, 15, 7], "texture": "#texture"}, + "west": {"uv": [14, 0, 16, 3], "texture": "#texture"}, + "up": {"uv": [11, 13, 13, 15], "texture": "#texture"}, + "down": {"uv": [11, 13, 13, 15], "texture": "#texture"} + }, + "__comment": "Top bar right" + }, + { "from": [ 7, 6, 4 ], + "to": [ 9, 9, 12 ], + "faces": { + "east": {"uv": [8, 0, 16, 3], "texture": "#texture"}, + "west": {"uv": [8, 0, 16, 3], "texture": "#texture"}, + "up": {"uv": [11, 7, 13, 15], "texture": "#texture"}, + "down": {"uv": [11, 15, 13, 7], "texture": "#texture"} + }, + "__comment": "Lower bar" + }, + { "from": [ 7, 6, -2 ], + "to": [ 9, 9, 0 ], + "faces": { + "north": {"uv": [13, 4, 15, 7], "texture": "#texture"}, + "east": {"uv": [8, 0, 10, 3], "texture": "#texture"}, + "west": {"uv": [8, 0, 10, 3], "texture": "#texture"}, + "up": {"uv": [11, 13, 13, 15], "texture": "#texture"}, + "down": {"uv": [11, 13, 13, 15], "texture": "#texture"} + }, + "__comment": "Lower bar left" + }, + { "from": [ 7, 6, 16 ], + "to": [ 9, 9, 18 ], + "faces": { + "east": {"uv": [14, 0, 16, 3], "texture": "#texture"}, + "south": {"uv": [13, 4, 15, 7], "texture": "#texture"}, + "west": {"uv": [14, 0, 16, 3], "texture": "#texture"}, + "up": {"uv": [11, 13, 13, 15], "texture": "#texture"}, + "down": {"uv": [11, 13, 13, 15], "texture": "#texture"} + }, + "__comment": "Lower bar right" + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_post.json new file mode 100644 index 000000000..1ba56583b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_post.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "#particle" + }, + "elements": [ + { "from": [ 6, 0, 6 ], + "to": [ 10, 16, 10 ], + "faces": { + "up": {"uv": [4, 0, 8, 4], "texture": "#texture", "cullface": "up"}, + "down": {"uv": [4, 0, 8, 4], "texture": "#texture", "cullface": "down"}, + "north": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "south": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "west": {"uv": [0, 0, 4, 16], "texture": "#texture"} + }, + "__comment": "Center post special" + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_side_east.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_side_east.json new file mode 100644 index 000000000..9a4bc2de7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_side_east.json @@ -0,0 +1,39 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "name": "top bar", + "from": [7, 12, 7], + "to": [16, 15, 9], + "faces": { + "north": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "east": {"uv": [13, 4, 15, 7], "texture": "#texture", "cullface": "east"}, + "south": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "up": {"uv": [13, 7, 15, 16], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [13, 7, 15, 16], "rotation": 90, "texture": "#texture"} + } + }, + { + "name": "lower bar", + "from": [7, 6, 7], + "to": [16, 9, 9], + "faces": { + "north": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "east": {"uv": [13, 4, 15, 7], "texture": "#texture", "cullface": "east"}, + "south": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "up": {"uv": [13, 7, 15, 16], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [13, 7, 15, 16], "rotation": 90, "texture": "#texture"} + } + } + ], + "groups": [ + { + "name": "east", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1] + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_side_north.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_side_north.json new file mode 100644 index 000000000..a99e18202 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_side_north.json @@ -0,0 +1,39 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "name": "top bar", + "from": [7, 12, 0], + "to": [9, 15, 9], + "faces": { + "north": {"uv": [13, 4, 15, 7], "rotation": 180, "texture": "#texture", "cullface": "north"}, + "east": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "west": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "up": {"uv": [13, 7, 15, 16], "texture": "#texture"}, + "down": {"uv": [13, 7, 15, 16], "texture": "#texture"} + } + }, + { + "name": "lower bar", + "from": [7, 6, 0], + "to": [9, 9, 9], + "faces": { + "north": {"uv": [13, 4, 15, 7], "rotation": 180, "texture": "#texture", "cullface": "north"}, + "east": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "west": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "up": {"uv": [13, 7, 15, 16], "texture": "#texture"}, + "down": {"uv": [13, 7, 15, 16], "texture": "#texture"} + } + } + ], + "groups": [ + { + "name": "north", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1] + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_side_south.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_side_south.json new file mode 100644 index 000000000..9c7c46691 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_side_south.json @@ -0,0 +1,39 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "name": "top bar", + "from": [7, 12, 7], + "to": [9, 15, 16], + "faces": { + "east": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "south": {"uv": [13, 4, 15, 7], "texture": "#texture", "cullface": "south"}, + "west": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "up": {"uv": [13, 7, 15, 16], "texture": "#texture"}, + "down": {"uv": [13, 7, 15, 16], "texture": "#texture"} + } + }, + { + "name": "lower bar", + "from": [7, 6, 7], + "to": [9, 9, 16], + "faces": { + "east": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "south": {"uv": [13, 4, 15, 7], "texture": "#texture", "cullface": "south"}, + "west": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "up": {"uv": [13, 7, 15, 16], "texture": "#texture"}, + "down": {"uv": [13, 7, 15, 16], "texture": "#texture"} + } + } + ], + "groups": [ + { + "name": "south", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1] + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_side_west.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_side_west.json new file mode 100644 index 000000000..8bca73fee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/custom_fence_side_west.json @@ -0,0 +1,39 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "name": "top bar", + "from": [0, 12, 7], + "to": [9, 15, 9], + "faces": { + "north": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "south": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "west": {"uv": [15, 4, 13, 7], "texture": "#texture", "cullface": "west"}, + "up": {"uv": [13, 7, 15, 16], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [13, 7, 15, 16], "rotation": 90, "texture": "#texture"} + } + }, + { + "name": "lower bar", + "from": [0, 6, 7], + "to": [9, 9, 9], + "faces": { + "north": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "south": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "west": {"uv": [15, 4, 13, 7], "texture": "#texture", "cullface": "west"}, + "up": {"uv": [13, 7, 15, 16], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [13, 7, 15, 16], "rotation": 90, "texture": "#texture"} + } + } + ], + "groups": [ + { + "name": "west", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1] + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper.json new file mode 100644 index 000000000..46385a557 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper_slab.json new file mode 100644 index 000000000..45106b89d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/cut_copper", + "side": "minecraft:block/cut_copper", + "top": "minecraft:block/cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper_slab_top.json new file mode 100644 index 000000000..23e57a773 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/cut_copper", + "side": "minecraft:block/cut_copper", + "top": "minecraft:block/cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper_stairs.json new file mode 100644 index 000000000..4365a0a7a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/cut_copper", + "side": "minecraft:block/cut_copper", + "top": "minecraft:block/cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper_stairs_inner.json new file mode 100644 index 000000000..922bb2c10 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/cut_copper", + "side": "minecraft:block/cut_copper", + "top": "minecraft:block/cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper_stairs_outer.json new file mode 100644 index 000000000..3f2f77a3f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_copper_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/cut_copper", + "side": "minecraft:block/cut_copper", + "top": "minecraft:block/cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_red_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_red_sandstone.json new file mode 100644 index 000000000..120aff8fa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_red_sandstone.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/cut_red_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_red_sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_red_sandstone_slab.json new file mode 100644 index 000000000..dae7dcdd0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_red_sandstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/cut_red_sandstone", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_red_sandstone_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_red_sandstone_slab_top.json new file mode 100644 index 000000000..808ca3090 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_red_sandstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/cut_red_sandstone", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_sandstone.json new file mode 100644 index 000000000..00a391fcb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_sandstone.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/sandstone_top", + "side": "minecraft:block/cut_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_sandstone_slab.json new file mode 100644 index 000000000..ff33c6d71 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_sandstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/sandstone_top", + "side": "minecraft:block/cut_sandstone", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_sandstone_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_sandstone_slab_top.json new file mode 100644 index 000000000..3a0088147 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cut_sandstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/sandstone_top", + "side": "minecraft:block/cut_sandstone", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_cake.json new file mode 100644 index 000000000..81f1a771f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/cyan_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_cake_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_cake_lit.json new file mode 100644 index 000000000..26a307753 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/cyan_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_four_candles.json new file mode 100644 index 000000000..aba78b65a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/cyan_candle", + "particle": "minecraft:block/cyan_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_four_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_four_candles_lit.json new file mode 100644 index 000000000..94c037b5c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/cyan_candle_lit", + "particle": "minecraft:block/cyan_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_one_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_one_candle.json new file mode 100644 index 000000000..3f4cd5dde --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/cyan_candle", + "particle": "minecraft:block/cyan_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_one_candle_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_one_candle_lit.json new file mode 100644 index 000000000..26f7b1fca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/cyan_candle_lit", + "particle": "minecraft:block/cyan_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_three_candles.json new file mode 100644 index 000000000..46e57b1a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/cyan_candle", + "particle": "minecraft:block/cyan_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_three_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_three_candles_lit.json new file mode 100644 index 000000000..8547cf3f5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/cyan_candle_lit", + "particle": "minecraft:block/cyan_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_two_candles.json new file mode 100644 index 000000000..420a7e65a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/cyan_candle", + "particle": "minecraft:block/cyan_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_two_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_two_candles_lit.json new file mode 100644 index 000000000..26e076f1d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/cyan_candle_lit", + "particle": "minecraft:block/cyan_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_carpet.json new file mode 100644 index 000000000..65c4e3309 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/cyan_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_concrete.json new file mode 100644 index 000000000..4972d16fa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cyan_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_concrete_powder.json new file mode 100644 index 000000000..0043a499f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cyan_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_glazed_terracotta.json new file mode 100644 index 000000000..19e3f7059 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/cyan_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_shulker_box.json new file mode 100644 index 000000000..748f7d9fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/cyan_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass.json new file mode 100644 index 000000000..7966749e9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cyan_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_noside.json new file mode 100644 index 000000000..c3caf2eff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/cyan_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..596a41aad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/cyan_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_post.json new file mode 100644 index 000000000..bc0b9cd3c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/cyan_stained_glass_pane_top", + "pane": "minecraft:block/cyan_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_side.json new file mode 100644 index 000000000..c407e0f02 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/cyan_stained_glass_pane_top", + "pane": "minecraft:block/cyan_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..81ebdce73 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/cyan_stained_glass_pane_top", + "pane": "minecraft:block/cyan_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_terracotta.json new file mode 100644 index 000000000..bbf073e15 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cyan_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_wool.json new file mode 100644 index 000000000..d686a2408 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/cyan_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cyan_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/damaged_anvil.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/damaged_anvil.json new file mode 100644 index 000000000..33ea477ba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/damaged_anvil.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_anvil", + "textures": { + "top": "minecraft:block/damaged_anvil_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dandelion.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dandelion.json new file mode 100644 index 000000000..1b23461ea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dandelion.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/dandelion" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_button.json new file mode 100644 index 000000000..9a8ceb0e7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_button_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_button_inventory.json new file mode 100644 index 000000000..682f7e70c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_button_pressed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_button_pressed.json new file mode 100644 index 000000000..9212bf495 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_left.json new file mode 100644 index 000000000..cfce70fea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/dark_oak_door_bottom", + "top": "minecraft:block/dark_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_left_open.json new file mode 100644 index 000000000..8becfb430 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/dark_oak_door_bottom", + "top": "minecraft:block/dark_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_right.json new file mode 100644 index 000000000..8b1767ef2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/dark_oak_door_bottom", + "top": "minecraft:block/dark_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_right_open.json new file mode 100644 index 000000000..6073ce092 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/dark_oak_door_bottom", + "top": "minecraft:block/dark_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_left.json new file mode 100644 index 000000000..d9ef9961a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/dark_oak_door_bottom", + "top": "minecraft:block/dark_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_left_open.json new file mode 100644 index 000000000..d74cf9210 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/dark_oak_door_bottom", + "top": "minecraft:block/dark_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_right.json new file mode 100644 index 000000000..bb9eb3bcd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/dark_oak_door_bottom", + "top": "minecraft:block/dark_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_right_open.json new file mode 100644 index 000000000..0dfa837f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/dark_oak_door_bottom", + "top": "minecraft:block/dark_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate.json new file mode 100644 index 000000000..d6cd9106c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_open.json new file mode 100644 index 000000000..5ab6d1bc5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_wall.json new file mode 100644 index 000000000..5e372cce4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_wall_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_wall_open.json new file mode 100644 index 000000000..81181a3e9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_inventory.json new file mode 100644 index 000000000..34976cb64 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_post.json new file mode 100644 index 000000000..7ddb63e0b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_side.json new file mode 100644 index 000000000..6db6293c5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_hanging_sign.json new file mode 100644 index 000000000..a5e7ec1c8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_leaves.json new file mode 100644 index 000000000..c5a0ee7c5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/dark_oak_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_log.json new file mode 100644 index 000000000..0a8759501 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/dark_oak_log_top", + "side": "minecraft:block/dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_log_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_log_horizontal.json new file mode 100644 index 000000000..044f4d5ae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/dark_oak_log_top", + "side": "minecraft:block/dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_planks.json new file mode 100644 index 000000000..443669e91 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_pressure_plate.json new file mode 100644 index 000000000..cae875a73 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_pressure_plate_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_pressure_plate_down.json new file mode 100644 index 000000000..8effed633 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_sapling.json new file mode 100644 index 000000000..bc9e95327 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/dark_oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_sign.json new file mode 100644 index 000000000..52cfc99c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_slab.json new file mode 100644 index 000000000..ac8790791 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/dark_oak_planks", + "side": "minecraft:block/dark_oak_planks", + "top": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_slab_top.json new file mode 100644 index 000000000..de4e78be4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/dark_oak_planks", + "side": "minecraft:block/dark_oak_planks", + "top": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_stairs.json new file mode 100644 index 000000000..4c73a828d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/dark_oak_planks", + "side": "minecraft:block/dark_oak_planks", + "top": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_stairs_inner.json new file mode 100644 index 000000000..b7472cbf2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/dark_oak_planks", + "side": "minecraft:block/dark_oak_planks", + "top": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_stairs_outer.json new file mode 100644 index 000000000..edf1bd2cb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/dark_oak_planks", + "side": "minecraft:block/dark_oak_planks", + "top": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_bottom.json new file mode 100644 index 000000000..332c78b6c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/dark_oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_open.json new file mode 100644 index 000000000..911cfb109 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_open", + "textures": { + "texture": "minecraft:block/dark_oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_top.json new file mode 100644 index 000000000..442332025 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_top", + "textures": { + "texture": "minecraft:block/dark_oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_wood.json new file mode 100644 index 000000000..ac9cad058 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_oak_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/dark_oak_log", + "side": "minecraft:block/dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine.json new file mode 100644 index 000000000..545193a6e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dark_prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine_slab.json new file mode 100644 index 000000000..850650925 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/dark_prismarine", + "side": "minecraft:block/dark_prismarine", + "top": "minecraft:block/dark_prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine_slab_top.json new file mode 100644 index 000000000..52491c02d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/dark_prismarine", + "side": "minecraft:block/dark_prismarine", + "top": "minecraft:block/dark_prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs.json new file mode 100644 index 000000000..745331ec5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/dark_prismarine", + "side": "minecraft:block/dark_prismarine", + "top": "minecraft:block/dark_prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs_inner.json new file mode 100644 index 000000000..16fa45610 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/dark_prismarine", + "side": "minecraft:block/dark_prismarine", + "top": "minecraft:block/dark_prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs_outer.json new file mode 100644 index 000000000..16f91d74a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/dark_prismarine", + "side": "minecraft:block/dark_prismarine", + "top": "minecraft:block/dark_prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/daylight_detector.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/daylight_detector.json new file mode 100644 index 000000000..51e46c1ae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/daylight_detector.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_daylight_detector", + "textures": { + "side": "minecraft:block/daylight_detector_side", + "top": "minecraft:block/daylight_detector_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/daylight_detector_inverted.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/daylight_detector_inverted.json new file mode 100644 index 000000000..861c143f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/daylight_detector_inverted.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_daylight_detector", + "textures": { + "side": "minecraft:block/daylight_detector_side", + "top": "minecraft:block/daylight_detector_inverted_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_brain_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_brain_coral.json new file mode 100644 index 000000000..b6ddeefd8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_brain_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/dead_brain_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_brain_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_brain_coral_block.json new file mode 100644 index 000000000..d81ec7534 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_brain_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dead_brain_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_brain_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_brain_coral_fan.json new file mode 100644 index 000000000..e9bc5a209 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_brain_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/dead_brain_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_brain_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_brain_coral_wall_fan.json new file mode 100644 index 000000000..6c25874d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_brain_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/dead_brain_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_bubble_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_bubble_coral.json new file mode 100644 index 000000000..62708cfcf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_bubble_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/dead_bubble_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_block.json new file mode 100644 index 000000000..53b476448 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dead_bubble_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_fan.json new file mode 100644 index 000000000..4f104c5a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/dead_bubble_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_wall_fan.json new file mode 100644 index 000000000..e9f9688a0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/dead_bubble_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_bush.json new file mode 100644 index 000000000..01573a5c6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_bush.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/dead_bush" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_fire_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_fire_coral.json new file mode 100644 index 000000000..8121184ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_fire_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/dead_fire_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_fire_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_fire_coral_block.json new file mode 100644 index 000000000..a49a17a29 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_fire_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dead_fire_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_fire_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_fire_coral_fan.json new file mode 100644 index 000000000..7eb4884d9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_fire_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/dead_fire_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_fire_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_fire_coral_wall_fan.json new file mode 100644 index 000000000..62abee0ba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_fire_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/dead_fire_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_horn_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_horn_coral.json new file mode 100644 index 000000000..ea1fb3896 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_horn_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/dead_horn_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_horn_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_horn_coral_block.json new file mode 100644 index 000000000..6e6505d93 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_horn_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dead_horn_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_horn_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_horn_coral_fan.json new file mode 100644 index 000000000..0a14c1c6c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_horn_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/dead_horn_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_horn_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_horn_coral_wall_fan.json new file mode 100644 index 000000000..e303e9677 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_horn_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/dead_horn_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_sea_pickle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_sea_pickle.json new file mode 100644 index 000000000..ce3ee6ebc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_sea_pickle.json @@ -0,0 +1,27 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/sea_pickle", + "all": "block/sea_pickle" + }, + "elements": [ + { "from": [ 6, 0, 6 ], + "to": [ 10, 6, 10 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 6, 5.95, 6 ], + "to": [ 10, 5.95, 10 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_tube_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_tube_coral.json new file mode 100644 index 000000000..568dd7cbe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_tube_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/dead_tube_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_tube_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_tube_coral_block.json new file mode 100644 index 000000000..7768abbf0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_tube_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dead_tube_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_tube_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_tube_coral_fan.json new file mode 100644 index 000000000..31080a1b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_tube_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/dead_tube_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_tube_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_tube_coral_wall_fan.json new file mode 100644 index 000000000..20dab6c1f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dead_tube_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/dead_tube_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/decorated_pot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/decorated_pot.json new file mode 100644 index 000000000..1456e72d8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/decorated_pot.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate.json new file mode 100644 index 000000000..dff2a5c69 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/deepslate_top", + "side": "minecraft:block/deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_slab.json new file mode 100644 index 000000000..4c5bf8791 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/deepslate_bricks", + "side": "minecraft:block/deepslate_bricks", + "top": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_slab_top.json new file mode 100644 index 000000000..5e520e6b3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/deepslate_bricks", + "side": "minecraft:block/deepslate_bricks", + "top": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs.json new file mode 100644 index 000000000..ccdee8b3a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/deepslate_bricks", + "side": "minecraft:block/deepslate_bricks", + "top": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs_inner.json new file mode 100644 index 000000000..9cee383db --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/deepslate_bricks", + "side": "minecraft:block/deepslate_bricks", + "top": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs_outer.json new file mode 100644 index 000000000..4350eda85 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/deepslate_bricks", + "side": "minecraft:block/deepslate_bricks", + "top": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_inventory.json new file mode 100644 index 000000000..742243242 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_post.json new file mode 100644 index 000000000..0497e7b6e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_side.json new file mode 100644 index 000000000..c927a7b5e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_side_tall.json new file mode 100644 index 000000000..8674f91eb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_bricks.json new file mode 100644 index 000000000..cebe5470a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_coal_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_coal_ore.json new file mode 100644 index 000000000..808803b3f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_coal_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_coal_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_copper_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_copper_ore.json new file mode 100644 index 000000000..50e3a6228 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_copper_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_copper_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_diamond_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_diamond_ore.json new file mode 100644 index 000000000..eea2f4ba8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_diamond_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_diamond_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_emerald_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_emerald_ore.json new file mode 100644 index 000000000..47ccf6d85 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_emerald_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_emerald_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_gold_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_gold_ore.json new file mode 100644 index 000000000..6111c16f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_gold_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_gold_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_iron_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_iron_ore.json new file mode 100644 index 000000000..fd7a8e485 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_iron_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_iron_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_lapis_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_lapis_ore.json new file mode 100644 index 000000000..fa19ebab4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_lapis_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_lapis_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_mirrored.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_mirrored.json new file mode 100644 index 000000000..12a83f215 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_mirrored.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_mirrored", + "textures": { + "end": "minecraft:block/deepslate_top", + "side": "minecraft:block/deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_redstone_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_redstone_ore.json new file mode 100644 index 000000000..ff45a3c05 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_redstone_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_redstone_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_slab.json new file mode 100644 index 000000000..a5acbda97 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/deepslate_tiles", + "side": "minecraft:block/deepslate_tiles", + "top": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_slab_top.json new file mode 100644 index 000000000..aa3cc4cc1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/deepslate_tiles", + "side": "minecraft:block/deepslate_tiles", + "top": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs.json new file mode 100644 index 000000000..0048204b0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/deepslate_tiles", + "side": "minecraft:block/deepslate_tiles", + "top": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs_inner.json new file mode 100644 index 000000000..1cd46771b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/deepslate_tiles", + "side": "minecraft:block/deepslate_tiles", + "top": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs_outer.json new file mode 100644 index 000000000..87b9eba65 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/deepslate_tiles", + "side": "minecraft:block/deepslate_tiles", + "top": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_inventory.json new file mode 100644 index 000000000..7ee2ba1bd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_post.json new file mode 100644 index 000000000..bb6f0b947 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_side.json new file mode 100644 index 000000000..6e27c7b95 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_side_tall.json new file mode 100644 index 000000000..fd638ff86 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tiles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tiles.json new file mode 100644 index 000000000..91ff5fcef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/deepslate_tiles.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail.json new file mode 100644 index 000000000..22b668267 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/rail_flat", + "textures": { + "rail": "minecraft:block/detector_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail_on.json new file mode 100644 index 000000000..0cba22b8a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail_on.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/rail_flat", + "textures": { + "rail": "minecraft:block/detector_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail_on_raised_ne.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail_on_raised_ne.json new file mode 100644 index 000000000..fe6bd149d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail_on_raised_ne.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_ne", + "textures": { + "rail": "minecraft:block/detector_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail_on_raised_sw.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail_on_raised_sw.json new file mode 100644 index 000000000..656151703 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail_on_raised_sw.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_sw", + "textures": { + "rail": "minecraft:block/detector_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail_raised_ne.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail_raised_ne.json new file mode 100644 index 000000000..9128675b4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail_raised_ne.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_ne", + "textures": { + "rail": "minecraft:block/detector_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail_raised_sw.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail_raised_sw.json new file mode 100644 index 000000000..74ee588f9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/detector_rail_raised_sw.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_sw", + "textures": { + "rail": "minecraft:block/detector_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diamond_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diamond_block.json new file mode 100644 index 000000000..a021068b0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diamond_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/diamond_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diamond_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diamond_ore.json new file mode 100644 index 000000000..ca8480e52 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diamond_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/diamond_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite.json new file mode 100644 index 000000000..9f1f6eba3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_slab.json new file mode 100644 index 000000000..651005b5e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/diorite", + "side": "minecraft:block/diorite", + "top": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_slab_top.json new file mode 100644 index 000000000..e97d4da12 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/diorite", + "side": "minecraft:block/diorite", + "top": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_stairs.json new file mode 100644 index 000000000..122797452 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/diorite", + "side": "minecraft:block/diorite", + "top": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_stairs_inner.json new file mode 100644 index 000000000..ced839df7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/diorite", + "side": "minecraft:block/diorite", + "top": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_stairs_outer.json new file mode 100644 index 000000000..5f0b32fba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/diorite", + "side": "minecraft:block/diorite", + "top": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_wall_inventory.json new file mode 100644 index 000000000..9e364aa88 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_wall_post.json new file mode 100644 index 000000000..7f1611018 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_wall_side.json new file mode 100644 index 000000000..633d2539a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_wall_side_tall.json new file mode 100644 index 000000000..0e5ea70f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/diorite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dirt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dirt.json new file mode 100644 index 000000000..047941382 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dirt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dirt" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dirt_path.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dirt_path.json new file mode 100644 index 000000000..95c880dbe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dirt_path.json @@ -0,0 +1,21 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/dirt", + "top": "block/dirt_path_top", + "side": "block/dirt_path_side", + "bottom": "block/dirt" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 15, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 1, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 1, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 1, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 1, 16, 16 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dispenser.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dispenser.json new file mode 100644 index 000000000..321e6bca6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dispenser.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "front": "minecraft:block/dispenser_front", + "side": "minecraft:block/furnace_side", + "top": "minecraft:block/furnace_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dispenser_vertical.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dispenser_vertical.json new file mode 100644 index 000000000..7b681162a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dispenser_vertical.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/orientable_vertical", + "textures": { + "front": "minecraft:block/dispenser_front_vertical", + "side": "minecraft:block/furnace_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_bottom_left.json new file mode 100644 index 000000000..5eef3f89c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_bottom_left.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#bottom" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 3, 16, 16 ], + "faces": { + "down": { "uv": [ 16, 13, 0, 16 ], "texture": "#bottom", "cullface": "down", "rotation": 90 }, + "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#bottom", "cullface": "north" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#bottom", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "west" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#bottom" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_bottom_left_open.json new file mode 100644 index 000000000..2c30d11a8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_bottom_left_open.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#bottom" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 3, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 16, 13 ], "texture": "#bottom", "cullface": "down", "rotation": 90 }, + "north": { "uv": [ 0, 0, 3, 16 ], "texture": "#bottom", "cullface": "north" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#bottom", "cullface": "south" }, + "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#bottom", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_bottom_right.json new file mode 100644 index 000000000..69f4df6ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_bottom_right.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#bottom" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 3, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 13, 16, 16 ], "texture": "#bottom", "cullface": "down", "rotation": 90 }, + "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#bottom", "cullface": "north" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#bottom", "cullface": "south" }, + "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#bottom", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_bottom_right_open.json new file mode 100644 index 000000000..a0388a41f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_bottom_right_open.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#bottom" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 3, 16, 16 ], + "faces": { + "down": { "uv": [ 16, 16, 0, 13 ], "texture": "#bottom", "cullface": "down", "rotation": 90 }, + "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#bottom", "cullface": "north" }, + "south": { "uv": [ 3, 0, 0, 16 ], "texture": "#bottom", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "west" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#bottom" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_top_left.json new file mode 100644 index 000000000..46358e197 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_top_left.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#top" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 3, 16, 16 ], + "faces": { + "up": { "uv": [ 0, 3, 16, 0 ], "texture": "#top", "cullface": "up", "rotation": 90 }, + "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#top", "cullface": "north" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#top", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "west" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#top" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_top_left_open.json new file mode 100644 index 000000000..e63fb2be3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_top_left_open.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#top" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 3, 16, 16 ], + "faces": { + "up": { "uv": [ 0, 3, 16, 0 ], "texture": "#top", "cullface": "up", "rotation": 270 }, + "north": { "uv": [ 0, 0, 3, 16 ], "texture": "#top", "cullface": "north" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#top", "cullface": "south" }, + "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#top", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_top_right.json new file mode 100644 index 000000000..891d8510b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_top_right.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#top" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 3, 16, 16 ], + "faces": { + "up": { "uv": [ 0, 0, 16, 3 ], "texture": "#top", "cullface": "up", "rotation": 270 }, + "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#top", "cullface": "north" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#top", "cullface": "south" }, + "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#top", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_top_right_open.json new file mode 100644 index 000000000..99baffebc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/door_top_right_open.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#top" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 3, 16, 16 ], + "faces": { + "up": { "uv": [ 0, 0, 16, 3 ], "texture": "#top", "cullface": "up", "rotation": 90 }, + "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#top", "cullface": "north" }, + "south": { "uv": [ 3, 0, 0, 16 ], "texture": "#top", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "west" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#top" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dragon_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dragon_egg.json new file mode 100644 index 000000000..042d4ebed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dragon_egg.json @@ -0,0 +1,79 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/dragon_egg", + "all": "block/dragon_egg" + }, + "elements": [ + { + "from": [6, 15, 6], + "to": [10, 16, 10], + "faces": { + "north": {"uv": [6, 0, 10, 1], "texture": "#all"}, + "east": {"uv": [6, 0, 10, 1], "texture": "#all"}, + "south": {"uv": [6, 0, 10, 1], "texture": "#all"}, + "west": {"uv": [6, 0, 10, 1], "texture": "#all"}, + "up": {"uv": [6, 6, 10, 10], "texture": "#all", "cullface": "up"} + } + }, + { + "from": [5, 14, 5], + "to": [11, 15, 11], + "faces": { + "north": {"uv": [5, 1, 11, 2], "texture": "#all"}, + "east": {"uv": [5, 1, 11, 2], "texture": "#all"}, + "south": {"uv": [5, 1, 11, 2], "texture": "#all"}, + "west": {"uv": [5, 1, 11, 2], "texture": "#all"}, + "up": {"uv": [5, 5, 11, 11], "texture": "#all"} + } + }, + { + "from": [4, 13, 4], + "to": [12, 14, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, + "faces": { + "north": {"uv": [4, 2, 12, 3], "texture": "#all"}, + "east": {"uv": [4, 2, 12, 3], "texture": "#all"}, + "south": {"uv": [4, 2, 12, 3], "texture": "#all"}, + "west": {"uv": [4, 2, 12, 3], "texture": "#all"}, + "up": {"uv": [4, 4, 12, 12], "texture": "#all"} + } + }, + { + "from": [3, 0, 3], + "to": [13, 13, 13], + "faces": { + "north": {"uv": [3, 3, 13, 16], "texture": "#all"}, + "east": {"uv": [3, 3, 13, 16], "texture": "#all"}, + "south": {"uv": [3, 3, 13, 16], "texture": "#all"}, + "west": {"uv": [3, 3, 13, 16], "texture": "#all"}, + "up": {"uv": [3, 3, 13, 13], "texture": "#all"}, + "down": {"uv": [3, 3, 13, 13], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [2, 1, 2], + "to": [14, 11, 14], + "faces": { + "north": {"uv": [2, 5, 14, 15], "texture": "#all"}, + "east": {"uv": [2, 5, 14, 15], "texture": "#all"}, + "south": {"uv": [2, 5, 14, 15], "texture": "#all"}, + "west": {"uv": [2, 5, 14, 15], "texture": "#all"}, + "up": {"uv": [2, 2, 14, 14], "texture": "#all"}, + "down": {"uv": [2, 2, 14, 14], "texture": "#all"} + } + }, + { + "from": [1, 3, 1], + "to": [15, 8, 15], + "faces": { + "north": {"uv": [1, 8, 15, 13], "texture": "#all"}, + "east": {"uv": [1, 8, 15, 13], "texture": "#all"}, + "south": {"uv": [1, 8, 15, 13], "texture": "#all"}, + "west": {"uv": [1, 8, 15, 13], "texture": "#all"}, + "up": {"uv": [1, 1, 15, 15], "texture": "#all"}, + "down": {"uv": [1, 1, 15, 15], "texture": "#all"} + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_ghast.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_ghast.json new file mode 100644 index 000000000..d145c579c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_ghast.json @@ -0,0 +1,110 @@ +{ + "parent": "block/block", + "display": { + "gui": { + "rotation": [30, 225, 0], + "translation": [0.4, 1.6, 0], + "scale": [0.8, 0.8, 0.8] + } + }, + "elements": [ + { + "name": "body", + "from": [3, 0, 3], + "to": [13, 10, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [11, 0, 11]}, + "faces": { + "north": {"uv": [0, 0, 10, 10], "texture": "#north"}, + "east": {"uv": [0, 0, 10, 10], "texture": "#east"}, + "south": {"uv": [0, 0, 10, 10], "texture": "#south"}, + "west": {"uv": [0, 0, 10, 10], "texture": "#west"}, + "up": {"uv": [0, 0, 10, 10], "rotation": 180, "texture": "#top"}, + "down": {"uv": [10, 0, 0, 10], "texture": "#bottom", "cullface": "down"} + } + }, + { + "name": "left_tent_1", + "from": [0, 0, 5], + "to": [3, 1, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 13]}, + "faces": { + "north": {"uv": [1, 1.5, 2.5, 2], "texture": "#tentacles"}, + "east": {"uv": [0, 1.5, 1, 2], "texture": "#tentacles"}, + "south": {"uv": [3.5, 1.5, 5, 2], "texture": "#tentacles"}, + "west": {"uv": [2.5, 1.5, 3.5, 2], "texture": "#tentacles", "cullface": "west"}, + "up": {"uv": [2.5, 1.5, 1.5, 0], "rotation": 90, "texture": "#tentacles"}, + "down": {"uv": [2.5, 1.5, 3.5, 0], "rotation": 90, "texture": "#tentacles", "cullface": "down"} + } + }, + { + "name": "left_tent_2", + "from": [0, 0, 9], + "to": [3, 1, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 17]}, + "faces": { + "north": {"uv": [1, 3.5, 2.5, 4], "texture": "#tentacles"}, + "east": {"uv": [0, 3.5, 1, 4], "texture": "#tentacles"}, + "south": {"uv": [3.5, 3.5, 5, 4], "texture": "#tentacles"}, + "west": {"uv": [2.5, 3.5, 3.5, 4], "texture": "#tentacles", "cullface": "west"}, + "up": {"uv": [2.5, 3.5, 1.5, 2], "rotation": 90, "texture": "#tentacles"}, + "down": {"uv": [2.5, 3.5, 3.5, 2], "rotation": 90, "texture": "#tentacles", "cullface": "down"} + } + }, + { + "name": "right_tent_1", + "from": [13, 0, 5], + "to": [16, 1, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 13]}, + "faces": { + "north": {"uv": [2.5, 7.5, 1, 8], "texture": "#tentacles"}, + "east": {"uv": [3.5, 7.5, 2.5, 8], "texture": "#tentacles", "cullface": "east"}, + "south": {"uv": [5, 7.5, 3.5, 8], "texture": "#tentacles"}, + "west": {"uv": [1, 7.5, 0, 8], "texture": "#tentacles"}, + "up": {"uv": [2.5, 6, 1.5, 7.5], "rotation": 90, "texture": "#tentacles"}, + "down": {"uv": [2.5, 6, 3.5, 7.5], "rotation": 90, "texture": "#tentacles", "cullface": "down"} + } + }, + { + "name": "right_tent_2", + "from": [13, 0, 9], + "to": [16, 1, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 17]}, + "faces": { + "north": {"uv": [2.5, 5.5, 1, 6], "texture": "#tentacles"}, + "east": {"uv": [3.5, 5.5, 2.5, 6], "texture": "#tentacles", "cullface": "east"}, + "south": {"uv": [5, 5.5, 3.5, 6], "texture": "#tentacles"}, + "west": {"uv": [1, 5.5, 0, 6], "texture": "#tentacles"}, + "up": {"uv": [2.5, 4, 1.5, 5.5], "rotation": 90, "texture": "#tentacles"}, + "down": {"uv": [2.5, 4, 3.5, 5.5], "rotation": 90, "texture": "#tentacles", "cullface": "down"} + } + }, + { + "name": "back_tent_2", + "from": [9, 0, 13], + "to": [11, 1, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [10.5, 0.5, 14.5]}, + "faces": { + "north": {"uv": [6, 2.5, 5, 3], "texture": "#tentacles"}, + "east": {"uv": [7.5, 2.5, 6, 3], "texture": "#tentacles"}, + "south": {"uv": [8.5, 2.5, 7.5, 3], "texture": "#tentacles", "cullface": "south"}, + "west": {"uv": [10, 2.5, 8.5, 3], "texture": "#tentacles"}, + "up": {"uv": [6, 2.5, 7.5, 1.5], "rotation": 90, "texture": "#tentacles"}, + "down": {"uv": [7.5, 1.5, 9, 2.5], "rotation": 270, "texture": "#tentacles", "cullface": "down"} + } + }, + { + "name": "back_tent_1", + "from": [5, 0, 13], + "to": [7, 1, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [5.5, 0.5, 14.5]}, + "faces": { + "north": {"uv": [6, 1, 5, 1.5], "texture": "#tentacles"}, + "east": {"uv": [7.5, 1, 6, 1.5], "texture": "#tentacles"}, + "south": {"uv": [8.5, 1, 7.5, 1.5], "texture": "#tentacles", "cullface": "south" }, + "west": {"uv": [10, 1, 8.5, 1.5], "texture": "#tentacles"}, + "up": {"uv": [6, 1, 7.5, 0], "rotation": 90, "texture": "#tentacles"}, + "down": {"uv": [7.5, 0, 9, 1], "rotation": 270, "texture": "#tentacles", "cullface": "down"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_0.json new file mode 100644 index 000000000..7862b6056 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_0.json @@ -0,0 +1,13 @@ +{ + "parent": "minecraft:block/dried_ghast", + "textures": { + "bottom": "minecraft:block/dried_ghast_hydration_0_bottom", + "east": "minecraft:block/dried_ghast_hydration_0_east", + "north": "minecraft:block/dried_ghast_hydration_0_north", + "particle": "minecraft:block/dried_ghast_hydration_0_north", + "south": "minecraft:block/dried_ghast_hydration_0_south", + "tentacles": "minecraft:block/dried_ghast_hydration_0_tentacles", + "top": "minecraft:block/dried_ghast_hydration_0_top", + "west": "minecraft:block/dried_ghast_hydration_0_west" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_1.json new file mode 100644 index 000000000..82cf1092a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_1.json @@ -0,0 +1,13 @@ +{ + "parent": "minecraft:block/dried_ghast", + "textures": { + "bottom": "minecraft:block/dried_ghast_hydration_1_bottom", + "east": "minecraft:block/dried_ghast_hydration_1_east", + "north": "minecraft:block/dried_ghast_hydration_1_north", + "particle": "minecraft:block/dried_ghast_hydration_1_north", + "south": "minecraft:block/dried_ghast_hydration_1_south", + "tentacles": "minecraft:block/dried_ghast_hydration_1_tentacles", + "top": "minecraft:block/dried_ghast_hydration_1_top", + "west": "minecraft:block/dried_ghast_hydration_1_west" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_2.json new file mode 100644 index 000000000..6af95c385 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_2.json @@ -0,0 +1,13 @@ +{ + "parent": "minecraft:block/dried_ghast", + "textures": { + "bottom": "minecraft:block/dried_ghast_hydration_2_bottom", + "east": "minecraft:block/dried_ghast_hydration_2_east", + "north": "minecraft:block/dried_ghast_hydration_2_north", + "particle": "minecraft:block/dried_ghast_hydration_2_north", + "south": "minecraft:block/dried_ghast_hydration_2_south", + "tentacles": "minecraft:block/dried_ghast_hydration_2_tentacles", + "top": "minecraft:block/dried_ghast_hydration_2_top", + "west": "minecraft:block/dried_ghast_hydration_2_west" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_3.json new file mode 100644 index 000000000..3d2812b18 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_3.json @@ -0,0 +1,13 @@ +{ + "parent": "minecraft:block/dried_ghast", + "textures": { + "bottom": "minecraft:block/dried_ghast_hydration_3_bottom", + "east": "minecraft:block/dried_ghast_hydration_3_east", + "north": "minecraft:block/dried_ghast_hydration_3_north", + "particle": "minecraft:block/dried_ghast_hydration_3_north", + "south": "minecraft:block/dried_ghast_hydration_3_south", + "tentacles": "minecraft:block/dried_ghast_hydration_3_tentacles", + "top": "minecraft:block/dried_ghast_hydration_3_top", + "west": "minecraft:block/dried_ghast_hydration_3_west" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_kelp_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_kelp_block.json new file mode 100644 index 000000000..4d76967ba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dried_kelp_block.json @@ -0,0 +1,25 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/dried_kelp_side", + "down": "block/dried_kelp_bottom", + "up": "block/dried_kelp_top", + "north": "block/dried_kelp_side", + "east": "block/dried_kelp_side", + "south": "block/dried_kelp_side", + "west": "block/dried_kelp_side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "cullface": "down" }, + "up": { "texture": "#up", "cullface": "up" }, + "north": { "texture": "#north", "cullface": "north" }, + "south": { "uv": [16, 0, 0, 16], "texture": "#south", "cullface": "south" }, + "west": { "texture": "#west", "cullface": "west" }, + "east": { "uv": [16, 0, 0, 16], "texture": "#east", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dripstone_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dripstone_block.json new file mode 100644 index 000000000..7c1da3f2d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dripstone_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dripstone_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dropper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dropper.json new file mode 100644 index 000000000..f2bdc53b4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dropper.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "front": "minecraft:block/dropper_front", + "side": "minecraft:block/furnace_side", + "top": "minecraft:block/furnace_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dropper_vertical.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dropper_vertical.json new file mode 100644 index 000000000..98c24a7af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/dropper_vertical.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/orientable_vertical", + "textures": { + "front": "minecraft:block/dropper_front_vertical", + "side": "minecraft:block/furnace_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/emerald_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/emerald_block.json new file mode 100644 index 000000000..ae7a4f4cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/emerald_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/emerald_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/emerald_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/emerald_ore.json new file mode 100644 index 000000000..b71c29b87 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/emerald_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/emerald_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/enchanting_table.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/enchanting_table.json new file mode 100644 index 000000000..404ca9a3d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/enchanting_table.json @@ -0,0 +1,21 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/enchanting_table_bottom", + "bottom": "block/enchanting_table_bottom", + "top": "block/enchanting_table_top", + "side": "block/enchanting_table_side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 12, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 4, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 4, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 4, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 4, 16, 16 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_gateway.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_gateway.json new file mode 100644 index 000000000..ae6b33b2d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_gateway.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/obsidian" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_portal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_portal.json new file mode 100644 index 000000000..ae6b33b2d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_portal.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/obsidian" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_portal_frame.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_portal_frame.json new file mode 100644 index 000000000..ac716efd0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_portal_frame.json @@ -0,0 +1,21 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/end_portal_frame_side", + "bottom": "block/end_stone", + "top": "block/end_portal_frame_top", + "side": "block/end_portal_frame_side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 13, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 3, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 3, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 3, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 3, 16, 16 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_portal_frame_filled.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_portal_frame_filled.json new file mode 100644 index 000000000..b3ed9297b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_portal_frame_filled.json @@ -0,0 +1,32 @@ +{ + "textures": { + "particle": "block/end_portal_frame_side", + "bottom": "block/end_stone", + "top": "block/end_portal_frame_top", + "side": "block/end_portal_frame_side", + "eye": "block/end_portal_frame_eye" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 13, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 3, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 3, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 3, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 3, 16, 16 ], "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 4, 13, 4 ], + "to": [ 12, 16, 12 ], + "faces": { + "up": { "uv": [ 4, 4, 12, 12 ], "texture": "#eye", "cullface": "up" }, + "north": { "uv": [ 4, 0, 12, 3 ], "texture": "#eye" }, + "south": { "uv": [ 4, 0, 12, 3 ], "texture": "#eye" }, + "west": { "uv": [ 4, 0, 12, 3 ], "texture": "#eye" }, + "east": { "uv": [ 4, 0, 12, 3 ], "texture": "#eye" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_rod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_rod.json new file mode 100644 index 000000000..aeb57d0b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_rod.json @@ -0,0 +1,43 @@ +{ "parent": "block/block", + "display": { + "head": { + "rotation": [ -60, 0, 0 ], + "translation": [ 0, 5, -9], + "scale":[ 1, 1, 1] + }, + "thirdperson_righthand": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 0, 0], + "scale": [ 0.375, 0.375, 0.375 ] + } + }, + "textures": { + "end_rod": "block/end_rod", + "particle": "block/end_rod" + }, + "elements": [ + { + "from": [ 6, 0, 6 ], + "to": [ 10, 1, 10 ], + "faces": { + "down": { "uv": [ 6, 6, 2, 2 ], "texture": "#end_rod", "cullface": "down" }, + "up": { "uv": [ 2, 2, 6, 6 ], "texture": "#end_rod" }, + "north": { "uv": [ 2, 6, 6, 7 ], "texture": "#end_rod" }, + "south": { "uv": [ 2, 6, 6, 7 ], "texture": "#end_rod" }, + "west": { "uv": [ 2, 6, 6, 7 ], "texture": "#end_rod" }, + "east": { "uv": [ 2, 6, 6, 7 ], "texture": "#end_rod" } + } + }, + { + "from": [ 7, 1, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "up": { "uv": [ 2, 0, 4, 2 ], "texture": "#end_rod", "cullface": "up" }, + "north": { "uv": [ 0, 0, 2, 15 ], "texture": "#end_rod" }, + "south": { "uv": [ 0, 0, 2, 15 ], "texture": "#end_rod" }, + "west": { "uv": [ 0, 0, 2, 15 ], "texture": "#end_rod" }, + "east": { "uv": [ 0, 0, 2, 15 ], "texture": "#end_rod" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone.json new file mode 100644 index 000000000..b3cc680e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/end_stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_slab.json new file mode 100644 index 000000000..0526c4897 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/end_stone_bricks", + "side": "minecraft:block/end_stone_bricks", + "top": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_slab_top.json new file mode 100644 index 000000000..5794a6523 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/end_stone_bricks", + "side": "minecraft:block/end_stone_bricks", + "top": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs.json new file mode 100644 index 000000000..c20d2d758 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/end_stone_bricks", + "side": "minecraft:block/end_stone_bricks", + "top": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs_inner.json new file mode 100644 index 000000000..3bea77e98 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/end_stone_bricks", + "side": "minecraft:block/end_stone_bricks", + "top": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs_outer.json new file mode 100644 index 000000000..7c2bb688a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/end_stone_bricks", + "side": "minecraft:block/end_stone_bricks", + "top": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_inventory.json new file mode 100644 index 000000000..8d84ef2c7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_post.json new file mode 100644 index 000000000..fba19f84e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_side.json new file mode 100644 index 000000000..be12a31bc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_side_tall.json new file mode 100644 index 000000000..ba695b27e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_bricks.json new file mode 100644 index 000000000..fd288c3d4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/end_stone_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ender_chest.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ender_chest.json new file mode 100644 index 000000000..ae6b33b2d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ender_chest.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/obsidian" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_chiseled_copper.json new file mode 100644 index 000000000..fca515bc1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_chiseled_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper.json new file mode 100644 index 000000000..8d02db6df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/exposed_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb.json new file mode 100644 index 000000000..001281312 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/exposed_copper_bulb" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_lit.json new file mode 100644 index 000000000..6916e3936 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_lit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/exposed_copper_bulb_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_lit_powered.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_lit_powered.json new file mode 100644 index 000000000..be6af2746 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_lit_powered.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/exposed_copper_bulb_lit_powered" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_powered.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_powered.json new file mode 100644 index 000000000..1e508f6dc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_powered.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/exposed_copper_bulb_powered" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_left.json new file mode 100644 index 000000000..1ff28c824 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/exposed_copper_door_bottom", + "top": "minecraft:block/exposed_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_left_open.json new file mode 100644 index 000000000..ab8778180 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/exposed_copper_door_bottom", + "top": "minecraft:block/exposed_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_right.json new file mode 100644 index 000000000..788ea381c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/exposed_copper_door_bottom", + "top": "minecraft:block/exposed_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_right_open.json new file mode 100644 index 000000000..a20476148 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/exposed_copper_door_bottom", + "top": "minecraft:block/exposed_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_left.json new file mode 100644 index 000000000..8ef26e343 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/exposed_copper_door_bottom", + "top": "minecraft:block/exposed_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_left_open.json new file mode 100644 index 000000000..55548218e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/exposed_copper_door_bottom", + "top": "minecraft:block/exposed_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_right.json new file mode 100644 index 000000000..5f407c5a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/exposed_copper_door_bottom", + "top": "minecraft:block/exposed_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_right_open.json new file mode 100644 index 000000000..f3979d86e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/exposed_copper_door_bottom", + "top": "minecraft:block/exposed_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_grate.json new file mode 100644 index 000000000..13639fcbb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_grate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/exposed_copper_grate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_bottom.json new file mode 100644 index 000000000..9c90e497f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/exposed_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_open.json new file mode 100644 index 000000000..495a451f0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_open", + "textures": { + "texture": "minecraft:block/exposed_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_top.json new file mode 100644 index 000000000..d8e48aebe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_top", + "textures": { + "texture": "minecraft:block/exposed_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper.json new file mode 100644 index 000000000..42cfd595f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/exposed_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_slab.json new file mode 100644 index 000000000..c736183ea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/exposed_cut_copper", + "side": "minecraft:block/exposed_cut_copper", + "top": "minecraft:block/exposed_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_slab_top.json new file mode 100644 index 000000000..42f73316a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/exposed_cut_copper", + "side": "minecraft:block/exposed_cut_copper", + "top": "minecraft:block/exposed_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs.json new file mode 100644 index 000000000..c9a3eb69f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/exposed_cut_copper", + "side": "minecraft:block/exposed_cut_copper", + "top": "minecraft:block/exposed_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs_inner.json new file mode 100644 index 000000000..d232176ae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/exposed_cut_copper", + "side": "minecraft:block/exposed_cut_copper", + "top": "minecraft:block/exposed_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs_outer.json new file mode 100644 index 000000000..02dea0cf1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/exposed_cut_copper", + "side": "minecraft:block/exposed_cut_copper", + "top": "minecraft:block/exposed_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/farmland.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/farmland.json new file mode 100644 index 000000000..6fb9a895b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/farmland.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_farmland", + "textures": { + "dirt": "minecraft:block/dirt", + "top": "minecraft:block/farmland" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/farmland_moist.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/farmland_moist.json new file mode 100644 index 000000000..4ef2e24b4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/farmland_moist.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_farmland", + "textures": { + "dirt": "minecraft:block/dirt", + "top": "minecraft:block/farmland_moist" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fence_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fence_inventory.json new file mode 100644 index 000000000..5c76bda53 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fence_inventory.json @@ -0,0 +1,107 @@ +{ "parent": "block/block", + "display": { + "gui": { + "rotation": [ 30, 135, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "fixed": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.5, 0.5, 0.5 ] + } + }, + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 6, 0, 0 ], + "to": [ 10, 16, 4 ], + "faces": { + "down": { "uv": [ 6, 0, 10, 4 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 6, 0, 10, 4 ], "texture": "#texture" }, + "north": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }, + "west": { "uv": [ 0, 0, 4, 16 ], "texture": "#texture" }, + "east": { "uv": [ 0, 0, 4, 16 ], "texture": "#texture" } + }, + "__comment": "Left post" + }, + { "from": [ 6, 0, 12 ], + "to": [ 10, 16, 16 ], + "faces": { + "down": { "uv": [ 6, 12, 10, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 6, 12, 10, 16 ], "texture": "#texture" }, + "north": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }, + "west": { "uv": [ 12, 0, 16, 16 ], "texture": "#texture" }, + "east": { "uv": [ 12, 0, 16, 16 ], "texture": "#texture" } + }, + "__comment": "Right post" + }, + { "from": [ 7, 12, 0 ], + "to": [ 9, 15, 16 ], + "faces": { + "down": { "uv": [ 7, 0, 9, 16 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 0, 1, 16, 4 ], "texture": "#texture" }, + "east": { "uv": [ 0, 1, 16, 4 ], "texture": "#texture" } + }, + "__comment": "Top bar" + }, + { "from": [ 7, 12, -2 ], + "to": [ 9, 15, 0 ], + "faces": { + "down": { "uv": [ 7, 0, 9, 2 ], "texture": "#texture" }, + "up": { "uv": [ 7, 14, 9, 16 ], "texture": "#texture" }, + "north": { "uv": [ 7, 1, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 14, 1, 16, 4 ], "texture": "#texture" }, + "east": { "uv": [ 0, 1, 2, 4 ], "texture": "#texture" } + }, + "__comment": "Top bar left" + }, + { "from": [ 7, 12, 16 ], + "to": [ 9, 15, 18 ], + "faces": { + "down": { "uv": [ 7, 14, 9, 16 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 9, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7, 1, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 0, 1, 2, 4 ], "texture": "#texture" }, + "east": { "uv": [ 14, 1, 16, 4 ], "texture": "#texture" } + }, + "__comment": "Top bar right" + }, + { "from": [ 7, 6, 0 ], + "to": [ 9, 9, 16 ], + "faces": { + "down": { "uv": [ 7, 0, 9, 16 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 0, 7, 16, 10 ], "texture": "#texture" }, + "east": { "uv": [ 0, 7, 16, 10 ], "texture": "#texture" } + }, + "__comment": "Lower bar" + }, + { "from": [ 7, 6, -2 ], + "to": [ 9, 9, 0 ], + "faces": { + "down": { "uv": [ 7, 0, 9, 2 ], "texture": "#texture" }, + "up": { "uv": [ 7, 14, 9, 16 ], "texture": "#texture" }, + "north": { "uv": [ 7, 7, 9, 10 ], "texture": "#texture" }, + "west": { "uv": [ 14, 7, 16, 10 ], "texture": "#texture" }, + "east": { "uv": [ 0, 7, 2, 10 ], "texture": "#texture" } + }, + "__comment": "Lower bar left" + }, + { "from": [ 7, 6, 16 ], + "to": [ 9, 9, 18 ], + "faces": { + "down": { "uv": [ 7, 14, 9, 16 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 9, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7, 7, 9, 10 ], "texture": "#texture" }, + "west": { "uv": [ 0, 7, 2, 10 ], "texture": "#texture" }, + "east": { "uv": [ 14, 7, 16, 10 ], "texture": "#texture" } + }, + "__comment": "Lower bar right" + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fence_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fence_post.json new file mode 100644 index 000000000..4f6a74386 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fence_post.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 6, 0, 6 ], + "to": [ 10, 16, 10 ], + "faces": { + "down": { "uv": [ 6, 6, 10, 10 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#texture", "cullface": "up" }, + "north": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" } + }, + "__comment": "Center post" + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fence_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fence_side.json new file mode 100644 index 000000000..7145349ba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fence_side.json @@ -0,0 +1,29 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 7, 12, 0 ], + "to": [ 9, 15, 9 ], + "faces": { + "down": { "uv": [ 7, 0, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 1, 9, 4 ], "texture": "#texture", "cullface": "north" }, + "west": { "uv": [ 0, 1, 9, 4 ], "texture": "#texture" }, + "east": { "uv": [ 0, 1, 9, 4 ], "texture": "#texture" } + }, + "__comment": "top bar" + }, + { "from": [ 7, 6, 0 ], + "to": [ 9, 9, 9 ], + "faces": { + "down": { "uv": [ 7, 0, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 7, 9, 10 ], "texture": "#texture", "cullface": "north" }, + "west": { "uv": [ 0, 7, 9, 10 ], "texture": "#texture" }, + "east": { "uv": [ 0, 7, 9, 10 ], "texture": "#texture" } + }, + "__comment": "lower bar" + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fern.json new file mode 100644 index 000000000..69449f649 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/fern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_coral.json new file mode 100644 index 000000000..0eaf71ddd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/fire_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_coral_block.json new file mode 100644 index 000000000..ad084a771 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/fire_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_coral_fan.json new file mode 100644 index 000000000..4aec8dd13 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/fire_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_coral_wall_fan.json new file mode 100644 index 000000000..07546a42d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/fire_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_floor0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_floor0.json new file mode 100644 index 000000000..f137115df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_floor0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_floor", + "textures": { + "fire": "minecraft:block/fire_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_floor1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_floor1.json new file mode 100644 index 000000000..1822fe756 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_floor1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_floor", + "textures": { + "fire": "minecraft:block/fire_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_side0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_side0.json new file mode 100644 index 000000000..4ae905086 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_side0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_side", + "textures": { + "fire": "minecraft:block/fire_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_side1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_side1.json new file mode 100644 index 000000000..021602cd9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_side1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_side", + "textures": { + "fire": "minecraft:block/fire_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_side_alt0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_side_alt0.json new file mode 100644 index 000000000..13e9e56b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_side_alt0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_side_alt", + "textures": { + "fire": "minecraft:block/fire_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_side_alt1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_side_alt1.json new file mode 100644 index 000000000..d8a8550b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_side_alt1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_side_alt", + "textures": { + "fire": "minecraft:block/fire_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_up0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_up0.json new file mode 100644 index 000000000..ebae15a61 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_up0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_up", + "textures": { + "fire": "minecraft:block/fire_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_up1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_up1.json new file mode 100644 index 000000000..b80f0ebd2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_up1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_up", + "textures": { + "fire": "minecraft:block/fire_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_up_alt0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_up_alt0.json new file mode 100644 index 000000000..8925e2f0f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_up_alt0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_up_alt", + "textures": { + "fire": "minecraft:block/fire_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_up_alt1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_up_alt1.json new file mode 100644 index 000000000..696f351c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fire_up_alt1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_up_alt", + "textures": { + "fire": "minecraft:block/fire_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/firefly_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/firefly_bush.json new file mode 100644 index 000000000..668f253c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/firefly_bush.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cross_emissive", + "textures": { + "cross": "minecraft:block/firefly_bush", + "cross_emissive": "minecraft:block/firefly_bush_emissive" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fletching_table.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fletching_table.json new file mode 100644 index 000000000..7921725c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/fletching_table.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "down": "minecraft:block/birch_planks", + "east": "minecraft:block/fletching_table_side", + "north": "minecraft:block/fletching_table_front", + "particle": "minecraft:block/fletching_table_front", + "south": "minecraft:block/fletching_table_front", + "up": "minecraft:block/fletching_table_top", + "west": "minecraft:block/fletching_table_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flower_pot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flower_pot.json new file mode 100644 index 000000000..45c7a75b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flower_pot.json @@ -0,0 +1,57 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/flower_pot", + "flowerpot": "block/flower_pot", + "dirt": "block/dirt" + }, + "elements": [ + { "from": [ 5, 0, 5 ], + "to": [ 6, 6, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 10, 0, 5 ], + "to": [ 11, 6, 11 ], + "faces": { + "down": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 5 ], + "to": [ 10, 6, 6 ], + "faces": { + "down": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 10 ], + "to": [ 10, 6, 11 ], + "faces": { + "down": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 6 ], + "to": [ 10, 4, 10 ], + "faces": { + "down": { "uv": [ 6, 12, 10, 16 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#dirt" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flower_pot_cross.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flower_pot_cross.json new file mode 100644 index 000000000..05d1cbe23 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flower_pot_cross.json @@ -0,0 +1,75 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/flower_pot", + "flowerpot": "block/flower_pot", + "dirt": "block/dirt" + }, + "elements": [ + { "from": [ 5, 0, 5 ], + "to": [ 6, 6, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 10, 0, 5 ], + "to": [ 11, 6, 11 ], + "faces": { + "down": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 5 ], + "to": [ 10, 6, 6 ], + "faces": { + "down": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 10 ], + "to": [ 10, 6, 11 ], + "faces": { + "down": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 6 ], + "to": [ 10, 4, 10 ], + "faces": { + "down": { "uv": [ 6, 12, 10, 16 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#dirt" } + } + }, + { "from": [ 2.6, 4, 8 ], + "to": [ 13.4, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" } + } + }, + { "from": [ 8, 4, 2.6 ], + "to": [ 8, 16, 13.4 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flower_pot_cross_emissive.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flower_pot_cross_emissive.json new file mode 100644 index 000000000..e8fd2d535 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flower_pot_cross_emissive.json @@ -0,0 +1,95 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/flower_pot", + "flowerpot": "block/flower_pot", + "dirt": "block/dirt" + }, + "elements": [ + { "from": [ 5, 0, 5 ], + "to": [ 6, 6, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 10, 0, 5 ], + "to": [ 11, 6, 11 ], + "faces": { + "down": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 5 ], + "to": [ 10, 6, 6 ], + "faces": { + "down": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 10 ], + "to": [ 10, 6, 11 ], + "faces": { + "down": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 6 ], + "to": [ 10, 4, 10 ], + "faces": { + "down": { "uv": [ 6, 12, 10, 16 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#dirt" } + } + }, + { "from": [ 2.6, 4, 8 ], + "to": [ 13.4, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" } + } + }, + { "from": [ 8, 4, 2.6 ], + "to": [ 8, 16, 13.4 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" } + } + }, + { "from": [ 2.6, 4, 8 ], + "to": [ 13.4, 16, 8 ], + "light_emission": 15, + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross_emissive" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross_emissive" } + } + }, + { "from": [ 8, 4, 2.6 ], + "to": [ 8, 16, 13.4 ], + "light_emission": 15, + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross_emissive" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross_emissive" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowerbed_1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowerbed_1.json new file mode 100644 index 000000000..5b7ba90df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowerbed_1.json @@ -0,0 +1,70 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#flowerbed" + }, + "elements": [ + { + "from": [0, 2.99, 0], + "to": [8, 2.99, 8], + "faces": { + "up": {"uv": [0, 0, 8, 8], "texture": "#flowerbed"}, + "down": {"uv": [0, 8, 8, 0], "texture": "#flowerbed"} + } + }, + { + "from": [4.25, 0, -2.6], + "to": [4.25, 2.99, -1.6], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "east": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1}, + "west": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [3.75, 0, -2.1], + "to": [4.75, 2.99, -2.1], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1}, + "south": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [4.9, 0, 2.3], + "to": [4.9, 2.99, 3.3], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "east": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1}, + "west": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [4.4, 0, 2.8], + "to": [5.4, 2.99, 2.8], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1}, + "south": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [9.15, 0, -0.45], + "to": [9.15, 2.99, 0.55], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "east": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1}, + "west": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [8.65, 0, 0.05], + "to": [9.65, 2.99, 0.05], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1}, + "south": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowerbed_2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowerbed_2.json new file mode 100644 index 000000000..de654b86c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowerbed_2.json @@ -0,0 +1,42 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#flowerbed" + }, + "elements": [ + { + "from": [0, 1, 8], + "to": [8, 1, 16], + "faces": { + "up": {"uv": [0, 8, 8, 16], "texture": "#flowerbed"}, + "down": {"uv": [0, 16, 8, 8], "texture": "#flowerbed"} + } + }, + { + "from": [0, 1, 8], + "to": [8, 1, 16], + "faces": { + "up": {"uv": [0, 8, 8, 16], "texture": "#flowerbed"}, + "down": {"uv": [0, 16, 8, 8], "texture": "#flowerbed"} + } + }, + { + "from": [10.15, 0, 5.25], + "to": [11.15, 1, 5.25], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 6, 1, 7], "texture": "#stem", "tintindex": 1}, + "south": {"uv": [0, 6, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [10.65, 0, 4.75], + "to": [10.65, 1, 5.75], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 1]}, + "faces": { + "east": {"uv": [0, 6, 1, 7], "texture": "#stem", "tintindex": 1}, + "west": {"uv": [0, 6, 1, 7], "texture": "#stem", "tintindex": 1} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowerbed_3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowerbed_3.json new file mode 100644 index 000000000..1d3ba0fc2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowerbed_3.json @@ -0,0 +1,70 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#flowerbed" + }, + "elements": [ + { + "from": [8, 2, 8], + "to": [16, 2, 16], + "faces": { + "up": {"uv": [8, 8, 16, 16], "texture": "#flowerbed"}, + "down": {"uv": [8, 16, 16, 8], "texture": "#flowerbed"} + } + }, + { + "from": [17.65, 0, 1.9], + "to": [18.65, 2, 1.9], + "rotation": {"angle": -45, "axis": "y", "origin": [0.5, 0, 0.5]}, + "faces": { + "north": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1}, + "south": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [18.15, 0, 1.4], + "to": [18.15, 2, 2.4], + "rotation": {"angle": -45, "axis": "y", "origin": [0.5, 0, 0.5]}, + "faces": { + "east": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1}, + "west": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [17.65, 0, -3.35], + "to": [17.65, 2, -2.35], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "east": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1}, + "west": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [17.15, 0, -2.85], + "to": [18.15, 2, -2.85], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1}, + "south": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [13.4, 0, -0.5], + "to": [13.4, 2, 0.5], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "east": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1}, + "west": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [12.9, 0, 0], + "to": [13.9, 2, 0], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1}, + "south": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowerbed_4.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowerbed_4.json new file mode 100644 index 000000000..3559fe2f8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowerbed_4.json @@ -0,0 +1,34 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#flowerbed" + }, + "elements": [ + { + "from": [8, 2, 0], + "to": [16, 2, 8], + "faces": { + "up": {"uv": [8, 0, 16, 8], "texture": "#flowerbed"}, + "down": {"uv": [8, 8, 16, 0], "texture": "#flowerbed"} + } + }, + { + "from": [12.4, 0, -7.7], + "to": [12.4, 2, -6.7], + "rotation": {"angle": -45, "axis": "y", "origin": [-1, 0, -3]}, + "faces": { + "east": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1}, + "west": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [11.9, 0, -7.2], + "to": [12.9, 2, -7.2], + "rotation": {"angle": -45, "axis": "y", "origin": [-1, 0, -3]}, + "faces": { + "north": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1}, + "south": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowering_azalea.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowering_azalea.json new file mode 100644 index 000000000..65ac15ab9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowering_azalea.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_azalea", + "textures": { + "side": "minecraft:block/flowering_azalea_side", + "top": "minecraft:block/flowering_azalea_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowering_azalea_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowering_azalea_leaves.json new file mode 100644 index 000000000..f5caf1d7d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/flowering_azalea_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/flowering_azalea_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/four_dead_sea_pickles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/four_dead_sea_pickles.json new file mode 100644 index 000000000..5b5b0e7b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/four_dead_sea_pickles.json @@ -0,0 +1,84 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/sea_pickle", + "all": "block/sea_pickle" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 6, 6, 6 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 2, 5.95, 2 ], + "to": [ 6, 5.95, 6 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 9, 0, 10 ], + "to": [ 13, 4, 14 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 9 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 9 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 9 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 9 ], "texture": "#all" } + } + }, + { + "from": [ 9, 3.95, 10 ], + "to": [ 13, 3.95, 14 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 9, 0, 2 ], + "to": [ 13, 6, 6 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 9, 5.95, 2 ], + "to": [ 13, 5.95, 6 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 2, 0, 8 ], + "to": [ 6, 7, 12 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 12 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 12 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 12 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 12 ], "texture": "#all" } + } + }, + { + "from": [ 2, 6.95, 8 ], + "to": [ 6, 6.95, 12 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/four_sea_pickles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/four_sea_pickles.json new file mode 100644 index 000000000..a9480d941 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/four_sea_pickles.json @@ -0,0 +1,164 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/sea_pickle", + "all": "block/sea_pickle" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 6, 6, 6 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 2, 5.95, 2 ], + "to": [ 6, 5.95, 6 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 9, 0, 10 ], + "to": [ 13, 4, 14 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 9 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 9 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 9 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 9 ], "texture": "#all" } + } + }, + { + "from": [ 9, 3.95, 10 ], + "to": [ 13, 3.95, 14 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 9, 0, 2 ], + "to": [ 13, 6, 6 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 9, 5.95, 2 ], + "to": [ 13, 5.95, 6 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 2, 0, 8 ], + "to": [ 6, 7, 12 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 12 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 12 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 12 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 12 ], "texture": "#all" } + } + }, + { + "from": [ 2, 6.95, 8 ], + "to": [ 6, 6.95, 12 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 3.5, 5.2, 4 ], + "to": [ 4.5, 8.7, 4 ], + "rotation": { "origin": [ 4, 8, 4 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 4, 5.2, 3.5 ], + "to": [ 4, 8.7, 4.5 ], + "rotation": { "origin": [ 4, 8, 4 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + }, + { + "from": [ 10.5, 3.2, 12 ], + "to": [ 11.5, 6.7, 12 ], + "rotation": { "origin": [ 11, 8, 12 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 11, 3.2, 11.5 ], + "to": [ 11, 6.7, 12.5 ], + "rotation": { "origin": [ 11, 8, 12 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + }, + { + "from": [ 10.5, 5.2, 4 ], + "to": [ 11.5, 8.7, 4 ], + "rotation": { "origin": [ 11, 8, 4 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 11, 5.2, 3.5 ], + "to": [ 11, 8.7, 4.5 ], + "rotation": { "origin": [ 11, 8, 4 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + }, + { + "from": [ 3.5, 6.2, 10 ], + "to": [ 4.5, 9.7, 10 ], + "rotation": { "origin": [ 4, 8, 10 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 4, 6.2, 9.5 ], + "to": [ 4, 9.7, 10.5 ], + "rotation": { "origin": [ 4, 8, 10 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/four_slightly_cracked_turtle_eggs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/four_slightly_cracked_turtle_eggs.json new file mode 100644 index 000000000..fc2286aa7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/four_slightly_cracked_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_four_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg_slightly_cracked" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/four_turtle_eggs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/four_turtle_eggs.json new file mode 100644 index 000000000..895069343 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/four_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_four_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/four_very_cracked_turtle_eggs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/four_very_cracked_turtle_eggs.json new file mode 100644 index 000000000..6d6a8a6d1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/four_very_cracked_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_four_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg_very_cracked" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/frogspawn.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/frogspawn.json new file mode 100644 index 000000000..fb730c6f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/frogspawn.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/frogspawn", + "texture": "block/frogspawn" + }, + "elements": [ + { "from": [ 0, 0.25, 0 ], + "to": [ 16, 0.25, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/frosted_ice_0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/frosted_ice_0.json new file mode 100644 index 000000000..1873bb833 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/frosted_ice_0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/frosted_ice_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/frosted_ice_1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/frosted_ice_1.json new file mode 100644 index 000000000..ada6d7cf9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/frosted_ice_1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/frosted_ice_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/frosted_ice_2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/frosted_ice_2.json new file mode 100644 index 000000000..f97882c6f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/frosted_ice_2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/frosted_ice_2" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/frosted_ice_3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/frosted_ice_3.json new file mode 100644 index 000000000..330bb943f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/frosted_ice_3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/frosted_ice_3" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/furnace.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/furnace.json new file mode 100644 index 000000000..9603b454d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/furnace.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "front": "minecraft:block/furnace_front", + "side": "minecraft:block/furnace_side", + "top": "minecraft:block/furnace_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/furnace_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/furnace_on.json new file mode 100644 index 000000000..37c4d3941 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/furnace_on.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "front": "minecraft:block/furnace_front_on", + "side": "minecraft:block/furnace_side", + "top": "minecraft:block/furnace_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gilded_blackstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gilded_blackstone.json new file mode 100644 index 000000000..088b2170e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gilded_blackstone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gilded_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass.json new file mode 100644 index 000000000..4c193d189 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass_pane_noside.json new file mode 100644 index 000000000..dc01ef004 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass_pane_noside_alt.json new file mode 100644 index 000000000..f0151c1ba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass_pane_post.json new file mode 100644 index 000000000..6067b6a8c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/glass_pane_top", + "pane": "minecraft:block/glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass_pane_side.json new file mode 100644 index 000000000..0b03be05e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/glass_pane_top", + "pane": "minecraft:block/glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass_pane_side_alt.json new file mode 100644 index 000000000..e8bd700f9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/glass_pane_top", + "pane": "minecraft:block/glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glow_item_frame.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glow_item_frame.json new file mode 100644 index 000000000..d465e3966 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glow_item_frame.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_item_frame", + "textures": { + "particle": "block/birch_planks", + "wood": "block/birch_planks", + "back": "block/glow_item_frame" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glow_item_frame_map.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glow_item_frame_map.json new file mode 100644 index 000000000..0f8f9623b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glow_item_frame_map.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_item_frame_map", + "textures": { + "particle": "block/birch_planks", + "wood": "block/birch_planks", + "back": "block/glow_item_frame" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glow_lichen.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glow_lichen.json new file mode 100644 index 000000000..4bc0ff696 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glow_lichen.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/glow_lichen", + "glow_lichen": "block/glow_lichen" + }, + "elements": [ + { "from": [ 0, 0, 0.1 ], + "to": [ 16, 16, 0.1 ], + "faces": { + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#glow_lichen" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow_lichen" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glowstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glowstone.json new file mode 100644 index 000000000..64b05023d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/glowstone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/glowstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gold_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gold_block.json new file mode 100644 index 000000000..e4cf5eceb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gold_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gold_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gold_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gold_ore.json new file mode 100644 index 000000000..e330e8234 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gold_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gold_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite.json new file mode 100644 index 000000000..def59d00c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_slab.json new file mode 100644 index 000000000..937bb638a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/granite", + "side": "minecraft:block/granite", + "top": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_slab_top.json new file mode 100644 index 000000000..fcf5f0922 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/granite", + "side": "minecraft:block/granite", + "top": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_stairs.json new file mode 100644 index 000000000..240f8e179 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/granite", + "side": "minecraft:block/granite", + "top": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_stairs_inner.json new file mode 100644 index 000000000..34977cbb1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/granite", + "side": "minecraft:block/granite", + "top": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_stairs_outer.json new file mode 100644 index 000000000..6bfbf03c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/granite", + "side": "minecraft:block/granite", + "top": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_wall_inventory.json new file mode 100644 index 000000000..4fd63ac1f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_wall_post.json new file mode 100644 index 000000000..896a06a4c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_wall_side.json new file mode 100644 index 000000000..28bd6f3bd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_wall_side_tall.json new file mode 100644 index 000000000..b995d75c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/granite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/grass_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/grass_block.json new file mode 100644 index 000000000..94c521cb2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/grass_block.json @@ -0,0 +1,31 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/dirt", + "bottom": "block/dirt", + "top": "block/grass_block_top", + "side": "block/grass_block_side", + "overlay": "block/grass_block_side_overlay" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "up", "tintindex": 0 }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#overlay", "tintindex": 0, "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#overlay", "tintindex": 0, "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#overlay", "tintindex": 0, "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#overlay", "tintindex": 0, "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/grass_block_snow.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/grass_block_snow.json new file mode 100644 index 000000000..2bf4bbaad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/grass_block_snow.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/dirt", + "particle": "minecraft:block/dirt", + "side": "minecraft:block/grass_block_snow", + "top": "minecraft:block/grass_block_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gravel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gravel.json new file mode 100644 index 000000000..ed35aa8b9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gravel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gravel" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_cake.json new file mode 100644 index 000000000..e78d12b93 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/gray_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_cake_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_cake_lit.json new file mode 100644 index 000000000..041054f5a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/gray_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_four_candles.json new file mode 100644 index 000000000..88fc63be6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/gray_candle", + "particle": "minecraft:block/gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_four_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_four_candles_lit.json new file mode 100644 index 000000000..543b0ab1b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/gray_candle_lit", + "particle": "minecraft:block/gray_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_one_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_one_candle.json new file mode 100644 index 000000000..4bd2420c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/gray_candle", + "particle": "minecraft:block/gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_one_candle_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_one_candle_lit.json new file mode 100644 index 000000000..ab6af17e4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/gray_candle_lit", + "particle": "minecraft:block/gray_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_three_candles.json new file mode 100644 index 000000000..62903c456 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/gray_candle", + "particle": "minecraft:block/gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_three_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_three_candles_lit.json new file mode 100644 index 000000000..73d97d572 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/gray_candle_lit", + "particle": "minecraft:block/gray_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_two_candles.json new file mode 100644 index 000000000..8ad7e5ea5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/gray_candle", + "particle": "minecraft:block/gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_two_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_two_candles_lit.json new file mode 100644 index 000000000..c3e0cb065 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/gray_candle_lit", + "particle": "minecraft:block/gray_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_carpet.json new file mode 100644 index 000000000..1924a401d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/gray_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_concrete.json new file mode 100644 index 000000000..12c16a3b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gray_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_concrete_powder.json new file mode 100644 index 000000000..69ca2d0c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gray_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_glazed_terracotta.json new file mode 100644 index 000000000..4b8e268b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/gray_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_shulker_box.json new file mode 100644 index 000000000..93cae9908 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/gray_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass.json new file mode 100644 index 000000000..4255772ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_noside.json new file mode 100644 index 000000000..5ee05c4d0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..4ea84aa64 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_post.json new file mode 100644 index 000000000..7c762cff2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/gray_stained_glass_pane_top", + "pane": "minecraft:block/gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_side.json new file mode 100644 index 000000000..e1bb68e78 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/gray_stained_glass_pane_top", + "pane": "minecraft:block/gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..d0f02e679 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/gray_stained_glass_pane_top", + "pane": "minecraft:block/gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_terracotta.json new file mode 100644 index 000000000..eae31cf97 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gray_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_wool.json new file mode 100644 index 000000000..26140233f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/gray_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gray_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_cake.json new file mode 100644 index 000000000..803748943 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/green_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_cake_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_cake_lit.json new file mode 100644 index 000000000..bfe09f036 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/green_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_four_candles.json new file mode 100644 index 000000000..747a90255 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/green_candle", + "particle": "minecraft:block/green_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_four_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_four_candles_lit.json new file mode 100644 index 000000000..94d44e01d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/green_candle_lit", + "particle": "minecraft:block/green_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_one_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_one_candle.json new file mode 100644 index 000000000..d1c0549e5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/green_candle", + "particle": "minecraft:block/green_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_one_candle_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_one_candle_lit.json new file mode 100644 index 000000000..fc34dc9ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/green_candle_lit", + "particle": "minecraft:block/green_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_three_candles.json new file mode 100644 index 000000000..74af5d17c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/green_candle", + "particle": "minecraft:block/green_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_three_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_three_candles_lit.json new file mode 100644 index 000000000..2afade3fe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/green_candle_lit", + "particle": "minecraft:block/green_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_two_candles.json new file mode 100644 index 000000000..ab72a4be7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/green_candle", + "particle": "minecraft:block/green_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_two_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_two_candles_lit.json new file mode 100644 index 000000000..505c16ed5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/green_candle_lit", + "particle": "minecraft:block/green_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_carpet.json new file mode 100644 index 000000000..8d253d4bc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/green_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_concrete.json new file mode 100644 index 000000000..98a35206f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/green_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_concrete_powder.json new file mode 100644 index 000000000..b783da037 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/green_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_glazed_terracotta.json new file mode 100644 index 000000000..5238d5d31 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/green_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_shulker_box.json new file mode 100644 index 000000000..7b07e6401 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/green_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass.json new file mode 100644 index 000000000..9eb3adad4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/green_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_noside.json new file mode 100644 index 000000000..3b91e355a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/green_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..1791ed8f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/green_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_post.json new file mode 100644 index 000000000..0406b265b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/green_stained_glass_pane_top", + "pane": "minecraft:block/green_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_side.json new file mode 100644 index 000000000..313b79501 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/green_stained_glass_pane_top", + "pane": "minecraft:block/green_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..61ee696d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/green_stained_glass_pane_top", + "pane": "minecraft:block/green_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_terracotta.json new file mode 100644 index 000000000..8c1390074 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/green_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_wool.json new file mode 100644 index 000000000..79b5a21f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/green_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/green_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/grindstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/grindstone.json new file mode 100644 index 000000000..cc5e0f1f9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/grindstone.json @@ -0,0 +1,68 @@ +{ + "parent": "block/block", + "textures": { + "pivot": "block/grindstone_pivot", + "round": "block/grindstone_round", + "side": "block/grindstone_side", + "particle": "block/grindstone_side", + "leg": "block/dark_oak_log" + }, + "elements": [ + { + "from": [12, 0, 6], + "to": [14, 7, 10], + "faces": { + "north": {"uv": [2, 9, 4, 16], "texture": "#leg"}, + "east": {"uv": [10, 16, 6, 9], "texture": "#leg"}, + "south": {"uv": [12, 9, 14, 16], "texture": "#leg"}, + "west": {"uv": [6, 9, 10, 16], "texture": "#leg"}, + "down": {"uv": [12, 6, 14, 10], "texture": "#leg", "cullface": "down" } + } + }, + { + "from": [2, 0, 6], + "to": [4, 7, 10], + "faces": { + "north": {"uv": [12, 9, 14, 16], "texture": "#leg"}, + "east": {"uv": [10, 16, 6, 9], "texture": "#leg"}, + "south": {"uv": [2, 9, 4, 16], "texture": "#leg"}, + "west": {"uv": [6, 9, 10, 16], "texture": "#leg"}, + "down": {"uv": [2, 6, 4, 10], "texture": "#leg", "cullface": "down"} + } + }, + { + "from": [12, 7, 5], + "to": [14, 13, 11], + "faces": { + "north": {"uv": [6, 0, 8, 6], "texture": "#pivot"}, + "east": {"uv": [0, 0, 6, 6], "texture": "#pivot"}, + "south": {"uv": [6, 0, 8, 6], "texture": "#pivot"}, + "up": {"uv": [8, 0, 10, 6], "texture": "#pivot"}, + "down": {"uv": [8, 0, 10, 6], "texture": "#pivot"} + } + }, + { + "from": [2, 7, 5], + "to": [4, 13, 11], + "faces": { + "north": {"uv": [6, 0, 8, 6], "texture": "#pivot"}, + "south": {"uv": [6, 0, 8, 6], "texture": "#pivot"}, + "west": {"uv": [0, 0, 6, 6], "texture": "#pivot"}, + "up": {"uv": [8, 0, 10, 6], "texture": "#pivot"}, + "down": {"uv": [8, 0, 10, 6], "texture": "#pivot"} + } + }, + { + "from": [4, 4, 2], + "to": [12, 16, 14], + "faces": { + "north": {"uv": [0, 0, 8, 12], "texture": "#round"}, + "east": {"uv": [0, 0, 12, 12], "texture": "#side"}, + "south": {"uv": [0, 0, 8, 12], "texture": "#round"}, + "west": {"uv": [0, 0, 12, 12], "texture": "#side"}, + "up": {"uv": [0, 0, 8, 12], "texture": "#round", "cullface": "up" }, + "down": {"uv": [0, 0, 8, 12], "texture": "#round"} + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/hanging_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/hanging_roots.json new file mode 100644 index 000000000..1c979695c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/hanging_roots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/hanging_roots" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/hay_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/hay_block.json new file mode 100644 index 000000000..6c0c225b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/hay_block.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/hay_block_top", + "side": "minecraft:block/hay_block_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/hay_block_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/hay_block_horizontal.json new file mode 100644 index 000000000..6e7df90b5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/hay_block_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/hay_block_top", + "side": "minecraft:block/hay_block_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/heavy_core.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/heavy_core.json new file mode 100644 index 000000000..d1f5161eb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/heavy_core.json @@ -0,0 +1,44 @@ +{ + "display": { + "gui": { + "rotation": [ 30, 225, 0 ], + "translation": [ 0, 3, 0], + "scale":[ 1, 1, 1 ] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 3, 0], + "scale":[ 0.5, 0.5, 0.5 ] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 4, 0], + "scale":[ 1, 1, 1 ] + }, + "thirdperson_righthand": { + "rotation": [ 45, 45, 0 ], + "translation": [ 0, 3, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + } + }, + "texture_size": [16, 16], + "textures": { + "all": "block/heavy_core", + "particle": "block/heavy_core" + }, + "elements": [ + { + "name": "heavy_core", + "from": [4, 0, 4], + "to": [12, 8, 12], + "faces": { + "north": {"uv": [0, 8, 8, 16], "texture": "all"}, + "east": {"uv": [0, 8, 8, 16], "texture": "all"}, + "south": {"uv": [0, 8, 8, 16], "texture": "all"}, + "west": {"uv": [0, 8, 8, 16], "texture": "all"}, + "up": {"uv": [0, 0, 8, 8], "texture": "all"}, + "down": {"uv": [8, 0, 16, 8], "texture": "all"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/heavy_weighted_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/heavy_weighted_pressure_plate.json new file mode 100644 index 000000000..d0dd064df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/heavy_weighted_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/iron_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/heavy_weighted_pressure_plate_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/heavy_weighted_pressure_plate_down.json new file mode 100644 index 000000000..dae1bb484 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/heavy_weighted_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/iron_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/honey_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/honey_block.json new file mode 100644 index 000000000..d3dd49f99 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/honey_block.json @@ -0,0 +1,33 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/honey_block_top", + "down": "block/honey_block_bottom", + "up": "block/honey_block_top", + "side": "block/honey_block_side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "cullface": "down" }, + "up": { "texture": "#down", "cullface": "up" }, + "north": { "texture": "#down", "cullface": "north" }, + "south": { "texture": "#down", "cullface": "south" }, + "west": { "texture": "#down", "cullface": "west" }, + "east": { "texture": "#down", "cullface": "east" } + } + }, + { "from": [ 1, 1, 1 ], + "to": [ 15, 15, 15 ], + "faces": { + "down": { "uv": [ 1, 1, 15, 15 ], "texture": "#down"}, + "up": { "uv": [ 1, 1, 15, 15 ], "texture": "#up"}, + "north": { "uv": [ 1, 1, 15, 15 ], "texture": "#side"}, + "south": { "uv": [ 1, 1, 15, 15 ], "texture": "#side"}, + "west": { "uv": [ 1, 1, 15, 15 ], "texture": "#side"}, + "east": { "uv": [ 1, 1, 15, 15 ], "texture": "#side"} + } + } + ] +} + diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/honeycomb_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/honeycomb_block.json new file mode 100644 index 000000000..4421b2315 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/honeycomb_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/honeycomb_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/hopper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/hopper.json new file mode 100644 index 000000000..ce9eb542c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/hopper.json @@ -0,0 +1,78 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/hopper_outside", + "top": "block/hopper_top", + "side": "block/hopper_outside", + "inside": "block/hopper_inside" + }, + "elements": [ + { "from": [ 0, 10, 0 ], + "to": [ 16, 11, 16 ], + "faces": { + "down": { "texture": "#inside" }, + "up": { "texture": "#inside", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "east": { "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 0, 11, 0 ], + "to": [ 2, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "east": { "texture": "#side", "cullface": "up" } + } + }, + { "from": [ 14, 11, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "up" }, + "east": { "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 2, 11, 0 ], + "to": [ 14, 16, 2 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "up" } + } + }, + { "from": [ 2, 11, 14 ], + "to": [ 14, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "up" }, + "south": { "texture": "#side", "cullface": "south" } + } + }, + { "from": [ 4, 4, 4 ], + "to": [ 12, 10, 12 ], + "faces": { + "down": { "texture": "#inside" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "east": { "texture": "#side" } + } + }, + { "from": [ 6, 0, 6 ], + "to": [ 10, 4, 10 ], + "faces": { + "down": { "texture": "#inside", "cullface": "down" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/hopper_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/hopper_side.json new file mode 100644 index 000000000..28d3dc65b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/hopper_side.json @@ -0,0 +1,78 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/hopper_outside", + "top": "block/hopper_top", + "side": "block/hopper_outside", + "inside": "block/hopper_inside" + }, + "elements": [ + { "from": [ 0, 10, 0 ], + "to": [ 16, 11, 16 ], + "faces": { + "down": { "texture": "#inside" }, + "up": { "texture": "#inside", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "east": { "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 0, 11, 0 ], + "to": [ 2, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "east": { "texture": "#side", "cullface": "up" } + } + }, + { "from": [ 14, 11, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "up" }, + "east": { "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 2, 11, 0 ], + "to": [ 14, 16, 2 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "up" } + } + }, + { "from": [ 2, 11, 14 ], + "to": [ 14, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "up" }, + "south": { "texture": "#side", "cullface": "south" } + } + }, + { "from": [ 4, 4, 4 ], + "to": [ 12, 10, 12 ], + "faces": { + "down": { "texture": "#inside" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "east": { "texture": "#side" } + } + }, + { "from": [ 6, 4, 0 ], + "to": [ 10, 8, 4 ], + "faces": { + "down": { "texture": "#inside" }, + "up": { "texture": "#side" }, + "north": { "texture": "#side", "cullface": "north" }, + "west": { "texture": "#side" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/horn_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/horn_coral.json new file mode 100644 index 000000000..2b976df7f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/horn_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/horn_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/horn_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/horn_coral_block.json new file mode 100644 index 000000000..5ab74af97 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/horn_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/horn_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/horn_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/horn_coral_fan.json new file mode 100644 index 000000000..01598b873 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/horn_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/horn_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/horn_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/horn_coral_wall_fan.json new file mode 100644 index 000000000..68001f161 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/horn_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/horn_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ice.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ice.json new file mode 100644 index 000000000..cfe53a038 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ice.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/ice" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/inner_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/inner_stairs.json new file mode 100644 index 000000000..364eff63e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/inner_stairs.json @@ -0,0 +1,37 @@ +{ + "textures": { + "particle": "#side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 8, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 8, 8, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "up": { "uv": [ 8, 0, 16, 16 ], "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 0, 0, 8, 8 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 8, 0, 16, 8 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#side" }, + "east": { "uv": [ 0, 0, 16, 8 ], "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 0, 8, 8 ], + "to": [ 8, 16, 16 ], + "faces": { + "up": { "uv": [ 0, 8, 8, 16 ], "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 8, 0, 16, 8 ], "texture": "#side" }, + "south": { "uv": [ 0, 0, 8, 8 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 8, 0, 16, 8 ], "texture": "#side", "cullface": "west" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_cap.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_cap.json new file mode 100644 index 000000000..8790100ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_cap.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/iron_bars", + "bars": "block/iron_bars", + "edge": "block/iron_bars" + }, + "elements": [ + { "from": [ 8, 0, 8 ], + "to": [ 8, 16, 9 ], + "faces": { + "west": { "uv": [ 8, 0, 7, 16 ], "texture": "#bars" }, + "east": { "uv": [ 7, 0, 8, 16 ], "texture": "#bars" } + } + }, + { "from": [ 7, 0, 9 ], + "to": [ 9, 16, 9 ], + "faces": { + "north": { "uv": [ 9, 0, 7, 16 ], "texture": "#bars" }, + "south": { "uv": [ 7, 0, 9, 16 ], "texture": "#bars" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_cap_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_cap_alt.json new file mode 100644 index 000000000..0352a9d47 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_cap_alt.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/iron_bars", + "bars": "block/iron_bars", + "edge": "block/iron_bars" + }, + "elements": [ + { "from": [ 8, 0, 7 ], + "to": [ 8, 16, 8 ], + "faces": { + "west": { "uv": [ 8, 0, 9, 16 ], "texture": "#bars" }, + "east": { "uv": [ 9, 0, 8, 16 ], "texture": "#bars" } + } + }, + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 7 ], + "faces": { + "north": { "uv": [ 7, 0, 9, 16 ], "texture": "#bars" }, + "south": { "uv": [ 9, 0, 7, 16 ], "texture": "#bars" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_post.json new file mode 100644 index 000000000..feb3e146e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_post.json @@ -0,0 +1,23 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/iron_bars", + "bars": "block/iron_bars" + }, + "elements": [ + { "from": [ 8, 0, 7 ], + "to": [ 8, 16, 9 ], + "faces": { + "west": { "uv": [ 7, 0, 9, 16 ], "texture": "#bars" }, + "east": { "uv": [ 9, 0, 7, 16 ], "texture": "#bars" } + } + }, + { "from": [ 7, 0, 8 ], + "to": [ 9, 16, 8 ], + "faces": { + "north": { "uv": [ 7, 0, 9, 16 ], "texture": "#bars" }, + "south": { "uv": [ 9, 0, 7, 16 ], "texture": "#bars" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_post_ends.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_post_ends.json new file mode 100644 index 000000000..b0c1ef614 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_post_ends.json @@ -0,0 +1,23 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/iron_bars", + "edge": "block/iron_bars" + }, + "elements": [ + { "from": [ 7, 0.001, 7 ], + "to": [ 9, 0.001, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 9 ], "texture": "#edge" }, + "up": { "uv": [ 7, 7, 9, 9 ], "texture": "#edge" } + } + }, + { "from": [ 7, 15.999, 7 ], + "to": [ 9, 15.999, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 9 ], "texture": "#edge" }, + "up": { "uv": [ 7, 7, 9, 9 ], "texture": "#edge" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_side.json new file mode 100644 index 000000000..01d741104 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_side.json @@ -0,0 +1,37 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/iron_bars", + "bars": "block/iron_bars", + "edge": "block/iron_bars" + }, + "elements": [ + { "from": [ 8, 0, 0 ], + "to": [ 8, 16, 8 ], + "faces": { + "west": { "uv": [ 16, 0, 8, 16 ], "texture": "#bars" }, + "east": { "uv": [ 8, 0, 16, 16 ], "texture": "#bars" } + } + }, + { "from": [ 7, 0, 0 ], + "to": [ 9, 16, 7 ], + "faces": { + "north": { "uv": [ 7, 0, 9, 16 ], "texture": "#edge", "cullface": "north" } + } + }, + { "from": [ 7, 0.001, 0 ], + "to": [ 9, 0.001, 7 ], + "faces": { + "down": { "uv": [ 9, 0, 7, 7 ], "texture": "#edge" }, + "up": { "uv": [ 7, 0, 9, 7 ], "texture": "#edge" } + } + }, + { "from": [ 7, 15.999, 0 ], + "to": [ 9, 15.999, 7 ], + "faces": { + "down": { "uv": [ 9, 0, 7, 7 ], "texture": "#edge" }, + "up": { "uv": [ 7, 0, 9, 7 ], "texture": "#edge" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_side_alt.json new file mode 100644 index 000000000..83842e680 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_bars_side_alt.json @@ -0,0 +1,39 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/iron_bars", + "bars": "block/iron_bars", + "edge": "block/iron_bars" + }, + "elements": [ + { "from": [ 8, 0, 8 ], + "to": [ 8, 16, 16 ], + "faces": { + "west": { "uv": [ 8, 0, 0, 16 ], "texture": "#bars" }, + "east": { "uv": [ 0, 0, 8, 16 ], "texture": "#bars" } + } + }, + { "from": [ 7, 0, 9 ], + "to": [ 9, 16, 16 ], + "faces": { + "south": { "uv": [ 7, 0, 9, 16 ], "texture": "#edge", "cullface": "south" }, + "down": { "uv": [ 9, 9, 7, 16 ], "texture": "#edge" }, + "up": { "uv": [ 7, 9, 9, 16 ], "texture": "#edge" } + } + }, + { "from": [ 7, 0.001, 9 ], + "to": [ 9, 0.001, 16 ], + "faces": { + "down": { "uv": [ 9, 9, 7, 16 ], "texture": "#edge" }, + "up": { "uv": [ 7, 9, 9, 16 ], "texture": "#edge" } + } + }, + { "from": [ 7, 15.999, 9 ], + "to": [ 9, 15.999, 16 ], + "faces": { + "down": { "uv": [ 9, 9, 7, 16 ], "texture": "#edge" }, + "up": { "uv": [ 7, 9, 9, 16 ], "texture": "#edge" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_block.json new file mode 100644 index 000000000..8b87ea96a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/iron_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_bottom_left.json new file mode 100644 index 000000000..00ef5550d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/iron_door_bottom", + "top": "minecraft:block/iron_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_bottom_left_open.json new file mode 100644 index 000000000..e5e40a29a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/iron_door_bottom", + "top": "minecraft:block/iron_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_bottom_right.json new file mode 100644 index 000000000..5bcd9581f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/iron_door_bottom", + "top": "minecraft:block/iron_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_bottom_right_open.json new file mode 100644 index 000000000..7263ca8dc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/iron_door_bottom", + "top": "minecraft:block/iron_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_top_left.json new file mode 100644 index 000000000..a64f42cd0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/iron_door_bottom", + "top": "minecraft:block/iron_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_top_left_open.json new file mode 100644 index 000000000..af4f3d696 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/iron_door_bottom", + "top": "minecraft:block/iron_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_top_right.json new file mode 100644 index 000000000..97226e37d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/iron_door_bottom", + "top": "minecraft:block/iron_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_top_right_open.json new file mode 100644 index 000000000..f3b08b051 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/iron_door_bottom", + "top": "minecraft:block/iron_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_ore.json new file mode 100644 index 000000000..1660281b3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/iron_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_trapdoor_bottom.json new file mode 100644 index 000000000..97561197c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/iron_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_trapdoor_open.json new file mode 100644 index 000000000..b638a44c5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_open", + "textures": { + "texture": "minecraft:block/iron_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_trapdoor_top.json new file mode 100644 index 000000000..be3cc7bae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/iron_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_top", + "textures": { + "texture": "minecraft:block/iron_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/item_frame.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/item_frame.json new file mode 100644 index 000000000..04c65e008 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/item_frame.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_item_frame", + "textures": { + "particle": "block/birch_planks", + "wood": "block/birch_planks", + "back": "block/item_frame" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/item_frame_map.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/item_frame_map.json new file mode 100644 index 000000000..fb8998633 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/item_frame_map.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_item_frame_map", + "textures": { + "particle": "block/birch_planks", + "wood": "block/birch_planks", + "back": "block/item_frame" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jack_o_lantern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jack_o_lantern.json new file mode 100644 index 000000000..637772f84 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jack_o_lantern.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "front": "minecraft:block/jack_o_lantern", + "side": "minecraft:block/pumpkin_side", + "top": "minecraft:block/pumpkin_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jigsaw.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jigsaw.json new file mode 100644 index 000000000..def1e2e70 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jigsaw.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube_directional", + "textures": { + "down": "minecraft:block/jigsaw_side", + "east": "minecraft:block/jigsaw_side", + "north": "minecraft:block/jigsaw_top", + "particle": "minecraft:block/jigsaw_top", + "south": "minecraft:block/jigsaw_bottom", + "up": "minecraft:block/jigsaw_lock", + "west": "minecraft:block/jigsaw_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jukebox.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jukebox.json new file mode 100644 index 000000000..9b9b61d85 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jukebox.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_top", + "textures": { + "side": "minecraft:block/jukebox_side", + "top": "minecraft:block/jukebox_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_button.json new file mode 100644 index 000000000..de9e6318a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_button_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_button_inventory.json new file mode 100644 index 000000000..2f058f640 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_button_pressed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_button_pressed.json new file mode 100644 index 000000000..08687058c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_left.json new file mode 100644 index 000000000..e1d1e72bc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/jungle_door_bottom", + "top": "minecraft:block/jungle_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_left_open.json new file mode 100644 index 000000000..f60c74fcb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/jungle_door_bottom", + "top": "minecraft:block/jungle_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_right.json new file mode 100644 index 000000000..4e6989abd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/jungle_door_bottom", + "top": "minecraft:block/jungle_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_right_open.json new file mode 100644 index 000000000..393c68c98 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/jungle_door_bottom", + "top": "minecraft:block/jungle_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_top_left.json new file mode 100644 index 000000000..a48721e35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/jungle_door_bottom", + "top": "minecraft:block/jungle_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_top_left_open.json new file mode 100644 index 000000000..481ee6afc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/jungle_door_bottom", + "top": "minecraft:block/jungle_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_top_right.json new file mode 100644 index 000000000..063b0d480 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/jungle_door_bottom", + "top": "minecraft:block/jungle_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_top_right_open.json new file mode 100644 index 000000000..64a498c56 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/jungle_door_bottom", + "top": "minecraft:block/jungle_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_gate.json new file mode 100644 index 000000000..a0f5231c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_open.json new file mode 100644 index 000000000..d7e228521 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_wall.json new file mode 100644 index 000000000..8544a4b16 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_wall_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_wall_open.json new file mode 100644 index 000000000..acb74dd7e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_inventory.json new file mode 100644 index 000000000..70ce50968 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_post.json new file mode 100644 index 000000000..6867e0d9b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_side.json new file mode 100644 index 000000000..8efe3bc67 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_hanging_sign.json new file mode 100644 index 000000000..837a44e37 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_leaves.json new file mode 100644 index 000000000..9feffd5d3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/jungle_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_log.json new file mode 100644 index 000000000..6e2042e86 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/jungle_log_top", + "side": "minecraft:block/jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_log_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_log_horizontal.json new file mode 100644 index 000000000..8c4758db9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/jungle_log_top", + "side": "minecraft:block/jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_planks.json new file mode 100644 index 000000000..f35281e8d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_pressure_plate.json new file mode 100644 index 000000000..cf18c79e4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_pressure_plate_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_pressure_plate_down.json new file mode 100644 index 000000000..f34227b2f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_sapling.json new file mode 100644 index 000000000..b1c50ecd3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/jungle_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_sign.json new file mode 100644 index 000000000..6792ad6d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_slab.json new file mode 100644 index 000000000..d8e2e35c8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/jungle_planks", + "side": "minecraft:block/jungle_planks", + "top": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_slab_top.json new file mode 100644 index 000000000..0a569d08c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/jungle_planks", + "side": "minecraft:block/jungle_planks", + "top": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_stairs.json new file mode 100644 index 000000000..d852ba5a5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/jungle_planks", + "side": "minecraft:block/jungle_planks", + "top": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_stairs_inner.json new file mode 100644 index 000000000..3bf1b36d9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/jungle_planks", + "side": "minecraft:block/jungle_planks", + "top": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_stairs_outer.json new file mode 100644 index 000000000..1ddbccd77 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/jungle_planks", + "side": "minecraft:block/jungle_planks", + "top": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_bottom.json new file mode 100644 index 000000000..937fc8bd8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/jungle_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_open.json new file mode 100644 index 000000000..af3cfdf51 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/jungle_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_top.json new file mode 100644 index 000000000..6147ee6db --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/jungle_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_wood.json new file mode 100644 index 000000000..e0960bb2a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/jungle_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/jungle_log", + "side": "minecraft:block/jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/kelp.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/kelp.json new file mode 100644 index 000000000..a9eba75fe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/kelp.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/kelp" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/kelp_plant.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/kelp_plant.json new file mode 100644 index 000000000..cb9812707 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/kelp_plant.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/kelp_plant" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ladder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ladder.json new file mode 100644 index 000000000..1b975e4d8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ladder.json @@ -0,0 +1,17 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/ladder", + "texture": "block/ladder" + }, + "elements": [ + { "from": [ 0, 0, 15.2 ], + "to": [ 16, 16, 15.2 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "south": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lantern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lantern.json new file mode 100644 index 000000000..12970adc8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_lantern", + "textures": { + "lantern": "minecraft:block/lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lantern_hanging.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lantern_hanging.json new file mode 100644 index 000000000..d047dcd00 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lantern_hanging.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_hanging_lantern", + "textures": { + "lantern": "minecraft:block/lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lapis_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lapis_block.json new file mode 100644 index 000000000..97561c346 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lapis_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/lapis_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lapis_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lapis_ore.json new file mode 100644 index 000000000..561b8b59a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lapis_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/lapis_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/large_amethyst_bud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/large_amethyst_bud.json new file mode 100644 index 000000000..27be909b4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/large_amethyst_bud.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/large_amethyst_bud" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/large_fern_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/large_fern_bottom.json new file mode 100644 index 000000000..832383dc7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/large_fern_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/large_fern_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/large_fern_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/large_fern_top.json new file mode 100644 index 000000000..e6d29325f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/large_fern_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/large_fern_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lava.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lava.json new file mode 100644 index 000000000..315d525f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lava.json @@ -0,0 +1,6 @@ +{ + "textures": { + "particle": "block/lava_still" + } +} + diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lava_cauldron.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lava_cauldron.json new file mode 100644 index 000000000..f0a0a3125 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lava_cauldron.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/template_cauldron_full", + "textures": { + "bottom": "minecraft:block/cauldron_bottom", + "content": "minecraft:block/lava_still", + "inside": "minecraft:block/cauldron_inner", + "particle": "minecraft:block/cauldron_side", + "side": "minecraft:block/cauldron_side", + "top": "minecraft:block/cauldron_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/leaf_litter_1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/leaf_litter_1.json new file mode 100644 index 000000000..cf22052c0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/leaf_litter_1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_leaf_litter_1", + "textures": { + "texture": "minecraft:block/leaf_litter" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/leaf_litter_2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/leaf_litter_2.json new file mode 100644 index 000000000..173250085 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/leaf_litter_2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_leaf_litter_2", + "textures": { + "texture": "minecraft:block/leaf_litter" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/leaf_litter_3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/leaf_litter_3.json new file mode 100644 index 000000000..266445292 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/leaf_litter_3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_leaf_litter_3", + "textures": { + "texture": "minecraft:block/leaf_litter" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/leaf_litter_4.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/leaf_litter_4.json new file mode 100644 index 000000000..0e565f75d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/leaf_litter_4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_leaf_litter_4", + "textures": { + "texture": "minecraft:block/leaf_litter" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/leaves.json new file mode 100644 index 000000000..722173fdf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/leaves.json @@ -0,0 +1,18 @@ +{ "parent": "block/block", + "textures": { + "particle": "#all" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#all", "tintindex": 0, "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#all", "tintindex": 0, "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#all", "tintindex": 0, "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#all", "tintindex": 0, "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#all", "tintindex": 0, "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#all", "tintindex": 0, "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lectern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lectern.json new file mode 100644 index 000000000..a504fa96b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lectern.json @@ -0,0 +1,60 @@ +{ + "parent": "block/block", + "display": { + "firstperson_righthand": { + "rotation": [ 0, 135, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.4, 0.4, 0.4 ] + }, + "gui": { + "rotation": [ 30, 225, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.6, 0.6, 0.6 ] + } + }, + "textures": { + "particle": "block/lectern_sides", + "bottom": "block/oak_planks", + "base": "block/lectern_base", + "front": "block/lectern_front", + "sides": "block/lectern_sides", + "top": "block/lectern_top" + }, + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#base", "cullface": "north" }, + "east": { "uv": [ 0, 6, 16, 8 ], "texture": "#base", "cullface": "east" }, + "south": { "uv": [ 0, 6, 16, 8 ], "texture": "#base", "cullface": "south" }, + "west": { "uv": [ 0, 6, 16, 8 ], "texture": "#base", "cullface": "west" }, + "up": { "uv": [ 0, 0, 16, 16 ], "rotation": 180, "texture": "#base" }, + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [4, 2, 4], + "to": [12, 15, 12], + "faces": { + "north": { "uv": [ 0, 0, 8, 13 ], "texture": "#front" }, + "east": { "uv": [ 2, 16, 15, 8 ], "rotation": 90, "texture": "#sides" }, + "south": { "uv": [ 8, 3, 16, 16 ], "texture": "#front" }, + "west": { "uv": [ 2, 8, 15, 16 ], "rotation": 90, "texture": "#sides" } + } + }, + { + "from": [ 0.0125, 12, 3 ], + "to": [ 15.9875, 16, 16 ], + "rotation": { "angle": -22.5, "axis": "x", "origin": [ 8, 8, 8 ] }, + "faces": { + "north": { "uv": [ 0, 0, 16, 4 ], "texture": "#sides" }, + "east": { "uv": [ 0, 4, 13, 8 ], "texture": "#sides" }, + "south": { "uv": [ 0, 4, 16, 8 ], "texture": "#sides" }, + "west": { "uv": [ 0, 4, 13, 8 ], "texture": "#sides" }, + "up": { "uv": [ 0, 1, 16, 14 ], "rotation": 180, "texture": "#top" }, + "down": { "uv": [ 0, 0, 16, 13 ], "texture": "#bottom" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lever.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lever.json new file mode 100644 index 000000000..14cc4f861 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lever.json @@ -0,0 +1,32 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cobblestone", + "base": "block/cobblestone", + "lever": "block/lever" + }, + "elements": [ + { "from": [ 5, -0.02, 4 ], + "to": [ 11, 2.98, 12 ], + "faces": { + "down": { "uv": [ 5, 4, 11, 12 ], "texture": "#base", "cullface": "down" }, + "up": { "uv": [ 5, 4, 11, 12 ], "texture": "#base" }, + "north": { "uv": [ 5, 0, 11, 3 ], "texture": "#base" }, + "south": { "uv": [ 5, 0, 11, 3 ], "texture": "#base" }, + "west": { "uv": [ 4, 0, 12, 3 ], "texture": "#base" }, + "east": { "uv": [ 4, 0, 12, 3 ], "texture": "#base" } + } + }, + { "from": [ 7, 1, 7 ], + "to": [ 9, 11, 9 ], + "rotation": { "origin": [ 8, 1, 8 ], "axis": "x", "angle": -45 }, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lever" }, + "north": { "uv": [ 7, 6, 9, 16 ], "texture": "#lever" }, + "south": { "uv": [ 7, 6, 9, 16 ], "texture": "#lever" }, + "west": { "uv": [ 7, 6, 9, 16 ], "texture": "#lever" }, + "east": { "uv": [ 7, 6, 9, 16 ], "texture": "#lever" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lever_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lever_on.json new file mode 100644 index 000000000..64797896e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lever_on.json @@ -0,0 +1,32 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cobblestone", + "base": "block/cobblestone", + "lever": "block/lever" + }, + "elements": [ + { "from": [ 5, -0.02, 4 ], + "to": [ 11, 2.98, 12 ], + "faces": { + "down": { "uv": [ 5, 4, 11, 12 ], "texture": "#base", "cullface": "down" }, + "up": { "uv": [ 5, 4, 11, 12 ], "texture": "#base" }, + "north": { "uv": [ 5, 0, 11, 3 ], "texture": "#base" }, + "south": { "uv": [ 5, 0, 11, 3 ], "texture": "#base" }, + "west": { "uv": [ 4, 0, 12, 3 ], "texture": "#base" }, + "east": { "uv": [ 4, 0, 12, 3 ], "texture": "#base" } + } + }, + { "from": [ 7, 1, 7 ], + "to": [ 9, 11, 9 ], + "rotation": { "origin": [ 8, 1, 8 ], "axis": "x", "angle": 45 }, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lever" }, + "north": { "uv": [ 7, 6, 9, 16 ], "texture": "#lever" }, + "south": { "uv": [ 7, 6, 9, 16 ], "texture": "#lever" }, + "west": { "uv": [ 7, 6, 9, 16 ], "texture": "#lever" }, + "east": { "uv": [ 7, 6, 9, 16 ], "texture": "#lever" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_00.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_00.json new file mode 100644 index 000000000..2ffd3ce53 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_00.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_00" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_01.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_01.json new file mode 100644 index 000000000..55d7c25ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_01.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_01" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_02.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_02.json new file mode 100644 index 000000000..69d189686 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_02.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_02" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_03.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_03.json new file mode 100644 index 000000000..0f6fe7d84 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_03.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_03" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_04.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_04.json new file mode 100644 index 000000000..d13dabfa5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_04.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_04" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_05.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_05.json new file mode 100644 index 000000000..f155183b9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_05.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_05" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_06.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_06.json new file mode 100644 index 000000000..e8412194d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_06.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_06" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_07.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_07.json new file mode 100644 index 000000000..c24497b97 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_07.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_07" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_08.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_08.json new file mode 100644 index 000000000..01620569e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_08.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_08" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_09.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_09.json new file mode 100644 index 000000000..18691a074 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_09.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_09" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_10.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_10.json new file mode 100644 index 000000000..832914153 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_10.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_10" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_11.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_11.json new file mode 100644 index 000000000..1b763eb52 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_11.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_11" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_12.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_12.json new file mode 100644 index 000000000..cf4b46bcd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_12.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_12" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_13.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_13.json new file mode 100644 index 000000000..bdb9a24ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_13.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_13" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_14.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_14.json new file mode 100644 index 000000000..2206335d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_14.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_14" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_15.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_15.json new file mode 100644 index 000000000..4fa669c3c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_15.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_15" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_cake.json new file mode 100644 index 000000000..8ffc42fea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/light_blue_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_cake_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_cake_lit.json new file mode 100644 index 000000000..85fd0a8f8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/light_blue_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_four_candles.json new file mode 100644 index 000000000..503ddb229 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/light_blue_candle", + "particle": "minecraft:block/light_blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_four_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_four_candles_lit.json new file mode 100644 index 000000000..b7ee670c9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/light_blue_candle_lit", + "particle": "minecraft:block/light_blue_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_one_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_one_candle.json new file mode 100644 index 000000000..37d165d6a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/light_blue_candle", + "particle": "minecraft:block/light_blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_one_candle_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_one_candle_lit.json new file mode 100644 index 000000000..be1f17683 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/light_blue_candle_lit", + "particle": "minecraft:block/light_blue_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_three_candles.json new file mode 100644 index 000000000..d735cda71 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/light_blue_candle", + "particle": "minecraft:block/light_blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_three_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_three_candles_lit.json new file mode 100644 index 000000000..4a4818437 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/light_blue_candle_lit", + "particle": "minecraft:block/light_blue_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_two_candles.json new file mode 100644 index 000000000..ec4da5666 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/light_blue_candle", + "particle": "minecraft:block/light_blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_two_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_two_candles_lit.json new file mode 100644 index 000000000..d99287758 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/light_blue_candle_lit", + "particle": "minecraft:block/light_blue_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_carpet.json new file mode 100644 index 000000000..e1949fe86 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/light_blue_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_concrete.json new file mode 100644 index 000000000..28590f930 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_blue_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_concrete_powder.json new file mode 100644 index 000000000..f660be908 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_blue_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_glazed_terracotta.json new file mode 100644 index 000000000..86980349f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/light_blue_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_shulker_box.json new file mode 100644 index 000000000..41f67725d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/light_blue_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass.json new file mode 100644 index 000000000..6011b9540 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_noside.json new file mode 100644 index 000000000..66b5851af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/light_blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..3c0285388 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/light_blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_post.json new file mode 100644 index 000000000..79b4de1e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/light_blue_stained_glass_pane_top", + "pane": "minecraft:block/light_blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_side.json new file mode 100644 index 000000000..f5f268754 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/light_blue_stained_glass_pane_top", + "pane": "minecraft:block/light_blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..7fb82b116 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/light_blue_stained_glass_pane_top", + "pane": "minecraft:block/light_blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_terracotta.json new file mode 100644 index 000000000..24816bc45 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_blue_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_wool.json new file mode 100644 index 000000000..4a4b3f04f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_blue_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_blue_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_cake.json new file mode 100644 index 000000000..119a3bcd7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/light_gray_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_cake_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_cake_lit.json new file mode 100644 index 000000000..332eb93d1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/light_gray_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_four_candles.json new file mode 100644 index 000000000..0559aae1c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/light_gray_candle", + "particle": "minecraft:block/light_gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_four_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_four_candles_lit.json new file mode 100644 index 000000000..24912bfb3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/light_gray_candle_lit", + "particle": "minecraft:block/light_gray_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_one_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_one_candle.json new file mode 100644 index 000000000..b329a1002 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/light_gray_candle", + "particle": "minecraft:block/light_gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_one_candle_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_one_candle_lit.json new file mode 100644 index 000000000..1099f9a53 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/light_gray_candle_lit", + "particle": "minecraft:block/light_gray_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_three_candles.json new file mode 100644 index 000000000..097d975f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/light_gray_candle", + "particle": "minecraft:block/light_gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_three_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_three_candles_lit.json new file mode 100644 index 000000000..85f44ad70 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/light_gray_candle_lit", + "particle": "minecraft:block/light_gray_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_two_candles.json new file mode 100644 index 000000000..73639430b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/light_gray_candle", + "particle": "minecraft:block/light_gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_two_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_two_candles_lit.json new file mode 100644 index 000000000..8010674d0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/light_gray_candle_lit", + "particle": "minecraft:block/light_gray_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_carpet.json new file mode 100644 index 000000000..290423195 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/light_gray_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_concrete.json new file mode 100644 index 000000000..a723d19ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_gray_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_concrete_powder.json new file mode 100644 index 000000000..bcbe68535 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_gray_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_glazed_terracotta.json new file mode 100644 index 000000000..4732a3565 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/light_gray_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_shulker_box.json new file mode 100644 index 000000000..265780f91 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/light_gray_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass.json new file mode 100644 index 000000000..bf861d69a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_noside.json new file mode 100644 index 000000000..e31a39fd1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/light_gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..3b24feda7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/light_gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_post.json new file mode 100644 index 000000000..8efbcf68b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/light_gray_stained_glass_pane_top", + "pane": "minecraft:block/light_gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_side.json new file mode 100644 index 000000000..11e77c2c1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/light_gray_stained_glass_pane_top", + "pane": "minecraft:block/light_gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..241d75995 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/light_gray_stained_glass_pane_top", + "pane": "minecraft:block/light_gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_terracotta.json new file mode 100644 index 000000000..19aa64022 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_gray_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_wool.json new file mode 100644 index 000000000..d490cc2ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_gray_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_gray_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_weighted_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_weighted_pressure_plate.json new file mode 100644 index 000000000..7941d43f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_weighted_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/gold_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_weighted_pressure_plate_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_weighted_pressure_plate_down.json new file mode 100644 index 000000000..8e9c29265 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/light_weighted_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/gold_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lightning_rod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lightning_rod.json new file mode 100644 index 000000000..1f738f3ae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lightning_rod.json @@ -0,0 +1,40 @@ +{ + "parent": "block/block", + "display": { + "head": { + "rotation": [ -180, 0, 0 ], + "translation": [ 8.5, 4, 0 ] + }, + "thirdperson_righthand": { + "translation": [ 0, 2, 0.5], + "scale": [ 0.40, 0.40, 0.40 ] + } + }, + "textures": { + "texture": "block/lightning_rod", + "particle": "block/lightning_rod" + }, + "elements": [ + { "from": [ 6, 12, 6 ], + "to": [ 10, 16, 10 ], + "faces": { + "north": { "uv": [ 0, 0, 4, 4 ],"texture": "#texture" }, + "south": { "uv": [ 0, 0, 4, 4 ],"texture": "#texture" }, + "west": { "uv": [ 0, 0, 4, 4 ],"texture": "#texture" }, + "east": { "uv": [ 0, 0, 4, 4 ],"texture": "#texture" }, + "down": { "uv": [ 0, 0, 4, 4 ], "texture": "#texture" }, + "up": { "uv": [ 4, 4, 0, 0 ], "texture": "#texture" } + } + }, + { "from": [ 7, 0, 7 ], + "to": [ 9, 12, 9 ], + "faces": { + "north": { "uv": [ 0, 4, 2, 16 ],"texture": "#texture" }, + "south": { "uv": [ 0, 4, 2, 16 ],"texture": "#texture" }, + "west": { "uv": [ 0, 4, 2, 16 ],"texture": "#texture" }, + "east": { "uv": [ 0, 4, 2, 16 ],"texture": "#texture" }, + "down": { "uv": [ 0, 4, 2, 6 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lightning_rod_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lightning_rod_on.json new file mode 100644 index 000000000..893cccfaf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lightning_rod_on.json @@ -0,0 +1,32 @@ +{ + "parent": "block/block", + "textures": { + "texture": "block/lightning_rod_on", + "particle": "block/lightning_rod_on" + }, + "elements": [ + { "from": [ 6, 12, 6 ], + "to": [ 10, 16, 10 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 4, 4 ],"texture": "#texture" }, + "south": { "uv": [ 0, 0, 4, 4 ],"texture": "#texture" }, + "west": { "uv": [ 0, 0, 4, 4 ],"texture": "#texture" }, + "east": { "uv": [ 0, 0, 4, 4 ],"texture": "#texture" }, + "down": { "uv": [ 0, 0, 4, 4 ], "texture": "#texture" }, + "up": { "uv": [ 4, 4, 0, 0 ], "texture": "#texture" } + } + }, + { "from": [ 7, 0, 7 ], + "to": [ 9, 12, 9 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 4, 2, 16 ],"texture": "#texture" }, + "south": { "uv": [ 0, 4, 2, 16 ],"texture": "#texture" }, + "west": { "uv": [ 0, 4, 2, 16 ],"texture": "#texture" }, + "east": { "uv": [ 0, 4, 2, 16 ],"texture": "#texture" }, + "down": { "uv": [ 0, 4, 2, 16 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lilac_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lilac_bottom.json new file mode 100644 index 000000000..e1bf8969e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lilac_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/lilac_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lilac_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lilac_top.json new file mode 100644 index 000000000..e5fc35b7e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lilac_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/lilac_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lily_of_the_valley.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lily_of_the_valley.json new file mode 100644 index 000000000..6f0a89acb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lily_of_the_valley.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/lily_of_the_valley" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lily_pad.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lily_pad.json new file mode 100644 index 000000000..6b27e40bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lily_pad.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/lily_pad", + "texture": "block/lily_pad" + }, + "elements": [ + { "from": [ 0, 0.25, 0 ], + "to": [ 16, 0.25, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture", "tintindex": 0 }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_cake.json new file mode 100644 index 000000000..91326eabe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/lime_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_cake_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_cake_lit.json new file mode 100644 index 000000000..45657c7bb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/lime_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_four_candles.json new file mode 100644 index 000000000..55b45a956 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/lime_candle", + "particle": "minecraft:block/lime_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_four_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_four_candles_lit.json new file mode 100644 index 000000000..85a6d2fe8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/lime_candle_lit", + "particle": "minecraft:block/lime_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_one_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_one_candle.json new file mode 100644 index 000000000..254b4eb44 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/lime_candle", + "particle": "minecraft:block/lime_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_one_candle_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_one_candle_lit.json new file mode 100644 index 000000000..a6c8b9877 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/lime_candle_lit", + "particle": "minecraft:block/lime_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_three_candles.json new file mode 100644 index 000000000..e71d2220f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/lime_candle", + "particle": "minecraft:block/lime_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_three_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_three_candles_lit.json new file mode 100644 index 000000000..738f8dc47 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/lime_candle_lit", + "particle": "minecraft:block/lime_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_two_candles.json new file mode 100644 index 000000000..50edf847e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/lime_candle", + "particle": "minecraft:block/lime_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_two_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_two_candles_lit.json new file mode 100644 index 000000000..5736293c2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/lime_candle_lit", + "particle": "minecraft:block/lime_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_carpet.json new file mode 100644 index 000000000..028c49876 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/lime_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_concrete.json new file mode 100644 index 000000000..e0e921233 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/lime_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_concrete_powder.json new file mode 100644 index 000000000..48f4b6966 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/lime_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_glazed_terracotta.json new file mode 100644 index 000000000..b6211a739 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/lime_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_shulker_box.json new file mode 100644 index 000000000..aafff7ddc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/lime_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass.json new file mode 100644 index 000000000..b06899ca0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/lime_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_noside.json new file mode 100644 index 000000000..51a062c54 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/lime_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..7b0a67ac4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/lime_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_post.json new file mode 100644 index 000000000..92ec01f0c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/lime_stained_glass_pane_top", + "pane": "minecraft:block/lime_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_side.json new file mode 100644 index 000000000..c54306a07 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/lime_stained_glass_pane_top", + "pane": "minecraft:block/lime_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..6f12dd062 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/lime_stained_glass_pane_top", + "pane": "minecraft:block/lime_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_terracotta.json new file mode 100644 index 000000000..7a7ee7761 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/lime_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_wool.json new file mode 100644 index 000000000..3452083bb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lime_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/lime_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lodestone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lodestone.json new file mode 100644 index 000000000..f38f3e9ab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/lodestone.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/lodestone_top", + "side": "minecraft:block/lodestone_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/loom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/loom.json new file mode 100644 index 000000000..66f7792d3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/loom.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/orientable_with_bottom", + "textures": { + "bottom": "minecraft:block/loom_bottom", + "front": "minecraft:block/loom_front", + "side": "minecraft:block/loom_side", + "top": "minecraft:block/loom_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_cake.json new file mode 100644 index 000000000..4f8d51e17 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/magenta_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_cake_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_cake_lit.json new file mode 100644 index 000000000..0aadfeb3a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/magenta_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_four_candles.json new file mode 100644 index 000000000..cc10d412c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/magenta_candle", + "particle": "minecraft:block/magenta_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_four_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_four_candles_lit.json new file mode 100644 index 000000000..5c41051c2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/magenta_candle_lit", + "particle": "minecraft:block/magenta_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_one_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_one_candle.json new file mode 100644 index 000000000..6cbff9415 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/magenta_candle", + "particle": "minecraft:block/magenta_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_one_candle_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_one_candle_lit.json new file mode 100644 index 000000000..39f81c171 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/magenta_candle_lit", + "particle": "minecraft:block/magenta_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_three_candles.json new file mode 100644 index 000000000..90d34d68a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/magenta_candle", + "particle": "minecraft:block/magenta_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_three_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_three_candles_lit.json new file mode 100644 index 000000000..f648690cc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/magenta_candle_lit", + "particle": "minecraft:block/magenta_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_two_candles.json new file mode 100644 index 000000000..128514c35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/magenta_candle", + "particle": "minecraft:block/magenta_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_two_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_two_candles_lit.json new file mode 100644 index 000000000..476532a77 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/magenta_candle_lit", + "particle": "minecraft:block/magenta_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_carpet.json new file mode 100644 index 000000000..466161a36 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/magenta_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_concrete.json new file mode 100644 index 000000000..73bbc6d4e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/magenta_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_concrete_powder.json new file mode 100644 index 000000000..e5a38d463 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/magenta_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_glazed_terracotta.json new file mode 100644 index 000000000..f36a5e7da --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/magenta_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_shulker_box.json new file mode 100644 index 000000000..6bb156a3a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/magenta_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass.json new file mode 100644 index 000000000..6e4da4cad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/magenta_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_noside.json new file mode 100644 index 000000000..8d6019b83 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/magenta_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..7b2ba6d59 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/magenta_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_post.json new file mode 100644 index 000000000..d19e82174 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/magenta_stained_glass_pane_top", + "pane": "minecraft:block/magenta_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_side.json new file mode 100644 index 000000000..4fd5b6223 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/magenta_stained_glass_pane_top", + "pane": "minecraft:block/magenta_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..06ff17ab3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/magenta_stained_glass_pane_top", + "pane": "minecraft:block/magenta_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_terracotta.json new file mode 100644 index 000000000..bd2bcfa0b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/magenta_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_wool.json new file mode 100644 index 000000000..9111ee09a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magenta_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/magenta_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magma_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magma_block.json new file mode 100644 index 000000000..b9678ef15 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/magma_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/magma" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_button.json new file mode 100644 index 000000000..c5854e735 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_button_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_button_inventory.json new file mode 100644 index 000000000..b79a34dbf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_button_pressed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_button_pressed.json new file mode 100644 index 000000000..6981fdfb2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_left.json new file mode 100644 index 000000000..621e58e99 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/mangrove_door_bottom", + "top": "minecraft:block/mangrove_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_left_open.json new file mode 100644 index 000000000..93f1c66e4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/mangrove_door_bottom", + "top": "minecraft:block/mangrove_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_right.json new file mode 100644 index 000000000..5789fc870 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/mangrove_door_bottom", + "top": "minecraft:block/mangrove_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_right_open.json new file mode 100644 index 000000000..867d02057 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/mangrove_door_bottom", + "top": "minecraft:block/mangrove_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_top_left.json new file mode 100644 index 000000000..c4f7b2872 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/mangrove_door_bottom", + "top": "minecraft:block/mangrove_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_top_left_open.json new file mode 100644 index 000000000..37008c90d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/mangrove_door_bottom", + "top": "minecraft:block/mangrove_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_top_right.json new file mode 100644 index 000000000..856a014e7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/mangrove_door_bottom", + "top": "minecraft:block/mangrove_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_top_right_open.json new file mode 100644 index 000000000..7135cd92b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/mangrove_door_bottom", + "top": "minecraft:block/mangrove_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate.json new file mode 100644 index 000000000..b09253c7d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_open.json new file mode 100644 index 000000000..00395e06d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_wall.json new file mode 100644 index 000000000..b6a2f0eda --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_wall_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_wall_open.json new file mode 100644 index 000000000..34950c038 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_inventory.json new file mode 100644 index 000000000..dd63182e7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_post.json new file mode 100644 index 000000000..49dc45bc9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_side.json new file mode 100644 index 000000000..2f3b40b3e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_hanging_sign.json new file mode 100644 index 000000000..0dbd21772 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_leaves.json new file mode 100644 index 000000000..1500d9972 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/mangrove_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_log.json new file mode 100644 index 000000000..da5639018 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/mangrove_log_top", + "side": "minecraft:block/mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_log_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_log_horizontal.json new file mode 100644 index 000000000..a2b809c20 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/mangrove_log_top", + "side": "minecraft:block/mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_planks.json new file mode 100644 index 000000000..ec9b48e91 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_pressure_plate.json new file mode 100644 index 000000000..7d8127274 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_pressure_plate_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_pressure_plate_down.json new file mode 100644 index 000000000..1fc80b84c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule.json new file mode 100644 index 000000000..02d4c1a53 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule.json @@ -0,0 +1,49 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/mangrove_propagule", + "sapling": "block/mangrove_propagule" + }, + "elements": [ + { + "name": "leaves", + "from": [4.5, 9, 8], + "to": [11.5, 15, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8], "rescale": true}, + "faces": { + "north": {"uv": [4, 1, 11, 7], "texture": "#sapling"}, + "south": {"uv": [4, 1, 11, 7], "texture": "#sapling"} + } + }, + { + "name": "leaves", + "from": [8, 9, 4.5], + "to": [8, 15, 11.5], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8], "rescale": true}, + "faces": { + "east": {"uv": [4, 1, 11, 7], "texture": "#sapling"}, + "west": {"uv": [4, 1, 11, 7], "texture": "#sapling"} + } + }, + { + "name": "hypocotyl", + "from": [8, 0, 7], + "to": [8, 9, 9], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8], "rescale": true}, + "faces": { + "east": {"uv": [7, 7, 9, 16], "texture": "#sapling"}, + "west": {"uv": [7, 7, 9, 16], "texture": "#sapling"} + } + }, + { + "name": "hypocotyl", + "from": [7, 0, 8], + "to": [9, 9, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8], "rescale": true}, + "faces": { + "north": {"uv": [7, 7, 9, 16], "texture": "#sapling"}, + "south": {"uv": [7, 7, 9, 16], "texture": "#sapling"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_0.json new file mode 100644 index 000000000..f6c4a9bee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_0.json @@ -0,0 +1,100 @@ +{ + "parent": "block/block", + "textures": { + "propagule": "block/mangrove_propagule_hanging", + "particle": "block/mangrove_propagule_hanging" + }, + "elements": [ + { + "from": [7, 13.61104, 10.07193], + "to": [9, 13.61104, 12.07193], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 180, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "texture": "#propagule"} + } + }, + { + "from": [10.07193, 13.61104, 7], + "to": [12.07193, 13.61104, 9], + "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 90, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 90, "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 3.92807], + "to": [9, 13.61104, 5.92807], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 180, "texture": "#propagule"} + } + }, + { + "from": [3.92807, 13.61104, 7], + "to": [5.92807, 13.61104, 9], + "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 270, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 270, "texture": "#propagule"} + } + }, + { + "from": [7, 13, 7], + "to": [9, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "east": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "south": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "west": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "down": {"uv": [0, 3, 2, 5], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_1.json new file mode 100644 index 000000000..2bea314e8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_1.json @@ -0,0 +1,113 @@ +{ + "parent": "block/block", + "textures": { + "propagule": "block/mangrove_propagule_hanging", + "particle": "block/mangrove_propagule_hanging" + }, + "elements": [ + { + "from": [7, 10, 7], + "to": [9, 13, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "east": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "south": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "west": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "up": {"uv": [0, 5, 2, 7], "texture": "#propagule"}, + "down": {"uv": [0, 5, 2, 7], "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 10.07193], + "to": [9, 13.61104, 12.07193], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 180, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "texture": "#propagule"} + } + }, + { + "from": [10.07193, 13.61104, 7], + "to": [12.07193, 13.61104, 9], + "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 90, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 90, "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 3.92807], + "to": [9, 13.61104, 5.92807], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 180, "texture": "#propagule"} + } + }, + { + "from": [3.92807, 13.61104, 7], + "to": [5.92807, 13.61104, 9], + "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 270, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 270, "texture": "#propagule"} + } + }, + { + "from": [7, 13, 7], + "to": [9, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "east": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "south": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "west": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "down": {"uv": [0, 3, 2, 5], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_2.json new file mode 100644 index 000000000..fc008f495 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_2.json @@ -0,0 +1,139 @@ +{ + "parent": "block/block", + "textures": { + "propagule": "block/mangrove_propagule_hanging", + "particle": "block/mangrove_propagule_hanging" + }, + "elements": [ + { + "from": [7, 10, 7], + "to": [9, 13, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "east": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "south": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "west": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "up": {"uv": [0, 5, 2, 7], "texture": "#propagule"}, + "down": {"uv": [0, 10, 2, 12], "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 10.07193], + "to": [9, 13.61104, 12.07193], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 180, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "texture": "#propagule"} + } + }, + { + "from": [10.07193, 13.61104, 7], + "to": [12.07193, 13.61104, 9], + "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 90, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 90, "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 3.92807], + "to": [9, 13.61104, 5.92807], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 180, "texture": "#propagule"} + } + }, + { + "from": [3.92807, 13.61104, 7], + "to": [5.92807, 13.61104, 9], + "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 270, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 270, "texture": "#propagule"} + } + }, + { + "from": [7, 13, 7], + "to": [9, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "east": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "south": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "west": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "down": {"uv": [0, 3, 2, 5], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + }, + { + "from": [7, 7, 8], + "to": [9, 10, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [3, 7, 5, 10], "texture": "#propagule"}, + "east": {"uv": [13, 0, 13, 10], "texture": "#propagule"}, + "south": {"uv": [3, 7, 5, 10], "texture": "#propagule"}, + "west": {"uv": [11, 0, 11, 10], "texture": "#propagule"}, + "up": {"uv": [11, 0, 13, 0], "texture": "#propagule"}, + "down": {"uv": [11, 10, 13, 10], "texture": "#propagule"} + } + }, + { + "from": [7, 7, 8], + "to": [9, 10, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [3, 7, 5, 10], "texture": "#propagule"}, + "east": {"uv": [11, 0, 11, 10], "texture": "#propagule"}, + "south": {"uv": [3, 7, 5, 10], "texture": "#propagule"}, + "west": {"uv": [13, 0, 13, 10], "texture": "#propagule"}, + "up": {"uv": [11, 0, 13, 0], "rotation": 180, "texture": "#propagule"}, + "down": {"uv": [11, 10, 13, 10], "rotation": 180, "texture": "#propagule"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_3.json new file mode 100644 index 000000000..4ea6db3d2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_3.json @@ -0,0 +1,139 @@ +{ + "parent": "block/block", + "textures": { + "propagule": "block/mangrove_propagule_hanging", + "particle": "block/mangrove_propagule_hanging" + }, + "elements": [ + { + "from": [7, 10, 7], + "to": [9, 13, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "east": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "south": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "west": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "up": {"uv": [0, 5, 2, 7], "texture": "#propagule"}, + "down": {"uv": [0, 10, 2, 12], "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 10.07193], + "to": [9, 13.61104, 12.07193], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 180, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "texture": "#propagule"} + } + }, + { + "from": [10.07193, 13.61104, 7], + "to": [12.07193, 13.61104, 9], + "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 90, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 90, "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 3.92807], + "to": [9, 13.61104, 5.92807], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 180, "texture": "#propagule"} + } + }, + { + "from": [3.92807, 13.61104, 7], + "to": [5.92807, 13.61104, 9], + "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 270, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 270, "texture": "#propagule"} + } + }, + { + "from": [7, 13, 7], + "to": [9, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "east": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "south": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "west": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "down": {"uv": [0, 3, 2, 5], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + }, + { + "from": [7, 3, 8], + "to": [9, 10, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [3, 3, 5, 10], "texture": "#propagule"}, + "east": {"uv": [13, 0, 13, 10], "texture": "#propagule"}, + "south": {"uv": [3, 3, 5, 10], "texture": "#propagule"}, + "west": {"uv": [11, 0, 11, 10], "texture": "#propagule"}, + "up": {"uv": [11, 0, 13, 0], "texture": "#propagule"}, + "down": {"uv": [11, 10, 13, 10], "texture": "#propagule"} + } + }, + { + "from": [7, 3, 8], + "to": [9, 10, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [3, 3, 5, 10], "texture": "#propagule"}, + "east": {"uv": [11, 0, 11, 10], "texture": "#propagule"}, + "south": {"uv": [3, 3, 5, 10], "texture": "#propagule"}, + "west": {"uv": [13, 0, 13, 10], "texture": "#propagule"}, + "up": {"uv": [11, 0, 13, 0], "rotation": 180, "texture": "#propagule"}, + "down": {"uv": [11, 10, 13, 10], "rotation": 180, "texture": "#propagule"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_4.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_4.json new file mode 100644 index 000000000..a6086f3af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_4.json @@ -0,0 +1,139 @@ +{ + "parent": "block/block", + "textures": { + "propagule": "block/mangrove_propagule_hanging", + "particle": "block/mangrove_propagule_hanging" + }, + "elements": [ + { + "from": [7, 10, 7], + "to": [9, 13, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "east": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "south": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "west": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "up": {"uv": [0, 5, 2, 7], "texture": "#propagule"}, + "down": {"uv": [0, 10, 2, 12], "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 10.07193], + "to": [9, 13.61104, 12.07193], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 180, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "texture": "#propagule"} + } + }, + { + "from": [10.07193, 13.61104, 7], + "to": [12.07193, 13.61104, 9], + "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 90, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 90, "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 3.92807], + "to": [9, 13.61104, 5.92807], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 180, "texture": "#propagule"} + } + }, + { + "from": [3.92807, 13.61104, 7], + "to": [5.92807, 13.61104, 9], + "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 270, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 270, "texture": "#propagule"} + } + }, + { + "from": [7, 13, 7], + "to": [9, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "east": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "south": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "west": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "down": {"uv": [0, 3, 2, 5], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + }, + { + "from": [7, 0, 8], + "to": [9, 10, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [3, 0, 5, 10], "texture": "#propagule"}, + "east": {"uv": [13, 0, 13, 10], "texture": "#propagule"}, + "south": {"uv": [3, 0, 5, 10], "texture": "#propagule"}, + "west": {"uv": [11, 0, 11, 10], "texture": "#propagule"}, + "up": {"uv": [11, 0, 13, 0], "texture": "#propagule"}, + "down": {"uv": [11, 10, 13, 10], "texture": "#propagule"} + } + }, + { + "from": [7, 0, 8], + "to": [9, 10, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [3, 0, 5, 10], "texture": "#propagule"}, + "east": {"uv": [11, 0, 11, 10], "texture": "#propagule"}, + "south": {"uv": [3, 0, 5, 10], "texture": "#propagule"}, + "west": {"uv": [13, 0, 13, 10], "texture": "#propagule"}, + "up": {"uv": [11, 0, 13, 0], "rotation": 180, "texture": "#propagule"}, + "down": {"uv": [11, 10, 13, 10], "rotation": 180, "texture": "#propagule"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_roots.json new file mode 100644 index 000000000..eda9523de --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_roots.json @@ -0,0 +1,74 @@ +{ + "parent": "block/block", + "textures": { + "side": "block/mangrove_roots_side", + "top": "block/mangrove_roots_top", + "particle": "#side" + }, + "elements": [ + { + "from": [ 0, 0, 8 ], + "to": [ 16, 16, 8 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#side" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#side" } + } + }, + { + "from": [ 8, 0, 0 ], + "to": [ 8, 16, 16 ], + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#side" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#side" } + } + }, + { + "from": [ 0, 15.998, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#top", "cullface": "up" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "up" } + } + }, + { + "from": [ 0, 0, 0 ], + "to": [ 16, 0.002, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "down" }, + "up": { "uv": [ 0, 16, 16, 0 ], "texture": "#top", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 0.002 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 16, 0, 0, 16 ], "texture": "#side", "cullface": "north" } + } + }, + { + "from": [ 0, 0, 15.998 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#side", "cullface": "south" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "south" } + } + }, + { + "from": [ 0, 0, 0 ], + "to": [ 0.002, 16, 16 ], + "faces": { + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#side", "cullface": "west" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "west" } + } + }, + { + "from": [ 15.998, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "east" }, + "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_sign.json new file mode 100644 index 000000000..a3868f4fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_slab.json new file mode 100644 index 000000000..1808d03d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/mangrove_planks", + "side": "minecraft:block/mangrove_planks", + "top": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_slab_top.json new file mode 100644 index 000000000..a888006fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/mangrove_planks", + "side": "minecraft:block/mangrove_planks", + "top": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_stairs.json new file mode 100644 index 000000000..6f676ac97 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/mangrove_planks", + "side": "minecraft:block/mangrove_planks", + "top": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_stairs_inner.json new file mode 100644 index 000000000..54a1272cf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/mangrove_planks", + "side": "minecraft:block/mangrove_planks", + "top": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_stairs_outer.json new file mode 100644 index 000000000..a1b41e1d0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/mangrove_planks", + "side": "minecraft:block/mangrove_planks", + "top": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_bottom.json new file mode 100644 index 000000000..41aef9af1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/mangrove_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_open.json new file mode 100644 index 000000000..25e378a1f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/mangrove_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_top.json new file mode 100644 index 000000000..89513531b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/mangrove_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_wood.json new file mode 100644 index 000000000..b831a362c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mangrove_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/mangrove_log", + "side": "minecraft:block/mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/medium_amethyst_bud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/medium_amethyst_bud.json new file mode 100644 index 000000000..c69ea2a06 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/medium_amethyst_bud.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/medium_amethyst_bud" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon.json new file mode 100644 index 000000000..ef3816b94 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/melon_top", + "side": "minecraft:block/melon_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage0.json new file mode 100644 index 000000000..7f8918c50 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth0", + "textures": { + "stem": "minecraft:block/melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage1.json new file mode 100644 index 000000000..0d573b71a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth1", + "textures": { + "stem": "minecraft:block/melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage2.json new file mode 100644 index 000000000..c1934202b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth2", + "textures": { + "stem": "minecraft:block/melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage3.json new file mode 100644 index 000000000..8b4ef33f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth3", + "textures": { + "stem": "minecraft:block/melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage4.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage4.json new file mode 100644 index 000000000..cba7914b4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth4", + "textures": { + "stem": "minecraft:block/melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage5.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage5.json new file mode 100644 index 000000000..bd48d3f10 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth5", + "textures": { + "stem": "minecraft:block/melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage6.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage6.json new file mode 100644 index 000000000..c8f07f261 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth6", + "textures": { + "stem": "minecraft:block/melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage7.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage7.json new file mode 100644 index 000000000..2b479f700 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/melon_stem_stage7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth7", + "textures": { + "stem": "minecraft:block/melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/moss_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/moss_block.json new file mode 100644 index 000000000..3c2c9bcce --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/moss_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/moss_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/moss_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/moss_carpet.json new file mode 100644 index 000000000..3e5e68f25 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/moss_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/moss_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_carpet_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_carpet_side.json new file mode 100644 index 000000000..e63ad2dd2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_carpet_side.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": true, + "textures": { + "particle": "#side" + }, + "elements": [ + { "from": [ 0, 0, 0.1 ], + "to": [ 16, 16, 0.1 ], + "shade": true, + "faces": { + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#side"}, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#side"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone.json new file mode 100644 index 000000000..8767f35ce --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_slab.json new file mode 100644 index 000000000..b59badb12 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/mossy_cobblestone", + "side": "minecraft:block/mossy_cobblestone", + "top": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_slab_top.json new file mode 100644 index 000000000..16d9aa745 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/mossy_cobblestone", + "side": "minecraft:block/mossy_cobblestone", + "top": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs.json new file mode 100644 index 000000000..26a21edd8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/mossy_cobblestone", + "side": "minecraft:block/mossy_cobblestone", + "top": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs_inner.json new file mode 100644 index 000000000..49ffa9810 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/mossy_cobblestone", + "side": "minecraft:block/mossy_cobblestone", + "top": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs_outer.json new file mode 100644 index 000000000..4ac59fa17 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/mossy_cobblestone", + "side": "minecraft:block/mossy_cobblestone", + "top": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_inventory.json new file mode 100644 index 000000000..ea176a423 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_post.json new file mode 100644 index 000000000..b6be998c2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_side.json new file mode 100644 index 000000000..43c6c7063 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_side_tall.json new file mode 100644 index 000000000..969359899 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_slab.json new file mode 100644 index 000000000..80aa24567 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/mossy_stone_bricks", + "side": "minecraft:block/mossy_stone_bricks", + "top": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_slab_top.json new file mode 100644 index 000000000..03570970c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/mossy_stone_bricks", + "side": "minecraft:block/mossy_stone_bricks", + "top": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs.json new file mode 100644 index 000000000..301d37ceb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/mossy_stone_bricks", + "side": "minecraft:block/mossy_stone_bricks", + "top": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs_inner.json new file mode 100644 index 000000000..bf4698a3c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/mossy_stone_bricks", + "side": "minecraft:block/mossy_stone_bricks", + "top": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs_outer.json new file mode 100644 index 000000000..b7d6b8f1d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/mossy_stone_bricks", + "side": "minecraft:block/mossy_stone_bricks", + "top": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_inventory.json new file mode 100644 index 000000000..e6822feac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_post.json new file mode 100644 index 000000000..569428049 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_side.json new file mode 100644 index 000000000..13fdfa2e6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_side_tall.json new file mode 100644 index 000000000..265f6c3fd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_bricks.json new file mode 100644 index 000000000..4a4fa5aea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mossy_stone_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/moving_piston.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/moving_piston.json new file mode 100644 index 000000000..021eedbeb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/moving_piston.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/piston_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud.json new file mode 100644 index 000000000..5cfbb594d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/mud" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_slab.json new file mode 100644 index 000000000..f42d900fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/mud_bricks", + "side": "minecraft:block/mud_bricks", + "top": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_slab_top.json new file mode 100644 index 000000000..0208a1c47 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/mud_bricks", + "side": "minecraft:block/mud_bricks", + "top": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_stairs.json new file mode 100644 index 000000000..b56d553a7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/mud_bricks", + "side": "minecraft:block/mud_bricks", + "top": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_stairs_inner.json new file mode 100644 index 000000000..de826957b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/mud_bricks", + "side": "minecraft:block/mud_bricks", + "top": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_stairs_outer.json new file mode 100644 index 000000000..ebdb5c0ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/mud_bricks", + "side": "minecraft:block/mud_bricks", + "top": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_wall_inventory.json new file mode 100644 index 000000000..f84a0e64c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_wall_post.json new file mode 100644 index 000000000..baa01c2c6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_wall_side.json new file mode 100644 index 000000000..c7ca96bcc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_wall_side_tall.json new file mode 100644 index 000000000..916ff6851 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_bricks.json new file mode 100644 index 000000000..7ec0e500d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_bricks_north_west_mirrored.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_bricks_north_west_mirrored.json new file mode 100644 index 000000000..84815dd75 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mud_bricks_north_west_mirrored.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_north_west_mirrored_all", + "textures": { + "all": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/muddy_mangrove_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/muddy_mangrove_roots.json new file mode 100644 index 000000000..b3088afa7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/muddy_mangrove_roots.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/muddy_mangrove_roots_top", + "side": "minecraft:block/muddy_mangrove_roots_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mushroom_block_inside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mushroom_block_inside.json new file mode 100644 index 000000000..8c7b37134 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mushroom_block_inside.json @@ -0,0 +1,6 @@ +{ + "parent": "block/template_single_face", + "textures": { + "texture": "block/mushroom_block_inside" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mushroom_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mushroom_stem.json new file mode 100644 index 000000000..76f8cdbc1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mushroom_stem.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_single_face", + "textures": { + "texture": "minecraft:block/mushroom_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mushroom_stem_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mushroom_stem_inventory.json new file mode 100644 index 000000000..ed3732724 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mushroom_stem_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/mushroom_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mycelium.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mycelium.json new file mode 100644 index 000000000..a49b04e7f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/mycelium.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/dirt", + "side": "minecraft:block/mycelium_side", + "top": "minecraft:block/mycelium_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_fence_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_fence_inventory.json new file mode 100644 index 000000000..c66b932e0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_fence_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_fence_post.json new file mode 100644 index 000000000..22f5ac945 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_fence_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_fence_side.json new file mode 100644 index 000000000..1daddd0af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_slab.json new file mode 100644 index 000000000..82bd330fe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/nether_bricks", + "side": "minecraft:block/nether_bricks", + "top": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_slab_top.json new file mode 100644 index 000000000..d9a53ec0e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/nether_bricks", + "side": "minecraft:block/nether_bricks", + "top": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_stairs.json new file mode 100644 index 000000000..f6656789d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/nether_bricks", + "side": "minecraft:block/nether_bricks", + "top": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_stairs_inner.json new file mode 100644 index 000000000..5569ed421 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/nether_bricks", + "side": "minecraft:block/nether_bricks", + "top": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_stairs_outer.json new file mode 100644 index 000000000..6140b9d72 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/nether_bricks", + "side": "minecraft:block/nether_bricks", + "top": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_wall_inventory.json new file mode 100644 index 000000000..ef71ac4ec --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_wall_post.json new file mode 100644 index 000000000..5d5393763 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_wall_side.json new file mode 100644 index 000000000..19b01afdb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_wall_side_tall.json new file mode 100644 index 000000000..e368b6915 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_bricks.json new file mode 100644 index 000000000..19ca75ce7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_gold_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_gold_ore.json new file mode 100644 index 000000000..a7a48a50e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_gold_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/nether_gold_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_portal_ew.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_portal_ew.json new file mode 100644 index 000000000..5b7869ab2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_portal_ew.json @@ -0,0 +1,15 @@ +{ + "textures": { + "particle": "block/nether_portal", + "portal": "block/nether_portal" + }, + "elements": [ + { "from": [ 6, 0, 0 ], + "to": [ 10, 16, 16 ], + "faces": { + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#portal" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#portal" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_portal_ns.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_portal_ns.json new file mode 100644 index 000000000..937ca3b9b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_portal_ns.json @@ -0,0 +1,15 @@ +{ + "textures": { + "particle": "block/nether_portal", + "portal": "block/nether_portal" + }, + "elements": [ + { "from": [ 0, 0, 6 ], + "to": [ 16, 16, 10 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#portal" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#portal" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_quartz_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_quartz_ore.json new file mode 100644 index 000000000..831c93fa6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_quartz_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/nether_quartz_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_sprouts.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_sprouts.json new file mode 100644 index 000000000..a13485762 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_sprouts.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/nether_sprouts" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_wart_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_wart_block.json new file mode 100644 index 000000000..e16435355 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_wart_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/nether_wart_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_wart_stage0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_wart_stage0.json new file mode 100644 index 000000000..795414f24 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_wart_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/nether_wart_stage0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_wart_stage1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_wart_stage1.json new file mode 100644 index 000000000..55ac3277a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_wart_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/nether_wart_stage1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_wart_stage2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_wart_stage2.json new file mode 100644 index 000000000..42d5a2ea3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/nether_wart_stage2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/nether_wart_stage2" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/netherite_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/netherite_block.json new file mode 100644 index 000000000..72fa8d9bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/netherite_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/netherite_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/netherrack.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/netherrack.json new file mode 100644 index 000000000..11cebf7ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/netherrack.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/netherrack" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/note_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/note_block.json new file mode 100644 index 000000000..5d7671bda --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/note_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/note_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_button.json new file mode 100644 index 000000000..67b1c0f39 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_button_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_button_inventory.json new file mode 100644 index 000000000..f58d48690 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_button_pressed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_button_pressed.json new file mode 100644 index 000000000..218d5cf4c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_bottom_left.json new file mode 100644 index 000000000..9cd5e6b23 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/oak_door_bottom", + "top": "minecraft:block/oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_bottom_left_open.json new file mode 100644 index 000000000..9796ce19e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/oak_door_bottom", + "top": "minecraft:block/oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_bottom_right.json new file mode 100644 index 000000000..eefc40952 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/oak_door_bottom", + "top": "minecraft:block/oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_bottom_right_open.json new file mode 100644 index 000000000..2834d9a69 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/oak_door_bottom", + "top": "minecraft:block/oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_top_left.json new file mode 100644 index 000000000..025c7740a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/oak_door_bottom", + "top": "minecraft:block/oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_top_left_open.json new file mode 100644 index 000000000..3d7468e67 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/oak_door_bottom", + "top": "minecraft:block/oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_top_right.json new file mode 100644 index 000000000..fee6d8123 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/oak_door_bottom", + "top": "minecraft:block/oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_top_right_open.json new file mode 100644 index 000000000..0ed1f7fb6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/oak_door_bottom", + "top": "minecraft:block/oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_gate.json new file mode 100644 index 000000000..74e6c4455 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_gate_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_gate_open.json new file mode 100644 index 000000000..c3e37495f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_gate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_gate_wall.json new file mode 100644 index 000000000..9c2c0f39a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_gate_wall_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_gate_wall_open.json new file mode 100644 index 000000000..2b5151791 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_inventory.json new file mode 100644 index 000000000..54282027d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_post.json new file mode 100644 index 000000000..e05dc4ae3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_side.json new file mode 100644 index 000000000..fe4ed99e0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_hanging_sign.json new file mode 100644 index 000000000..97f5acc2b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_leaves.json new file mode 100644 index 000000000..192ebd670 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/oak_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_log.json new file mode 100644 index 000000000..70583e679 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/oak_log_top", + "side": "minecraft:block/oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_log_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_log_horizontal.json new file mode 100644 index 000000000..fd9a02ca0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/oak_log_top", + "side": "minecraft:block/oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_planks.json new file mode 100644 index 000000000..3a21a3f2e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_pressure_plate.json new file mode 100644 index 000000000..3fb5dd7c9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_pressure_plate_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_pressure_plate_down.json new file mode 100644 index 000000000..06c4db732 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_sapling.json new file mode 100644 index 000000000..87354edc3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_sign.json new file mode 100644 index 000000000..9406a8491 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_slab.json new file mode 100644 index 000000000..f11ff8bad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/oak_planks", + "side": "minecraft:block/oak_planks", + "top": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_slab_top.json new file mode 100644 index 000000000..d7adec0ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/oak_planks", + "side": "minecraft:block/oak_planks", + "top": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_stairs.json new file mode 100644 index 000000000..d959a5f28 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/oak_planks", + "side": "minecraft:block/oak_planks", + "top": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_stairs_inner.json new file mode 100644 index 000000000..2850cc580 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/oak_planks", + "side": "minecraft:block/oak_planks", + "top": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_stairs_outer.json new file mode 100644 index 000000000..78644acd4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/oak_planks", + "side": "minecraft:block/oak_planks", + "top": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_trapdoor_bottom.json new file mode 100644 index 000000000..a4dcb639f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_trapdoor_open.json new file mode 100644 index 000000000..e8b0bb3b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_open", + "textures": { + "texture": "minecraft:block/oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_trapdoor_top.json new file mode 100644 index 000000000..34322d68e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_top", + "textures": { + "texture": "minecraft:block/oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_wood.json new file mode 100644 index 000000000..79a8da036 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oak_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/oak_log", + "side": "minecraft:block/oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/observer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/observer.json new file mode 100644 index 000000000..1b8ca609a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/observer.json @@ -0,0 +1,23 @@ +{ + "parent": "block/block", + "textures": { + "bottom": "block/observer_back", + "side": "block/observer_side", + "top": "block/observer_top", + "front": "block/observer_front", + "particle": "block/observer_front" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "down" }, + "up": { "uv": [ 0, 16, 16, 0 ], "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#front", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/observer_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/observer_on.json new file mode 100644 index 000000000..ee290184e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/observer_on.json @@ -0,0 +1,6 @@ +{ + "parent": "block/observer", + "textures": { + "bottom": "block/observer_back_on" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/obsidian.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/obsidian.json new file mode 100644 index 000000000..104a19940 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/obsidian.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/obsidian" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ochre_froglight.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ochre_froglight.json new file mode 100644 index 000000000..344b79faf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ochre_froglight.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/ochre_froglight_top", + "side": "minecraft:block/ochre_froglight_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ochre_froglight_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ochre_froglight_horizontal.json new file mode 100644 index 000000000..a11db54e7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/ochre_froglight_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/ochre_froglight_top", + "side": "minecraft:block/ochre_froglight_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/open_eyeblossom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/open_eyeblossom.json new file mode 100644 index 000000000..1d2194bbe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/open_eyeblossom.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cross_emissive", + "textures": { + "cross": "minecraft:block/open_eyeblossom", + "cross_emissive": "minecraft:block/open_eyeblossom_emissive" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_cake.json new file mode 100644 index 000000000..9e2b18388 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/orange_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_cake_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_cake_lit.json new file mode 100644 index 000000000..44210f34f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/orange_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_four_candles.json new file mode 100644 index 000000000..4cbb2a4a8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/orange_candle", + "particle": "minecraft:block/orange_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_four_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_four_candles_lit.json new file mode 100644 index 000000000..eb3290683 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/orange_candle_lit", + "particle": "minecraft:block/orange_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_one_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_one_candle.json new file mode 100644 index 000000000..f1cf6b0ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/orange_candle", + "particle": "minecraft:block/orange_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_one_candle_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_one_candle_lit.json new file mode 100644 index 000000000..0ba73ca25 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/orange_candle_lit", + "particle": "minecraft:block/orange_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_three_candles.json new file mode 100644 index 000000000..d2435363b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/orange_candle", + "particle": "minecraft:block/orange_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_three_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_three_candles_lit.json new file mode 100644 index 000000000..ad1504335 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/orange_candle_lit", + "particle": "minecraft:block/orange_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_two_candles.json new file mode 100644 index 000000000..42bfeb43b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/orange_candle", + "particle": "minecraft:block/orange_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_two_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_two_candles_lit.json new file mode 100644 index 000000000..56c061175 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/orange_candle_lit", + "particle": "minecraft:block/orange_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_carpet.json new file mode 100644 index 000000000..886a5dbfa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/orange_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_concrete.json new file mode 100644 index 000000000..c0f6708a3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/orange_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_concrete_powder.json new file mode 100644 index 000000000..a63474f67 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/orange_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_glazed_terracotta.json new file mode 100644 index 000000000..d39dc99b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/orange_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_shulker_box.json new file mode 100644 index 000000000..202c32578 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/orange_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass.json new file mode 100644 index 000000000..cb420e059 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/orange_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_noside.json new file mode 100644 index 000000000..d54ef0db9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/orange_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..56f2cd0b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/orange_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_post.json new file mode 100644 index 000000000..2e178a0c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/orange_stained_glass_pane_top", + "pane": "minecraft:block/orange_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_side.json new file mode 100644 index 000000000..9a54ee884 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/orange_stained_glass_pane_top", + "pane": "minecraft:block/orange_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..32ce49a61 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/orange_stained_glass_pane_top", + "pane": "minecraft:block/orange_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_terracotta.json new file mode 100644 index 000000000..2d5e41a14 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/orange_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_tulip.json new file mode 100644 index 000000000..e0b71ccbb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/orange_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_wool.json new file mode 100644 index 000000000..89a99b52b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orange_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/orange_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orientable.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orientable.json new file mode 100644 index 000000000..ad7bf9a73 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orientable.json @@ -0,0 +1,6 @@ +{ + "parent": "block/orientable_with_bottom", + "textures": { + "bottom": "#top" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orientable_vertical.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orientable_vertical.json new file mode 100644 index 000000000..5fb2223a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orientable_vertical.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube", + "textures": { + "particle": "#side", + "down": "#side", + "up": "#front", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orientable_with_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orientable_with_bottom.json new file mode 100644 index 000000000..d03a89bdb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/orientable_with_bottom.json @@ -0,0 +1,19 @@ +{ + "parent": "block/cube", + "display": { + "firstperson_righthand": { + "rotation": [ 0, 135, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.40, 0.40, 0.40 ] + } + }, + "textures": { + "particle": "#front", + "down": "#bottom", + "up": "#top", + "north": "#front", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/outer_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/outer_stairs.json new file mode 100644 index 000000000..03bbe4200 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/outer_stairs.json @@ -0,0 +1,28 @@ +{ + "textures": { + "particle": "#side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 8, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 8, 8, 8 ], + "to": [ 16, 16, 16 ], + "faces": { + "up": { "uv": [ 8, 8, 16, 16 ], "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 0, 0, 8, 8 ], "texture": "#side" }, + "south": { "uv": [ 8, 0, 16, 8 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 8, 0, 16, 8 ], "texture": "#side" }, + "east": { "uv": [ 0, 0, 8, 8 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxeye_daisy.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxeye_daisy.json new file mode 100644 index 000000000..bdc32c2ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxeye_daisy.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/oxeye_daisy" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_chiseled_copper.json new file mode 100644 index 000000000..a5750a641 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_chiseled_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper.json new file mode 100644 index 000000000..5da2d1ab7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oxidized_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb.json new file mode 100644 index 000000000..77017a214 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oxidized_copper_bulb" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_lit.json new file mode 100644 index 000000000..b27236f76 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_lit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oxidized_copper_bulb_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_lit_powered.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_lit_powered.json new file mode 100644 index 000000000..8977a4555 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_lit_powered.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oxidized_copper_bulb_lit_powered" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_powered.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_powered.json new file mode 100644 index 000000000..0bd0856b4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_powered.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oxidized_copper_bulb_powered" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_left.json new file mode 100644 index 000000000..730c42d6f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/oxidized_copper_door_bottom", + "top": "minecraft:block/oxidized_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_left_open.json new file mode 100644 index 000000000..ef9ea289e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/oxidized_copper_door_bottom", + "top": "minecraft:block/oxidized_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_right.json new file mode 100644 index 000000000..7ee3c7bf9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/oxidized_copper_door_bottom", + "top": "minecraft:block/oxidized_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_right_open.json new file mode 100644 index 000000000..437ab8b77 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/oxidized_copper_door_bottom", + "top": "minecraft:block/oxidized_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_left.json new file mode 100644 index 000000000..9b519f28b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/oxidized_copper_door_bottom", + "top": "minecraft:block/oxidized_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_left_open.json new file mode 100644 index 000000000..75c867925 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/oxidized_copper_door_bottom", + "top": "minecraft:block/oxidized_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_right.json new file mode 100644 index 000000000..79cfd8401 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/oxidized_copper_door_bottom", + "top": "minecraft:block/oxidized_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_right_open.json new file mode 100644 index 000000000..3a70a3005 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/oxidized_copper_door_bottom", + "top": "minecraft:block/oxidized_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_grate.json new file mode 100644 index 000000000..ffba94489 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_grate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oxidized_copper_grate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_bottom.json new file mode 100644 index 000000000..37d82f64d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/oxidized_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_open.json new file mode 100644 index 000000000..e606f5de2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_open", + "textures": { + "texture": "minecraft:block/oxidized_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_top.json new file mode 100644 index 000000000..60e1b4398 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_top", + "textures": { + "texture": "minecraft:block/oxidized_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper.json new file mode 100644 index 000000000..4ac7bb083 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_slab.json new file mode 100644 index 000000000..f61b04e51 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/oxidized_cut_copper", + "side": "minecraft:block/oxidized_cut_copper", + "top": "minecraft:block/oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_slab_top.json new file mode 100644 index 000000000..06790cf18 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/oxidized_cut_copper", + "side": "minecraft:block/oxidized_cut_copper", + "top": "minecraft:block/oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs.json new file mode 100644 index 000000000..7cebec1de --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/oxidized_cut_copper", + "side": "minecraft:block/oxidized_cut_copper", + "top": "minecraft:block/oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs_inner.json new file mode 100644 index 000000000..c51ee2680 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/oxidized_cut_copper", + "side": "minecraft:block/oxidized_cut_copper", + "top": "minecraft:block/oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs_outer.json new file mode 100644 index 000000000..58f42dc64 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/oxidized_cut_copper", + "side": "minecraft:block/oxidized_cut_copper", + "top": "minecraft:block/oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/packed_ice.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/packed_ice.json new file mode 100644 index 000000000..3af1024f0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/packed_ice.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/packed_ice" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/packed_mud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/packed_mud.json new file mode 100644 index 000000000..5b637a276 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/packed_mud.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/packed_mud" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_hanging_moss.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_hanging_moss.json new file mode 100644 index 000000000..c4b4d1c82 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_hanging_moss.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/pale_hanging_moss" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_hanging_moss_tip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_hanging_moss_tip.json new file mode 100644 index 000000000..ca893a947 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_hanging_moss_tip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/pale_hanging_moss_tip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_moss_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_moss_block.json new file mode 100644 index 000000000..e5f25ac4f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_moss_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/pale_moss_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_moss_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_moss_carpet.json new file mode 100644 index 000000000..cc17e46c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_moss_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/pale_moss_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_moss_carpet_side_small.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_moss_carpet_side_small.json new file mode 100644 index 000000000..08fbb8659 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_moss_carpet_side_small.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/mossy_carpet_side", + "textures": { + "side": "minecraft:block/pale_moss_carpet_side_small" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_moss_carpet_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_moss_carpet_side_tall.json new file mode 100644 index 000000000..6a1c75c76 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_moss_carpet_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/mossy_carpet_side", + "textures": { + "side": "minecraft:block/pale_moss_carpet_side_tall" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_button.json new file mode 100644 index 000000000..898512c57 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_button_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_button_inventory.json new file mode 100644 index 000000000..f15887002 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_button_pressed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_button_pressed.json new file mode 100644 index 000000000..bbbbea086 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_left.json new file mode 100644 index 000000000..04841d82a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/pale_oak_door_bottom", + "top": "minecraft:block/pale_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_left_open.json new file mode 100644 index 000000000..639730e94 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/pale_oak_door_bottom", + "top": "minecraft:block/pale_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_right.json new file mode 100644 index 000000000..1719305b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/pale_oak_door_bottom", + "top": "minecraft:block/pale_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_right_open.json new file mode 100644 index 000000000..7cd2a1efc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/pale_oak_door_bottom", + "top": "minecraft:block/pale_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_left.json new file mode 100644 index 000000000..ee6559a13 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/pale_oak_door_bottom", + "top": "minecraft:block/pale_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_left_open.json new file mode 100644 index 000000000..16aeb0d39 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/pale_oak_door_bottom", + "top": "minecraft:block/pale_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_right.json new file mode 100644 index 000000000..603238fcf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/pale_oak_door_bottom", + "top": "minecraft:block/pale_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_right_open.json new file mode 100644 index 000000000..f2c0ad5a8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/pale_oak_door_bottom", + "top": "minecraft:block/pale_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate.json new file mode 100644 index 000000000..4038af503 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_open.json new file mode 100644 index 000000000..23b2d2ae5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_wall.json new file mode 100644 index 000000000..4a667a4b0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_wall_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_wall_open.json new file mode 100644 index 000000000..8f558cd8c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_inventory.json new file mode 100644 index 000000000..63aad0b54 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_post.json new file mode 100644 index 000000000..d531237b0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_side.json new file mode 100644 index 000000000..aae5a271e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_hanging_sign.json new file mode 100644 index 000000000..aa64adf26 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_leaves.json new file mode 100644 index 000000000..ed007419c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/pale_oak_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_log.json new file mode 100644 index 000000000..a3803c5fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/pale_oak_log_top", + "side": "minecraft:block/pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_log_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_log_horizontal.json new file mode 100644 index 000000000..8e36591b0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/pale_oak_log_top", + "side": "minecraft:block/pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_planks.json new file mode 100644 index 000000000..685cb0406 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_pressure_plate.json new file mode 100644 index 000000000..260e88006 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_pressure_plate_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_pressure_plate_down.json new file mode 100644 index 000000000..5b0377848 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_sapling.json new file mode 100644 index 000000000..b4ddd4ccf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/pale_oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_sign.json new file mode 100644 index 000000000..47da6531e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_slab.json new file mode 100644 index 000000000..13b139369 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/pale_oak_planks", + "side": "minecraft:block/pale_oak_planks", + "top": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_slab_top.json new file mode 100644 index 000000000..28a93f06b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/pale_oak_planks", + "side": "minecraft:block/pale_oak_planks", + "top": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_stairs.json new file mode 100644 index 000000000..96793897c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/pale_oak_planks", + "side": "minecraft:block/pale_oak_planks", + "top": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_stairs_inner.json new file mode 100644 index 000000000..bb0597a96 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/pale_oak_planks", + "side": "minecraft:block/pale_oak_planks", + "top": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_stairs_outer.json new file mode 100644 index 000000000..d440f5d6d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/pale_oak_planks", + "side": "minecraft:block/pale_oak_planks", + "top": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_bottom.json new file mode 100644 index 000000000..af013f0c6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/pale_oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_open.json new file mode 100644 index 000000000..bd0aa87ab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/pale_oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_top.json new file mode 100644 index 000000000..86757e055 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/pale_oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_wood.json new file mode 100644 index 000000000..5b4e8032c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pale_oak_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/pale_oak_log", + "side": "minecraft:block/pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pearlescent_froglight.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pearlescent_froglight.json new file mode 100644 index 000000000..72ecd971c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pearlescent_froglight.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/pearlescent_froglight_top", + "side": "minecraft:block/pearlescent_froglight_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pearlescent_froglight_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pearlescent_froglight_horizontal.json new file mode 100644 index 000000000..483648f50 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pearlescent_froglight_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/pearlescent_froglight_top", + "side": "minecraft:block/pearlescent_froglight_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/peony_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/peony_bottom.json new file mode 100644 index 000000000..8b7ea9163 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/peony_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/peony_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/peony_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/peony_top.json new file mode 100644 index 000000000..6e0fd6b7a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/peony_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/peony_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/petrified_oak_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/petrified_oak_slab.json new file mode 100644 index 000000000..f11ff8bad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/petrified_oak_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/oak_planks", + "side": "minecraft:block/oak_planks", + "top": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/petrified_oak_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/petrified_oak_slab_top.json new file mode 100644 index 000000000..d7adec0ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/petrified_oak_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/oak_planks", + "side": "minecraft:block/oak_planks", + "top": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_cake.json new file mode 100644 index 000000000..b203df962 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/pink_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_cake_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_cake_lit.json new file mode 100644 index 000000000..3fbdc7af4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/pink_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_four_candles.json new file mode 100644 index 000000000..956b98971 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/pink_candle", + "particle": "minecraft:block/pink_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_four_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_four_candles_lit.json new file mode 100644 index 000000000..5f8c43f1f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/pink_candle_lit", + "particle": "minecraft:block/pink_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_one_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_one_candle.json new file mode 100644 index 000000000..21075a6df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/pink_candle", + "particle": "minecraft:block/pink_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_one_candle_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_one_candle_lit.json new file mode 100644 index 000000000..30c7ad599 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/pink_candle_lit", + "particle": "minecraft:block/pink_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_three_candles.json new file mode 100644 index 000000000..47f2c6f05 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/pink_candle", + "particle": "minecraft:block/pink_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_three_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_three_candles_lit.json new file mode 100644 index 000000000..013f6f74e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/pink_candle_lit", + "particle": "minecraft:block/pink_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_two_candles.json new file mode 100644 index 000000000..92054932f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/pink_candle", + "particle": "minecraft:block/pink_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_two_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_two_candles_lit.json new file mode 100644 index 000000000..0dbe15bf4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/pink_candle_lit", + "particle": "minecraft:block/pink_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_carpet.json new file mode 100644 index 000000000..874e9744c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/pink_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_concrete.json new file mode 100644 index 000000000..d64f49b9e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/pink_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_concrete_powder.json new file mode 100644 index 000000000..b6c6ec124 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/pink_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_glazed_terracotta.json new file mode 100644 index 000000000..6f6bc9f11 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/pink_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_petals_1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_petals_1.json new file mode 100644 index 000000000..38dacd572 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_petals_1.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flowerbed_1", + "textures": { + "flowerbed": "minecraft:block/pink_petals", + "stem": "minecraft:block/pink_petals_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_petals_2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_petals_2.json new file mode 100644 index 000000000..d2701a3c0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_petals_2.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flowerbed_2", + "textures": { + "flowerbed": "minecraft:block/pink_petals", + "stem": "minecraft:block/pink_petals_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_petals_3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_petals_3.json new file mode 100644 index 000000000..34569a213 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_petals_3.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flowerbed_3", + "textures": { + "flowerbed": "minecraft:block/pink_petals", + "stem": "minecraft:block/pink_petals_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_petals_4.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_petals_4.json new file mode 100644 index 000000000..7e132ab82 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_petals_4.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flowerbed_4", + "textures": { + "flowerbed": "minecraft:block/pink_petals", + "stem": "minecraft:block/pink_petals_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_shulker_box.json new file mode 100644 index 000000000..f088a1206 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/pink_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass.json new file mode 100644 index 000000000..bb30dc774 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/pink_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_noside.json new file mode 100644 index 000000000..ea8bf6d6d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/pink_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..14ee3c511 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/pink_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_post.json new file mode 100644 index 000000000..9377bf3dc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/pink_stained_glass_pane_top", + "pane": "minecraft:block/pink_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_side.json new file mode 100644 index 000000000..ec16d6610 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/pink_stained_glass_pane_top", + "pane": "minecraft:block/pink_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..6c54e0730 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/pink_stained_glass_pane_top", + "pane": "minecraft:block/pink_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_terracotta.json new file mode 100644 index 000000000..371277540 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/pink_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_tulip.json new file mode 100644 index 000000000..56946f9cb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/pink_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_wool.json new file mode 100644 index 000000000..0c56bf016 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pink_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/pink_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston.json new file mode 100644 index 000000000..02156a184 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_piston", + "textures": { + "bottom": "minecraft:block/piston_bottom", + "platform": "minecraft:block/piston_top", + "side": "minecraft:block/piston_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_base.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_base.json new file mode 100644 index 000000000..605c2f689 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_base.json @@ -0,0 +1,8 @@ +{ + "parent": "block/piston_extended", + "textures": { + "bottom": "block/piston_bottom", + "side": "block/piston_side", + "inside": "block/piston_inner" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_extended.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_extended.json new file mode 100644 index 000000000..45e04a30c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_extended.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#side" + }, + "elements": [ + { "from": [ 0, 0, 4 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 4, 16, 16 ], "texture": "#side", "cullface": "down", "rotation": 180 }, + "up": { "uv": [ 0, 4, 16, 16 ], "texture": "#side", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#inside" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "south" }, + "west": { "uv": [ 0, 4, 16, 16 ], "texture": "#side", "cullface": "west", "rotation": 270 }, + "east": { "uv": [ 0, 4, 16, 16 ], "texture": "#side", "cullface": "east", "rotation": 90 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_head.json new file mode 100644 index 000000000..2caa096c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_head.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_piston_head", + "textures": { + "platform": "minecraft:block/piston_top", + "side": "minecraft:block/piston_side", + "unsticky": "minecraft:block/piston_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_head_short.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_head_short.json new file mode 100644 index 000000000..490b1c50f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_head_short.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_piston_head_short", + "textures": { + "platform": "minecraft:block/piston_top", + "side": "minecraft:block/piston_side", + "unsticky": "minecraft:block/piston_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_head_short_sticky.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_head_short_sticky.json new file mode 100644 index 000000000..c5a982048 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_head_short_sticky.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_piston_head_short", + "textures": { + "platform": "minecraft:block/piston_top_sticky", + "side": "minecraft:block/piston_side", + "unsticky": "minecraft:block/piston_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_head_sticky.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_head_sticky.json new file mode 100644 index 000000000..7fa4495a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_head_sticky.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_piston_head", + "textures": { + "platform": "minecraft:block/piston_top_sticky", + "side": "minecraft:block/piston_side", + "unsticky": "minecraft:block/piston_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_inventory.json new file mode 100644 index 000000000..589ed928f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/piston_inventory.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/piston_bottom", + "side": "minecraft:block/piston_side", + "top": "minecraft:block/piston_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_0.json new file mode 100644 index 000000000..7e4423e0d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_0.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top", + "pitcher_top": "block/pitcher_crop_top", + "pitcher_side": "block/pitcher_crop_side", + "pitcher_bottom": "block/pitcher_crop_bottom" + }, + "elements": [ + { + "name": "pitcher_crop_bottom_stage_0", + "from": [5, -1, 5], + "to": [11, 3, 11], + "faces": { + "north": {"uv": [3, 10, 9, 14], "texture": "#pitcher_side"}, + "east": {"uv": [3, 10, 9, 14], "texture": "#pitcher_side"}, + "south": {"uv": [3, 10, 9, 14], "texture": "#pitcher_side"}, + "west": {"uv": [3, 10, 9, 14], "texture": "#pitcher_side"}, + "up": {"uv": [5, 5, 11, 11], "texture": "#pitcher_top"}, + "down": {"uv": [5, 5, 11, 11], "texture": "#pitcher_bottom"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_1.json new file mode 100644 index 000000000..77b844fac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_1.json @@ -0,0 +1,47 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top", + "stage_1": "block/pitcher_crop_bottom_stage_1", + "pitcher_top": "block/pitcher_crop_top", + "pitcher_side": "block/pitcher_crop_side", + "pitcher_bottom": "block/pitcher_crop_bottom" + }, + "elements": [ + { + "name": "pitcher_crop_bottom_stage_1", + "from": [0, 5, 8], + "to": [16, 21, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 5, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_1"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_1"} + } + }, + { + "name": "pitcher_crop_bottom_stage_1", + "from": [0, 5, 8], + "to": [16, 21, 8], + "shade": false, + "rotation": {"angle": -45, "axis": "y", "origin": [8, 5, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_1"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_1"} + } + }, + { + "name": "pitcher_crop_bottom_stage_1", + "from": [3, -1, 3], + "to": [13, 5, 13], + "faces": { + "north": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "east": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "south": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "west": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "up": {"uv": [3, 3, 13, 13], "texture": "#pitcher_top"}, + "down": {"uv": [3, 3, 13, 13], "texture": "#pitcher_bottom"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_2.json new file mode 100644 index 000000000..369939404 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_2.json @@ -0,0 +1,47 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top", + "stage_2": "block/pitcher_crop_bottom_stage_2", + "pitcher_top": "block/pitcher_crop_top", + "pitcher_side": "block/pitcher_crop_side", + "pitcher_bottom": "block/pitcher_crop_bottom" + }, + "elements": [ + { + "name": "pitcher_crop_bottom_stage_2", + "from": [0, 5, 8], + "to": [16, 21, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 6, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_2"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_2"} + } + }, + { + "name": "pitcher_crop_bottom_stage_2", + "from": [8, 5, 0], + "to": [8, 21, 16], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 6, 8]}, + "faces": { + "east": {"uv": [0, 0, 16, 16], "texture": "#stage_2"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#stage_2"} + } + }, + { + "name": "pitcher_crop_bottom_stage_1", + "from": [3, -1, 3], + "to": [13, 5, 13], + "faces": { + "north": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "east": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "south": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "west": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "up": {"uv": [3, 3, 13, 13], "texture": "#pitcher_top"}, + "down": {"uv": [3, 3, 13, 13], "texture": "#pitcher_bottom"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_3.json new file mode 100644 index 000000000..520fbcba2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_3.json @@ -0,0 +1,47 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top", + "stage_3_bottom": "block/pitcher_crop_bottom_stage_3", + "pitcher_top": "block/pitcher_crop_top", + "pitcher_side": "block/pitcher_crop_side", + "pitcher_bottom": "block/pitcher_crop_bottom" + }, + "elements": [ + { + "name": "pitcher_crop_bottom_stage_3", + "from": [0, 0, 8], + "to": [16, 16, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_3_bottom"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_3_bottom"} + } + }, + { + "name": "pitcher_crop_bottom_stage_3", + "from": [0, 0, 8], + "to": [16, 16, 8], + "shade": false, + "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_3_bottom"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_3_bottom"} + } + }, + { + "name": "pitcher_crop_bottom_stage_1", + "from": [3, -1, 3], + "to": [13, 5, 13], + "faces": { + "north": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "east": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "south": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "west": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "up": {"uv": [3, 3, 13, 13], "texture": "#pitcher_top"}, + "down": {"uv": [3, 3, 13, 13], "texture": "#pitcher_bottom"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_4.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_4.json new file mode 100644 index 000000000..1b258f059 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_4.json @@ -0,0 +1,47 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top", + "stage_4_bottom": "block/pitcher_crop_bottom_stage_4", + "pitcher_top": "block/pitcher_crop_top", + "pitcher_side": "block/pitcher_crop_side", + "pitcher_bottom": "block/pitcher_crop_bottom" + }, + "elements": [ + { + "name": "pitcher_crop_bottom_stage_4", + "from": [8, 0, 0], + "to": [8, 16, 16], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "east": {"uv": [0, 0, 16, 16], "texture": "#stage_4_bottom"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#stage_4_bottom"} + } + }, + { + "name": "pitcher_crop_bottom_stage_4", + "from": [0, 0, 8], + "to": [16, 16, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_4_bottom"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_4_bottom"} + } + }, + { + "name": "pitcher_crop_bottom_stage_1", + "from": [3, -1, 3], + "to": [13, 5, 13], + "faces": { + "north": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "east": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "south": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "west": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "up": {"uv": [3, 3, 13, 13], "texture": "#pitcher_top"}, + "down": {"uv": [3, 3, 13, 13], "texture": "#pitcher_bottom"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_0.json new file mode 100644 index 000000000..93576f7cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_0.json @@ -0,0 +1,6 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_1.json new file mode 100644 index 000000000..1e9bae1f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_1.json @@ -0,0 +1,6 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_2.json new file mode 100644 index 000000000..1e9bae1f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_2.json @@ -0,0 +1,6 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_3.json new file mode 100644 index 000000000..ab16f8518 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_3.json @@ -0,0 +1,31 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top", + "stage_3_top": "block/pitcher_crop_top_stage_3" + }, + "elements": [ + { + "name": "pitcher_crop_top_stage_3", + "from": [0, 0, 8], + "to": [16, 16, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_3_top"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_3_top"} + } + }, + { + "name": "pitcher_crop_top_stage_3", + "from": [0, 0, 8], + "to": [16, 16, 8], + "shade": false, + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_3_top"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_3_top"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_4.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_4.json new file mode 100644 index 000000000..ef33757dd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_4.json @@ -0,0 +1,33 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top", + "stage_4_top": "block/pitcher_crop_top_stage_4", + "pitcher_top": "block/pitcher_crop_top", + "pitcher_side": "block/pitcher_crop_side" + }, + "elements": [ + { + "name": "pitcher_crop_top_stage_4", + "from": [8, 0, 0], + "to": [8, 16, 16], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "east": {"uv": [0, 0, 16, 16], "texture": "#stage_4_top"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#stage_4_top"} + } + }, + { + "name": "pitcher_crop_top_stage_4", + "from": [0, 0, 8], + "to": [16, 16, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_4_top"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_4_top"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_plant_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_plant_bottom.json new file mode 100644 index 000000000..cd979bf9f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_plant_bottom.json @@ -0,0 +1,39 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_bottom_stage_4", + "bottom": "block/pitcher_crop_bottom_stage_4" + }, + "elements": [ + { + "name": "pitcher_plant_bottom", + "from": [8, -5, 0], + "to": [8, 11, 16], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 3, 8]}, + "faces": { + "north": {"uv": [0, 0, 0, 16], "texture": "#bottom"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#bottom"}, + "south": {"uv": [0, 0, 0, 16], "texture": "#bottom"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#bottom"}, + "up": {"uv": [0, 0, 16, 0], "rotation": 90, "texture": "#bottom"}, + "down": {"uv": [0, 0, 16, 0], "rotation": 270, "texture": "#bottom"} + } + }, + { + "name": "pitcher_plant_bottom", + "from": [0, -5, 8], + "to": [16, 11, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 3, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#bottom"}, + "east": {"uv": [0, 0, 0, 16], "texture": "#bottom"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#bottom"}, + "west": {"uv": [0, 0, 0, 16], "texture": "#bottom"}, + "up": {"uv": [0, 0, 16, 0], "texture": "#bottom"}, + "down": {"uv": [0, 0, 16, 0], "texture": "#bottom"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_plant_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_plant_top.json new file mode 100644 index 000000000..9d21ab893 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pitcher_plant_top.json @@ -0,0 +1,39 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top_stage_4", + "top": "block/pitcher_crop_top_stage_4" + }, + "elements": [ + { + "name": "pitcher_plant_top", + "from": [8, -5, 0], + "to": [8, 11, 16], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 19, 8]}, + "faces": { + "north": {"uv": [0, 0, 0, 16], "texture": "#top"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#top"}, + "south": {"uv": [0, 0, 0, 16], "texture": "#top"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#top"}, + "up": {"uv": [0, 0, 16, 0], "rotation": 90, "texture": "#top"}, + "down": {"uv": [0, 0, 16, 0], "rotation": 270, "texture": "#top"} + } + }, + { + "name": "pitcher_plant_top", + "from": [0, -5, 8], + "to": [16, 11, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 19, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#top"}, + "east": {"uv": [0, 0, 0, 16], "texture": "#top"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#top"}, + "west": {"uv": [0, 0, 0, 16], "texture": "#top"}, + "up": {"uv": [0, 0, 16, 0], "texture": "#top"}, + "down": {"uv": [0, 0, 16, 0], "texture": "#top"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/podzol.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/podzol.json new file mode 100644 index 000000000..e34892178 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/podzol.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/dirt", + "side": "minecraft:block/podzol_side", + "top": "minecraft:block/podzol_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone.json new file mode 100644 index 000000000..783947176 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": true, + "textures": { + "particle": "#cross" + }, + "elements": [ + { "from": [ 0.8, 0, 8 ], + "to": [ 15.2, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" } + } + }, + { "from": [ 8, 0, 0.8 ], + "to": [ 8, 16, 15.2 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_base.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_base.json new file mode 100644 index 000000000..3664c7123 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_base.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_down_base" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_frustum.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_frustum.json new file mode 100644 index 000000000..56005b2c9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_frustum.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_down_frustum" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_middle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_middle.json new file mode 100644 index 000000000..14d2c305f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_middle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_down_middle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_tip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_tip.json new file mode 100644 index 000000000..ab610fb81 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_tip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_down_tip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_tip_merge.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_tip_merge.json new file mode 100644 index 000000000..4d0c1bf67 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_tip_merge.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_down_tip_merge" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_base.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_base.json new file mode 100644 index 000000000..27b8b8133 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_base.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_up_base" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_frustum.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_frustum.json new file mode 100644 index 000000000..556b14304 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_frustum.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_up_frustum" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_middle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_middle.json new file mode 100644 index 000000000..27cf4e55d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_middle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_up_middle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_tip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_tip.json new file mode 100644 index 000000000..8b1bf8ced --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_tip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_up_tip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_tip_merge.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_tip_merge.json new file mode 100644 index 000000000..70240899d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_tip_merge.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_up_tip_merge" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite.json new file mode 100644 index 000000000..cd1067abf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/polished_andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite_slab.json new file mode 100644 index 000000000..72d8299f5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/polished_andesite", + "side": "minecraft:block/polished_andesite", + "top": "minecraft:block/polished_andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite_slab_top.json new file mode 100644 index 000000000..3211d4d22 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/polished_andesite", + "side": "minecraft:block/polished_andesite", + "top": "minecraft:block/polished_andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs.json new file mode 100644 index 000000000..d5d69805d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/polished_andesite", + "side": "minecraft:block/polished_andesite", + "top": "minecraft:block/polished_andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs_inner.json new file mode 100644 index 000000000..7275bfb00 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/polished_andesite", + "side": "minecraft:block/polished_andesite", + "top": "minecraft:block/polished_andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs_outer.json new file mode 100644 index 000000000..30d837446 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/polished_andesite", + "side": "minecraft:block/polished_andesite", + "top": "minecraft:block/polished_andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_basalt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_basalt.json new file mode 100644 index 000000000..cdf565e4e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_basalt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/polished_basalt_top", + "side": "minecraft:block/polished_basalt_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone.json new file mode 100644 index 000000000..41baabebd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_slab.json new file mode 100644 index 000000000..d9c1e4d0b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/polished_blackstone_bricks", + "side": "minecraft:block/polished_blackstone_bricks", + "top": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_slab_top.json new file mode 100644 index 000000000..bb2fd0f23 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/polished_blackstone_bricks", + "side": "minecraft:block/polished_blackstone_bricks", + "top": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs.json new file mode 100644 index 000000000..535eab268 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/polished_blackstone_bricks", + "side": "minecraft:block/polished_blackstone_bricks", + "top": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs_inner.json new file mode 100644 index 000000000..0439b1c0d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/polished_blackstone_bricks", + "side": "minecraft:block/polished_blackstone_bricks", + "top": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs_outer.json new file mode 100644 index 000000000..324e6f7b9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/polished_blackstone_bricks", + "side": "minecraft:block/polished_blackstone_bricks", + "top": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_inventory.json new file mode 100644 index 000000000..1c934f4a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_post.json new file mode 100644 index 000000000..1f634397d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_side.json new file mode 100644 index 000000000..2b0179edb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_side_tall.json new file mode 100644 index 000000000..8f5ee0c5e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_bricks.json new file mode 100644 index 000000000..b94caf755 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_button.json new file mode 100644 index 000000000..46472f133 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_button_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_button_inventory.json new file mode 100644 index 000000000..9e717030b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_button_pressed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_button_pressed.json new file mode 100644 index 000000000..114579721 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_pressure_plate.json new file mode 100644 index 000000000..e9d418465 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_pressure_plate_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_pressure_plate_down.json new file mode 100644 index 000000000..62fd5664b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_slab.json new file mode 100644 index 000000000..260c098e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/polished_blackstone", + "side": "minecraft:block/polished_blackstone", + "top": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_slab_top.json new file mode 100644 index 000000000..b52a9ee95 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/polished_blackstone", + "side": "minecraft:block/polished_blackstone", + "top": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs.json new file mode 100644 index 000000000..00d6d5fd0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/polished_blackstone", + "side": "minecraft:block/polished_blackstone", + "top": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs_inner.json new file mode 100644 index 000000000..a8534223c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/polished_blackstone", + "side": "minecraft:block/polished_blackstone", + "top": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs_outer.json new file mode 100644 index 000000000..dc6e55a3f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/polished_blackstone", + "side": "minecraft:block/polished_blackstone", + "top": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_inventory.json new file mode 100644 index 000000000..d361d99bc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_post.json new file mode 100644 index 000000000..24cf5a404 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_side.json new file mode 100644 index 000000000..fc72cbeac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_side_tall.json new file mode 100644 index 000000000..5d3f4f0c1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate.json new file mode 100644 index 000000000..6645c7e09 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_slab.json new file mode 100644 index 000000000..b622b9582 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/polished_deepslate", + "side": "minecraft:block/polished_deepslate", + "top": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_slab_top.json new file mode 100644 index 000000000..c9d076b9f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/polished_deepslate", + "side": "minecraft:block/polished_deepslate", + "top": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs.json new file mode 100644 index 000000000..1d14d0b10 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/polished_deepslate", + "side": "minecraft:block/polished_deepslate", + "top": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs_inner.json new file mode 100644 index 000000000..de71267ff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/polished_deepslate", + "side": "minecraft:block/polished_deepslate", + "top": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs_outer.json new file mode 100644 index 000000000..22018b123 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/polished_deepslate", + "side": "minecraft:block/polished_deepslate", + "top": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_inventory.json new file mode 100644 index 000000000..233596b3e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_post.json new file mode 100644 index 000000000..47da476f9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_side.json new file mode 100644 index 000000000..6335eae35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_side_tall.json new file mode 100644 index 000000000..04a1d5229 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite.json new file mode 100644 index 000000000..99afb394e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/polished_diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite_slab.json new file mode 100644 index 000000000..04bbeb217 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/polished_diorite", + "side": "minecraft:block/polished_diorite", + "top": "minecraft:block/polished_diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite_slab_top.json new file mode 100644 index 000000000..aa5ed4f51 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/polished_diorite", + "side": "minecraft:block/polished_diorite", + "top": "minecraft:block/polished_diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs.json new file mode 100644 index 000000000..22348dcbb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/polished_diorite", + "side": "minecraft:block/polished_diorite", + "top": "minecraft:block/polished_diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs_inner.json new file mode 100644 index 000000000..6bac942a5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/polished_diorite", + "side": "minecraft:block/polished_diorite", + "top": "minecraft:block/polished_diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs_outer.json new file mode 100644 index 000000000..2984c3f89 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/polished_diorite", + "side": "minecraft:block/polished_diorite", + "top": "minecraft:block/polished_diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite.json new file mode 100644 index 000000000..46f93fd8d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/polished_granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite_slab.json new file mode 100644 index 000000000..07a13accf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/polished_granite", + "side": "minecraft:block/polished_granite", + "top": "minecraft:block/polished_granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite_slab_top.json new file mode 100644 index 000000000..244ea1155 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/polished_granite", + "side": "minecraft:block/polished_granite", + "top": "minecraft:block/polished_granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite_stairs.json new file mode 100644 index 000000000..d57f59f7c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/polished_granite", + "side": "minecraft:block/polished_granite", + "top": "minecraft:block/polished_granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite_stairs_inner.json new file mode 100644 index 000000000..1d38f86c2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/polished_granite", + "side": "minecraft:block/polished_granite", + "top": "minecraft:block/polished_granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite_stairs_outer.json new file mode 100644 index 000000000..4f824236b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_granite_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/polished_granite", + "side": "minecraft:block/polished_granite", + "top": "minecraft:block/polished_granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff.json new file mode 100644 index 000000000..ccf1b27b5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_slab.json new file mode 100644 index 000000000..7fce08e96 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/polished_tuff", + "side": "minecraft:block/polished_tuff", + "top": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_slab_top.json new file mode 100644 index 000000000..5a6c03f20 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/polished_tuff", + "side": "minecraft:block/polished_tuff", + "top": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs.json new file mode 100644 index 000000000..be42e5575 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/polished_tuff", + "side": "minecraft:block/polished_tuff", + "top": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs_inner.json new file mode 100644 index 000000000..b5cfb2124 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/polished_tuff", + "side": "minecraft:block/polished_tuff", + "top": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs_outer.json new file mode 100644 index 000000000..df5eb7f3d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/polished_tuff", + "side": "minecraft:block/polished_tuff", + "top": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_inventory.json new file mode 100644 index 000000000..d55e38566 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_post.json new file mode 100644 index 000000000..ec072dd88 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_side.json new file mode 100644 index 000000000..25c445d73 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_side_tall.json new file mode 100644 index 000000000..97dfe6adb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/poppy.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/poppy.json new file mode 100644 index 000000000..dd37fe802 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/poppy.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/poppy" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potatoes_stage0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potatoes_stage0.json new file mode 100644 index 000000000..7bd4a3c4c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potatoes_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/potatoes_stage0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potatoes_stage1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potatoes_stage1.json new file mode 100644 index 000000000..e1ccb2e9c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potatoes_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/potatoes_stage1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potatoes_stage2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potatoes_stage2.json new file mode 100644 index 000000000..139c6401d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potatoes_stage2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/potatoes_stage2" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potatoes_stage3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potatoes_stage3.json new file mode 100644 index 000000000..8ac74e8a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potatoes_stage3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/potatoes_stage3" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_acacia_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_acacia_sapling.json new file mode 100644 index 000000000..e1b2b703b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_acacia_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/acacia_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_allium.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_allium.json new file mode 100644 index 000000000..5b576fbbd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_allium.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/allium" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_azalea_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_azalea_bush.json new file mode 100644 index 000000000..c6c15caa7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_azalea_bush.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_potted_azalea_bush", + "textures": { + "plant": "minecraft:block/potted_azalea_bush_plant", + "side": "minecraft:block/potted_azalea_bush_side", + "top": "minecraft:block/potted_azalea_bush_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_azure_bluet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_azure_bluet.json new file mode 100644 index 000000000..175b4c046 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_azure_bluet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/azure_bluet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_bamboo.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_bamboo.json new file mode 100644 index 000000000..14ffcc2ae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_bamboo.json @@ -0,0 +1,77 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/flower_pot", + "flowerpot": "block/flower_pot", + "dirt": "block/dirt", + "bamboo": "block/bamboo_stalk", + "leaf": "block/bamboo_singleleaf" + }, + "elements": [ + { "from": [ 5, 0, 5 ], + "to": [ 6, 6, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 10, 0, 5 ], + "to": [ 11, 6, 11 ], + "faces": { + "down": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 5 ], + "to": [ 10, 6, 6 ], + "faces": { + "down": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 10 ], + "to": [ 10, 6, 11 ], + "faces": { + "down": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 6 ], + "to": [ 10, 4, 10 ], + "faces": { + "down": { "uv": [ 6, 12, 10, 16 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#dirt" } + } + }, + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "up": { "uv": [ 13, 0, 15, 2], "texture": "#bamboo", "cullface": "up" }, + "north": { "uv": [ 6, 0, 8, 16 ], "texture": "#bamboo" }, + "south": { "uv": [ 6, 0, 8, 16 ], "texture": "#bamboo" }, + "west": { "uv": [ 6, 0, 8, 16 ], "texture": "#bamboo" }, + "east": { "uv": [ 6, 0, 8, 16 ], "texture": "#bamboo" } + } + }, + { "from": [ 0, 2, 8 ], + "to": [ 16, 18, 8 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#leaf" }, + "south": { "uv": [ 16, 0, 0, 16 ], "texture": "#leaf" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_birch_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_birch_sapling.json new file mode 100644 index 000000000..b19246fbb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_birch_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/birch_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_blue_orchid.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_blue_orchid.json new file mode 100644 index 000000000..f9b31badf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_blue_orchid.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/blue_orchid" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_brown_mushroom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_brown_mushroom.json new file mode 100644 index 000000000..3e837e625 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_brown_mushroom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/brown_mushroom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_cactus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_cactus.json new file mode 100644 index 000000000..6f6624120 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_cactus.json @@ -0,0 +1,32 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/flower_pot", + "flowerpot": "block/flower_pot", + "cactus_top": "block/cactus_top", + "cactus": "block/cactus_side" + }, + "elements": [ + { "from": [ 5, 0, 5 ], + "to": [ 11, 6, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "texture": "#flowerpot" }, + "north": { "texture": "#flowerpot" }, + "south": { "texture": "#flowerpot" }, + "west": { "texture": "#flowerpot" }, + "east": { "texture": "#flowerpot" } + } + }, + { "from": [ 6, 5, 6 ], + "to": [ 10, 16, 10 ], + "faces": { + "up": { "texture": "#cactus_top", "cullface": "up" }, + "north": { "uv": [ 6, 0, 10, 11 ], "texture": "#cactus" }, + "south": { "uv": [ 6, 0, 10, 11 ], "texture": "#cactus" }, + "west": { "uv": [ 6, 0, 10, 11 ], "texture": "#cactus" }, + "east": { "uv": [ 6, 0, 10, 11 ], "texture": "#cactus" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_cherry_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_cherry_sapling.json new file mode 100644 index 000000000..953170b7d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_cherry_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/cherry_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_closed_eyeblossom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_closed_eyeblossom.json new file mode 100644 index 000000000..12f3acbec --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_closed_eyeblossom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/closed_eyeblossom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_cornflower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_cornflower.json new file mode 100644 index 000000000..70d88359d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_cornflower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/cornflower" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_crimson_fungus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_crimson_fungus.json new file mode 100644 index 000000000..08aea2cbb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_crimson_fungus.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/crimson_fungus" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_crimson_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_crimson_roots.json new file mode 100644 index 000000000..b5b27112f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_crimson_roots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/crimson_roots_pot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_dandelion.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_dandelion.json new file mode 100644 index 000000000..c6c361331 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_dandelion.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/dandelion" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_dark_oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_dark_oak_sapling.json new file mode 100644 index 000000000..b269e8739 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_dark_oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/dark_oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_dead_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_dead_bush.json new file mode 100644 index 000000000..e2f1fc5f9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_dead_bush.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/dead_bush" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_fern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_fern.json new file mode 100644 index 000000000..3076b6d17 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_fern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_flower_pot_cross", + "textures": { + "plant": "minecraft:block/fern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_flowering_azalea_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_flowering_azalea_bush.json new file mode 100644 index 000000000..ef95facb0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_flowering_azalea_bush.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_potted_azalea_bush", + "textures": { + "plant": "minecraft:block/potted_flowering_azalea_bush_plant", + "side": "minecraft:block/potted_flowering_azalea_bush_side", + "top": "minecraft:block/potted_flowering_azalea_bush_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_jungle_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_jungle_sapling.json new file mode 100644 index 000000000..4ee939886 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_jungle_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/jungle_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_lily_of_the_valley.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_lily_of_the_valley.json new file mode 100644 index 000000000..a09d9c163 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_lily_of_the_valley.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/lily_of_the_valley" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_mangrove_propagule.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_mangrove_propagule.json new file mode 100644 index 000000000..6d8179962 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_mangrove_propagule.json @@ -0,0 +1,103 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/flower_pot", + "sapling": "block/mangrove_propagule", + "flowerpot": "block/flower_pot", + "dirt": "block/dirt" + }, + "elements": [ + { + "name": "leaves", + "from": [4.5, 9, 8], + "to": [11.5, 15, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8], "rescale": true}, + "faces": { + "north": {"uv": [4, 1, 11, 7], "texture": "#sapling"}, + "south": {"uv": [4, 1, 11, 7], "texture": "#sapling"} + } + }, + { + "name": "leaves", + "from": [8, 9, 4.5], + "to": [8, 15, 11.5], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8], "rescale": true}, + "faces": { + "east": {"uv": [4, 1, 11, 7], "texture": "#sapling"}, + "west": {"uv": [4, 1, 11, 7], "texture": "#sapling"} + } + }, + { + "name": "hypocotyl", + "from": [8, 0, 7], + "to": [8, 9, 9], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8], "rescale": true}, + "faces": { + "east": {"uv": [7, 7, 9, 16], "texture": "#sapling"}, + "west": {"uv": [7, 7, 9, 16], "texture": "#sapling"} + } + }, + { + "name": "hypocotyl", + "from": [7, 0, 8], + "to": [9, 9, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8], "rescale": true}, + "faces": { + "north": {"uv": [7, 7, 9, 16], "texture": "#sapling"}, + "south": {"uv": [7, 7, 9, 16], "texture": "#sapling"} + } + }, + { + "from": [ 5, 0, 5 ], + "to": [ 6, 6, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { + "from": [ 10, 0, 5 ], + "to": [ 11, 6, 11 ], + "faces": { + "down": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { + "from": [ 6, 0, 5 ], + "to": [ 10, 6, 6 ], + "faces": { + "down": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { + "from": [ 6, 0, 10 ], + "to": [ 10, 6, 11 ], + "faces": { + "down": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { + "from": [ 6, 0, 6 ], + "to": [ 10, 4, 10 ], + "faces": { + "down": { "uv": [ 6, 12, 10, 16 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#dirt" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_oak_sapling.json new file mode 100644 index 000000000..c4746c46c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_open_eyeblossom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_open_eyeblossom.json new file mode 100644 index 000000000..adcdc0e45 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_open_eyeblossom.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flower_pot_cross_emissive", + "textures": { + "cross_emissive": "minecraft:block/open_eyeblossom_emissive", + "plant": "minecraft:block/open_eyeblossom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_orange_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_orange_tulip.json new file mode 100644 index 000000000..bd2b5e753 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_orange_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/orange_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_oxeye_daisy.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_oxeye_daisy.json new file mode 100644 index 000000000..107dc8e86 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_oxeye_daisy.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/oxeye_daisy" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_pale_oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_pale_oak_sapling.json new file mode 100644 index 000000000..1c5d576c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_pale_oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/pale_oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_pink_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_pink_tulip.json new file mode 100644 index 000000000..75658f755 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_pink_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/pink_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_poppy.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_poppy.json new file mode 100644 index 000000000..6fdefca88 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_poppy.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/poppy" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_red_mushroom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_red_mushroom.json new file mode 100644 index 000000000..9bc28969a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_red_mushroom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/red_mushroom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_red_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_red_tulip.json new file mode 100644 index 000000000..6541daaa7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_red_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/red_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_spruce_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_spruce_sapling.json new file mode 100644 index 000000000..431559fac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_spruce_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/spruce_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_torchflower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_torchflower.json new file mode 100644 index 000000000..a7a38e627 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_torchflower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/torchflower" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_warped_fungus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_warped_fungus.json new file mode 100644 index 000000000..de7e890a0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_warped_fungus.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/warped_fungus" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_warped_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_warped_roots.json new file mode 100644 index 000000000..ac44109d8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_warped_roots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/warped_roots_pot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_white_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_white_tulip.json new file mode 100644 index 000000000..efc662fe1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_white_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/white_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_wither_rose.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_wither_rose.json new file mode 100644 index 000000000..1eab257aa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/potted_wither_rose.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/wither_rose" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powder_snow.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powder_snow.json new file mode 100644 index 000000000..6be3d2451 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powder_snow.json @@ -0,0 +1,51 @@ +{ + "parent": "block/block", + "textures": { + "texture": "block/powder_snow", + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 15.998, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture", "cullface": "up" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "up" } + } + }, + { "from": [ 0, 0, 0 ], + "to": [ 16, 0.002, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture", "cullface": "down" } + } + }, + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 0.002 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "cullface": "north" } + } + }, + { "from": [ 0, 0, 15.998 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "cullface": "south" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "south" } + } + }, + { "from": [ 0, 0, 0 ], + "to": [ 0.002, 16, 16 ], + "faces": { + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "cullface": "west" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "west" } + } + }, + { "from": [ 15.998, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "east" }, + "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_full.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_full.json new file mode 100644 index 000000000..09cf43bf5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_full.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/template_cauldron_full", + "textures": { + "bottom": "minecraft:block/cauldron_bottom", + "content": "minecraft:block/powder_snow", + "inside": "minecraft:block/cauldron_inner", + "particle": "minecraft:block/cauldron_side", + "side": "minecraft:block/cauldron_side", + "top": "minecraft:block/cauldron_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_level1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_level1.json new file mode 100644 index 000000000..6cc69ae72 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_level1.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/template_cauldron_level1", + "textures": { + "bottom": "minecraft:block/cauldron_bottom", + "content": "minecraft:block/powder_snow", + "inside": "minecraft:block/cauldron_inner", + "particle": "minecraft:block/cauldron_side", + "side": "minecraft:block/cauldron_side", + "top": "minecraft:block/cauldron_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_level2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_level2.json new file mode 100644 index 000000000..1d76edc19 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_level2.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/template_cauldron_level2", + "textures": { + "bottom": "minecraft:block/cauldron_bottom", + "content": "minecraft:block/powder_snow", + "inside": "minecraft:block/cauldron_inner", + "particle": "minecraft:block/cauldron_side", + "side": "minecraft:block/cauldron_side", + "top": "minecraft:block/cauldron_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail.json new file mode 100644 index 000000000..be1faa810 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/rail_flat", + "textures": { + "rail": "minecraft:block/powered_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail_on.json new file mode 100644 index 000000000..eccba5ee5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail_on.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/rail_flat", + "textures": { + "rail": "minecraft:block/powered_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail_on_raised_ne.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail_on_raised_ne.json new file mode 100644 index 000000000..b8be14183 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail_on_raised_ne.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_ne", + "textures": { + "rail": "minecraft:block/powered_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail_on_raised_sw.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail_on_raised_sw.json new file mode 100644 index 000000000..07fdc1426 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail_on_raised_sw.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_sw", + "textures": { + "rail": "minecraft:block/powered_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail_raised_ne.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail_raised_ne.json new file mode 100644 index 000000000..ebfd5e1c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail_raised_ne.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_ne", + "textures": { + "rail": "minecraft:block/powered_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail_raised_sw.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail_raised_sw.json new file mode 100644 index 000000000..516a56ee3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/powered_rail_raised_sw.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_sw", + "textures": { + "rail": "minecraft:block/powered_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pressure_plate_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pressure_plate_down.json new file mode 100644 index 000000000..db6e6ba6c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pressure_plate_down.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 1, 0, 1 ], + "to": [ 15, 0.5, 15 ], + "faces": { + "down": { "uv": [ 1, 1, 15, 15 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 1, 1, 15, 15 ], "texture": "#texture" }, + "north": { "uv": [ 1, 15, 15, 15.5 ], "texture": "#texture" }, + "south": { "uv": [ 1, 15, 15, 15.5 ], "texture": "#texture" }, + "west": { "uv": [ 1, 15, 15, 15.5 ], "texture": "#texture" }, + "east": { "uv": [ 1, 15, 15, 15.5 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pressure_plate_up.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pressure_plate_up.json new file mode 100644 index 000000000..689fbe4f9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pressure_plate_up.json @@ -0,0 +1,18 @@ +{ "parent": "block/thin_block", + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 1, 0, 1 ], + "to": [ 15, 1, 15 ], + "faces": { + "down": { "uv": [ 1, 1, 15, 15 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 1, 1, 15, 15 ], "texture": "#texture" }, + "north": { "uv": [ 1, 15, 15, 16 ], "texture": "#texture" }, + "south": { "uv": [ 1, 15, 15, 16 ], "texture": "#texture" }, + "west": { "uv": [ 1, 15, 15, 16 ], "texture": "#texture" }, + "east": { "uv": [ 1, 15, 15, 16 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine.json new file mode 100644 index 000000000..bbac86bf1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_brick_slab.json new file mode 100644 index 000000000..a81262167 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/prismarine_bricks", + "side": "minecraft:block/prismarine_bricks", + "top": "minecraft:block/prismarine_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_brick_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_brick_slab_top.json new file mode 100644 index 000000000..32a5b3646 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/prismarine_bricks", + "side": "minecraft:block/prismarine_bricks", + "top": "minecraft:block/prismarine_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs.json new file mode 100644 index 000000000..139c6e2d0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/prismarine_bricks", + "side": "minecraft:block/prismarine_bricks", + "top": "minecraft:block/prismarine_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs_inner.json new file mode 100644 index 000000000..5383506b6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/prismarine_bricks", + "side": "minecraft:block/prismarine_bricks", + "top": "minecraft:block/prismarine_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs_outer.json new file mode 100644 index 000000000..9dbe7dfa4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/prismarine_bricks", + "side": "minecraft:block/prismarine_bricks", + "top": "minecraft:block/prismarine_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_bricks.json new file mode 100644 index 000000000..ee4a465bc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/prismarine_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_slab.json new file mode 100644 index 000000000..9a5181261 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/prismarine", + "side": "minecraft:block/prismarine", + "top": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_slab_top.json new file mode 100644 index 000000000..52514d9ba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/prismarine", + "side": "minecraft:block/prismarine", + "top": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_stairs.json new file mode 100644 index 000000000..274c60572 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/prismarine", + "side": "minecraft:block/prismarine", + "top": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_stairs_inner.json new file mode 100644 index 000000000..a89a05b58 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/prismarine", + "side": "minecraft:block/prismarine", + "top": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_stairs_outer.json new file mode 100644 index 000000000..62c762784 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/prismarine", + "side": "minecraft:block/prismarine", + "top": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_wall_inventory.json new file mode 100644 index 000000000..d638391dc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_wall_post.json new file mode 100644 index 000000000..207d59d8b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_wall_side.json new file mode 100644 index 000000000..e21990c6c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_wall_side_tall.json new file mode 100644 index 000000000..31ed03f50 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/prismarine_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin.json new file mode 100644 index 000000000..ab505114f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin.json @@ -0,0 +1,14 @@ +{ + "parent": "block/cube_column", + "display": { + "firstperson_righthand": { + "rotation": [ 0, 135, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.40, 0.40, 0.40 ] + } + }, + "textures": { + "end": "block/pumpkin_top", + "side": "block/pumpkin_side" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage0.json new file mode 100644 index 000000000..dc984be41 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth0", + "textures": { + "stem": "minecraft:block/pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage1.json new file mode 100644 index 000000000..510c8e6cb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth1", + "textures": { + "stem": "minecraft:block/pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage2.json new file mode 100644 index 000000000..d92cfae70 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth2", + "textures": { + "stem": "minecraft:block/pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage3.json new file mode 100644 index 000000000..a6fc0463b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth3", + "textures": { + "stem": "minecraft:block/pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage4.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage4.json new file mode 100644 index 000000000..6e43c0879 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth4", + "textures": { + "stem": "minecraft:block/pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage5.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage5.json new file mode 100644 index 000000000..8dc2dfe87 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth5", + "textures": { + "stem": "minecraft:block/pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage6.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage6.json new file mode 100644 index 000000000..a2be41d6e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth6", + "textures": { + "stem": "minecraft:block/pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage7.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage7.json new file mode 100644 index 000000000..a4e71598d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth7", + "textures": { + "stem": "minecraft:block/pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_cake.json new file mode 100644 index 000000000..7d7af96f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/purple_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_cake_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_cake_lit.json new file mode 100644 index 000000000..b5b085c83 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/purple_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_four_candles.json new file mode 100644 index 000000000..fa3e32bb0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/purple_candle", + "particle": "minecraft:block/purple_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_four_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_four_candles_lit.json new file mode 100644 index 000000000..29a0bfb8f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/purple_candle_lit", + "particle": "minecraft:block/purple_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_one_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_one_candle.json new file mode 100644 index 000000000..feb3302db --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/purple_candle", + "particle": "minecraft:block/purple_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_one_candle_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_one_candle_lit.json new file mode 100644 index 000000000..c2fdd5380 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/purple_candle_lit", + "particle": "minecraft:block/purple_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_three_candles.json new file mode 100644 index 000000000..cbfc5f321 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/purple_candle", + "particle": "minecraft:block/purple_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_three_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_three_candles_lit.json new file mode 100644 index 000000000..73e33ade7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/purple_candle_lit", + "particle": "minecraft:block/purple_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_two_candles.json new file mode 100644 index 000000000..39d9a9db2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/purple_candle", + "particle": "minecraft:block/purple_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_two_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_two_candles_lit.json new file mode 100644 index 000000000..9b165c0c6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/purple_candle_lit", + "particle": "minecraft:block/purple_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_carpet.json new file mode 100644 index 000000000..4cf9a92c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/purple_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_concrete.json new file mode 100644 index 000000000..e064fd9ec --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/purple_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_concrete_powder.json new file mode 100644 index 000000000..9911efb23 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/purple_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_glazed_terracotta.json new file mode 100644 index 000000000..8921b2dca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/purple_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_shulker_box.json new file mode 100644 index 000000000..6f9cfc87b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/purple_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass.json new file mode 100644 index 000000000..b64439f45 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/purple_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_noside.json new file mode 100644 index 000000000..9fc919baf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/purple_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..9a5775b3b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/purple_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_post.json new file mode 100644 index 000000000..cdebfe3b4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/purple_stained_glass_pane_top", + "pane": "minecraft:block/purple_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_side.json new file mode 100644 index 000000000..93c049bb6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/purple_stained_glass_pane_top", + "pane": "minecraft:block/purple_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..a8d615925 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/purple_stained_glass_pane_top", + "pane": "minecraft:block/purple_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_terracotta.json new file mode 100644 index 000000000..5c4c94fdd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/purple_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_wool.json new file mode 100644 index 000000000..c59282e59 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purple_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/purple_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_block.json new file mode 100644 index 000000000..c0bc80762 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/purpur_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_pillar.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_pillar.json new file mode 100644 index 000000000..f35e1ddc9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_pillar.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/purpur_pillar_top", + "side": "minecraft:block/purpur_pillar" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_pillar_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_pillar_horizontal.json new file mode 100644 index 000000000..d047a8f7d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_pillar_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/purpur_pillar_top", + "side": "minecraft:block/purpur_pillar" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_slab.json new file mode 100644 index 000000000..2a060e8d1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/purpur_block", + "side": "minecraft:block/purpur_block", + "top": "minecraft:block/purpur_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_slab_top.json new file mode 100644 index 000000000..8a3df90ae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/purpur_block", + "side": "minecraft:block/purpur_block", + "top": "minecraft:block/purpur_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_stairs.json new file mode 100644 index 000000000..ce2f0510a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/purpur_block", + "side": "minecraft:block/purpur_block", + "top": "minecraft:block/purpur_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_stairs_inner.json new file mode 100644 index 000000000..fd4829daf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/purpur_block", + "side": "minecraft:block/purpur_block", + "top": "minecraft:block/purpur_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_stairs_outer.json new file mode 100644 index 000000000..6f882621c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/purpur_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/purpur_block", + "side": "minecraft:block/purpur_block", + "top": "minecraft:block/purpur_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_block.json new file mode 100644 index 000000000..863b82e5d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_block.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/quartz_block_top", + "side": "minecraft:block/quartz_block_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_bricks.json new file mode 100644 index 000000000..f2b855171 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/quartz_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_pillar.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_pillar.json new file mode 100644 index 000000000..fc1845e75 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_pillar.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/quartz_pillar_top", + "side": "minecraft:block/quartz_pillar" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_pillar_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_pillar_horizontal.json new file mode 100644 index 000000000..38b07ba17 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_pillar_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/quartz_pillar_top", + "side": "minecraft:block/quartz_pillar" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_slab.json new file mode 100644 index 000000000..ccccb53f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/quartz_block_top", + "side": "minecraft:block/quartz_block_side", + "top": "minecraft:block/quartz_block_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_slab_top.json new file mode 100644 index 000000000..157e8ee8f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/quartz_block_top", + "side": "minecraft:block/quartz_block_side", + "top": "minecraft:block/quartz_block_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_stairs.json new file mode 100644 index 000000000..cf5d6eb8e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/quartz_block_top", + "side": "minecraft:block/quartz_block_side", + "top": "minecraft:block/quartz_block_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_stairs_inner.json new file mode 100644 index 000000000..6dd7aea59 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/quartz_block_top", + "side": "minecraft:block/quartz_block_side", + "top": "minecraft:block/quartz_block_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_stairs_outer.json new file mode 100644 index 000000000..d8aa6d884 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/quartz_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/quartz_block_top", + "side": "minecraft:block/quartz_block_side", + "top": "minecraft:block/quartz_block_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail.json new file mode 100644 index 000000000..0f7a02442 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/rail_flat", + "textures": { + "rail": "minecraft:block/rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail_corner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail_corner.json new file mode 100644 index 000000000..ea109639d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail_corner.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/rail_curved", + "textures": { + "rail": "minecraft:block/rail_corner" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail_curved.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail_curved.json new file mode 100644 index 000000000..299a44ba9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail_curved.json @@ -0,0 +1,15 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#rail" + }, + "elements": [ + { "from": [ 0, 1, 0 ], + "to": [ 16, 1, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#rail" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#rail" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail_flat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail_flat.json new file mode 100644 index 000000000..299a44ba9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail_flat.json @@ -0,0 +1,15 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#rail" + }, + "elements": [ + { "from": [ 0, 1, 0 ], + "to": [ 16, 1, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#rail" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#rail" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail_raised_ne.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail_raised_ne.json new file mode 100644 index 000000000..a51c59fdc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail_raised_ne.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_ne", + "textures": { + "rail": "minecraft:block/rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail_raised_sw.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail_raised_sw.json new file mode 100644 index 000000000..4d48c0893 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rail_raised_sw.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_sw", + "textures": { + "rail": "minecraft:block/rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/raw_copper_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/raw_copper_block.json new file mode 100644 index 000000000..3f6008ec1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/raw_copper_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/raw_copper_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/raw_gold_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/raw_gold_block.json new file mode 100644 index 000000000..ce79d18f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/raw_gold_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/raw_gold_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/raw_iron_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/raw_iron_block.json new file mode 100644 index 000000000..25d19886d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/raw_iron_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/raw_iron_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_cake.json new file mode 100644 index 000000000..6c9ee4bb3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/red_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_cake_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_cake_lit.json new file mode 100644 index 000000000..52c3c5ebc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/red_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_four_candles.json new file mode 100644 index 000000000..c090c532a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/red_candle", + "particle": "minecraft:block/red_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_four_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_four_candles_lit.json new file mode 100644 index 000000000..f7d6ca07d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/red_candle_lit", + "particle": "minecraft:block/red_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_one_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_one_candle.json new file mode 100644 index 000000000..47c0ce8ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/red_candle", + "particle": "minecraft:block/red_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_one_candle_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_one_candle_lit.json new file mode 100644 index 000000000..710f54167 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/red_candle_lit", + "particle": "minecraft:block/red_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_three_candles.json new file mode 100644 index 000000000..e0a4f0c95 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/red_candle", + "particle": "minecraft:block/red_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_three_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_three_candles_lit.json new file mode 100644 index 000000000..a4b2b86f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/red_candle_lit", + "particle": "minecraft:block/red_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_two_candles.json new file mode 100644 index 000000000..148bd6c8e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/red_candle", + "particle": "minecraft:block/red_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_two_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_two_candles_lit.json new file mode 100644 index 000000000..40af0f6f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/red_candle_lit", + "particle": "minecraft:block/red_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_carpet.json new file mode 100644 index 000000000..c31f191e3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/red_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_concrete.json new file mode 100644 index 000000000..aed4725ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_concrete_powder.json new file mode 100644 index 000000000..69ada1285 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_glazed_terracotta.json new file mode 100644 index 000000000..baf6a0dfc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/red_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_mushroom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_mushroom.json new file mode 100644 index 000000000..4dd14e49c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_mushroom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/red_mushroom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_mushroom_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_mushroom_block.json new file mode 100644 index 000000000..14ac5d54f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_mushroom_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_single_face", + "textures": { + "texture": "minecraft:block/red_mushroom_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_mushroom_block_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_mushroom_block_inventory.json new file mode 100644 index 000000000..588dd72a5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_mushroom_block_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_mushroom_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_slab.json new file mode 100644 index 000000000..196f926fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/red_nether_bricks", + "side": "minecraft:block/red_nether_bricks", + "top": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_slab_top.json new file mode 100644 index 000000000..0bf20b282 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/red_nether_bricks", + "side": "minecraft:block/red_nether_bricks", + "top": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs.json new file mode 100644 index 000000000..0320b0601 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/red_nether_bricks", + "side": "minecraft:block/red_nether_bricks", + "top": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs_inner.json new file mode 100644 index 000000000..3a329692e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/red_nether_bricks", + "side": "minecraft:block/red_nether_bricks", + "top": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs_outer.json new file mode 100644 index 000000000..e793420fd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/red_nether_bricks", + "side": "minecraft:block/red_nether_bricks", + "top": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_inventory.json new file mode 100644 index 000000000..aeaa716e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_post.json new file mode 100644 index 000000000..9fa44bded --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_side.json new file mode 100644 index 000000000..e8f23ec6f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_side_tall.json new file mode 100644 index 000000000..6546ececf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_bricks.json new file mode 100644 index 000000000..a13b83811 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_nether_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sand.json new file mode 100644 index 000000000..d6f5cecf5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sand.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_sand" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone.json new file mode 100644 index 000000000..008568b81 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/red_sandstone_bottom", + "side": "minecraft:block/red_sandstone", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_slab.json new file mode 100644 index 000000000..cd1c1ec95 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/red_sandstone_bottom", + "side": "minecraft:block/red_sandstone", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_slab_top.json new file mode 100644 index 000000000..d240a03a0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/red_sandstone_bottom", + "side": "minecraft:block/red_sandstone", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs.json new file mode 100644 index 000000000..6f393c73d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/red_sandstone_bottom", + "side": "minecraft:block/red_sandstone", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs_inner.json new file mode 100644 index 000000000..a32a7a2a3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/red_sandstone_bottom", + "side": "minecraft:block/red_sandstone", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs_outer.json new file mode 100644 index 000000000..d862d18f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/red_sandstone_bottom", + "side": "minecraft:block/red_sandstone", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_inventory.json new file mode 100644 index 000000000..efec8f3fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/red_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_post.json new file mode 100644 index 000000000..ab117588e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/red_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_side.json new file mode 100644 index 000000000..798b2f913 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/red_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_side_tall.json new file mode 100644 index 000000000..b8cc6d377 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/red_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_shulker_box.json new file mode 100644 index 000000000..4414a86ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/red_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass.json new file mode 100644 index 000000000..fd841d4ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_noside.json new file mode 100644 index 000000000..30aee4a9d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/red_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..051e7ebed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/red_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_post.json new file mode 100644 index 000000000..41cf1b5c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/red_stained_glass_pane_top", + "pane": "minecraft:block/red_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_side.json new file mode 100644 index 000000000..78124b128 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/red_stained_glass_pane_top", + "pane": "minecraft:block/red_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..5dd4fd2a0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/red_stained_glass_pane_top", + "pane": "minecraft:block/red_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_terracotta.json new file mode 100644 index 000000000..14908068f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_tulip.json new file mode 100644 index 000000000..1c0c290b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/red_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_wool.json new file mode 100644 index 000000000..72267b628 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/red_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_block.json new file mode 100644 index 000000000..b3942b363 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/redstone_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_dot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_dot.json new file mode 100644 index 000000000..4a8cda176 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_dot.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/redstone_dust_dot", + "line": "block/redstone_dust_dot", + "overlay": "block/redstone_dust_overlay" + }, + "elements": [ + { "from": [ 0, 0.25, 0 ], + "to": [ 16, 0.25, 16 ], + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#line", "tintindex": 0 }, + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#line", "tintindex": 0 } + } + }, + { "from": [ 0, 0.25, 0 ], + "to": [ 16, 0.25, 16 ], + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#overlay" }, + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#overlay" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side.json new file mode 100644 index 000000000..523a41171 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side.json @@ -0,0 +1,25 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/redstone_dust_dot", + "overlay": "block/redstone_dust_overlay" + }, + "elements": [ + { "from": [ 0, 0.25, 0 ], + "to": [ 16, 0.25, 8 ], + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 8 ], "texture": "#line", "tintindex": 0 }, + "down": { "uv": [ 0, 8, 16, 0 ], "texture": "#line", "tintindex": 0 } + } + }, + { "from": [ 0, 0.25, 0 ], + "to": [ 16, 0.25, 8 ], + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 8 ], "texture": "#overlay" }, + "down": { "uv": [ 0, 8, 16, 0 ], "texture": "#overlay" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side0.json new file mode 100644 index 000000000..8ba2e73e6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side0.json @@ -0,0 +1,6 @@ +{ + "parent": "block/redstone_dust_side", + "textures": { + "line": "block/redstone_dust_line0" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side1.json new file mode 100644 index 000000000..1f545393c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side1.json @@ -0,0 +1,6 @@ +{ + "parent": "block/redstone_dust_side", + "textures": { + "line": "block/redstone_dust_line1" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt.json new file mode 100644 index 000000000..8b58a46c0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt.json @@ -0,0 +1,25 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/redstone_dust_dot", + "overlay": "block/redstone_dust_overlay" + }, + "elements": [ + { "from": [ 0, 0.25, 8 ], + "to": [ 16, 0.25, 16 ], + "shade": false, + "faces": { + "up": { "uv": [ 0, 8, 16, 16 ], "texture": "#line", "tintindex": 0 }, + "down": { "uv": [ 0, 16, 16, 8 ], "texture": "#line", "tintindex": 0 } + } + }, + { "from": [ 0, 0.25, 8 ], + "to": [ 16, 0.25, 16 ], + "shade": false, + "faces": { + "up": { "uv": [ 0, 8, 16, 16 ], "texture": "#overlay" }, + "down": { "uv": [ 0, 16, 16, 8 ], "texture": "#overlay" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt0.json new file mode 100644 index 000000000..f74884dd3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt0.json @@ -0,0 +1,6 @@ +{ + "parent": "block/redstone_dust_side_alt", + "textures": { + "line": "block/redstone_dust_line0" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt1.json new file mode 100644 index 000000000..a31f84877 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt1.json @@ -0,0 +1,6 @@ +{ + "parent": "block/redstone_dust_side_alt", + "textures": { + "line": "block/redstone_dust_line1" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_up.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_up.json new file mode 100644 index 000000000..2154da22c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_dust_up.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/redstone_dust_dot", + "line": "block/redstone_dust_line0", + "overlay": "block/redstone_dust_overlay" + }, + "elements": [ + { "from": [ 0, 0, 0.25 ], + "to": [ 16, 16, 0.25 ], + "shade": false, + "faces": { + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#line", "tintindex": 0 }, + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#line", "tintindex": 0 } + } + }, + { "from": [ 0, 0, 0.25 ], + "to": [ 16, 16, 0.25 ], + "shade": false, + "faces": { + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#overlay" }, + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#overlay" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_lamp.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_lamp.json new file mode 100644 index 000000000..530bd0d7c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_lamp.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/redstone_lamp" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_lamp_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_lamp_on.json new file mode 100644 index 000000000..bde04e267 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_lamp_on.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/redstone_lamp_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_ore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_ore.json new file mode 100644 index 000000000..a387db998 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/redstone_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_torch.json new file mode 100644 index 000000000..b43534310 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_redstone_torch", + "textures": { + "torch": "minecraft:block/redstone_torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_torch_off.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_torch_off.json new file mode 100644 index 000000000..a0686d2d3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_torch_off.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_torch_unlit", + "textures": { + "torch": "minecraft:block/redstone_torch_off" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_wall_torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_wall_torch.json new file mode 100644 index 000000000..6373dfb5e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_wall_torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_redstone_torch_wall", + "textures": { + "torch": "minecraft:block/redstone_torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_wall_torch_off.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_wall_torch_off.json new file mode 100644 index 000000000..0e0889f66 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/redstone_wall_torch_off.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_torch_wall_unlit", + "textures": { + "torch": "minecraft:block/redstone_torch_off" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/reinforced_deepslate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/reinforced_deepslate.json new file mode 100644 index 000000000..8d3c9026a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/reinforced_deepslate.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/reinforced_deepslate_bottom", + "side": "minecraft:block/reinforced_deepslate_side", + "top": "minecraft:block/reinforced_deepslate_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_1tick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_1tick.json new file mode 100644 index 000000000..d360b571f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_1tick.json @@ -0,0 +1,42 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater", + "slab": "block/smooth_stone", + "top": "block/repeater", + "unlit": "block/redstone_torch_off" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 6 ], + "to": [ 9, 7, 8 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_1tick_locked.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_1tick_locked.json new file mode 100644 index 000000000..e264b0c17 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_1tick_locked.json @@ -0,0 +1,43 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater", + "slab": "block/smooth_stone", + "top": "block/repeater", + "lock": "block/bedrock", + "unlit": "block/redstone_torch_off" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 2, 2, 6 ], + "to": [ 14, 4, 8 ], + "faces": { + "up": { "uv": [ 7, 2, 9, 14 ], "texture": "#lock", "rotation": 90 }, + "north": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "south": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "west": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" }, + "east": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_1tick_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_1tick_on.json new file mode 100644 index 000000000..2d5dd932c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_1tick_on.json @@ -0,0 +1,140 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater_on", + "slab": "block/smooth_stone", + "top": "block/repeater_on", + "lit": "block/redstone_torch" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 6 ], + "to": [ 9, 7, 8 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 1.5 ], + "to": [ 9.5, 4.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 1.5 ], + "to": [ 9.5, 10.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, -1.5 ], + "to": [ 9.5, 7.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 1.5 ], + "to": [ 6.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 1.5 ], + "to": [ 12.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 5.5 ], + "to": [ 9.5, 4.5, 8.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 5.5 ], + "to": [ 9.5, 10.5, 8.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 2.5 ], + "to": [ 9.5, 7.5, 5.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 8.5 ], + "to": [ 9.5, 7.5, 11.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 5.5 ], + "to": [ 6.5, 7.5, 8.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 5.5 ], + "to": [ 12.5, 7.5, 8.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_1tick_on_locked.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_1tick_on_locked.json new file mode 100644 index 000000000..44e53d81c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_1tick_on_locked.json @@ -0,0 +1,92 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater_on", + "slab": "block/smooth_stone", + "top": "block/repeater_on", + "lit": "block/redstone_torch", + "lock": "block/bedrock" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 2, 2, 6 ], + "to": [ 14, 4, 8 ], + "faces": { + "up": { "uv": [ 7, 2, 9, 14 ], "texture": "#lock", "rotation": 90 }, + "north": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "south": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "west": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" }, + "east": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 1.5 ], + "to": [ 9.5, 4.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 1.5 ], + "to": [ 9.5, 10.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, -1.5 ], + "to": [ 9.5, 7.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 1.5 ], + "to": [ 6.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 1.5 ], + "to": [ 12.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_2tick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_2tick.json new file mode 100644 index 000000000..833c187b5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_2tick.json @@ -0,0 +1,42 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater", + "slab": "block/smooth_stone", + "top": "block/repeater", + "unlit": "block/redstone_torch_off" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 8 ], + "to": [ 9, 7, 10 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_2tick_locked.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_2tick_locked.json new file mode 100644 index 000000000..47c5337aa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_2tick_locked.json @@ -0,0 +1,43 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater", + "slab": "block/smooth_stone", + "top": "block/repeater", + "lock": "block/bedrock", + "unlit": "block/redstone_torch_off" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 2, 2, 8 ], + "to": [ 14, 4, 10 ], + "faces": { + "up": { "uv": [ 7, 2, 9, 14 ], "texture": "#lock", "rotation": 90 }, + "north": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "south": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "west": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" }, + "east": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_2tick_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_2tick_on.json new file mode 100644 index 000000000..e7285624b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_2tick_on.json @@ -0,0 +1,140 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater_on", + "slab": "block/smooth_stone", + "top": "block/repeater_on", + "lit": "block/redstone_torch" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 8 ], + "to": [ 9, 7, 10 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 1.5 ], + "to": [ 9.5, 4.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 1.5 ], + "to": [ 9.5, 10.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, -1.5 ], + "to": [ 9.5, 7.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 1.5 ], + "to": [ 6.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 1.5 ], + "to": [ 12.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 7.5 ], + "to": [ 9.5, 4.5, 10.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 7.5 ], + "to": [ 9.5, 10.5, 10.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 10.5 ], + "to": [ 9.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 7.5 ], + "to": [ 6.5, 7.5, 10.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 7.5 ], + "to": [ 12.5, 7.5, 10.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_2tick_on_locked.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_2tick_on_locked.json new file mode 100644 index 000000000..897e0bfc3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_2tick_on_locked.json @@ -0,0 +1,92 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater_on", + "slab": "block/smooth_stone", + "top": "block/repeater_on", + "lit": "block/redstone_torch", + "lock": "block/bedrock" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 2, 2, 8 ], + "to": [ 14, 4, 10 ], + "faces": { + "up": { "uv": [ 7, 2, 9, 14 ], "texture": "#lock", "rotation": 90 }, + "north": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "south": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "west": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" }, + "east": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 1.5 ], + "to": [ 9.5, 4.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 1.5 ], + "to": [ 9.5, 10.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, -1.5 ], + "to": [ 9.5, 7.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 1.5 ], + "to": [ 6.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 1.5 ], + "to": [ 12.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_3tick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_3tick.json new file mode 100644 index 000000000..ea1d922c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_3tick.json @@ -0,0 +1,42 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater", + "slab": "block/smooth_stone", + "top": "block/repeater", + "unlit": "block/redstone_torch_off" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 10 ], + "to": [ 9, 7, 12 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_3tick_locked.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_3tick_locked.json new file mode 100644 index 000000000..13ce208d9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_3tick_locked.json @@ -0,0 +1,43 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater", + "slab": "block/smooth_stone", + "top": "block/repeater", + "lock": "block/bedrock", + "unlit": "block/redstone_torch_off" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 2, 2, 10 ], + "to": [ 14, 4, 12 ], + "faces": { + "up": { "uv": [ 7, 2, 9, 14 ], "texture": "#lock", "rotation": 90 }, + "north": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "south": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "west": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" }, + "east": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_3tick_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_3tick_on.json new file mode 100644 index 000000000..fd1413834 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_3tick_on.json @@ -0,0 +1,140 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater_on", + "slab": "block/smooth_stone", + "top": "block/repeater_on", + "lit": "block/redstone_torch" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 10 ], + "to": [ 9, 7, 12 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 1.5 ], + "to": [ 9.5, 4.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 1.5 ], + "to": [ 9.5, 10.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, -1.5 ], + "to": [ 9.5, 7.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 1.5 ], + "to": [ 6.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 1.5 ], + "to": [ 12.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 9.5 ], + "to": [ 9.5, 4.5, 12.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 9.5 ], + "to": [ 9.5, 10.5, 12.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 6.5 ], + "to": [ 9.5, 7.5, 9.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 12.5 ], + "to": [ 9.5, 7.5, 15.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 9.5 ], + "to": [ 6.5, 7.5, 12.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 9.5 ], + "to": [ 12.5, 7.5, 12.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_3tick_on_locked.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_3tick_on_locked.json new file mode 100644 index 000000000..d5aca9eb9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_3tick_on_locked.json @@ -0,0 +1,92 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater_on", + "slab": "block/smooth_stone", + "top": "block/repeater_on", + "lit": "block/redstone_torch", + "lock": "block/bedrock" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 2, 2, 10 ], + "to": [ 14, 4, 12 ], + "faces": { + "up": { "uv": [ 7, 2, 9, 14 ], "texture": "#lock", "rotation": 90 }, + "north": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "south": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "west": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" }, + "east": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 1.5 ], + "to": [ 9.5, 4.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 1.5 ], + "to": [ 9.5, 10.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, -1.5 ], + "to": [ 9.5, 7.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 1.5 ], + "to": [ 6.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 1.5 ], + "to": [ 12.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_4tick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_4tick.json new file mode 100644 index 000000000..f8b357b6e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_4tick.json @@ -0,0 +1,42 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater", + "slab": "block/smooth_stone", + "top": "block/repeater", + "unlit": "block/redstone_torch_off" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 12 ], + "to": [ 9, 7, 14 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_4tick_locked.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_4tick_locked.json new file mode 100644 index 000000000..7a6aca0c0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_4tick_locked.json @@ -0,0 +1,43 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater", + "slab": "block/smooth_stone", + "top": "block/repeater", + "lock": "block/bedrock", + "unlit": "block/redstone_torch_off" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 2, 2, 12 ], + "to": [ 14, 4, 14 ], + "faces": { + "up": { "uv": [ 7, 2, 9, 14 ], "texture": "#lock", "rotation": 90 }, + "north": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "south": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "west": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" }, + "east": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_4tick_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_4tick_on.json new file mode 100644 index 000000000..01cd32881 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_4tick_on.json @@ -0,0 +1,140 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater_on", + "slab": "block/smooth_stone", + "top": "block/repeater_on", + "lit": "block/redstone_torch" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 12 ], + "to": [ 9, 7, 14 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 1.5 ], + "to": [ 9.5, 4.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 1.5 ], + "to": [ 9.5, 10.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, -1.5 ], + "to": [ 9.5, 7.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 1.5 ], + "to": [ 6.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 1.5 ], + "to": [ 12.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 11.5 ], + "to": [ 9.5, 4.5, 14.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 11.5 ], + "to": [ 9.5, 10.5, 14.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 8.5 ], + "to": [ 9.5, 7.5, 11.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 14.5 ], + "to": [ 9.5, 7.5, 17.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 11.5 ], + "to": [ 6.5, 7.5, 14.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 11.5 ], + "to": [ 12.5, 7.5, 14.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_4tick_on_locked.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_4tick_on_locked.json new file mode 100644 index 000000000..6ad187cde --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeater_4tick_on_locked.json @@ -0,0 +1,92 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater_on", + "slab": "block/smooth_stone", + "top": "block/repeater_on", + "lit": "block/redstone_torch", + "lock": "block/bedrock" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 2, 2, 12 ], + "to": [ 14, 4, 14 ], + "faces": { + "up": { "uv": [ 7, 2, 9, 14 ], "texture": "#lock", "rotation": 90 }, + "north": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "south": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "west": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" }, + "east": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 1.5 ], + "to": [ 9.5, 4.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 1.5 ], + "to": [ 9.5, 10.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, -1.5 ], + "to": [ 9.5, 7.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 1.5 ], + "to": [ 6.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 1.5 ], + "to": [ 12.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeating_command_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeating_command_block.json new file mode 100644 index 000000000..7525fc9b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeating_command_block.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_command_block", + "textures": { + "back": "minecraft:block/repeating_command_block_back", + "front": "minecraft:block/repeating_command_block_front", + "side": "minecraft:block/repeating_command_block_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeating_command_block_conditional.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeating_command_block_conditional.json new file mode 100644 index 000000000..f261c6723 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/repeating_command_block_conditional.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_command_block", + "textures": { + "back": "minecraft:block/repeating_command_block_back", + "front": "minecraft:block/repeating_command_block_front", + "side": "minecraft:block/repeating_command_block_conditional" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_block.json new file mode 100644 index 000000000..00105c855 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/resin_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_slab.json new file mode 100644 index 000000000..2bfd9fd3f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/resin_bricks", + "side": "minecraft:block/resin_bricks", + "top": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_slab_top.json new file mode 100644 index 000000000..4e4c9f7f0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/resin_bricks", + "side": "minecraft:block/resin_bricks", + "top": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_stairs.json new file mode 100644 index 000000000..bd7641da3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/resin_bricks", + "side": "minecraft:block/resin_bricks", + "top": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_stairs_inner.json new file mode 100644 index 000000000..c047a26e5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/resin_bricks", + "side": "minecraft:block/resin_bricks", + "top": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_stairs_outer.json new file mode 100644 index 000000000..224ab6067 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/resin_bricks", + "side": "minecraft:block/resin_bricks", + "top": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_wall_inventory.json new file mode 100644 index 000000000..3df22e2ab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_wall_post.json new file mode 100644 index 000000000..6279361fe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_wall_side.json new file mode 100644 index 000000000..60f1aa1d1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_wall_side_tall.json new file mode 100644 index 000000000..d72cfbaf3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_bricks.json new file mode 100644 index 000000000..60373f8e0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_clump.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_clump.json new file mode 100644 index 000000000..5f2f603de --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/resin_clump.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/resin_clump", + "texture": "block/resin_clump" + }, + "elements": [ + { "from": [ 0, 0, 0.1 ], + "to": [ 16, 16, 0.1 ], + "faces": { + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/respawn_anchor_0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/respawn_anchor_0.json new file mode 100644 index 000000000..29c7e5fc6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/respawn_anchor_0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/respawn_anchor_bottom", + "side": "minecraft:block/respawn_anchor_side0", + "top": "minecraft:block/respawn_anchor_top_off" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/respawn_anchor_1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/respawn_anchor_1.json new file mode 100644 index 000000000..00989b93b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/respawn_anchor_1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/respawn_anchor_bottom", + "side": "minecraft:block/respawn_anchor_side1", + "top": "minecraft:block/respawn_anchor_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/respawn_anchor_2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/respawn_anchor_2.json new file mode 100644 index 000000000..b0ea19bed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/respawn_anchor_2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/respawn_anchor_bottom", + "side": "minecraft:block/respawn_anchor_side2", + "top": "minecraft:block/respawn_anchor_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/respawn_anchor_3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/respawn_anchor_3.json new file mode 100644 index 000000000..fd67ee066 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/respawn_anchor_3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/respawn_anchor_bottom", + "side": "minecraft:block/respawn_anchor_side3", + "top": "minecraft:block/respawn_anchor_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/respawn_anchor_4.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/respawn_anchor_4.json new file mode 100644 index 000000000..068403c49 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/respawn_anchor_4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/respawn_anchor_bottom", + "side": "minecraft:block/respawn_anchor_side4", + "top": "minecraft:block/respawn_anchor_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rooted_dirt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rooted_dirt.json new file mode 100644 index 000000000..f9e1f179c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rooted_dirt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/rooted_dirt" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rose_bush_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rose_bush_bottom.json new file mode 100644 index 000000000..88116aa33 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rose_bush_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/rose_bush_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rose_bush_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rose_bush_top.json new file mode 100644 index 000000000..79066463a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/rose_bush_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/rose_bush_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sand.json new file mode 100644 index 000000000..b73935a3e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sand.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/sand" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone.json new file mode 100644 index 000000000..1271558b3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/sandstone_bottom", + "side": "minecraft:block/sandstone", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_slab.json new file mode 100644 index 000000000..fbaa615dd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/sandstone_bottom", + "side": "minecraft:block/sandstone", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_slab_top.json new file mode 100644 index 000000000..e0f4a0dda --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/sandstone_bottom", + "side": "minecraft:block/sandstone", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_stairs.json new file mode 100644 index 000000000..664202e5a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/sandstone_bottom", + "side": "minecraft:block/sandstone", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_stairs_inner.json new file mode 100644 index 000000000..8a83ad96a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/sandstone_bottom", + "side": "minecraft:block/sandstone", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_stairs_outer.json new file mode 100644 index 000000000..7deee18f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/sandstone_bottom", + "side": "minecraft:block/sandstone", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_wall_inventory.json new file mode 100644 index 000000000..ab5aa55e0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_wall_post.json new file mode 100644 index 000000000..edcb0e4e8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_wall_side.json new file mode 100644 index 000000000..f195f7fbd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_wall_side_tall.json new file mode 100644 index 000000000..dc29097f9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sandstone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/scaffolding_stable.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/scaffolding_stable.json new file mode 100644 index 000000000..bbcb6c4ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/scaffolding_stable.json @@ -0,0 +1,99 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/scaffolding_top", + "top": "block/scaffolding_top", + "side": "block/scaffolding_side", + "bottom": "block/scaffolding_bottom" + }, + "elements": [ + { + "from": [0, 15.99, 0], + "to": [16, 16, 16], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#top", "uv": [0, 16, 16, 0] } + } + }, + { + "from": [0, 0, 0], + "to": [2, 16, 2], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [0, 0, 14], + "to": [2, 16, 16], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [14, 0, 14], + "to": [16, 16, 16], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [14, 0, 0], + "to": [16, 16, 2], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [2, 14, 0], + "to": [14, 16, 2], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "uv": [2, 2, 14, 4] }, + "down": { "texture": "#bottom" } + } + }, + { + "from": [2, 14, 14], + "to": [14, 16, 16], + "faces": { + "north": { "texture": "#side", "uv": [14, 0, 2, 2] }, + "south": { "texture": "#side", "cullface": "south" }, + "down": { "texture": "#bottom" } + } + }, + { + "from": [14, 14, 2], + "to": [16, 16, 14], + "faces": { + "east": { "texture": "#side", "uv": [14, 0, 2, 2], "cullface": "east" }, + "west": { "texture": "#side", "uv": [14, 2, 2, 4] }, + "down": { "texture": "#bottom" } + } + }, + { + "from": [0, 14, 2], + "to": [2, 16, 14], + "faces": { + "east": { "texture": "#side" }, + "west": { "texture": "#side", "uv": [14, 0, 2, 2], "cullface": "west" }, + "down": { "texture": "#bottom" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/scaffolding_unstable.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/scaffolding_unstable.json new file mode 100644 index 000000000..72ba9369e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/scaffolding_unstable.json @@ -0,0 +1,143 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/scaffolding_top", + "top": "block/scaffolding_top", + "side": "block/scaffolding_side", + "bottom": "block/scaffolding_bottom" + }, + "elements": [ + { + "from": [0, 15.99, 0], + "to": [16, 16, 16], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#top", "uv": [0, 16, 16, 0] } + } + }, + { + "from": [0, 0, 0], + "to": [2, 16, 2], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [0, 0, 14], + "to": [2, 16, 16], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [14, 0, 14], + "to": [16, 16, 16], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [14, 0, 0], + "to": [16, 16, 2], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [2, 14, 0], + "to": [14, 16, 2], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "uv": [2, 2, 14, 4] }, + "down": { "texture": "#bottom" } + } + }, + { + "from": [2, 14, 14], + "to": [14, 16, 16], + "faces": { + "north": { "texture": "#side", "uv": [14, 0, 2, 2] }, + "south": { "texture": "#side", "cullface": "south" }, + "down": { "texture": "#bottom" } + } + }, + { + "from": [14, 14, 2], + "to": [16, 16, 14], + "faces": { + "east": { "texture": "#side", "uv": [14, 0, 2, 2], "cullface": "east" }, + "west": { "texture": "#side", "uv": [14, 2, 2, 4] }, + "down": { "texture": "#bottom" } + } + }, + { + "from": [0, 14, 2], + "to": [2, 16, 14], + "faces": { + "east": { "texture": "#side" }, + "west": { "texture": "#side", "uv": [14, 0, 2, 2], "cullface": "west" }, + "down": { "texture": "#bottom" } + } + }, + { + "from": [0, 1.99, 0], + "to": [16, 2, 16], + "faces": { + "up": { "texture": "#top"}, + "down": { "uv": [0, 16, 16, 0], "texture": "#top" } + } + }, + { + "from": [2, 0, 0], + "to": [14, 2, 2], + "faces": { + "north": { "texture": "#side", "uv": [2, 0, 14, 2] , "cullface": "north" }, + "south": { "texture": "#side", "uv": [2, 2, 14, 4] }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [2, 0, 14], + "to": [14, 2, 16], + "faces": { + "north": { "texture": "#side", "uv": [14, 0, 2, 2] }, + "south": { "texture": "#side", "uv": [2, 0, 14, 2] , "cullface": "south" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [14, 0, 2], + "to": [16, 2, 14], + "faces": { + "east": { "texture": "#side", "uv": [14, 0, 2, 2], "cullface": "east"}, + "west": { "texture": "#side", "uv": [14, 2, 2, 4] }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [0, 0, 2], + "to": [2, 2, 14], + "faces": { + "east": { "texture": "#side", "uv": [2, 0, 14, 2] }, + "west": { "texture": "#side", "uv": [14, 0, 2, 2], "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk.json new file mode 100644 index 000000000..28942bfc5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/sculk" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_catalyst.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_catalyst.json new file mode 100644 index 000000000..f678701be --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_catalyst.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/sculk_catalyst_bottom", + "side": "minecraft:block/sculk_catalyst_side", + "top": "minecraft:block/sculk_catalyst_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_catalyst_bloom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_catalyst_bloom.json new file mode 100644 index 000000000..5255598df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_catalyst_bloom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/sculk_catalyst_bottom", + "side": "minecraft:block/sculk_catalyst_side_bloom", + "top": "minecraft:block/sculk_catalyst_top_bloom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_mirrored.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_mirrored.json new file mode 100644 index 000000000..f00920110 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_mirrored.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_mirrored_all", + "textures": { + "all": "minecraft:block/sculk" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_sensor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_sensor.json new file mode 100644 index 000000000..e3307b7f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_sensor.json @@ -0,0 +1,60 @@ +{ + "parent": "block/block", + "textures": { + "bottom": "block/sculk_sensor_bottom", + "side": "block/sculk_sensor_side", + "tendrils": "block/sculk_sensor_tendril_inactive", + "top": "block/sculk_sensor_top", + "particle": "block/sculk_sensor_bottom" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 8, 16], + "faces": { + "north": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "north"}, + "east": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "east"}, + "south": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "south"}, + "west": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#top"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [-1, 8, 3], + "to": [7, 16, 3], + "rotation": {"angle": 45, "axis": "y", "origin": [3, 12, 3]}, + "faces": { + "north": {"uv": [4, 8, 12, 16], "texture": "#tendrils" }, + "south": {"uv": [12, 8, 4, 16], "texture": "#tendrils" } + } + }, + { + "from": [9, 8, 3], + "to": [17, 16, 3], + "rotation": {"angle": -45, "axis": "y", "origin": [13, 12, 3]}, + "faces": { + "north": {"uv": [12, 8, 4, 16], "texture": "#tendrils" }, + "south": {"uv": [4, 8, 12, 16], "texture": "#tendrils" } + } + }, + { + "from": [9, 8, 13], + "to": [17, 16, 13], + "rotation": {"angle": 45, "axis": "y", "origin": [13, 12, 13]}, + "faces": { + "north": {"uv": [12, 8, 4, 16], "texture": "#tendrils" }, + "south": {"uv": [4, 8, 12, 16], "texture": "#tendrils" } + } + }, + { + "from": [-1, 8, 13], + "to": [7, 16, 13], + "rotation": {"angle": -45, "axis": "y", "origin": [3, 12, 13]}, + "faces": { + "north": {"uv": [4, 8, 12, 16], "texture": "#tendrils" }, + "south": {"uv": [12, 8, 4, 16], "texture": "#tendrils" } + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_sensor_active.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_sensor_active.json new file mode 100644 index 000000000..92852fcb2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_sensor_active.json @@ -0,0 +1,6 @@ +{ + "parent": "block/sculk_sensor", + "textures": { + "tendrils": "block/sculk_sensor_tendril_active" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_sensor_inactive.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_sensor_inactive.json new file mode 100644 index 000000000..060f59e7b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_sensor_inactive.json @@ -0,0 +1,6 @@ +{ + "parent": "block/sculk_sensor", + "textures": { + "tendrils": "block/sculk_sensor_tendril_inactive" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_shrieker.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_shrieker.json new file mode 100644 index 000000000..04316a1de --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_shrieker.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_sculk_shrieker", + "textures": { + "bottom": "minecraft:block/sculk_shrieker_bottom", + "inner_top": "minecraft:block/sculk_shrieker_inner_top", + "particle": "minecraft:block/sculk_shrieker_bottom", + "side": "minecraft:block/sculk_shrieker_side", + "top": "minecraft:block/sculk_shrieker_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_shrieker_can_summon.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_shrieker_can_summon.json new file mode 100644 index 000000000..2b543dc4d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_shrieker_can_summon.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_sculk_shrieker", + "textures": { + "bottom": "minecraft:block/sculk_shrieker_bottom", + "inner_top": "minecraft:block/sculk_shrieker_can_summon_inner_top", + "particle": "minecraft:block/sculk_shrieker_bottom", + "side": "minecraft:block/sculk_shrieker_side", + "top": "minecraft:block/sculk_shrieker_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_vein.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_vein.json new file mode 100644 index 000000000..808c3ca9d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sculk_vein.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/sculk_vein", + "sculk_vein": "block/sculk_vein" + }, + "elements": [ + { "from": [ 0, 0, 0.1 ], + "to": [ 16, 16, 0.1 ], + "faces": { + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#sculk_vein" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#sculk_vein" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sea_lantern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sea_lantern.json new file mode 100644 index 000000000..f7602b29d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sea_lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/sea_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sea_pickle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sea_pickle.json new file mode 100644 index 000000000..31fef1af6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sea_pickle.json @@ -0,0 +1,47 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/sea_pickle", + "all": "block/sea_pickle" + }, + "elements": [ + { "from": [ 6, 0, 6 ], + "to": [ 10, 6, 10 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 6, 5.95, 6 ], + "to": [ 10, 5.95, 10 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 7.5, 5.2, 8 ], + "to": [ 8.5, 8.7, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 8, 5.2, 7.5 ], + "to": [ 8, 8.7, 8.5 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/seagrass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/seagrass.json new file mode 100644 index 000000000..53c7a3923 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/seagrass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_seagrass", + "textures": { + "texture": "minecraft:block/seagrass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/short_dry_grass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/short_dry_grass.json new file mode 100644 index 000000000..062a1f332 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/short_dry_grass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/short_dry_grass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/short_grass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/short_grass.json new file mode 100644 index 000000000..6cd93c94b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/short_grass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/short_grass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/shroomlight.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/shroomlight.json new file mode 100644 index 000000000..13f52aa3f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/shroomlight.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/shroomlight" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/shulker_box.json new file mode 100644 index 000000000..7eb23421c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/skull.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/skull.json new file mode 100644 index 000000000..99a7d7095 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/skull.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/soul_sand" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/slab.json new file mode 100644 index 000000000..1eadc701d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/slab.json @@ -0,0 +1,18 @@ +{ "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 8, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/slab_top.json new file mode 100644 index 000000000..e21eb9329 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/slab_top.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#side" + }, + "elements": [ + { "from": [ 0, 8, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 8 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 8 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 8 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/slightly_cracked_turtle_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/slightly_cracked_turtle_egg.json new file mode 100644 index 000000000..fe9f6dc2a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/slightly_cracked_turtle_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_turtle_egg", + "textures": { + "all": "minecraft:block/turtle_egg_slightly_cracked" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/slime_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/slime_block.json new file mode 100644 index 000000000..95f92bdf4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/slime_block.json @@ -0,0 +1,30 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/slime_block", + "texture": "block/slime_block" + }, + "elements": [ + { "from": [ 3, 3, 3 ], + "to": [ 13, 13, 13 ], + "faces": { + "down": { "uv": [ 3, 3, 13, 13 ], "texture": "#texture" }, + "up": { "uv": [ 3, 3, 13, 13 ], "texture": "#texture" }, + "north": { "uv": [ 3, 3, 13, 13 ], "texture": "#texture" }, + "south": { "uv": [ 3, 3, 13, 13 ], "texture": "#texture" }, + "west": { "uv": [ 3, 3, 13, 13 ], "texture": "#texture" }, + "east": { "uv": [ 3, 3, 13, 13 ], "texture": "#texture" } + } + }, + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/small_amethyst_bud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/small_amethyst_bud.json new file mode 100644 index 000000000..a8f342fd7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/small_amethyst_bud.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/small_amethyst_bud" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/small_dripleaf_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/small_dripleaf_bottom.json new file mode 100644 index 000000000..df2b8fe5c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/small_dripleaf_bottom.json @@ -0,0 +1,27 @@ +{ + "parent": "block/block", + "textures": { + "stem": "block/small_dripleaf_stem_bottom", + "particle": "block/big_dripleaf_stem" + }, + "elements": [ + { "from": [ 4.5, 0, 8 ], + "to": [ 11.5, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": false }, + "shade": false, + "faces": { + "north": { "uv": [ 5, 0, 12, 16 ], "texture": "#stem" }, + "south": { "uv": [ 5, 0, 12, 16 ], "texture": "#stem" } + } + }, + { "from": [ 4.5, 0, 8 ], + "to": [ 11.5, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": -45, "rescale": false }, + "shade": false, + "faces": { + "north": { "uv": [ 5, 0, 12, 16 ], "texture": "#stem" }, + "south": { "uv": [ 5, 0, 12, 16 ], "texture": "#stem" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/small_dripleaf_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/small_dripleaf_top.json new file mode 100644 index 000000000..847edac30 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/small_dripleaf_top.json @@ -0,0 +1,83 @@ +{ + "parent": "block/block", + "textures": { + "top": "block/small_dripleaf_top", + "side": "block/small_dripleaf_side", + "stem": "block/small_dripleaf_stem_top", + "particle": "block/small_dripleaf_top" + }, + "elements": [ + { "from": [ 8, 3, 8 ], + "to": [ 15, 3, 15 ], + "shade": false, + "faces": { + "down": { "uv": [ 8, 0, 0, 8 ], "texture": "#top" }, + "up": { "uv": [ 8, 8, 0, 0 ], "texture": "#top" } + } + }, + { "from": [ 1, 8.02, 1 ], + "to": [ 8, 8.02, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 8, 8, 0 ], "texture": "#top" }, + "up": { "uv": [ 0, 0, 8, 8 ], "texture": "#top" } + } + }, + { "from": [ 1, 12.02, 8 ], + "to": [ 8, 12.02, 15 ], + "shade": false, + "faces": { + "down": { "uv": [ 8, 0, 0, 8 ], "texture": "#top" , "rotation": 270}, + "up": { "uv": [ 0, 0, 8, 8 ], "texture": "#top" , "rotation": 270} + } + }, + { "from": [ 8, 2, 8 ], + "to": [ 15, 3, 15 ], + "shade": false, + "faces": { + "east": { "uv": [ 0, 0, 8, 1 ], "texture": "#side" }, + "west": { "uv": [ 0, 0, 8, 1 ], "texture": "#side" }, + "north": { "uv": [ 0, 0, 8, 1 ], "texture": "#side" }, + "south": { "uv": [ 0, 0, 8, 1 ], "texture": "#side" } + } + }, + { "from": [ 1, 7.02, 1 ], + "to": [ 8, 8.02, 8 ], + "shade": false, + "faces": { + "east": { "uv": [ 0, 0, 8, 1 ], "texture": "#side" }, + "west": { "uv": [ 0, 0, 8, 1 ], "texture": "#side" }, + "north": { "uv": [ 0, 0, 8, 1 ], "texture": "#side" }, + "south": { "uv": [ 0, 0, 8, 1 ], "texture": "#side" } + } + }, + { "from": [ 1, 11.02, 8 ], + "to": [ 8, 12.02, 15 ], + "shade": false, + "faces": { + "east": { "uv": [ 0, 0, 8, 1 ], "texture": "#side"}, + "west": { "uv": [ 0, 0, 8, 1 ], "texture": "#side"}, + "north": { "uv": [ 0, 0, 8, 1 ], "texture": "#side"}, + "south": { "uv": [ 0, 0, 8, 1 ], "texture": "#side"} + } + }, + { "from": [ 4.5, 0, 8 ], + "to": [ 11.5, 14, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": false }, + "shade": false, + "faces": { + "north": { "uv": [ 4, 0, 12, 14 ], "texture": "#stem" }, + "south": { "uv": [ 4, 0, 12, 14 ], "texture": "#stem" } + } + }, + { "from": [ 4.5, 0, 8 ], + "to": [ 11.5, 14, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": -45, "rescale": false }, + "shade": false, + "faces": { + "north": { "uv": [ 4, 0, 12, 14 ], "texture": "#stem" }, + "south": { "uv": [ 4, 0, 12, 14 ], "texture": "#stem" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smithing_table.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smithing_table.json new file mode 100644 index 000000000..f7bcd3e1f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smithing_table.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "down": "minecraft:block/smithing_table_bottom", + "east": "minecraft:block/smithing_table_side", + "north": "minecraft:block/smithing_table_front", + "particle": "minecraft:block/smithing_table_front", + "south": "minecraft:block/smithing_table_front", + "up": "minecraft:block/smithing_table_top", + "west": "minecraft:block/smithing_table_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smoker.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smoker.json new file mode 100644 index 000000000..6babece90 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smoker.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/orientable_with_bottom", + "textures": { + "bottom": "minecraft:block/smoker_bottom", + "front": "minecraft:block/smoker_front", + "side": "minecraft:block/smoker_side", + "top": "minecraft:block/smoker_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smoker_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smoker_on.json new file mode 100644 index 000000000..551e0f8a0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smoker_on.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/orientable_with_bottom", + "textures": { + "bottom": "minecraft:block/smoker_bottom", + "front": "minecraft:block/smoker_front_on", + "side": "minecraft:block/smoker_side", + "top": "minecraft:block/smoker_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_basalt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_basalt.json new file mode 100644 index 000000000..c8f8da1cc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_basalt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/smooth_basalt" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz.json new file mode 100644 index 000000000..7af04ba16 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/quartz_block_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz_slab.json new file mode 100644 index 000000000..a22f5b9fa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/quartz_block_bottom", + "side": "minecraft:block/quartz_block_bottom", + "top": "minecraft:block/quartz_block_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz_slab_top.json new file mode 100644 index 000000000..e65cab28e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/quartz_block_bottom", + "side": "minecraft:block/quartz_block_bottom", + "top": "minecraft:block/quartz_block_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs.json new file mode 100644 index 000000000..c75048dd0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/quartz_block_bottom", + "side": "minecraft:block/quartz_block_bottom", + "top": "minecraft:block/quartz_block_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs_inner.json new file mode 100644 index 000000000..d3a0f20ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/quartz_block_bottom", + "side": "minecraft:block/quartz_block_bottom", + "top": "minecraft:block/quartz_block_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs_outer.json new file mode 100644 index 000000000..2760bd495 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/quartz_block_bottom", + "side": "minecraft:block/quartz_block_bottom", + "top": "minecraft:block/quartz_block_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone.json new file mode 100644 index 000000000..db56d1c0b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_slab.json new file mode 100644 index 000000000..1597dd8b5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/red_sandstone_top", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_slab_top.json new file mode 100644 index 000000000..8ec4c38bb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/red_sandstone_top", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs.json new file mode 100644 index 000000000..97f7801e1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/red_sandstone_top", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs_inner.json new file mode 100644 index 000000000..0a4edbc11 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/red_sandstone_top", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs_outer.json new file mode 100644 index 000000000..20b58b62c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/red_sandstone_top", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone.json new file mode 100644 index 000000000..2f886a74c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone_slab.json new file mode 100644 index 000000000..1e59e358e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/sandstone_top", + "side": "minecraft:block/sandstone_top", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone_slab_top.json new file mode 100644 index 000000000..694512d04 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/sandstone_top", + "side": "minecraft:block/sandstone_top", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs.json new file mode 100644 index 000000000..4bba62dbf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/sandstone_top", + "side": "minecraft:block/sandstone_top", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs_inner.json new file mode 100644 index 000000000..50227f027 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/sandstone_top", + "side": "minecraft:block/sandstone_top", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs_outer.json new file mode 100644 index 000000000..c200a8d68 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/sandstone_top", + "side": "minecraft:block/sandstone_top", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_stone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_stone.json new file mode 100644 index 000000000..54595f0c7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_stone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/smooth_stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_stone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_stone_slab.json new file mode 100644 index 000000000..1df1c2316 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_stone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/smooth_stone", + "side": "minecraft:block/smooth_stone_slab_side", + "top": "minecraft:block/smooth_stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_stone_slab_double.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_stone_slab_double.json new file mode 100644 index 000000000..f937d93dd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_stone_slab_double.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/smooth_stone", + "side": "minecraft:block/smooth_stone_slab_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_stone_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_stone_slab_top.json new file mode 100644 index 000000000..b4bc88b82 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/smooth_stone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/smooth_stone", + "side": "minecraft:block/smooth_stone_slab_side", + "top": "minecraft:block/smooth_stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sniffer_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sniffer_egg.json new file mode 100644 index 000000000..65d5380a8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sniffer_egg.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "#north" + }, + "elements": [ + { + "from": [1, 0, 2], + "to": [15, 16, 14], + "faces": { + "north": {"uv": [0, 0, 14, 16], "texture": "#north"}, + "east": {"uv": [0, 0, 12, 16], "texture": "#east"}, + "south": {"uv": [0, 0, 14, 16], "texture": "#south"}, + "west": {"uv": [0, 0, 12, 16], "texture": "#west"}, + "up": {"uv": [0, 0, 14, 12], "texture": "#top", "cullface": "up"}, + "down": {"uv": [0, 0, 14, 12], "texture": "#bottom", "cullface": "down"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sniffer_egg_not_cracked.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sniffer_egg_not_cracked.json new file mode 100644 index 000000000..0b05be19a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sniffer_egg_not_cracked.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/sniffer_egg", + "textures": { + "bottom": "minecraft:block/sniffer_egg_not_cracked_bottom", + "east": "minecraft:block/sniffer_egg_not_cracked_east", + "north": "minecraft:block/sniffer_egg_not_cracked_north", + "south": "minecraft:block/sniffer_egg_not_cracked_south", + "top": "minecraft:block/sniffer_egg_not_cracked_top", + "west": "minecraft:block/sniffer_egg_not_cracked_west" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sniffer_egg_slightly_cracked.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sniffer_egg_slightly_cracked.json new file mode 100644 index 000000000..4ee1aaf61 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sniffer_egg_slightly_cracked.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/sniffer_egg", + "textures": { + "bottom": "minecraft:block/sniffer_egg_slightly_cracked_bottom", + "east": "minecraft:block/sniffer_egg_slightly_cracked_east", + "north": "minecraft:block/sniffer_egg_slightly_cracked_north", + "south": "minecraft:block/sniffer_egg_slightly_cracked_south", + "top": "minecraft:block/sniffer_egg_slightly_cracked_top", + "west": "minecraft:block/sniffer_egg_slightly_cracked_west" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sniffer_egg_very_cracked.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sniffer_egg_very_cracked.json new file mode 100644 index 000000000..f989439d8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sniffer_egg_very_cracked.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/sniffer_egg", + "textures": { + "bottom": "minecraft:block/sniffer_egg_very_cracked_bottom", + "east": "minecraft:block/sniffer_egg_very_cracked_east", + "north": "minecraft:block/sniffer_egg_very_cracked_north", + "south": "minecraft:block/sniffer_egg_very_cracked_south", + "top": "minecraft:block/sniffer_egg_very_cracked_top", + "west": "minecraft:block/sniffer_egg_very_cracked_west" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_block.json new file mode 100644 index 000000000..c6c8096c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/snow" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height10.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height10.json new file mode 100644 index 000000000..dd72cc9ec --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height10.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "block/snow", + "texture": "block/snow" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 10, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 6, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 6, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 6, 16, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 6, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height12.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height12.json new file mode 100644 index 000000000..bdce96c01 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height12.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "block/snow", + "texture": "block/snow" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 12, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height14.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height14.json new file mode 100644 index 000000000..30e1d8880 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height14.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "block/snow", + "texture": "block/snow" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 14, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 2, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 2, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 2, 16, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 2, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height2.json new file mode 100644 index 000000000..de13fc622 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height2.json @@ -0,0 +1,19 @@ +{ "parent": "block/thin_block", + "textures": { + "particle": "block/snow", + "texture": "block/snow" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height4.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height4.json new file mode 100644 index 000000000..650692c53 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height4.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "block/snow", + "texture": "block/snow" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 4, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 12, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 12, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 12, 16, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 12, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height6.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height6.json new file mode 100644 index 000000000..32468b9b8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height6.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "block/snow", + "texture": "block/snow" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 6, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 10, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 10, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 10, 16, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 10, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height8.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height8.json new file mode 100644 index 000000000..53d22828e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/snow_height8.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "block/snow", + "texture": "block/snow" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 8, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_campfire.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_campfire.json new file mode 100644 index 000000000..d3097b59e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_campfire.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_campfire", + "textures": { + "fire": "minecraft:block/soul_campfire_fire", + "lit_log": "minecraft:block/soul_campfire_log_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_floor0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_floor0.json new file mode 100644 index 000000000..5623972ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_floor0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_floor", + "textures": { + "fire": "minecraft:block/soul_fire_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_floor1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_floor1.json new file mode 100644 index 000000000..19228ef1f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_floor1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_floor", + "textures": { + "fire": "minecraft:block/soul_fire_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_side0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_side0.json new file mode 100644 index 000000000..253bac582 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_side0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_side", + "textures": { + "fire": "minecraft:block/soul_fire_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_side1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_side1.json new file mode 100644 index 000000000..be0004a32 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_side1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_side", + "textures": { + "fire": "minecraft:block/soul_fire_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_side_alt0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_side_alt0.json new file mode 100644 index 000000000..adb4cff6b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_side_alt0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_side_alt", + "textures": { + "fire": "minecraft:block/soul_fire_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_side_alt1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_side_alt1.json new file mode 100644 index 000000000..3e6e709ab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_fire_side_alt1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_side_alt", + "textures": { + "fire": "minecraft:block/soul_fire_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_lantern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_lantern.json new file mode 100644 index 000000000..6a0a0e997 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_lantern", + "textures": { + "lantern": "minecraft:block/soul_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_lantern_hanging.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_lantern_hanging.json new file mode 100644 index 000000000..8aa725b29 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_lantern_hanging.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_hanging_lantern", + "textures": { + "lantern": "minecraft:block/soul_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_sand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_sand.json new file mode 100644 index 000000000..ca6235424 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_sand.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/soul_sand" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_soil.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_soil.json new file mode 100644 index 000000000..73a888f67 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_soil.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/soul_soil" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_torch.json new file mode 100644 index 000000000..275d76e25 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_torch", + "textures": { + "torch": "minecraft:block/soul_torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_wall_torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_wall_torch.json new file mode 100644 index 000000000..22b9e9ed8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/soul_wall_torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_torch_wall", + "textures": { + "torch": "minecraft:block/soul_torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spawner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spawner.json new file mode 100644 index 000000000..720b6d994 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spawner.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all_inner_faces", + "textures": { + "all": "minecraft:block/spawner" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sponge.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sponge.json new file mode 100644 index 000000000..93acf8854 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sponge.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/sponge" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spore_blossom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spore_blossom.json new file mode 100644 index 000000000..b11ad8d5e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spore_blossom.json @@ -0,0 +1,54 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/spore_blossom", + "flower": "block/spore_blossom", + "base": "block/spore_blossom_base" + }, + "elements": [ + { "from": [ 1, 15.9, 1 ], + "to": [ 15, 15.9, 15 ], + "shade": false, + "faces": { + "up": { "uv": [ 1, 1, 15, 15 ], "texture": "#base"}, + "down": { "uv": [ 1, 1, 15, 15 ], "texture": "#base"} + } + }, + { "from": [ 8, 15.7, 0 ], + "to": [ 24, 15.7, 16 ], + "rotation": { "origin": [ 8, 16, 0 ], "axis": "z", "angle": -22.5, "rescale": false }, + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#flower", "rotation": 90 }, + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#flower", "rotation": 270 } + } + }, + { "from": [ -8, 15.7, 0 ], + "to": [ 8, 15.7, 16 ], + "rotation": { "origin": [ 8, 16, 0 ], "axis": "z", "angle": 22.5, "rescale": false }, + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#flower", "rotation": 270 }, + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#flower", "rotation": 90 } + } + }, + { "from": [ 0, 15.7, 8 ], + "to": [ 16, 15.7, 24 ], + "rotation": { "origin": [ 0, 16, 8 ], "axis": "x", "angle": 22.5, "rescale": false }, + "shade": false, + "faces": { + "up": { "uv": [ 16, 16, 0, 0 ], "texture": "#flower" }, + "down": { "uv": [ 16, 0, 0, 16 ], "texture": "#flower" } + } + }, + { "from": [ 0, 15.7, -8 ], + "to": [ 16, 15.7, 8 ], + "rotation": { "origin": [ 0, 16, 8 ], "axis": "x", "angle": -22.5, "rescale": false }, + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#flower" }, + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#flower" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_button.json new file mode 100644 index 000000000..7c86fded5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_button_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_button_inventory.json new file mode 100644 index 000000000..372657bbb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_button_pressed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_button_pressed.json new file mode 100644 index 000000000..da881755b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_left.json new file mode 100644 index 000000000..d3c5e003e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/spruce_door_bottom", + "top": "minecraft:block/spruce_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_left_open.json new file mode 100644 index 000000000..04569ba02 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/spruce_door_bottom", + "top": "minecraft:block/spruce_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_right.json new file mode 100644 index 000000000..3274bef68 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/spruce_door_bottom", + "top": "minecraft:block/spruce_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_right_open.json new file mode 100644 index 000000000..22f42b3ff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/spruce_door_bottom", + "top": "minecraft:block/spruce_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_top_left.json new file mode 100644 index 000000000..7dfb61b98 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/spruce_door_bottom", + "top": "minecraft:block/spruce_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_top_left_open.json new file mode 100644 index 000000000..a23353d0d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/spruce_door_bottom", + "top": "minecraft:block/spruce_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_top_right.json new file mode 100644 index 000000000..708af6752 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/spruce_door_bottom", + "top": "minecraft:block/spruce_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_top_right_open.json new file mode 100644 index 000000000..9607e97d1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/spruce_door_bottom", + "top": "minecraft:block/spruce_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_gate.json new file mode 100644 index 000000000..ed324b64d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_open.json new file mode 100644 index 000000000..e6308346e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_wall.json new file mode 100644 index 000000000..05914db03 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_wall_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_wall_open.json new file mode 100644 index 000000000..08e41a5b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_inventory.json new file mode 100644 index 000000000..041d3d298 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_post.json new file mode 100644 index 000000000..fb0f1dbd3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_side.json new file mode 100644 index 000000000..3ad6ffc0e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_hanging_sign.json new file mode 100644 index 000000000..b64f9092a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_leaves.json new file mode 100644 index 000000000..fe8ae0dd7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/spruce_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_log.json new file mode 100644 index 000000000..85aa89078 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/spruce_log_top", + "side": "minecraft:block/spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_log_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_log_horizontal.json new file mode 100644 index 000000000..9a7e4aadf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/spruce_log_top", + "side": "minecraft:block/spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_planks.json new file mode 100644 index 000000000..1345a1406 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_pressure_plate.json new file mode 100644 index 000000000..89e7400e3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_pressure_plate_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_pressure_plate_down.json new file mode 100644 index 000000000..8fb289a88 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_sapling.json new file mode 100644 index 000000000..99c270a26 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/spruce_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_sign.json new file mode 100644 index 000000000..d4f03b2e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_slab.json new file mode 100644 index 000000000..bcdc4b2a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/spruce_planks", + "side": "minecraft:block/spruce_planks", + "top": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_slab_top.json new file mode 100644 index 000000000..3cbde014f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/spruce_planks", + "side": "minecraft:block/spruce_planks", + "top": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_stairs.json new file mode 100644 index 000000000..7e53bad1b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/spruce_planks", + "side": "minecraft:block/spruce_planks", + "top": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_stairs_inner.json new file mode 100644 index 000000000..5864e0d61 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/spruce_planks", + "side": "minecraft:block/spruce_planks", + "top": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_stairs_outer.json new file mode 100644 index 000000000..b3ba3d53d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/spruce_planks", + "side": "minecraft:block/spruce_planks", + "top": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_bottom.json new file mode 100644 index 000000000..b5dacb638 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/spruce_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_open.json new file mode 100644 index 000000000..f8b61984a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/spruce_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_top.json new file mode 100644 index 000000000..115897224 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/spruce_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_wood.json new file mode 100644 index 000000000..244a9d5a9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/spruce_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/spruce_log", + "side": "minecraft:block/spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stairs.json new file mode 100644 index 000000000..986ce9c6e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stairs.json @@ -0,0 +1,45 @@ +{ "parent": "block/block", + "display": { + "gui": { + "rotation": [ 30, 135, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "head": { + "rotation": [ 0, -90, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ] + }, + "thirdperson_lefthand": { + "rotation": [ 75, -135, 0 ], + "translation": [ 0, 2.5, 0], + "scale": [ 0.375, 0.375, 0.375 ] + } + }, + "textures": { + "particle": "#side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 8, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 8, 8, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "up": { "uv": [ 8, 0, 16, 16 ], "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 0, 0, 8, 8 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 8, 0, 16, 8 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#side" }, + "east": { "uv": [ 0, 0, 16, 8 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_fruit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_fruit.json new file mode 100644 index 000000000..86d59c663 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_fruit.json @@ -0,0 +1,31 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 7, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 8 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 8 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 7, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 8 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 0, 0, 8 ], + "to": [ 9, 16, 8 ], + "faces": { + "north": { "uv": [ 9, 0, 0, 16 ], "texture": "#upperstem", "tintindex": 0 }, + "south": { "uv": [ 0, 0, 9, 16 ], "texture": "#upperstem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth0.json new file mode 100644 index 000000000..6e9773156 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth0.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 1, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 2 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 2 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 1, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 2 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 2 ], "texture": "#stem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth1.json new file mode 100644 index 000000000..ea97f754e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth1.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 3, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 4 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 4 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 3, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 4 ], "texture": "#stem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth2.json new file mode 100644 index 000000000..4ab6f4c29 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth2.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 5, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 6 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 6 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 5, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 6 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 6 ], "texture": "#stem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth3.json new file mode 100644 index 000000000..542a82053 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth3.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 7, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 8 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 8 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 7, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 8 ], "texture": "#stem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth4.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth4.json new file mode 100644 index 000000000..77befcebc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth4.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 9, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 10 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 10 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 9, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 10 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 10 ], "texture": "#stem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth5.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth5.json new file mode 100644 index 000000000..678450e60 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth5.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 11, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 12 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 12 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 11, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 12 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 12 ], "texture": "#stem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth6.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth6.json new file mode 100644 index 000000000..523974e2d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth6.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 13, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 14 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 14 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 13, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 14 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 14 ], "texture": "#stem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth7.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth7.json new file mode 100644 index 000000000..bd4f9d182 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stem_growth7.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 15, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 16 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 15, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#stem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sticky_piston.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sticky_piston.json new file mode 100644 index 000000000..84fcdca69 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sticky_piston.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_piston", + "textures": { + "bottom": "minecraft:block/piston_bottom", + "platform": "minecraft:block/piston_top_sticky", + "side": "minecraft:block/piston_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sticky_piston_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sticky_piston_inventory.json new file mode 100644 index 000000000..24b376ab3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sticky_piston_inventory.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/piston_bottom", + "side": "minecraft:block/piston_side", + "top": "minecraft:block/piston_top_sticky" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone.json new file mode 100644 index 000000000..1a2f6a79a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_slab.json new file mode 100644 index 000000000..8c8e75d21 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/stone_bricks", + "side": "minecraft:block/stone_bricks", + "top": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_slab_top.json new file mode 100644 index 000000000..40d3e83a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/stone_bricks", + "side": "minecraft:block/stone_bricks", + "top": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_stairs.json new file mode 100644 index 000000000..e46882250 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/stone_bricks", + "side": "minecraft:block/stone_bricks", + "top": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_stairs_inner.json new file mode 100644 index 000000000..a4d116596 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/stone_bricks", + "side": "minecraft:block/stone_bricks", + "top": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_stairs_outer.json new file mode 100644 index 000000000..92b707bc9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/stone_bricks", + "side": "minecraft:block/stone_bricks", + "top": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_wall_inventory.json new file mode 100644 index 000000000..b15051bc2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_wall_post.json new file mode 100644 index 000000000..47ee222af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_wall_side.json new file mode 100644 index 000000000..86d914b4d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_wall_side_tall.json new file mode 100644 index 000000000..6dd8aa447 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_bricks.json new file mode 100644 index 000000000..87f6bbe0e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_button.json new file mode 100644 index 000000000..42d1cc4d8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_button_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_button_inventory.json new file mode 100644 index 000000000..ffee63f28 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_button_pressed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_button_pressed.json new file mode 100644 index 000000000..4606dfa0f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_mirrored.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_mirrored.json new file mode 100644 index 000000000..3cf2cb6d8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_mirrored.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_mirrored_all", + "textures": { + "all": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_pressure_plate.json new file mode 100644 index 000000000..98b53783e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_pressure_plate_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_pressure_plate_down.json new file mode 100644 index 000000000..ff0d176c5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_slab.json new file mode 100644 index 000000000..b52b9cd51 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/stone", + "side": "minecraft:block/stone", + "top": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_slab_top.json new file mode 100644 index 000000000..62f911590 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/stone", + "side": "minecraft:block/stone", + "top": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_stairs.json new file mode 100644 index 000000000..fe93e7f60 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/stone", + "side": "minecraft:block/stone", + "top": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_stairs_inner.json new file mode 100644 index 000000000..08f85f6cb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/stone", + "side": "minecraft:block/stone", + "top": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_stairs_outer.json new file mode 100644 index 000000000..24ddd3aeb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/stone", + "side": "minecraft:block/stone", + "top": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stonecutter.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stonecutter.json new file mode 100644 index 000000000..b89f0aaa1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stonecutter.json @@ -0,0 +1,29 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/stonecutter_bottom", + "bottom": "block/stonecutter_bottom", + "top": "block/stonecutter_top", + "side": "block/stonecutter_side", + "saw": "block/stonecutter_saw" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 9, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 7, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 7, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 7, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 7, 16, 16 ], "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 1, 9, 8 ], + "to": [ 15, 16, 8 ], + "faces": { + "north": { "uv": [ 1, 9, 15, 16 ], "texture": "#saw", "tintindex": 0 }, + "south": { "uv": [ 15, 9, 1, 16 ], "texture": "#saw", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_acacia_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_acacia_log.json new file mode 100644 index 000000000..54d47b631 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_acacia_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_acacia_log_top", + "side": "minecraft:block/stripped_acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_acacia_log_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_acacia_log_horizontal.json new file mode 100644 index 000000000..454c86b53 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_acacia_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/stripped_acacia_log_top", + "side": "minecraft:block/stripped_acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_acacia_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_acacia_wood.json new file mode 100644 index 000000000..1583b0d5a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_acacia_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_acacia_log", + "side": "minecraft:block/stripped_acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block.json new file mode 100644 index 000000000..9e838eac2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_bamboo_block_top", + "side": "minecraft:block/stripped_bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_x.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_x.json new file mode 100644 index 000000000..c657a0ccf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_x.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_x", + "textures": { + "end": "minecraft:block/stripped_bamboo_block_top", + "side": "minecraft:block/stripped_bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_y.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_y.json new file mode 100644 index 000000000..96bd5d24b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_y.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_y", + "textures": { + "end": "minecraft:block/stripped_bamboo_block_top", + "side": "minecraft:block/stripped_bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_z.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_z.json new file mode 100644 index 000000000..21c919af1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_z.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_z", + "textures": { + "end": "minecraft:block/stripped_bamboo_block_top", + "side": "minecraft:block/stripped_bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_birch_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_birch_log.json new file mode 100644 index 000000000..d7e395a75 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_birch_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_birch_log_top", + "side": "minecraft:block/stripped_birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_birch_log_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_birch_log_horizontal.json new file mode 100644 index 000000000..6f62e4213 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_birch_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/stripped_birch_log_top", + "side": "minecraft:block/stripped_birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_birch_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_birch_wood.json new file mode 100644 index 000000000..4faf78e3b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_birch_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_birch_log", + "side": "minecraft:block/stripped_birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_cherry_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_cherry_log.json new file mode 100644 index 000000000..08f5f52c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_cherry_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_cherry_log_top", + "side": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_x.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_x.json new file mode 100644 index 000000000..00e524f2a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_x.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_x", + "textures": { + "end": "minecraft:block/stripped_cherry_log_top", + "side": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_y.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_y.json new file mode 100644 index 000000000..8ff831c2c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_y.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_y", + "textures": { + "end": "minecraft:block/stripped_cherry_log_top", + "side": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_z.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_z.json new file mode 100644 index 000000000..8137f6a7a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_z.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_z", + "textures": { + "end": "minecraft:block/stripped_cherry_log_top", + "side": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_cherry_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_cherry_wood.json new file mode 100644 index 000000000..6c9b2d4e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_cherry_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_cherry_log", + "side": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_crimson_hyphae.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_crimson_hyphae.json new file mode 100644 index 000000000..cbc86c4dc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_crimson_hyphae.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_crimson_stem", + "side": "minecraft:block/stripped_crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_crimson_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_crimson_stem.json new file mode 100644 index 000000000..8104f731f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_crimson_stem.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_crimson_stem_top", + "side": "minecraft:block/stripped_crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_log.json new file mode 100644 index 000000000..fa1dedea2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_dark_oak_log_top", + "side": "minecraft:block/stripped_dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_log_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_log_horizontal.json new file mode 100644 index 000000000..c4e5e432b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/stripped_dark_oak_log_top", + "side": "minecraft:block/stripped_dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_wood.json new file mode 100644 index 000000000..1ca9d015b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_dark_oak_log", + "side": "minecraft:block/stripped_dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_jungle_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_jungle_log.json new file mode 100644 index 000000000..d40694df0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_jungle_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_jungle_log_top", + "side": "minecraft:block/stripped_jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_jungle_log_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_jungle_log_horizontal.json new file mode 100644 index 000000000..0dd48d1c9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_jungle_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/stripped_jungle_log_top", + "side": "minecraft:block/stripped_jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_jungle_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_jungle_wood.json new file mode 100644 index 000000000..f4b0fe761 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_jungle_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_jungle_log", + "side": "minecraft:block/stripped_jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_mangrove_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_mangrove_log.json new file mode 100644 index 000000000..5a8654ea3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_mangrove_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_mangrove_log_top", + "side": "minecraft:block/stripped_mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_mangrove_log_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_mangrove_log_horizontal.json new file mode 100644 index 000000000..70f40bdfc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_mangrove_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/stripped_mangrove_log_top", + "side": "minecraft:block/stripped_mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_mangrove_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_mangrove_wood.json new file mode 100644 index 000000000..900c73d87 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_mangrove_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_mangrove_log", + "side": "minecraft:block/stripped_mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_oak_log.json new file mode 100644 index 000000000..4b3fc0575 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_oak_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_oak_log_top", + "side": "minecraft:block/stripped_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_oak_log_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_oak_log_horizontal.json new file mode 100644 index 000000000..a1163f03c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_oak_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/stripped_oak_log_top", + "side": "minecraft:block/stripped_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_oak_wood.json new file mode 100644 index 000000000..554325dd6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_oak_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_oak_log", + "side": "minecraft:block/stripped_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_log.json new file mode 100644 index 000000000..92a32ce9c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_pale_oak_log_top", + "side": "minecraft:block/stripped_pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_log_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_log_horizontal.json new file mode 100644 index 000000000..eedd285b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/stripped_pale_oak_log_top", + "side": "minecraft:block/stripped_pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_wood.json new file mode 100644 index 000000000..9ace5fd33 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_pale_oak_log", + "side": "minecraft:block/stripped_pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_spruce_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_spruce_log.json new file mode 100644 index 000000000..665bd31b9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_spruce_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_spruce_log_top", + "side": "minecraft:block/stripped_spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_spruce_log_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_spruce_log_horizontal.json new file mode 100644 index 000000000..7a4c1139c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_spruce_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/stripped_spruce_log_top", + "side": "minecraft:block/stripped_spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_spruce_wood.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_spruce_wood.json new file mode 100644 index 000000000..6c96a668b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_spruce_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_spruce_log", + "side": "minecraft:block/stripped_spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_warped_hyphae.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_warped_hyphae.json new file mode 100644 index 000000000..fa055c378 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_warped_hyphae.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_warped_stem", + "side": "minecraft:block/stripped_warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_warped_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_warped_stem.json new file mode 100644 index 000000000..adcfb5544 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/stripped_warped_stem.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_warped_stem_top", + "side": "minecraft:block/stripped_warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_block.json new file mode 100644 index 000000000..ab31c0ae2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/structure_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_block_corner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_block_corner.json new file mode 100644 index 000000000..d5522e3be --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_block_corner.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/structure_block_corner" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_block_data.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_block_data.json new file mode 100644 index 000000000..a0e707f6b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_block_data.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/structure_block_data" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_block_load.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_block_load.json new file mode 100644 index 000000000..80e3237bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_block_load.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/structure_block_load" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_block_save.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_block_save.json new file mode 100644 index 000000000..7e6967ac0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_block_save.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/structure_block_save" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_void.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_void.json new file mode 100644 index 000000000..7003f0850 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/structure_void.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/structure_void" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sugar_cane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sugar_cane.json new file mode 100644 index 000000000..c40928534 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sugar_cane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/sugar_cane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sunflower_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sunflower_bottom.json new file mode 100644 index 000000000..f9b91c410 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sunflower_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/sunflower_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sunflower_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sunflower_top.json new file mode 100644 index 000000000..f98a18027 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sunflower_top.json @@ -0,0 +1,53 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/sunflower_front", + "cross": "block/sunflower_top", + "back": "block/sunflower_back", + "front": "block/sunflower_front" + }, + "elements": [ + { "from": [ 0.8, 0, 8 ], + "to": [ 15.2, 8, 8 ], + "rotation": { + "origin": [ 8, 8, 8 ], + "axis": "y", + "angle": 45, + "rescale": true + }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 8, 16, 16 ], "texture": "#cross" }, + "south": { "uv": [ 0, 8, 16, 16 ], "texture": "#cross" } + } + }, + { "from": [ 8, 0, 0.8 ], + "to": [ 8, 8, 15.2 ], + "rotation": { + "origin": [ 8, 8, 8 ], + "axis": "y", + "angle": 45, + "rescale": true + }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 8, 16, 16 ], "texture": "#cross" }, + "east": { "uv": [ 0, 8, 16, 16 ], "texture": "#cross" } + } + }, + { "from": [ 9.6, -1, 1 ], + "to": [ 9.6, 15, 15 ], + "rotation": { + "origin": [ 8, 8, 8 ], + "axis": "z", + "angle": 22.5, + "rescale": true + }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#back" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#front" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_gravel_0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_gravel_0.json new file mode 100644 index 000000000..54ae011c5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_gravel_0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/suspicious_gravel_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_gravel_1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_gravel_1.json new file mode 100644 index 000000000..8c3ef9490 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_gravel_1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/suspicious_gravel_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_gravel_2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_gravel_2.json new file mode 100644 index 000000000..2e6b819b3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_gravel_2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/suspicious_gravel_2" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_gravel_3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_gravel_3.json new file mode 100644 index 000000000..b335d4f87 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_gravel_3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/suspicious_gravel_3" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_sand_0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_sand_0.json new file mode 100644 index 000000000..f021a9628 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_sand_0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/suspicious_sand_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_sand_1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_sand_1.json new file mode 100644 index 000000000..96e970588 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_sand_1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/suspicious_sand_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_sand_2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_sand_2.json new file mode 100644 index 000000000..41542af0b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_sand_2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/suspicious_sand_2" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_sand_3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_sand_3.json new file mode 100644 index 000000000..f4358f741 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/suspicious_sand_3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/suspicious_sand_3" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage0.json new file mode 100644 index 000000000..35d51667e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/sweet_berry_bush_stage0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage1.json new file mode 100644 index 000000000..af18f15bd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/sweet_berry_bush_stage1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage2.json new file mode 100644 index 000000000..d12278451 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/sweet_berry_bush_stage2" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage3.json new file mode 100644 index 000000000..9625d2daf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/sweet_berry_bush_stage3" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tall_dry_grass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tall_dry_grass.json new file mode 100644 index 000000000..eeefccac1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tall_dry_grass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/tall_dry_grass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tall_grass_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tall_grass_bottom.json new file mode 100644 index 000000000..aedd5f4f9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tall_grass_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/tall_grass_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tall_grass_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tall_grass_top.json new file mode 100644 index 000000000..ca1f32dd2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tall_grass_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/tall_grass_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tall_seagrass_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tall_seagrass_bottom.json new file mode 100644 index 000000000..84613667a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tall_seagrass_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_seagrass", + "textures": { + "texture": "minecraft:block/tall_seagrass_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tall_seagrass_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tall_seagrass_top.json new file mode 100644 index 000000000..ce30eefc2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tall_seagrass_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_seagrass", + "textures": { + "texture": "minecraft:block/tall_seagrass_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/target.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/target.json new file mode 100644 index 000000000..061cd7885 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/target.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/target_top", + "side": "minecraft:block/target_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_anvil.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_anvil.json new file mode 100644 index 000000000..195ede533 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_anvil.json @@ -0,0 +1,60 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/anvil", + "body": "block/anvil" + }, + "display": { + "fixed": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + } + }, + "elements": [ + { "__comment": "Anvil base", + "from": [ 2, 0, 2 ], + "to": [ 14, 4, 14 ], + "faces": { + "down": { "uv": [ 2, 2, 14, 14 ], "texture": "#body", "rotation": 180, "cullface": "down" }, + "up": { "uv": [ 2, 2, 14, 14 ], "texture": "#body", "rotation": 180 }, + "north": { "uv": [ 2, 12, 14, 16 ], "texture": "#body" }, + "south": { "uv": [ 2, 12, 14, 16 ], "texture": "#body" }, + "west": { "uv": [ 0, 2, 4, 14 ], "texture": "#body", "rotation": 90 }, + "east": { "uv": [ 4, 2, 0, 14 ], "texture": "#body", "rotation": 270 } + } + }, + { "__comment": "Lower narrow portion", + "from": [ 4, 4, 3 ], + "to": [ 12, 5, 13 ], + "faces": { + "up": { "uv": [ 4, 3, 12, 13 ], "texture": "#body", "rotation": 180 }, + "north": { "uv": [ 4, 11, 12, 12 ], "texture": "#body" }, + "south": { "uv": [ 4, 11, 12, 12 ], "texture": "#body" }, + "west": { "uv": [ 4, 3, 5, 13 ], "texture": "#body", "rotation": 90 }, + "east": { "uv": [ 5, 3, 4, 13 ], "texture": "#body", "rotation": 270 } + } + }, + { "__comment": "Wider section beneath top portion", + "from": [ 6, 5, 4 ], + "to": [ 10, 10, 12 ], + "faces": { + "north": { "uv": [ 6, 6, 10, 11 ], "texture": "#body" }, + "south": { "uv": [ 6, 6, 10, 11 ], "texture": "#body" }, + "west": { "uv": [ 5, 4, 10, 12 ], "texture": "#body", "rotation": 90 }, + "east": { "uv": [ 10, 4, 5, 12 ], "texture": "#body", "rotation": 270 } + } + }, + { "__comment": "Anvil top", + "from": [ 3, 10, 0 ], + "to": [ 13, 16, 16 ], + "faces": { + "down": { "uv": [ 3, 0, 13, 16 ], "texture": "#body", "rotation": 180 }, + "up": { "uv": [ 3, 0, 13, 16 ], "texture": "#top", "rotation": 180 }, + "north": { "uv": [ 3, 0, 13, 6 ], "texture": "#body" }, + "south": { "uv": [ 3, 0, 13, 6 ], "texture": "#body" }, + "west": { "uv": [ 10, 0, 16, 16 ], "texture": "#body", "rotation": 90 }, + "east": { "uv": [ 16, 0, 10, 16 ], "texture": "#body", "rotation": 270 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_azalea.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_azalea.json new file mode 100644 index 000000000..2c22ef841 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_azalea.json @@ -0,0 +1,60 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/azalea_plant", + "plant": "block/azalea_plant" + }, + "elements": [ + { "from": [ 0, 16, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#top" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "up" } + } + }, + { "from": [ 0, 5, 0 ], + "to": [ 16, 16, 0.01 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 11 ], "texture": "#side", "cullface": "north"}, + "south": { "uv": [ 16, 0, 0, 11 ], "texture": "#side"} + } + }, + { "from": [ 0, 5, 15.99 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { "uv": [ 16, 0, 0, 11 ], "texture": "#side"}, + "south": { "uv": [ 0, 0, 16, 11 ], "texture": "#side", "cullface": "south"} + } + }, + { "from": [ 0, 5, 0 ], + "to": [ 0.01, 16, 16 ], + "faces": { + "west": { "uv": [ 0, 0, 16, 11 ], "texture": "#side", "cullface": "west"}, + "east": { "uv": [ 16, 0, 0, 11 ], "texture": "#side"} + } + }, + { "from": [ 15.99, 5, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "west": { "uv": [ 16, 0, 0, 11 ], "texture": "#side"}, + "east": { "uv": [ 0, 0, 16, 11 ], "texture": "#side", "cullface": "east"} + } + }, + { "from": [ 0.1, 0, 8 ], + "to": [ 15.9, 15.9, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" } + } + }, + { "from": [ 8, 0, 0.1 ], + "to": [ 8, 15.9, 15.9 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_cake_with_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_cake_with_candle.json new file mode 100644 index 000000000..82a6ee824 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_cake_with_candle.json @@ -0,0 +1,51 @@ +{ + "textures": { + "particle": "block/cake_side", + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "side": "block/cake_side" + }, + "elements": [ + { "from": [ 1, 0, 1 ], + "to": [ 15, 8, 15 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "east": { "texture": "#side" } + } + }, + { + "from": [7, 8, 7], + "to": [9, 14, 9], + "faces": { + "north": {"uv": [0, 8, 2, 14], "texture": "#candle"}, + "east": {"uv": [0, 8, 2, 14], "texture": "#candle"}, + "south": {"uv": [0, 8, 2, 14], "texture": "#candle"}, + "west": {"uv": [0, 8, 2, 14], "texture": "#candle"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#candle"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#candle", "cullface": "down"} + } + }, + { + "from": [7.5, 14, 8], + "to": [8.5, 15, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 14, 8]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#candle"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#candle"} + } + }, + { + "from": [7.5, 14, 8], + "to": [8.5, 15, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 14, 8]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#candle"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#candle"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_campfire.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_campfire.json new file mode 100644 index 000000000..855876661 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_campfire.json @@ -0,0 +1,91 @@ +{ + "parent": "block/block", + "display": { + "head": { + "translation": [ 0, 10.5, 0 ] + } + }, + "textures": { + "particle": "block/campfire_log", + "log": "block/campfire_log" + }, + "elements": [ + { + "from": [ 1, 0, 0 ], + "to": [ 5, 4, 16 ], + "faces": { + "north": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "north" }, + "east": { "uv": [ 0, 1, 16, 5 ], "texture": "#lit_log" }, + "south": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "south" }, + "west": { "uv": [ 16, 0, 0, 4 ], "texture": "#log" }, + "up": { "uv": [ 0, 0, 16, 4 ], "rotation": 90, "texture": "#log" }, + "down": { "uv": [ 0, 0, 16, 4 ], "rotation": 90, "texture": "#log", "cullface": "down" } + } + }, + { + "from": [ 0, 3, 11 ], + "to": [ 16, 7, 15 ], + "faces": { + "north": { "uv": [ 16, 0, 0, 4 ], "texture": "#lit_log" }, + "east": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "east" }, + "south": { "uv": [ 0, 0, 16, 4 ], "texture": "#lit_log" }, + "west": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "west" }, + "up": { "uv": [ 0, 0, 16, 4 ], "rotation": 180, "texture": "#log" }, + "down": { "uv": [ 0, 4, 16, 8 ], "texture": "#lit_log" } + } + }, + { + "from": [ 11, 0, 0 ], + "to": [ 15, 4, 16 ], + "faces": { + "north": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "north" }, + "east": { "uv": [ 0, 0, 16, 4 ], "texture": "#log" }, + "south": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "south" }, + "west": { "uv": [ 16, 1, 0, 5 ], "texture": "#lit_log" }, + "up": { "uv": [ 0, 0, 16, 4 ], "rotation": 90, "texture": "#log" }, + "down": { "uv": [ 0, 0, 16, 4 ], "rotation": 90, "texture": "#log", "cullface": "down" } + } + }, + { + "from": [ 0, 3, 1 ], + "to": [ 16, 7, 5 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 4 ], "texture": "#lit_log" }, + "east": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "east" }, + "south": { "uv": [ 16, 0, 0, 4 ], "texture": "#lit_log" }, + "west": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "west" }, + "up": { "uv": [ 0, 0, 16, 4 ], "rotation": 180, "texture": "#log" }, + "down": { "uv": [ 0, 4, 16, 8 ], "texture": "#lit_log" } + } + }, + { + "from": [ 5, 0, 0 ], + "to": [ 11, 1, 16 ], + "faces": { + "north": {"uv": [ 0, 15, 6, 16 ], "texture": "#log", "cullface": "north" }, + "south": {"uv": [ 10, 15, 16, 16 ], "texture": "#log", "cullface": "south" }, + "up": {"uv": [ 0, 8, 16, 14 ], "rotation": 90, "texture": "#lit_log" }, + "down": {"uv": [ 0, 8, 16, 14 ], "rotation": 90, "texture": "#log", "cullface": "down" } + } + }, + { "from": [ 0.8, 1, 8 ], + "to": [ 15.2, 17, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" } + } + }, + { "from": [ 8, 1, 0.8 ], + "to": [ 8, 17, 15.2 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" } + } + } + ] +} + diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_candle.json new file mode 100644 index 000000000..111b3b6ca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_candle.json @@ -0,0 +1,35 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [7, 0, 7], + "to": [9, 6, 9], + "faces": { + "north": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [7.5, 6, 8], + "to": [8.5, 7, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 6, 8]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#all"} + } + }, + { + "from": [7.5, 6, 8], + "to": [8.5, 7, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 6, 8]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_cauldron_full.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_cauldron_full.json new file mode 100644 index 000000000..2925eba4c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_cauldron_full.json @@ -0,0 +1,155 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cauldron_side", + "top": "block/cauldron_top", + "bottom": "block/cauldron_bottom", + "side": "block/cauldron_side", + "inside": "block/cauldron_inner" + }, + "elements": [ + { + "from": [ 0, 3, 0 ], + "to": [ 2, 16, 16 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 2 ], + "to": [ 14, 4, 14 ], + "faces": { + "up": { "texture": "#inside" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 14, 3, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 0 ], + "to": [ 14, 16, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 14 ], + "to": [ 14, 16, 16 ], + "faces": { + "north": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 0, 0, 0 ], + "to": [ 4, 3, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 2 ], + "to": [ 2, 3, 4 ], + "faces": { + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 12, 0, 0 ], + "to": [ 16, 3, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 14, 0, 2 ], + "to": [ 16, 3, 4 ], + "faces": { + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 14 ], + "to": [ 4, 3, 16 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 12 ], + "to": [ 2, 3, 14 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 12, 0, 14 ], + "to": [ 16, 3, 16 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 14, 0, 12 ], + "to": [ 16, 3, 14 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 2, 4, 2 ], + "to": [ 14, 15, 14 ], + "faces": { + "up": { "texture": "#content", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_cauldron_level1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_cauldron_level1.json new file mode 100644 index 000000000..61fb386bd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_cauldron_level1.json @@ -0,0 +1,155 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cauldron_side", + "top": "block/cauldron_top", + "bottom": "block/cauldron_bottom", + "side": "block/cauldron_side", + "inside": "block/cauldron_inner" + }, + "elements": [ + { + "from": [ 0, 3, 0 ], + "to": [ 2, 16, 16 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 2 ], + "to": [ 14, 4, 14 ], + "faces": { + "up": { "texture": "#inside" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 14, 3, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 0 ], + "to": [ 14, 16, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 14 ], + "to": [ 14, 16, 16 ], + "faces": { + "north": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 0, 0, 0 ], + "to": [ 4, 3, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 2 ], + "to": [ 2, 3, 4 ], + "faces": { + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 12, 0, 0 ], + "to": [ 16, 3, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 14, 0, 2 ], + "to": [ 16, 3, 4 ], + "faces": { + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 14 ], + "to": [ 4, 3, 16 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 12 ], + "to": [ 2, 3, 14 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 12, 0, 14 ], + "to": [ 16, 3, 16 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 14, 0, 12 ], + "to": [ 16, 3, 14 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 2, 4, 2 ], + "to": [ 14, 9, 14 ], + "faces": { + "up": { "texture": "#content", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_cauldron_level2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_cauldron_level2.json new file mode 100644 index 000000000..fd7483491 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_cauldron_level2.json @@ -0,0 +1,155 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cauldron_side", + "top": "block/cauldron_top", + "bottom": "block/cauldron_bottom", + "side": "block/cauldron_side", + "inside": "block/cauldron_inner" + }, + "elements": [ + { + "from": [ 0, 3, 0 ], + "to": [ 2, 16, 16 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 2 ], + "to": [ 14, 4, 14 ], + "faces": { + "up": { "texture": "#inside" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 14, 3, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 0 ], + "to": [ 14, 16, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 14 ], + "to": [ 14, 16, 16 ], + "faces": { + "north": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 0, 0, 0 ], + "to": [ 4, 3, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 2 ], + "to": [ 2, 3, 4 ], + "faces": { + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 12, 0, 0 ], + "to": [ 16, 3, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 14, 0, 2 ], + "to": [ 16, 3, 4 ], + "faces": { + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 14 ], + "to": [ 4, 3, 16 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 12 ], + "to": [ 2, 3, 14 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 12, 0, 14 ], + "to": [ 16, 3, 16 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 14, 0, 12 ], + "to": [ 16, 3, 14 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 2, 4, 2 ], + "to": [ 14, 12, 14 ], + "faces": { + "up": { "texture": "#content", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_left.json new file mode 100644 index 000000000..f224a1e88 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_left.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [10, 0, 0], + "to": [16, 8, 0], + "faces": { + "north": {"uv": [0, 8, 6, 16], "texture": "#texture", "cullface": "north"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_mid.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_mid.json new file mode 100644 index 000000000..a1c54d921 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_mid.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [5, 0, 0], + "to": [10, 8, 0], + "faces": { + "north": {"uv": [6, 8, 11, 16], "texture": "#texture", "cullface": "north"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_right.json new file mode 100644 index 000000000..5acdabdfa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_right.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [5, 8, 0], + "faces": { + "north": {"uv": [11, 8, 16, 16], "texture": "#texture", "cullface": "north"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_left.json new file mode 100644 index 000000000..da9fc5913 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_left.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [10, 8, 0], + "to": [16, 16, 0], + "faces": { + "north": {"uv": [0, 0, 6, 8], "texture": "#texture", "cullface": "north"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_mid.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_mid.json new file mode 100644 index 000000000..25cc8308d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_mid.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [5, 8, 0], + "to": [10, 16, 0], + "faces": { + "north": {"uv": [6, 0, 11, 8], "texture": "#texture", "cullface": "north"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_right.json new file mode 100644 index 000000000..077f1276e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_right.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [0, 8, 0], + "to": [5, 16, 0], + "faces": { + "north": {"uv": [11, 0, 16, 8], "texture": "#texture", "cullface": "north"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chorus_flower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chorus_flower.json new file mode 100644 index 000000000..06b850dd0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_chorus_flower.json @@ -0,0 +1,76 @@ +{ + "parent": "block/block", + "textures": { + "bottom": "block/chorus_plant", + "particle": "#texture" + }, + "elements": [ + { + "from": [ 2, 14, 2 ], + "to": [ 14, 16, 14 ], + "faces": { + "up": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture" }, + "north": { "uv": [ 2, 0, 14, 2 ], "texture": "#bottom" }, + "south": { "uv": [ 2, 0, 14, 2 ], "texture": "#bottom" }, + "west": { "uv": [ 2, 0, 14, 2 ], "texture": "#bottom" }, + "east": { "uv": [ 2, 0, 14, 2 ], "texture": "#bottom" } + } + }, + { + "from": [ 0, 2, 2 ], + "to": [ 2, 14, 14 ], + "faces": { + "down": { "uv": [ 16, 14, 14, 2 ], "texture": "#bottom" }, + "up": { "uv": [ 0, 2, 2, 14 ], "texture": "#bottom" }, + "north": { "uv": [ 14, 2, 16, 14 ], "texture": "#bottom" }, + "south": { "uv": [ 0, 2, 2, 14 ], "texture": "#bottom" }, + "west": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture" } + } + }, + { + "from": [ 2, 2, 0 ], + "to": [ 14, 14, 2 ], + "faces": { + "down": { "uv": [ 14, 2, 2, 0 ], "texture": "#bottom" }, + "up": { "uv": [ 2, 0, 14, 2 ], "texture": "#bottom" }, + "north": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture" }, + "west": { "uv": [ 0, 2, 2, 14 ], "texture": "#bottom" }, + "east": { "uv": [ 14, 2, 16, 14 ], "texture": "#bottom" } + } + }, + { + "from": [ 2, 2, 14 ], + "to": [ 14, 14, 16 ], + "faces": { + "down": { "uv": [ 14, 16, 2, 14 ], "texture": "#bottom" }, + "up": { "uv": [ 2, 14, 14, 16 ], "texture": "#bottom" }, + "south": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture" }, + "west": { "uv": [ 14, 2, 16, 14 ], "texture": "#bottom" }, + "east": { "uv": [ 0, 2, 2, 14 ], "texture": "#bottom" } + } + }, + { + "from": [ 14, 2, 2 ], + "to": [ 16, 14, 14 ], + "faces": { + "down": { "uv": [ 2, 14, 0, 2 ], "texture": "#bottom" }, + "up": { "uv": [ 14, 2, 16, 14 ], "texture": "#bottom" }, + "north": { "uv": [ 0, 2, 2, 14 ], "texture": "#bottom" }, + "south": { "uv": [ 14, 2, 16, 14 ], "texture": "#bottom" }, + "east": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture" } + } + }, + { + "from": [ 2, 0, 2 ], + "to": [ 14, 14, 14 ], + "faces": { + "up": { "uv": [ 2, 2, 14, 14 ], "texture": "#bottom" }, + "down": { "uv": [ 14, 14, 2, 2 ], "texture": "#bottom" }, + "north": { "uv": [ 2, 2, 14, 16 ], "texture": "#bottom" }, + "south": { "uv": [ 2, 2, 14, 16 ], "texture": "#bottom" }, + "west": { "uv": [ 2, 2, 14, 16 ], "texture": "#bottom" }, + "east": { "uv": [ 2, 2, 14, 16 ], "texture": "#bottom" } + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_command_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_command_block.json new file mode 100644 index 000000000..76cbff1ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_command_block.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube_directional", + "textures": { + "particle": "#back", + "down": "#side", + "up": "#side", + "north": "#front", + "east": "#side", + "south": "#back", + "west": "#side" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate.json new file mode 100644 index 000000000..0d41bf656 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate.json @@ -0,0 +1,112 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#particle" + }, + "elements": [ + { + "name": "Left-hand post", + "from": [0, 5, 7], + "to": [2, 16, 9], + "faces": { + "north": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "east": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "south": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "west": {"uv": [14, 2, 16, 13], "texture": "#texture", "cullface": "west"}, + "up": {"uv": [14, 0, 16, 2], "texture": "#texture"}, + "down": {"uv": [16, 13, 14, 15], "texture": "#texture"} + } + }, + { + "name": "Right-hand post", + "from": [14, 5, 7], + "to": [16, 16, 9], + "faces": { + "north": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "east": {"uv": [0, 2, 2, 13], "texture": "#texture", "cullface": "east"}, + "south": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "west": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#texture"}, + "down": {"uv": [2, 13, 0, 15], "texture": "#texture"} + } + }, + { + "name": "Inner vertical post of left-hand gate door", + "from": [6, 6, 7], + "to": [8, 15, 9], + "faces": { + "north": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "south": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "west": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "up": {"uv": [8, 1, 10, 3], "texture": "#texture"}, + "down": {"uv": [8, 14, 10, 12], "texture": "#texture"} + } + }, + { + "name": "Inner vertical post of right-hand gate door", + "from": [8, 6, 7], + "to": [10, 15, 9], + "faces": { + "north": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "east": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "south": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "up": {"uv": [6, 1, 8, 3], "texture": "#texture"}, + "down": {"uv": [6, 14, 8, 12], "texture": "#texture"} + } + }, + { + "name": "Lower horizontal bar of left-hand gate door", + "from": [2, 6, 7], + "to": [6, 9, 9], + "faces": { + "north": {"uv": [10, 3, 14, 6], "texture": "#texture"}, + "south": {"uv": [10, 9, 14, 12], "texture": "#texture"}, + "up": {"uv": [10, 1, 14, 3], "texture": "#texture"}, + "down": {"uv": [10, 14, 14, 12], "texture": "#texture"} + } + }, + { + "name": "Upper horizontal bar of left-hand gate door", + "from": [2, 12, 7], + "to": [6, 15, 9], + "faces": { + "north": {"uv": [10, 3, 14, 6], "texture": "#texture"}, + "south": {"uv": [10, 9, 14, 12], "texture": "#texture"}, + "up": {"uv": [10, 1, 14, 3], "texture": "#texture"}, + "down": {"uv": [10, 14, 14, 12], "texture": "#texture"} + } + }, + { + "name": "Lower horizontal bar of right-hand gate door", + "from": [10, 6, 7], + "to": [14, 9, 9], + "faces": { + "north": {"uv": [2, 3, 6, 6], "texture": "#texture"}, + "south": {"uv": [2, 9, 6, 12], "texture": "#texture"}, + "up": {"uv": [2, 1, 6, 3], "texture": "#texture"}, + "down": {"uv": [2, 14, 6, 12], "texture": "#texture"} + } + }, + { + "name": "Upper horizontal bar of right-hand gate door", + "from": [10, 12, 7], + "to": [14, 15, 9], + "faces": { + "north": {"uv": [2, 3, 6, 6], "texture": "#texture"}, + "south": {"uv": [2, 9, 6, 12], "texture": "#texture"}, + "up": {"uv": [2, 1, 6, 3], "texture": "#texture"}, + "down": {"uv": [2, 14, 6, 12], "texture": "#texture"} + } + } + ], + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, -1, 0], + "scale": [0.8, 0.8, 0.8] + }, + "head": { + "translation": [0, -3, -6] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_open.json new file mode 100644 index 000000000..727da9c55 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_open.json @@ -0,0 +1,103 @@ +{ + "textures": { + "particle": "#particle" + }, + "elements": [ + { + "name": "Left-hand post", + "from": [0, 5, 7], + "to": [2, 16, 9], + "faces": { + "north": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "east": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "south": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "west": {"uv": [14, 2, 16, 13], "texture": "#texture", "cullface": "west"}, + "up": {"uv": [14, 0, 16, 2], "texture": "#texture"}, + "down": {"uv": [16, 13, 14, 15], "texture": "#texture"} + } + }, + { + "name": "Right-hand post", + "from": [14, 5, 7], + "to": [16, 16, 9], + "faces": { + "north": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "east": {"uv": [0, 2, 2, 13], "texture": "#texture", "cullface": "east"}, + "south": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "west": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#texture"}, + "down": {"uv": [2, 13, 0, 15], "texture": "#texture"} + } + }, + { + "name": "Inner vertical post of left-hand gate door", + "from": [0, 6, 13], + "to": [2, 15, 15], + "faces": { + "north": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "east": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "south": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "west": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "up": {"uv": [8, 1, 10, 3], "texture": "#texture"}, + "down": {"uv": [8, 14, 10, 12], "texture": "#texture"} + } + }, + { + "name": "Inner vertical post of right-hand gate door", + "from": [14, 6, 13], + "to": [16, 15, 15], + "faces": { + "north": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "east": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "south": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "west": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "up": {"uv": [6, 1, 8, 3], "texture": "#texture"}, + "down": {"uv": [6, 14, 8, 12], "texture": "#texture"} + } + }, + { + "name": "Lower horizontal bar of left-hand gate door", + "from": [0, 6, 9], + "to": [2, 9, 13], + "faces": { + "east": {"uv": [2, 9, 6, 12], "texture": "#texture"}, + "west": {"uv": [2, 3, 6, 6], "texture": "#texture"}, + "up": {"uv": [2, 1, 6, 3], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [2, 12, 6, 14], "rotation": 270, "texture": "#texture"} + } + }, + { + "name": "Upper horizontal bar of left-hand gate door", + "from": [0, 12, 9], + "to": [2, 15, 13], + "faces": { + "east": {"uv": [2, 9, 6, 12], "texture": "#texture"}, + "west": {"uv": [2, 3, 6, 6], "texture": "#texture"}, + "up": {"uv": [2, 1, 6, 3], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [2, 12, 6, 14], "rotation": 270, "texture": "#texture"} + } + }, + { + "name": "Lower horizontal bar of left-hand gate door", + "from": [14, 6, 9], + "to": [16, 9, 13], + "faces": { + "east": {"uv": [10, 9, 14, 12], "texture": "#texture"}, + "west": {"uv": [10, 3, 14, 6], "texture": "#texture"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [10, 12, 14, 14], "rotation": 270, "texture": "#texture"} + } + }, + { + "name": "Upper horizontal bar of left-hand gate door", + "from": [14, 12, 9], + "to": [16, 15, 13], + "faces": { + "east": {"uv": [10, 9, 14, 12], "texture": "#texture"}, + "west": {"uv": [14, 3, 10, 6], "texture": "#texture"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [10, 12, 14, 14], "rotation": 270, "texture": "#texture"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_wall.json new file mode 100644 index 000000000..45f48fc8b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_wall.json @@ -0,0 +1,102 @@ +{ + "ambientocclusion": true, + "textures": { + "particle": "#particle" + }, + "elements": [ + { + "name": "Left-hand post", + "from": [0, 2, 7], + "to": [2, 13, 9], + "faces": { + "north": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "east": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "south": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "west": {"uv": [14, 2, 16, 13], "texture": "#texture", "cullface": "west"}, + "up": {"uv": [14, 0, 16, 2], "texture": "#texture"}, + "down": {"uv": [16, 13, 14, 15], "texture": "#texture"} + } + }, + { + "name": "Right-hand post", + "from": [14, 2, 7], + "to": [16, 13, 9], + "faces": { + "north": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "east": {"uv": [0, 2, 2, 13], "texture": "#texture", "cullface": "east"}, + "south": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "west": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#texture"}, + "down": {"uv": [2, 13, 0, 15], "texture": "#texture"} + } + }, + { + "name": "Inner vertical post of left-hand gate door", + "from": [6, 3, 7], + "to": [8, 12, 9], + "faces": { + "north": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "south": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "west": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "up": {"uv": [8, 1, 10, 3], "texture": "#texture"}, + "down": {"uv": [8, 14, 10, 12], "texture": "#texture"} + } + }, + { + "name": "Inner vertical post of right-hand gate door", + "from": [8, 3, 7], + "to": [10, 12, 9], + "faces": { + "north": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "east": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "south": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "up": {"uv": [6, 1, 8, 3], "texture": "#texture"}, + "down": {"uv": [6, 14, 8, 12], "texture": "#texture"} + } + }, + { + "name": "Lower horizontal bar of left-hand gate door", + "from": [2, 3, 7], + "to": [6, 6, 9], + "faces": { + "north": {"uv": [10, 3, 14, 6], "texture": "#texture"}, + "south": {"uv": [10, 9, 14, 12], "texture": "#texture"}, + "up": {"uv": [10, 1, 14, 3], "texture": "#texture"}, + "down": {"uv": [10, 14, 14, 12], "texture": "#texture"} + } + }, + { + "name": "Upper horizontal bar of left-hand gate door", + "from": [2, 9, 7], + "to": [6, 12, 9], + "faces": { + "north": {"uv": [10, 3, 14, 6], "texture": "#texture"}, + "south": {"uv": [10, 9, 14, 12], "texture": "#texture"}, + "up": {"uv": [10, 1, 14, 3], "texture": "#texture"}, + "down": {"uv": [10, 14, 14, 12], "texture": "#texture"} + } + }, + { + "name": "Lower horizontal bar of right-hand gate door", + "from": [10, 3, 7], + "to": [14, 6, 9], + "faces": { + "north": {"uv": [2, 3, 6, 6], "texture": "#texture"}, + "south": {"uv": [2, 9, 6, 12], "texture": "#texture"}, + "up": {"uv": [2, 1, 6, 3], "texture": "#texture"}, + "down": {"uv": [2, 14, 6, 12], "texture": "#texture"} + } + }, + { + "name": "Upper horizontal bar of right-hand gate door", + "from": [10, 9, 7], + "to": [14, 12, 9], + "faces": { + "north": {"uv": [2, 3, 6, 6], "texture": "#texture"}, + "south": {"uv": [2, 9, 6, 12], "texture": "#texture"}, + "up": {"uv": [2, 1, 6, 3], "texture": "#texture"}, + "down": {"uv": [2, 14, 6, 12], "texture": "#texture"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_wall_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_wall_open.json new file mode 100644 index 000000000..5b5a81d5e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_wall_open.json @@ -0,0 +1,104 @@ +{ + "ambientocclusion": true, + "textures": { + "particle": "#particle" + }, + "elements": [ + { + "name": "Left-hand post", + "from": [0, 2, 7], + "to": [2, 13, 9], + "faces": { + "north": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "east": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "south": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "west": {"uv": [14, 2, 16, 13], "texture": "#texture", "cullface": "west"}, + "up": {"uv": [14, 0, 16, 2], "texture": "#texture"}, + "down": {"uv": [16, 13, 14, 15], "texture": "#texture"} + } + }, + { + "name": "Right-hand post", + "from": [14, 2, 7], + "to": [16, 13, 9], + "faces": { + "north": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "east": {"uv": [0, 2, 2, 13], "texture": "#texture", "cullface": "east"}, + "south": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "west": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#texture"}, + "down": {"uv": [2, 13, 0, 15], "texture": "#texture"} + } + }, + { + "name": "Inner vertical post of left-hand gate door", + "from": [0, 3, 13], + "to": [2, 12, 15], + "faces": { + "north": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "east": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "south": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "west": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "up": {"uv": [8, 1, 10, 3], "texture": "#texture"}, + "down": {"uv": [8, 14, 10, 12], "texture": "#texture"} + } + }, + { + "name": "Inner vertical post of right-hand gate door", + "from": [14, 3, 13], + "to": [16, 12, 15], + "faces": { + "north": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "east": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "south": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "west": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "up": {"uv": [6, 1, 8, 3], "texture": "#texture"}, + "down": {"uv": [6, 14, 8, 12], "texture": "#texture"} + } + }, + { + "name": "Lower horizontal bar of left-hand gate door", + "from": [0, 3, 9], + "to": [2, 6, 13], + "faces": { + "east": {"uv": [2, 9, 6, 12], "texture": "#texture"}, + "west": {"uv": [2, 3, 6, 6], "texture": "#texture"}, + "up": {"uv": [2, 1, 6, 3], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [2, 12, 6, 14], "rotation": 270, "texture": "#texture"} + } + }, + { + "name": "Upper horizontal bar of left-hand gate door", + "from": [0, 9, 9], + "to": [2, 12, 13], + "faces": { + "east": {"uv": [2, 9, 6, 12], "texture": "#texture"}, + "west": {"uv": [2, 3, 6, 6], "texture": "#texture"}, + "up": {"uv": [2, 1, 6, 3], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [2, 12, 6, 14], "rotation": 270, "texture": "#texture"} + } + }, + { + "name": "Lower horizontal bar of left-hand gate door", + "from": [14, 3, 9], + "to": [16, 6, 13], + "faces": { + "east": {"uv": [10, 9, 14, 12], "texture": "#texture"}, + "west": {"uv": [10, 3, 14, 6], "texture": "#texture"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [10, 12, 14, 14], "rotation": 270, "texture": "#texture"} + } + }, + { + "name": "Upper horizontal bar of left-hand gate door", + "from": [14, 9, 9], + "to": [16, 12, 13], + "faces": { + "east": {"uv": [10, 9, 14, 12], "texture": "#texture"}, + "west": {"uv": [14, 3, 10, 6], "texture": "#texture"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [10, 12, 14, 14], "rotation": 270, "texture": "#texture"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_daylight_detector.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_daylight_detector.json new file mode 100644 index 000000000..ef2a00217 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_daylight_detector.json @@ -0,0 +1,19 @@ +{ + "parent": "block/thin_block", + "textures": { + "particle": "#top" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 6, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 10, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 10, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 10, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 10, 16, 16 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_farmland.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_farmland.json new file mode 100644 index 000000000..4000d7a24 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_farmland.json @@ -0,0 +1,19 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#dirt" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 15, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#dirt", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 1, 16, 16 ], "texture": "#dirt", "cullface": "north" }, + "south": { "uv": [ 0, 1, 16, 16 ], "texture": "#dirt", "cullface": "south" }, + "west": { "uv": [ 0, 1, 16, 16 ], "texture": "#dirt", "cullface": "west" }, + "east": { "uv": [ 0, 1, 16, 16 ], "texture": "#dirt", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fence_gate.json new file mode 100644 index 000000000..b1a090fa3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fence_gate.json @@ -0,0 +1,107 @@ +{ "parent": "block/block", + "display": { + "gui": { + "rotation": [ 30, 45, 0 ], + "translation": [ 0, -1, 0], + "scale":[ 0.8, 0.8, 0.8 ] + }, + "head": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, -3, -6], + "scale":[ 1, 1, 1] + } + }, + "textures": { + "particle": "#texture" + }, + "elements": [ + { "__comment": "Left-hand post", + "from": [ 0, 5, 7 ], + "to": [ 2, 16, 9 ], + "faces": { + "down": { "uv": [ 0, 7, 2, 9 ], "texture": "#texture" }, + "up": { "uv": [ 0, 7, 2, 9 ], "texture": "#texture" }, + "north": { "uv": [ 0, 0, 2, 11 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 2, 11 ], "texture": "#texture" }, + "west": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture" } + } + }, + { "__comment": "Right-hand post", + "from": [ 14, 5, 7 ], + "to": [ 16, 16, 9 ], + "faces": { + "down": { "uv": [ 14, 7, 16, 9 ], "texture": "#texture" }, + "up": { "uv": [ 14, 7, 16, 9 ], "texture": "#texture" }, + "north": { "uv": [ 14, 0, 16, 11 ], "texture": "#texture" }, + "south": { "uv": [ 14, 0, 16, 11 ], "texture": "#texture" }, + "west": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture", "cullface": "east" } + } + }, + { "__comment": "Inner vertical post of left-hand gate door", + "from": [ 6, 6, 7 ], + "to": [ 8, 15, 9 ], + "faces": { + "down": { "uv": [ 6, 7, 8, 9 ], "texture": "#texture" }, + "up": { "uv": [ 6, 7, 8, 9 ], "texture": "#texture" }, + "north": { "uv": [ 6, 1, 8, 10 ], "texture": "#texture" }, + "south": { "uv": [ 6, 1, 8, 10 ], "texture": "#texture" }, + "west": { "uv": [ 7, 1, 9, 10 ], "texture": "#texture" }, + "east": { "uv": [ 7, 1, 9, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Inner vertical post of right-hand gate door", + "from": [ 8, 6, 7 ], + "to": [ 10, 15, 9 ], + "faces": { + "down": { "uv": [ 8, 7, 10, 9 ], "texture": "#texture" }, + "up": { "uv": [ 8, 7, 10, 9 ], "texture": "#texture" }, + "north": { "uv": [ 8, 1, 10, 10 ], "texture": "#texture" }, + "south": { "uv": [ 8, 1, 10, 10 ], "texture": "#texture" }, + "west": { "uv": [ 7, 1, 9, 10 ], "texture": "#texture" }, + "east": { "uv": [ 7, 1, 9, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Lower horizontal bar of left-hand gate door", + "from": [ 2, 6, 7 ], + "to": [ 6, 9, 9 ], + "faces": { + "down": { "uv": [ 2, 7, 6, 9 ], "texture": "#texture" }, + "up": { "uv": [ 2, 7, 6, 9 ], "texture": "#texture" }, + "north": { "uv": [ 2, 7, 6, 10 ], "texture": "#texture" }, + "south": { "uv": [ 2, 7, 6, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Upper horizontal bar of left-hand gate door", + "from": [ 2, 12, 7 ], + "to": [ 6, 15, 9 ], + "faces": { + "down": { "uv": [ 2, 7, 6, 9 ], "texture": "#texture" }, + "up": { "uv": [ 2, 7, 6, 9 ], "texture": "#texture" }, + "north": { "uv": [ 2, 1, 6, 4 ], "texture": "#texture" }, + "south": { "uv": [ 2, 1, 6, 4 ], "texture": "#texture" } + } + }, + { "__comment": "Lower horizontal bar of right-hand gate door", + "from": [ 10, 6, 7 ], + "to": [ 14, 9, 9 ], + "faces": { + "down": { "uv": [ 10, 7, 14, 9 ], "texture": "#texture" }, + "up": { "uv": [ 10, 7, 14, 9 ], "texture": "#texture" }, + "north": { "uv": [ 10, 7, 14, 10 ], "texture": "#texture" }, + "south": { "uv": [ 10, 7, 14, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Upper horizontal bar of right-hand gate door", + "from": [ 10, 12, 7 ], + "to": [ 14, 15, 9 ], + "faces": { + "down": { "uv": [ 10, 7, 14, 9 ], "texture": "#texture" }, + "up": { "uv": [ 10, 7, 14, 9 ], "texture": "#texture" }, + "north": { "uv": [ 10, 1, 14, 4 ], "texture": "#texture" }, + "south": { "uv": [ 10, 1, 14, 4 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fence_gate_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fence_gate_open.json new file mode 100644 index 000000000..af2062a11 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fence_gate_open.json @@ -0,0 +1,95 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "__comment": "Left-hand post", + "from": [ 0, 5, 7 ], + "to": [ 2, 16, 9 ], + "faces": { + "down": { "uv": [ 0, 7, 2, 9 ], "texture": "#texture" }, + "up": { "uv": [ 0, 7, 2, 9 ], "texture": "#texture" }, + "north": { "uv": [ 0, 0, 2, 11 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 2, 11 ], "texture": "#texture" }, + "west": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture" } + } + }, + { "__comment": "Right-hand post", + "from": [ 14, 5, 7 ], + "to": [ 16, 16, 9 ], + "faces": { + "down": { "uv": [ 14, 7, 16, 9 ], "texture": "#texture" }, + "up": { "uv": [ 14, 7, 16, 9 ], "texture": "#texture" }, + "north": { "uv": [ 14, 0, 16, 11 ], "texture": "#texture" }, + "south": { "uv": [ 14, 0, 16, 11 ], "texture": "#texture" }, + "west": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture", "cullface": "east" } + } + }, + { "__comment": "Inner vertical post of left-hand gate door", + "from": [ 0, 6, 13 ], + "to": [ 2, 15, 15 ], + "faces": { + "down": { "uv": [ 0, 13, 2, 15 ], "texture": "#texture" }, + "up": { "uv": [ 0, 13, 2, 15 ], "texture": "#texture" }, + "north": { "uv": [ 0, 1, 2, 10 ], "texture": "#texture" }, + "south": { "uv": [ 0, 1, 2, 10 ], "texture": "#texture" }, + "west": { "uv": [ 13, 1, 15, 10 ], "texture": "#texture" }, + "east": { "uv": [ 13, 1, 15, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Inner vertical post of right-hand gate door", + "from": [ 14, 6, 13 ], + "to": [ 16, 15, 15 ], + "faces": { + "down": { "uv": [ 14, 13, 16, 15 ], "texture": "#texture" }, + "up": { "uv": [ 14, 13, 16, 15 ], "texture": "#texture" }, + "north": { "uv": [ 14, 1, 16, 10 ], "texture": "#texture" }, + "south": { "uv": [ 14, 1, 16, 10 ], "texture": "#texture" }, + "west": { "uv": [ 13, 1, 15, 10 ], "texture": "#texture" }, + "east": { "uv": [ 13, 1, 15, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Lower horizontal bar of left-hand gate door", + "from": [ 0, 6, 9 ], + "to": [ 2, 9, 13 ], + "faces": { + "down": { "uv": [ 0, 9, 2, 13 ], "texture": "#texture" }, + "up": { "uv": [ 0, 9, 2, 13 ], "texture": "#texture" }, + "west": { "uv": [ 13, 7, 15, 10 ], "texture": "#texture" }, + "east": { "uv": [ 13, 7, 15, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Upper horizontal bar of left-hand gate door", + "from": [ 0, 12, 9 ], + "to": [ 2, 15, 13 ], + "faces": { + "down": { "uv": [ 0, 9, 2, 13 ], "texture": "#texture" }, + "up": { "uv": [ 0, 9, 2, 13 ], "texture": "#texture" }, + "west": { "uv": [ 13, 1, 15, 4 ], "texture": "#texture" }, + "east": { "uv": [ 13, 1, 15, 4 ], "texture": "#texture" } + } + }, + { "__comment": "Lower horizontal bar of left-hand gate door", + "from": [ 14, 6, 9 ], + "to": [ 16, 9, 13 ], + "faces": { + "down": { "uv": [ 14, 9, 16, 13 ], "texture": "#texture" }, + "up": { "uv": [ 14, 9, 16, 13 ], "texture": "#texture" }, + "west": { "uv": [ 13, 7, 15, 10 ], "texture": "#texture" }, + "east": { "uv": [ 13, 7, 15, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Upper horizontal bar of left-hand gate door", + "from": [ 14, 12, 9 ], + "to": [ 16, 15, 13 ], + "faces": { + "down": { "uv": [ 14, 9, 16, 13 ], "texture": "#texture" }, + "up": { "uv": [ 14, 9, 16, 13 ], "texture": "#texture" }, + "west": { "uv": [ 13, 1, 15, 4 ], "texture": "#texture" }, + "east": { "uv": [ 13, 1, 15, 4 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fence_gate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fence_gate_wall.json new file mode 100644 index 000000000..7b301338d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fence_gate_wall.json @@ -0,0 +1,96 @@ +{ + "ambientocclusion": true, + "textures": { + "particle": "#texture" + }, + "elements": [ + { "__comment": "Left-hand post", + "from": [ 0, 2, 7 ], + "to": [ 2, 13, 9 ], + "faces": { + "down": { "uv": [ 0, 7, 2, 9 ], "texture": "#texture" }, + "up": { "uv": [ 0, 7, 2, 9 ], "texture": "#texture" }, + "north": { "uv": [ 0, 0, 2, 11 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 2, 11 ], "texture": "#texture" }, + "west": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture" } + } + }, + { "__comment": "Right-hand post", + "from": [ 14, 2, 7 ], + "to": [ 16, 13, 9 ], + "faces": { + "down": { "uv": [ 14, 7, 16, 9 ], "texture": "#texture" }, + "up": { "uv": [ 14, 7, 16, 9 ], "texture": "#texture" }, + "north": { "uv": [ 14, 0, 16, 11 ], "texture": "#texture" }, + "south": { "uv": [ 14, 0, 16, 11 ], "texture": "#texture" }, + "west": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture", "cullface": "east" } + } + }, + { "__comment": "Inner vertical post of left-hand gate door", + "from": [ 6, 3, 7 ], + "to": [ 8, 12, 9 ], + "faces": { + "down": { "uv": [ 6, 7, 8, 9 ], "texture": "#texture" }, + "up": { "uv": [ 6, 7, 8, 9 ], "texture": "#texture" }, + "north": { "uv": [ 6, 1, 8, 10 ], "texture": "#texture" }, + "south": { "uv": [ 6, 1, 8, 10 ], "texture": "#texture" }, + "west": { "uv": [ 7, 1, 9, 10 ], "texture": "#texture" }, + "east": { "uv": [ 7, 1, 9, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Inner vertical post of right-hand gate door", + "from": [ 8, 3, 7 ], + "to": [ 10, 12, 9 ], + "faces": { + "down": { "uv": [ 8, 7, 10, 9 ], "texture": "#texture" }, + "up": { "uv": [ 8, 7, 10, 9 ], "texture": "#texture" }, + "north": { "uv": [ 8, 1, 10, 10 ], "texture": "#texture" }, + "south": { "uv": [ 8, 1, 10, 10 ], "texture": "#texture" }, + "west": { "uv": [ 7, 1, 9, 10 ], "texture": "#texture" }, + "east": { "uv": [ 7, 1, 9, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Lower horizontal bar of left-hand gate door", + "from": [ 2, 3, 7 ], + "to": [ 6, 6, 9 ], + "faces": { + "down": { "uv": [ 2, 7, 6, 9 ], "texture": "#texture" }, + "up": { "uv": [ 2, 7, 6, 9 ], "texture": "#texture" }, + "north": { "uv": [ 2, 7, 6, 10 ], "texture": "#texture" }, + "south": { "uv": [ 2, 7, 6, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Upper horizontal bar of left-hand gate door", + "from": [ 2, 9, 7 ], + "to": [ 6, 12, 9 ], + "faces": { + "down": { "uv": [ 2, 7, 6, 9 ], "texture": "#texture" }, + "up": { "uv": [ 2, 7, 6, 9 ], "texture": "#texture" }, + "north": { "uv": [ 2, 1, 6, 4 ], "texture": "#texture" }, + "south": { "uv": [ 2, 1, 6, 4 ], "texture": "#texture" } + } + }, + { "__comment": "Lower horizontal bar of right-hand gate door", + "from": [ 10, 3, 7 ], + "to": [ 14, 6, 9 ], + "faces": { + "down": { "uv": [ 10, 7, 14, 9 ], "texture": "#texture" }, + "up": { "uv": [ 10, 7, 14, 9 ], "texture": "#texture" }, + "north": { "uv": [ 10, 7, 14, 10 ], "texture": "#texture" }, + "south": { "uv": [ 10, 7, 14, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Upper horizontal bar of right-hand gate door", + "from": [ 10, 9, 7 ], + "to": [ 14, 12, 9 ], + "faces": { + "down": { "uv": [ 10, 7, 14, 9 ], "texture": "#texture" }, + "up": { "uv": [ 10, 7, 14, 9 ], "texture": "#texture" }, + "north": { "uv": [ 10, 1, 14, 4 ], "texture": "#texture" }, + "south": { "uv": [ 10, 1, 14, 4 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fence_gate_wall_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fence_gate_wall_open.json new file mode 100644 index 000000000..6fddae61c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fence_gate_wall_open.json @@ -0,0 +1,96 @@ +{ + "ambientocclusion": true, + "textures": { + "particle": "#texture" + }, + "elements": [ + { "__comment": "Left-hand post", + "from": [ 0, 2, 7 ], + "to": [ 2, 13, 9 ], + "faces": { + "down": { "uv": [ 0, 7, 2, 9 ], "texture": "#texture" }, + "up": { "uv": [ 0, 7, 2, 9 ], "texture": "#texture" }, + "north": { "uv": [ 0, 0, 2, 11 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 2, 11 ], "texture": "#texture" }, + "west": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture" } + } + }, + { "__comment": "Right-hand post", + "from": [ 14, 2, 7 ], + "to": [ 16, 13, 9 ], + "faces": { + "down": { "uv": [ 14, 7, 16, 9 ], "texture": "#texture" }, + "up": { "uv": [ 14, 7, 16, 9 ], "texture": "#texture" }, + "north": { "uv": [ 14, 0, 16, 11 ], "texture": "#texture" }, + "south": { "uv": [ 14, 0, 16, 11 ], "texture": "#texture" }, + "west": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture", "cullface": "east" } + } + }, + { "__comment": "Inner vertical post of left-hand gate door", + "from": [ 0, 3, 13 ], + "to": [ 2, 12, 15 ], + "faces": { + "down": { "uv": [ 0, 13, 2, 15 ], "texture": "#texture" }, + "up": { "uv": [ 0, 13, 2, 15 ], "texture": "#texture" }, + "north": { "uv": [ 0, 1, 2, 10 ], "texture": "#texture" }, + "south": { "uv": [ 0, 1, 2, 10 ], "texture": "#texture" }, + "west": { "uv": [ 13, 1, 15, 10 ], "texture": "#texture" }, + "east": { "uv": [ 13, 1, 15, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Inner vertical post of right-hand gate door", + "from": [ 14, 3, 13 ], + "to": [ 16, 12, 15 ], + "faces": { + "down": { "uv": [ 14, 13, 16, 15 ], "texture": "#texture" }, + "up": { "uv": [ 14, 13, 16, 15 ], "texture": "#texture" }, + "north": { "uv": [ 14, 1, 16, 10 ], "texture": "#texture" }, + "south": { "uv": [ 14, 1, 16, 10 ], "texture": "#texture" }, + "west": { "uv": [ 13, 1, 15, 10 ], "texture": "#texture" }, + "east": { "uv": [ 13, 1, 15, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Lower horizontal bar of left-hand gate door", + "from": [ 0, 3, 9 ], + "to": [ 2, 6, 13 ], + "faces": { + "down": { "uv": [ 0, 9, 2, 13 ], "texture": "#texture" }, + "up": { "uv": [ 0, 9, 2, 13 ], "texture": "#texture" }, + "west": { "uv": [ 13, 7, 15, 10 ], "texture": "#texture" }, + "east": { "uv": [ 13, 7, 15, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Upper horizontal bar of left-hand gate door", + "from": [ 0, 9, 9 ], + "to": [ 2, 12, 13 ], + "faces": { + "down": { "uv": [ 0, 9, 2, 13 ], "texture": "#texture" }, + "up": { "uv": [ 0, 9, 2, 13 ], "texture": "#texture" }, + "west": { "uv": [ 13, 1, 15, 4 ], "texture": "#texture" }, + "east": { "uv": [ 13, 1, 15, 4 ], "texture": "#texture" } + } + }, + { "__comment": "Lower horizontal bar of left-hand gate door", + "from": [ 14, 3, 9 ], + "to": [ 16, 6, 13 ], + "faces": { + "down": { "uv": [ 14, 9, 16, 13 ], "texture": "#texture" }, + "up": { "uv": [ 14, 9, 16, 13 ], "texture": "#texture" }, + "west": { "uv": [ 13, 7, 15, 10 ], "texture": "#texture" }, + "east": { "uv": [ 13, 7, 15, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Upper horizontal bar of left-hand gate door", + "from": [ 14, 9, 9 ], + "to": [ 16, 12, 13 ], + "faces": { + "down": { "uv": [ 14, 9, 16, 13 ], "texture": "#texture" }, + "up": { "uv": [ 14, 9, 16, 13 ], "texture": "#texture" }, + "west": { "uv": [ 13, 1, 15, 4 ], "texture": "#texture" }, + "east": { "uv": [ 13, 1, 15, 4 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fire_floor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fire_floor.json new file mode 100644 index 000000000..a5e46b559 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fire_floor.json @@ -0,0 +1,32 @@ +{ + "textures": { + "particle": "#fire" + }, + "ambientocclusion": false, + "elements": [ + { "from": [ 0, 0, 8.8 ], + "to": [ 16, 22.4, 8.8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "x", "angle": -22.5, "rescale": true }, + "shade": false, + "faces": { "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" }} + }, + { "from": [ 0, 0, 7.2 ], + "to": [ 16, 22.4, 7.2 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "x", "angle": 22.5, "rescale": true }, + "shade": false, + "faces": { "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" }} + }, + { "from": [ 8.8, 0, 0 ], + "to": [ 8.8, 22.4, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "z", "angle": -22.5, "rescale": true }, + "shade": false, + "faces": { "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" }} + }, + { "from": [ 7.2, 0, 0 ], + "to": [ 7.2, 22.4, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "z", "angle": 22.5, "rescale": true }, + "shade": false, + "faces": { "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" }} + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fire_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fire_side.json new file mode 100644 index 000000000..da323e332 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fire_side.json @@ -0,0 +1,16 @@ +{ + "textures": { + "particle": "#fire" + }, + "ambientocclusion": false, + "elements": [ + { "from": [ 0, 0, 0.01 ], + "to": [ 16, 22.4, 0.01 ], + "shade": false, + "faces": { + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fire_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fire_side_alt.json new file mode 100644 index 000000000..83d76ea3c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fire_side_alt.json @@ -0,0 +1,16 @@ +{ + "textures": { + "particle": "#fire" + }, + "ambientocclusion": false, + "elements": [ + { "from": [ 0, 0, 0.01 ], + "to": [ 16, 22.4, 0.01 ], + "shade": false, + "faces": { + "south": { "uv": [ 16, 0, 0, 16 ], "texture": "#fire" }, + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#fire" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fire_up.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fire_up.json new file mode 100644 index 000000000..1cebdf22f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fire_up.json @@ -0,0 +1,20 @@ +{ + "textures": { + "particle": "#fire" + }, + "ambientocclusion": false, + "elements": [ + { "from": [ 0, 16, 0 ], + "to": [ 16, 16, 16 ], + "rotation": { "origin": [ 16, 16, 8 ], "axis": "z", "angle": 22.5, "rescale": true }, + "shade": false, + "faces": { "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire", "rotation": 270 }} + }, + { "from": [ 0, 16, 0 ], + "to": [ 16, 16, 16 ], + "rotation": { "origin": [ 0, 16, 8 ], "axis": "z", "angle": -22.5, "rescale": true }, + "shade": false, + "faces": { "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire", "rotation": 90 }} + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fire_up_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fire_up_alt.json new file mode 100644 index 000000000..31be9be24 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_fire_up_alt.json @@ -0,0 +1,20 @@ +{ + "textures": { + "particle": "#fire" + }, + "ambientocclusion": false, + "elements": [ + { "from": [ 0, 16, 0 ], + "to": [ 16, 16, 16 ], + "rotation": { "origin": [ 8, 16, 16 ], "axis": "x", "angle": -22.5, "rescale": true }, + "shade": false, + "faces": { "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire", "rotation": 180 }} + }, + { "from": [ 0, 16, 0 ], + "to": [ 16, 16, 16 ], + "rotation": { "origin": [ 8, 16, 0 ], "axis": "x", "angle": 22.5, "rescale": true }, + "shade": false, + "faces": { "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" }} + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_four_candles.json new file mode 100644 index 000000000..7515ba12c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_four_candles.json @@ -0,0 +1,125 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [6, 0, 8], + "to": [8, 3, 10], + "faces": { + "north": {"uv": [0, 8, 2, 11], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 11], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 11], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 11], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [6.5, 3, 9], + "to": [7.5, 4, 9], + "rotation": {"angle": 45, "axis": "y", "origin": [7, 3, 9]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [6.5, 3, 9], + "to": [7.5, 4, 9], + "rotation": {"angle": -45, "axis": "y", "origin": [7, 3, 9]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [9, 0, 8], + "to": [11, 5, 10], + "faces": { + "north": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [9.5, 5, 9], + "to": [10.5, 6, 9], + "rotation": {"angle": 45, "axis": "y", "origin": [10, 5, 9]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [9.5, 5, 9], + "to": [10.5, 6, 9], + "rotation": {"angle": -45, "axis": "y", "origin": [10, 5, 9]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [5, 0, 5], + "to": [7, 5, 7], + "faces": { + "north": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [5.5, 5, 6], + "to": [6.5, 6, 6], + "rotation": {"angle": 45, "axis": "y", "origin": [6, 5, 6]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [5.5, 5, 6], + "to": [6.5, 6, 6], + "rotation": {"angle": -45, "axis": "y", "origin": [6, 5, 6]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [8, 0, 5], + "to": [10, 6, 7], + "faces": { + "north": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [8.5, 6, 6], + "to": [9.5, 7, 6], + "rotation": {"angle": 45, "axis": "y", "origin": [9, 6, 6]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#all"} + } + }, + { + "from": [8.5, 6, 6], + "to": [9.5, 7, 6], + "rotation": {"angle": -45, "axis": "y", "origin": [9, 6, 6]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_four_turtle_eggs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_four_turtle_eggs.json new file mode 100644 index 000000000..93a7ca4b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_four_turtle_eggs.json @@ -0,0 +1,56 @@ +{ + "parent": "block/block", + "textures": { + "all": "block/turtle_egg", + "particle": "#all" + }, + "elements": [ + { "from": [ 5, 0, 4 ], + "to": [ 9, 7, 8 ], + "faces": { + "down": { "uv": [ 0, 0, 4, 4 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 0, 0, 4, 4 ], "texture": "#all" }, + "north": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "south": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "west": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "east": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" } + } + }, + { + "from": [ 1, 0, 7 ], + "to": [ 5, 5, 11 ], + "faces": { + "down": { "uv": [ 6, 7, 10, 11 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 6, 7, 10, 11 ], "texture": "#all" }, + "north": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "south": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "west": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "east": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" } + } + }, + { + "from": [ 11, 0, 7 ], + "to": [ 14, 4, 10 ], + "faces": { + "down": { "uv": [ 5, 0, 8, 3 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 5, 0, 8, 3 ], "texture": "#all" }, + "north": { "uv": [ 8, 3, 11, 7 ], "texture": "#all" }, + "south": { "uv": [ 8, 3, 11, 7 ], "texture": "#all" }, + "west": { "uv": [ 8, 3, 11, 7 ], "texture": "#all" }, + "east": { "uv": [ 8, 3, 11, 7 ], "texture": "#all" } + } + }, + { + "from": [ 6, 0, 9 ], + "to": [ 10, 4, 13 ], + "faces": { + "down": { "uv": [ 0, 11, 4, 15 ], "texture": "#all" }, + "up": { "uv": [ 0, 11, 4, 15 ], "texture": "#all" }, + "north": { "uv": [ 4, 11, 8, 15 ], "texture": "#all" }, + "south": { "uv": [ 4, 11, 8, 15 ], "texture": "#all" }, + "west": { "uv": [ 4, 11, 8, 15 ], "texture": "#all" }, + "east": { "uv": [ 4, 11, 8, 15 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glass_pane_noside.json new file mode 100644 index 000000000..af16ff940 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glass_pane_noside.json @@ -0,0 +1,14 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#pane" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "north": { "uv": [ 9, 0, 7, 16 ], "texture": "#pane" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glass_pane_noside_alt.json new file mode 100644 index 000000000..771d69420 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glass_pane_noside_alt.json @@ -0,0 +1,14 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#pane" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "east": { "uv": [ 7, 0, 9, 16 ], "texture": "#pane" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glass_pane_post.json new file mode 100644 index 000000000..54d7fa88c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glass_pane_post.json @@ -0,0 +1,15 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#pane" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 9 ], "texture": "#edge" }, + "up": { "uv": [ 7, 7, 9, 9 ], "texture": "#edge" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glass_pane_side.json new file mode 100644 index 000000000..fae06dcc6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glass_pane_side.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#pane" + }, + "elements": [ + { "from": [ 7, 0, 0 ], + "to": [ 9, 16, 7 ], + "faces": { + "down": { "uv": [ 7, 0, 9, 7 ], "texture": "#edge" }, + "up": { "uv": [ 7, 0, 9, 7 ], "texture": "#edge" }, + "north": { "uv": [ 7, 0, 9, 16 ], "texture": "#edge", "cullface": "north" }, + "west": { "uv": [ 16, 0, 9, 16 ], "texture": "#pane" }, + "east": { "uv": [ 9, 0, 16, 16 ], "texture": "#pane" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glass_pane_side_alt.json new file mode 100644 index 000000000..82d0e98e0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glass_pane_side_alt.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#pane" + }, + "elements": [ + { "from": [ 7, 0, 9 ], + "to": [ 9, 16, 16 ], + "faces": { + "down": { "uv": [ 7, 0, 9, 7 ], "texture": "#edge" }, + "up": { "uv": [ 7, 0, 9, 7 ], "texture": "#edge" }, + "south": { "uv": [ 7, 0, 9, 16 ], "texture": "#edge", "cullface": "south" }, + "west": { "uv": [ 7, 0, 0, 16 ], "texture": "#pane" }, + "east": { "uv": [ 0, 0, 7, 16 ], "texture": "#pane" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glazed_terracotta.json new file mode 100644 index 000000000..c6574a9f9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_glazed_terracotta.json @@ -0,0 +1,26 @@ +{ + "parent": "block/cube", + "textures": { + "particle": "#pattern" + }, + "display": { + "firstperson_righthand": { + "rotation": [ 0, 135, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.40, 0.40, 0.40 ] + } + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#pattern", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#pattern", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#pattern", "cullface": "north", "rotation": 90 }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#pattern", "cullface": "south", "rotation": 270 }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#pattern", "cullface": "west", "rotation": 0 }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#pattern", "cullface": "east", "rotation": 180 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_hanging_lantern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_hanging_lantern.json new file mode 100644 index 000000000..fb7ebb4d6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_hanging_lantern.json @@ -0,0 +1,50 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#lantern" + }, + "elements": [ + { "from": [ 5, 1, 5 ], + "to": [ 11, 8, 11 ], + "faces": { + "down": { "uv": [ 0, 9, 6, 15 ], "texture": "#lantern"}, + "up": { "uv": [ 0, 9, 6, 15 ], "texture": "#lantern" }, + "north": { "uv": [ 0, 2, 6, 9 ], "texture": "#lantern" }, + "south": { "uv": [ 0, 2, 6, 9 ], "texture": "#lantern" }, + "west": { "uv": [ 0, 2, 6, 9 ], "texture": "#lantern" }, + "east": { "uv": [ 0, 2, 6, 9 ], "texture": "#lantern" } + } + }, + { "from": [ 6, 8, 6 ], + "to": [ 10, 10, 10 ], + "faces": { + "down": { "uv": [ 1, 10, 5, 14 ], "texture": "#lantern"}, + "up": { "uv": [ 1, 10, 5, 14 ], "texture": "#lantern" }, + "north": { "uv": [ 1, 0, 5, 2 ], "texture": "#lantern" }, + "south": { "uv": [ 1, 0, 5, 2 ], "texture": "#lantern" }, + "west": { "uv": [ 1, 0, 5, 2 ], "texture": "#lantern" }, + "east": { "uv": [ 1, 0, 5, 2 ], "texture": "#lantern" } + } + }, + { + "from": [ 6.5, 11, 8 ], + "to": [ 9.5, 15, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45}, + "shade": false, + "faces": { + "north": { "uv": [ 14, 1, 11, 5 ], "texture": "#lantern" }, + "south": { "uv": [ 11, 1, 14, 5 ], "texture": "#lantern" } + } + }, + { + "from": [ 8, 10, 6.5 ], + "to": [ 8, 16, 9.5 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45}, + "shade": false, + "faces": { + "west": { "uv": [ 14, 6, 11, 12 ], "texture": "#lantern" }, + "east": { "uv": [ 11, 6, 14, 12 ], "texture": "#lantern" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_item_frame.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_item_frame.json new file mode 100644 index 000000000..12f519a1a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_item_frame.json @@ -0,0 +1,51 @@ +{ + "elements": [ + { "from": [ 3, 3, 15.5 ], + "to": [ 13, 13, 16 ], + "faces": { + "north": { "uv": [ 3, 3, 13, 13 ], "texture": "#back" }, + "south": { "uv": [ 3, 3, 13, 13 ], "texture": "#back" } + } + }, + { "from": [ 2, 2, 15 ], + "to": [ 14, 3, 16 ], + "faces": { + "down": { "uv": [ 2, 0, 14, 1 ], "texture": "#wood" }, + "up": { "uv": [ 2, 15, 14, 16 ], "texture": "#wood" }, + "north": { "uv": [ 2, 13, 14, 14 ], "texture": "#wood" }, + "south": { "uv": [ 2, 13, 14, 14 ], "texture": "#wood" }, + "west": { "uv": [ 15, 13, 16, 14 ], "texture": "#wood" }, + "east": { "uv": [ 0, 13, 1, 14 ], "texture": "#wood" } + } + }, + { "from": [ 2, 13, 15 ], + "to": [ 14, 14, 16 ], + "faces": { + "down": { "uv": [ 2, 0, 14, 1 ], "texture": "#wood" }, + "up": { "uv": [ 2, 15, 14, 16 ], "texture": "#wood" }, + "north": { "uv": [ 2, 2, 14, 3 ], "texture": "#wood" }, + "south": { "uv": [ 2, 2, 14, 3 ], "texture": "#wood" }, + "west": { "uv": [ 15, 2, 16, 3 ], "texture": "#wood" }, + "east": { "uv": [ 0, 2, 1, 3 ], "texture": "#wood" } + } + }, + { "from": [ 2, 3, 15 ], + "to": [ 3, 13, 16 ], + "faces": { + "north": { "uv": [ 13, 3, 14, 13 ], "texture": "#wood" }, + "south": { "uv": [ 2, 3, 3, 13 ], "texture": "#wood" }, + "west": { "uv": [ 15, 3, 16, 13 ], "texture": "#wood" }, + "east": { "uv": [ 0, 3, 1, 13 ], "texture": "#wood" } + } + }, + { "from": [ 13, 3, 15 ], + "to": [ 14, 13, 16 ], + "faces": { + "north": { "uv": [ 2, 3, 3, 13 ], "texture": "#wood" }, + "south": { "uv": [ 13, 3, 14, 13 ], "texture": "#wood" }, + "west": { "uv": [ 15, 3, 16, 13 ], "texture": "#wood" }, + "east": { "uv": [ 0, 3, 1, 13 ], "texture": "#wood" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_item_frame_map.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_item_frame_map.json new file mode 100644 index 000000000..2a6054e8c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_item_frame_map.json @@ -0,0 +1,51 @@ +{ + "elements": [ + { "from": [ 1, 1, 15.001 ], + "to": [ 15, 15, 16 ], + "faces": { + "north": { "uv": [ 1, 1, 15, 15 ], "texture": "#back" }, + "south": { "uv": [ 1, 1, 15, 15 ], "texture": "#back" } + } + }, + { "from": [ 0, 0, 15.001 ], + "to": [ 16, 1, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 1 ], "texture": "#wood" }, + "up": { "uv": [ 0, 15, 16, 16 ], "texture": "#wood" }, + "north": { "uv": [ 0, 15, 16, 16 ], "texture": "#wood" }, + "south": { "uv": [ 0, 15, 16, 16 ], "texture": "#wood" }, + "west": { "uv": [ 15, 15, 16, 16 ], "texture": "#wood" }, + "east": { "uv": [ 0, 15, 1, 16 ], "texture": "#wood" } + } + }, + { "from": [ 0, 15, 15.001 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 1 ], "texture": "#wood" }, + "up": { "uv": [ 0, 15, 16, 16 ], "texture": "#wood" }, + "north": { "uv": [ 0, 0, 16, 1 ], "texture": "#wood" }, + "south": { "uv": [ 0, 0, 16, 1 ], "texture": "#wood" }, + "west": { "uv": [ 15, 0, 16, 1 ], "texture": "#wood" }, + "east": { "uv": [ 0, 0, 1, 1 ], "texture": "#wood" } + } + }, + { "from": [ 0, 1, 15.001 ], + "to": [ 1, 15, 16 ], + "faces": { + "north": { "uv": [ 15, 1, 16, 15 ], "texture": "#wood" }, + "south": { "uv": [ 0, 1, 1, 15 ], "texture": "#wood" }, + "west": { "uv": [ 15, 1, 16, 15 ], "texture": "#wood" }, + "east": { "uv": [ 0, 1, 1, 15 ], "texture": "#wood" } + } + }, + { "from": [ 15, 1, 15.001 ], + "to": [ 16, 15, 16 ], + "faces": { + "north": { "uv": [ 0, 1, 1, 15 ], "texture": "#wood" }, + "south": { "uv": [ 15, 1, 16, 15 ], "texture": "#wood" }, + "west": { "uv": [ 15, 1, 16, 15 ], "texture": "#wood" }, + "east": { "uv": [ 0, 1, 1, 15 ], "texture": "#wood" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_lantern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_lantern.json new file mode 100644 index 000000000..d54baf8db --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_lantern.json @@ -0,0 +1,49 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#lantern" + }, + "elements": [ + { "from": [ 5, 0, 5 ], + "to": [ 11, 7, 11 ], + "faces": { + "down": { "uv": [ 0, 9, 6, 15 ], "texture": "#lantern", "cullface": "down" }, + "up": { "uv": [ 0, 9, 6, 15 ], "texture": "#lantern" }, + "north": { "uv": [ 0, 2, 6, 9 ], "texture": "#lantern" }, + "south": { "uv": [ 0, 2, 6, 9 ], "texture": "#lantern" }, + "west": { "uv": [ 0, 2, 6, 9 ], "texture": "#lantern" }, + "east": { "uv": [ 0, 2, 6, 9 ], "texture": "#lantern" } + } + }, + { "from": [ 6, 7, 6 ], + "to": [ 10, 9, 10 ], + "faces": { + "up": { "uv": [ 1, 10, 5, 14 ], "texture": "#lantern" }, + "north": { "uv": [ 1, 0, 5, 2 ], "texture": "#lantern" }, + "south": { "uv": [ 1, 0, 5, 2 ], "texture": "#lantern" }, + "west": { "uv": [ 1, 0, 5, 2 ], "texture": "#lantern" }, + "east": { "uv": [ 1, 0, 5, 2 ], "texture": "#lantern" } + } + }, + { + "from": [ 6.5, 9, 8 ], + "to": [ 9.5, 11, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45}, + "shade": false, + "faces": { + "north": { "uv": [ 14, 1, 11, 3 ], "texture": "#lantern" }, + "south": { "uv": [ 11, 1, 14, 3 ], "texture": "#lantern" } + } + }, + { + "from": [ 8, 9, 6.5 ], + "to": [ 8, 11, 9.5 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45}, + "shade": false, + "faces": { + "west": { "uv": [ 14, 10, 11, 12 ], "texture": "#lantern" }, + "east": { "uv": [ 11, 10, 14, 12 ], "texture": "#lantern" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_leaf_litter_1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_leaf_litter_1.json new file mode 100644 index 000000000..355e715e5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_leaf_litter_1.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [0, 0.25, 0], + "to": [8, 0.25, 8], + "faces": { + "up": {"uv": [0, 0, 8, 8], "texture": "#texture", "tintindex": 0}, + "down": {"uv": [0, 8, 8, 0], "texture": "#texture", "tintindex": 0} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_leaf_litter_2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_leaf_litter_2.json new file mode 100644 index 000000000..06589413d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_leaf_litter_2.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [0, 0.25, 0], + "to": [8, 0.25, 16], + "faces": { + "up": {"uv": [0, 0, 8, 16], "texture": "#texture", "tintindex": 0}, + "down": {"uv": [0, 16, 8, 0], "texture": "#texture", "tintindex": 0} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_leaf_litter_3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_leaf_litter_3.json new file mode 100644 index 000000000..bcd97e3a9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_leaf_litter_3.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [8, 0.25, 8], + "to": [16, 0.25, 16], + "faces": { + "up": {"uv": [8, 8, 16, 16], "texture": "#texture", "tintindex": 0}, + "down": {"uv": [8, 16, 16, 8], "texture": "#texture", "tintindex": 0} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_leaf_litter_4.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_leaf_litter_4.json new file mode 100644 index 000000000..f8d9d4346 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_leaf_litter_4.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [0, 0.25, 0], + "to": [16, 0.25, 16], + "faces": { + "up": {"uv": [0, 0, 16, 16], "texture": "#texture", "tintindex": 0}, + "down": {"uv": [0, 16, 16, 0], "texture": "#texture", "tintindex": 0} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_bottom.json new file mode 100644 index 000000000..5f2ac5e4b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_bottom.json @@ -0,0 +1,18 @@ +{ "parent": "block/thin_block", + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 3, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" }, + "north": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_open.json new file mode 100644 index 000000000..ce447b51e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_open.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 0, 13 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 3, 16, 0 ], "texture": "#texture", "cullface": "up" }, + "north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" }, + "south": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 3 ], "rotation": 90, "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 3, 16, 0 ], "rotation": 90, "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_top.json new file mode 100644 index 000000000..a437e1846 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_top.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 13, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "up": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_piston.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_piston.json new file mode 100644 index 000000000..83b4e18ab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_piston.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "rotation": 180, "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#platform", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "rotation": 270, "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "rotation": 90, "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_piston_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_piston_head.json new file mode 100644 index 000000000..f4fcb9107 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_piston_head.json @@ -0,0 +1,27 @@ +{ + "textures": { + "particle": "#platform" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 4 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "cullface": "down", "rotation": 180 }, + "up": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#platform", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#unsticky" }, + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "rotation": 270, "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "rotation": 90, "cullface": "east" } + } + }, + { "from": [ 6, 6, 4 ], + "to": [ 10, 10, 20 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "rotation": 270 }, + "west": { "uv": [ 16, 4, 0, 0 ], "texture": "#side" }, + "east": { "uv": [ 0, 0, 16, 4 ], "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_piston_head_short.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_piston_head_short.json new file mode 100644 index 000000000..cdbe9e125 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_piston_head_short.json @@ -0,0 +1,27 @@ +{ + "textures": { + "particle": "#platform" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 4 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "cullface": "down", "rotation": 180 }, + "up": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#platform", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#unsticky" }, + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "rotation": 270, "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "rotation": 90, "cullface": "east" } + } + }, + { "from": [ 6, 6, 4 ], + "to": [ 10, 10, 16 ], + "faces": { + "down": { "uv": [ 4, 0, 16, 4 ], "texture": "#side", "rotation": 90 }, + "up": { "uv": [ 4, 0, 16, 4 ], "texture": "#side", "rotation": 270 }, + "west": { "uv": [ 16, 4, 4, 0 ], "texture": "#side" }, + "east": { "uv": [ 4, 0, 16, 4 ], "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_potted_azalea_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_potted_azalea_bush.json new file mode 100644 index 000000000..d3ce7c09f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_potted_azalea_bush.json @@ -0,0 +1,108 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/flower_pot", + "flowerpot": "block/flower_pot", + "dirt": "block/dirt" + }, + "elements": [ + { "from": [ 5, 0, 5 ], + "to": [ 6, 6, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 10, 0, 5 ], + "to": [ 11, 6, 11 ], + "faces": { + "down": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 5 ], + "to": [ 10, 6, 6 ], + "faces": { + "down": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 10 ], + "to": [ 10, 6, 11 ], + "faces": { + "down": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 6 ], + "to": [ 10, 4, 10 ], + "faces": { + "down": { "uv": [ 6, 12, 10, 16 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#dirt" } + } + }, + { "from": [ 4, 15.9, 4 ], + "to": [ 12, 16, 12 ], + "faces": { + "down": { "uv": [ 4, 12, 12, 4 ], "texture": "#top" }, + "up": { "uv": [ 4, 4, 12, 12 ], "texture": "#top", "cullface": "up" } + } + }, + { "from": [ 4, 8, 4 ], + "to": [ 12, 16, 4 ], + "faces": { + "north": { "uv": [ 4, 5, 12, 13 ], "texture": "#side"}, + "south": { "uv": [ 12, 5, 4, 13 ], "texture": "#side" } + } + }, + { "from": [ 4, 8, 12 ], + "to": [ 12, 16, 12 ], + "faces": { + "north": { "uv": [ 12, 5, 4, 13 ], "texture": "#side" }, + "south": { "uv": [ 4, 5, 12, 13 ], "texture": "#side" } + } + }, + { "from": [ 4, 8, 4 ], + "to": [ 4, 16, 12 ], + "faces": { + "west": { "uv": [ 4, 5, 12, 13 ], "texture": "#side" }, + "east": { "uv": [ 12, 5, 4, 13 ], "texture": "#side" } + } + }, + { "from": [ 12, 8, 4 ], + "to": [ 12, 16, 12 ], + "faces": { + "west": { "uv": [ 12, 5, 4, 13 ], "texture": "#side" }, + "east": { "uv": [ 4, 5, 12, 13 ], "texture": "#side" } + } + }, + { "from": [ 2.6, 4, 8 ], + "to": [ 13.4, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 4, 16, 16 ], "texture": "#plant" }, + "south": { "uv": [ 0, 4, 16, 16 ], "texture": "#plant" } + } + }, + { "from": [ 8, 4, 2.6 ], + "to": [ 8, 16, 13.4 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 4, 16, 16 ], "texture": "#plant" }, + "east": { "uv": [ 0, 4, 16, 16 ], "texture": "#plant" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_rail_raised_ne.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_rail_raised_ne.json new file mode 100644 index 000000000..a92e4603f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_rail_raised_ne.json @@ -0,0 +1,21 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#rail" + }, + "elements": [ + { "from": [ 0, 9, 0 ], + "to": [ 16, 9, 16 ], + "rotation": { + "origin": [ 8, 9, 8 ], + "axis": "x", + "angle": 45, + "rescale": true + }, + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#rail" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#rail" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_rail_raised_sw.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_rail_raised_sw.json new file mode 100644 index 000000000..dddc35627 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_rail_raised_sw.json @@ -0,0 +1,21 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#rail" + }, + "elements": [ + { "from": [ 0, 9, 0 ], + "to": [ 16, 9, 16 ], + "rotation": { + "origin": [ 8, 9, 8 ], + "axis": "x", + "angle": -45, + "rescale": true + }, + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#rail" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#rail" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_redstone_torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_redstone_torch.json new file mode 100644 index 000000000..de6022cd6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_redstone_torch.json @@ -0,0 +1,68 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#torch" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 10, 9 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 13, 9, 15 ], "texture": "#torch", "cullface": "down" }, + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#torch" }, + "north": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "east": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "south": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "west": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" } + } + }, + { + "from": [ 6.5, 7.5, 6.5 ], + "to": [ 9.5, 7.5, 9.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#torch" } + } + }, + { + "from": [ 6.5, 10.5, 6.5 ], + "to": [ 9.5, 10.5, 9.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#torch" } + } + }, + { + "from": [ 6.5, 7.5, 6.5 ], + "to": [ 9.5, 10.5, 6.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#torch" } + } + }, + { + "from": [ 9.5, 7.5, 6.5 ], + "to": [ 9.5, 10.5, 9.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#torch" } + } + }, + { + "from": [ 6.5, 7.5, 9.5 ], + "to": [ 9.5, 10.5, 9.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#torch" } + } + }, + { + "from": [ 6.5, 7.5, 6.5 ], + "to": [ 6.5, 10.5, 9.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#torch" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_redstone_torch_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_redstone_torch_wall.json new file mode 100644 index 000000000..6c11497f5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_redstone_torch_wall.json @@ -0,0 +1,75 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#torch" + }, + "elements": [ + { "from": [ -1, 3.5, 7 ], + "to": [ 1, 13.5, 9 ], + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "shade": false, + "faces": { + "down": { "uv": [ 7, 13, 9, 15 ], "texture": "#torch" }, + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#torch" }, + "north": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "east": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "south": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "west": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" } + } + }, + { + "from": [ -1.5, 8, 6.5 ], + "to": [ 1.5, 11, 9.5 ], + "shade": false, + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "faces": { + "up": { "uv": [ 6, 5, 7, 6 ], "texture": "#torch" } + } + }, + { + "from": [ -1.5, 14, 6.5 ], + "to": [ 1.5, 17, 9.5 ], + "shade": false, + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 6, 5, 7, 6 ], "texture": "#torch" } + } + }, + { + "from": [ -1.5, 11, 3.5 ], + "to": [ 1.5, 14, 6.5 ], + "shade": false, + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "faces": { + "south": { "uv": [ 6, 5, 7, 6 ], "texture": "#torch" } + } + }, + { + "from": [ 1.5, 11, 6.5 ], + "to": [ 4.5, 14, 9.5 ], + "shade": false, + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "faces": { + "west": { "uv": [ 6, 5, 7, 6 ], "texture": "#torch" } + } + }, + { + "from": [ -1.5, 11, 9.5 ], + "to": [ 1.5, 14, 12.5 ], + "shade": false, + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "faces": { + "north": { "uv": [ 6, 5, 7, 6 ], "texture": "#torch" } + } + }, + { + "from": [ -4.5, 11, 6.5 ], + "to": [ -1.5, 14, 9.5 ], + "shade": false, + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "faces": { + "east": { "uv": [ 6, 5, 7, 6 ], "texture": "#torch" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_sculk_shrieker.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_sculk_shrieker.json new file mode 100644 index 000000000..f7dac613c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_sculk_shrieker.json @@ -0,0 +1,77 @@ +{ + "parent": "block/block", + "textures": { + "bottom": "block/sculk_shrieker_bottom", + "side": "block/sculk_shrieker_side", + "top": "block/sculk_shrieker_top", + "inner_top": "block/sculk_shrieker_inner_top", + "particle": "block/sculk_shrieker_bottom" + }, + "elements": [ + { + "name": "bottom_slab", + "from": [0, 0, 0], + "to": [16, 8, 16], + "faces": { + "north": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "north"}, + "east": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "east"}, + "south": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "south"}, + "west": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#inner_top"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#bottom", "cullface": "down"} + } + }, + { + "name": "top_slab", + "from": [1, 8, 1], + "to": [15, 15, 15], + "faces": { + "north": {"uv": [1, 1, 15, 8], "texture": "#side"}, + "east": {"uv": [1, 1, 15, 8], "texture": "#side"}, + "south": {"uv": [1, 1, 15, 8], "texture": "#side"}, + "west": {"uv": [1, 1, 15, 8], "texture": "#side"}, + "up": {"uv": [1, 1, 15, 15], "texture": "#top"} + } + }, + { + "name": "up", + "from": [1, 14.98, 1], + "to": [15, 14.98, 15], + "faces": { + "down": {"uv": [1, 1, 15, 15], "texture": "#top"} + } + }, + { + "name": "south", + "from": [1, 8, 14.98], + "to": [15, 15, 14.98], + "faces": { + "north": {"uv": [1, 1, 15, 8], "texture": "#side"} + } + }, + { + "name": "north", + "from": [1, 8, 1.02], + "to": [15, 15, 1.02], + "faces": { + "south": {"uv": [1, 1, 15, 8], "texture": "#side"} + } + }, + { + "name": "east", + "from": [14.98, 8, 1], + "to": [14.98, 15, 15], + "faces": { + "west": {"uv": [1, 1, 15, 8], "texture": "#side"} + } + }, + { + "name": "west", + "from": [1.02, 8, 1], + "to": [1.02, 15, 15], + "faces": { + "east": {"uv": [1, 1, 15, 8], "texture": "#side"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_seagrass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_seagrass.json new file mode 100644 index 000000000..4324e3da2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_seagrass.json @@ -0,0 +1,40 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 0, 4 ], + "to": [ 16, 16, 4 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } + } + }, + { "from": [ 12, 0, 0 ], + "to": [ 12, 16, 16 ], + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } + } + }, + { "from": [ 4, 0, 0 ], + "to": [ 4, 16, 16 ], + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } + } + }, + { "from": [ 0, 0, 12 ], + "to": [ 16, 16, 12 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_single_face.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_single_face.json new file mode 100644 index 000000000..d23e5f207 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_single_face.json @@ -0,0 +1,13 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 0 ], + "faces": { + "north": { "texture": "#texture", "cullface":"north" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_three_candles.json new file mode 100644 index 000000000..d9963dc7b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_three_candles.json @@ -0,0 +1,95 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [7, 0, 9], + "to": [9, 3, 11], + "faces": { + "north": {"uv": [0, 8, 2, 11], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 11], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 11], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 11], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [7.5, 3, 10], + "to": [8.5, 4, 10], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 3, 10]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [7.5, 3, 10], + "to": [8.5, 4, 10], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 3, 10]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [5, 0, 7], + "to": [7, 5, 9], + "faces": { + "north": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [5.5, 5, 8], + "to": [6.5, 6, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [6, 5, 8]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [5.5, 5, 8], + "to": [6.5, 6, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [6, 5, 8]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [8, 0, 6], + "to": [10, 6, 8], + "faces": { + "north": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [8.5, 6, 7], + "to": [9.5, 7, 7], + "rotation": {"angle": 45, "axis": "y", "origin": [9, 6, 7]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#all"} + } + }, + { + "from": [8.5, 6, 7], + "to": [9.5, 7, 7], + "rotation": {"angle": -45, "axis": "y", "origin": [9, 6, 7]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_three_turtle_eggs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_three_turtle_eggs.json new file mode 100644 index 000000000..c6ce2d8a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_three_turtle_eggs.json @@ -0,0 +1,43 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#all" + }, + "elements": [ + { "from": [ 5, 0, 4 ], + "to": [ 9, 7, 8 ], + "faces": { + "down": { "uv": [ 0, 0, 4, 4 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 0, 0, 4, 4 ], "texture": "#all" }, + "north": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "south": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "west": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "east": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" } + } + }, + { + "from": [ 1, 0, 7 ], + "to": [ 5, 5, 11 ], + "faces": { + "down": { "uv": [ 6, 7, 10, 11 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 6, 7, 10, 11 ], "texture": "#all" }, + "north": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "south": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "west": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "east": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" } + } + }, + { + "from": [ 11, 0, 7 ], + "to": [ 14, 4, 10 ], + "faces": { + "down": { "uv": [ 5, 0, 8, 3 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 5, 0, 8, 3 ], "texture": "#all" }, + "north": { "uv": [ 8, 3, 11, 7 ], "texture": "#all" }, + "south": { "uv": [ 8, 3, 11, 7 ], "texture": "#all" }, + "west": { "uv": [ 8, 3, 11, 7 ], "texture": "#all" }, + "east": { "uv": [ 8, 3, 11, 7 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_torch.json new file mode 100644 index 000000000..21ed11386 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_torch.json @@ -0,0 +1,20 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#torch" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 10, 9 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 13, 9, 15 ], "texture": "#torch", "cullface": "down" }, + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#torch" }, + "north": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "east": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "south": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "west": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_torch_unlit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_torch_unlit.json new file mode 100644 index 000000000..ef0829e27 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_torch_unlit.json @@ -0,0 +1,19 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#torch" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 10, 9 ], + "faces": { + "down": { "uv": [ 7, 13, 9, 15 ], "texture": "#torch", "cullface": "down" }, + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#torch" }, + "north": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "east": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "south": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "west": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_torch_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_torch_wall.json new file mode 100644 index 000000000..a7083f018 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_torch_wall.json @@ -0,0 +1,21 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#torch" + }, + "elements": [ + { "from": [ -1, 3.5, 7 ], + "to": [ 1, 13.5, 9 ], + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "shade": false, + "faces": { + "down": { "uv": [ 7, 13, 9, 15 ], "texture": "#torch" }, + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#torch" }, + "north": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "east": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "south": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "west": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_torch_wall_unlit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_torch_wall_unlit.json new file mode 100644 index 000000000..3b11230ba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_torch_wall_unlit.json @@ -0,0 +1,20 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#torch" + }, + "elements": [ + { "from": [ -1, 3.5, 7 ], + "to": [ 1, 13.5, 9 ], + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 7, 13, 9, 15 ], "texture": "#torch" }, + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#torch" }, + "north": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "east": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "south": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "west": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_trapdoor_bottom.json new file mode 100644 index 000000000..2b6c8daa9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_trapdoor_bottom.json @@ -0,0 +1,18 @@ +{ "parent": "block/thin_block", + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 3, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_trapdoor_open.json new file mode 100644 index 000000000..b301619c2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_trapdoor_open.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 0, 13 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 13, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 16, 0, 13, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 13, 0, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_trapdoor_top.json new file mode 100644 index 000000000..036aeb7b9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_trapdoor_top.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 13, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "up" }, + "north": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_turtle_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_turtle_egg.json new file mode 100644 index 000000000..b42b49eab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_turtle_egg.json @@ -0,0 +1,19 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#all" + }, + "elements": [ + { "from": [ 5, 0, 4 ], + "to": [ 9, 7, 8 ], + "faces": { + "down": { "uv": [ 0, 0, 4, 4 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 0, 0, 4, 4 ], "texture": "#all" }, + "north": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "south": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "west": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "east": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_two_candles.json new file mode 100644 index 000000000..2abbb10c2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_two_candles.json @@ -0,0 +1,65 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [5, 0, 7], + "to": [7, 5, 9], + "faces": { + "north": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [5.5, 5, 8], + "to": [6.5, 6, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [6, 5, 8]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [5.5, 5, 8], + "to": [6.5, 6, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [6, 5, 8]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [9, 0, 6], + "to": [11, 6, 8], + "faces": { + "north": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [9.5, 6, 7], + "to": [10.5, 7, 7], + "rotation": {"angle": 45, "axis": "y", "origin": [10, 6, 7]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#all"} + } + }, + { + "from": [9.5, 6, 7], + "to": [10.5, 7, 7], + "rotation": {"angle": -45, "axis": "y", "origin": [10, 6, 7]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_two_turtle_eggs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_two_turtle_eggs.json new file mode 100644 index 000000000..a5faf35db --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_two_turtle_eggs.json @@ -0,0 +1,31 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#all" + }, + "elements": [ + { "from": [ 5, 0, 4 ], + "to": [ 9, 7, 8 ], + "faces": { + "down": { "uv": [ 0, 0, 4, 4 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 0, 0, 4, 4 ], "texture": "#all" }, + "north": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "south": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "west": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "east": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" } + } + }, + { + "from": [ 1, 0, 7 ], + "to": [ 5, 5, 11 ], + "faces": { + "down": { "uv": [ 6, 7, 10, 11 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 6, 7, 10, 11 ], "texture": "#all" }, + "north": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "south": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "west": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "east": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_vault.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_vault.json new file mode 100644 index 000000000..d88a37093 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_vault.json @@ -0,0 +1,34 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "name": "cage", + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#front", "cullface": "north"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "south"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#top", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#bottom", "cullface": "down"} + } + }, + { + "name": "cage_inverted_faces", + "from": [15.998, 3.002, 0.002], + "to": [0.002, 15.998, 15.998], + "faces": { + "north": {"uv": [16, 0, 0, 13], "texture": "#front"}, + "east": {"uv": [16, 0, 0, 13], "texture": "#side"}, + "south": {"uv": [16, 0, 0, 13], "texture": "#side"}, + "west": {"uv": [16, 0, 0, 13], "texture": "#side"}, + "up": {"uv": [16, 0, 0, 16], "texture": "#top"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#bottom"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_wall_post.json new file mode 100644 index 000000000..c1c40e47e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_wall_post.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "#wall" + }, + "elements": [ + { "from": [ 4, 0, 4 ], + "to": [ 12, 16, 12 ], + "faces": { + "down": { "texture": "#wall", "cullface": "down" }, + "up": { "texture": "#wall", "cullface": "up" }, + "north": { "texture": "#wall" }, + "south": { "texture": "#wall" }, + "west": { "texture": "#wall" }, + "east": { "texture": "#wall" } + }, + "__comment": "Center post" + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_wall_side.json new file mode 100644 index 000000000..301854c84 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_wall_side.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#wall" + }, + "elements": [ + { "from": [ 5, 0, 0 ], + "to": [ 11, 14, 8 ], + "faces": { + "down": { "texture": "#wall", "cullface": "down" }, + "up": { "texture": "#wall" }, + "north": { "texture": "#wall", "cullface": "north" }, + "west": { "texture": "#wall" }, + "east": { "texture": "#wall" } + }, + "__comment": "wall" + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_wall_side_tall.json new file mode 100644 index 000000000..379a9e3cc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/template_wall_side_tall.json @@ -0,0 +1,17 @@ +{ + "textures": { + "particle": "#wall" + }, + "elements": [ + { "from": [ 5, 0, 0 ], + "to": [ 11, 16, 8 ], + "faces": { + "down": { "texture": "#wall", "cullface": "down" }, + "up": { "texture": "#wall", "cullface": "up"}, + "north": { "texture": "#wall", "cullface": "north" }, + "west": { "texture": "#wall" }, + "east": { "texture": "#wall" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/terracotta.json new file mode 100644 index 000000000..abdc18d7e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/test_block_accept.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/test_block_accept.json new file mode 100644 index 000000000..e9bf9b1ce --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/test_block_accept.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/test_block_accept" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/test_block_fail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/test_block_fail.json new file mode 100644 index 000000000..04fd1773f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/test_block_fail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/test_block_fail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/test_block_log.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/test_block_log.json new file mode 100644 index 000000000..9799e8dfc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/test_block_log.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/test_block_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/test_block_start.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/test_block_start.json new file mode 100644 index 000000000..387827a40 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/test_block_start.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/test_block_start" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/test_instance_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/test_instance_block.json new file mode 100644 index 000000000..dae43c633 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/test_instance_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/test_instance_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/thin_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/thin_block.json new file mode 100644 index 000000000..1adb58ab7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/thin_block.json @@ -0,0 +1,19 @@ +{ "parent": "block/block", + "display": { + "thirdperson_righthand": { + "rotation": [ 75, 45, 0 ], + "translation": [ 0, 2.5, 2], + "scale": [ 0.375, 0.375, 0.375 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 45, 0 ], + "translation": [ 0, 4.2, 0 ], + "scale": [ 0.40, 0.40, 0.40 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 225, 0 ], + "translation": [ 0, 4.2, 0 ], + "scale": [ 0.40, 0.40, 0.40 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/three_dead_sea_pickles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/three_dead_sea_pickles.json new file mode 100644 index 000000000..8eff63de9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/three_dead_sea_pickles.json @@ -0,0 +1,65 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/sea_pickle", + "all": "block/sea_pickle" + }, + "elements": [ + { "from": [ 6, 0, 9 ], + "to": [ 10, 6, 13 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 6, 5.95, 9 ], + "to": [ 10, 5.95, 13 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 2, 0, 2 ], + "to": [ 6, 4, 6 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 9 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 9 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 9 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 9 ], "texture": "#all" } + } + }, + { + "from": [ 2, 3.95, 2 ], + "to": [ 6, 3.95, 6 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 8, 0, 4 ], + "to": [ 12, 6, 8 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 8, 5.95, 4 ], + "to": [ 12, 5.95, 8 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/three_sea_pickles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/three_sea_pickles.json new file mode 100644 index 000000000..aeb475008 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/three_sea_pickles.json @@ -0,0 +1,125 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/sea_pickle", + "all": "block/sea_pickle" + }, + "elements": [ + { "from": [ 6, 0, 9 ], + "to": [ 10, 6, 13 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 6, 5.95, 9 ], + "to": [ 10, 5.95, 13 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 2, 0, 2 ], + "to": [ 6, 4, 6 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 9 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 9 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 9 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 9 ], "texture": "#all" } + } + }, + { + "from": [ 2, 3.95, 2 ], + "to": [ 6, 3.95, 6 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 8, 0, 4 ], + "to": [ 12, 6, 8 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 8, 5.95, 4 ], + "to": [ 12, 5.95, 8 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 7.5, 5.2, 11 ], + "to": [ 8.5, 8.7, 11 ], + "rotation": { "origin": [ 8, 8, 11 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 8, 5.2, 10.5 ], + "to": [ 8, 8.7, 11.5 ], + "rotation": { "origin": [ 8, 8, 11 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + }, + { + "from": [ 3.5, 3.2, 4 ], + "to": [ 4.5, 6.7, 4 ], + "rotation": { "origin": [ 4, 8, 4 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 4, 3.2, 3.5 ], + "to": [ 4, 6.7, 4.5 ], + "rotation": { "origin": [ 4, 8, 4 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + }, + { + "from": [ 9.5, 5.2, 6 ], + "to": [ 10.5, 8.7, 6 ], + "rotation": { "origin": [ 10, 8, 6 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 10, 5.2, 5.5 ], + "to": [ 10, 8.7, 6.5 ], + "rotation": { "origin": [ 10, 8, 6 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/three_slightly_cracked_turtle_eggs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/three_slightly_cracked_turtle_eggs.json new file mode 100644 index 000000000..a50fdeeff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/three_slightly_cracked_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_three_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg_slightly_cracked" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/three_turtle_eggs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/three_turtle_eggs.json new file mode 100644 index 000000000..7f8937957 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/three_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_three_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/three_very_cracked_turtle_eggs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/three_very_cracked_turtle_eggs.json new file mode 100644 index 000000000..7c8e2046c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/three_very_cracked_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_three_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg_very_cracked" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tinted_cross.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tinted_cross.json new file mode 100644 index 000000000..d3b5474e8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tinted_cross.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#cross" + }, + "elements": [ + { "from": [ 0.8, 0, 8 ], + "to": [ 15.2, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross", "tintindex": 0 }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross", "tintindex": 0 } + } + }, + { "from": [ 8, 0, 0.8 ], + "to": [ 8, 16, 15.2 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross", "tintindex": 0 }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tinted_flower_pot_cross.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tinted_flower_pot_cross.json new file mode 100644 index 000000000..1fabc7a12 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tinted_flower_pot_cross.json @@ -0,0 +1,75 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/flower_pot", + "flowerpot": "block/flower_pot", + "dirt": "block/dirt" + }, + "elements": [ + { "from": [ 5, 0, 5 ], + "to": [ 6, 6, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 10, 0, 5 ], + "to": [ 11, 6, 11 ], + "faces": { + "down": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 5 ], + "to": [ 10, 6, 6 ], + "faces": { + "down": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 10 ], + "to": [ 10, 6, 11 ], + "faces": { + "down": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 6 ], + "to": [ 10, 4, 10 ], + "faces": { + "down": { "uv": [ 6, 12, 10, 16 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#dirt" } + } + }, + { "from": [ 2.6, 4, 8 ], + "to": [ 13.4, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant", "tintindex": 0 }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant", "tintindex": 0 } + } + }, + { "from": [ 8, 4, 2.6 ], + "to": [ 8, 16, 13.4 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant", "tintindex": 0 }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tinted_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tinted_glass.json new file mode 100644 index 000000000..7c6f495d2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tinted_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/tinted_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tnt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tnt.json new file mode 100644 index 000000000..c4023fda6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tnt.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/tnt_bottom", + "side": "minecraft:block/tnt_side", + "top": "minecraft:block/tnt_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/torch.json new file mode 100644 index 000000000..7c6241d04 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_torch", + "textures": { + "torch": "minecraft:block/torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/torchflower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/torchflower.json new file mode 100644 index 000000000..633e42e24 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/torchflower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/torchflower" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/torchflower_crop_stage0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/torchflower_crop_stage0.json new file mode 100644 index 000000000..3f5a48961 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/torchflower_crop_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/torchflower_crop_stage0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/torchflower_crop_stage1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/torchflower_crop_stage1.json new file mode 100644 index 000000000..cb14cf9ea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/torchflower_crop_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/torchflower_crop_stage1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trapped_chest.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trapped_chest.json new file mode 100644 index 000000000..9406a8491 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trapped_chest.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner.json new file mode 100644 index 000000000..3b99cb12a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top_inner_faces", + "textures": { + "bottom": "minecraft:block/trial_spawner_bottom", + "side": "minecraft:block/trial_spawner_side_inactive", + "top": "minecraft:block/trial_spawner_top_inactive" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner_active.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner_active.json new file mode 100644 index 000000000..0ddc5ea9b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner_active.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top_inner_faces", + "textures": { + "bottom": "minecraft:block/trial_spawner_bottom", + "side": "minecraft:block/trial_spawner_side_active", + "top": "minecraft:block/trial_spawner_top_active" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner_active_ominous.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner_active_ominous.json new file mode 100644 index 000000000..af2010383 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner_active_ominous.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top_inner_faces", + "textures": { + "bottom": "minecraft:block/trial_spawner_bottom", + "side": "minecraft:block/trial_spawner_side_active_ominous", + "top": "minecraft:block/trial_spawner_top_active_ominous" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner_ejecting_reward.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner_ejecting_reward.json new file mode 100644 index 000000000..8bbb2cd47 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner_ejecting_reward.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top_inner_faces", + "textures": { + "bottom": "minecraft:block/trial_spawner_bottom", + "side": "minecraft:block/trial_spawner_side_active", + "top": "minecraft:block/trial_spawner_top_ejecting_reward" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner_ejecting_reward_ominous.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner_ejecting_reward_ominous.json new file mode 100644 index 000000000..d4575518c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner_ejecting_reward_ominous.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top_inner_faces", + "textures": { + "bottom": "minecraft:block/trial_spawner_bottom", + "side": "minecraft:block/trial_spawner_side_active_ominous", + "top": "minecraft:block/trial_spawner_top_ejecting_reward_ominous" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner_inactive_ominous.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner_inactive_ominous.json new file mode 100644 index 000000000..badc28ce2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/trial_spawner_inactive_ominous.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top_inner_faces", + "textures": { + "bottom": "minecraft:block/trial_spawner_bottom", + "side": "minecraft:block/trial_spawner_side_inactive_ominous", + "top": "minecraft:block/trial_spawner_top_inactive_ominous" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_attached_n.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_attached_n.json new file mode 100644 index 000000000..a0ecc5d7e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_attached_n.json @@ -0,0 +1,33 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 8 ], + "to": [ 8.25, 1.5, 12 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_attached_ne.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_attached_ne.json new file mode 100644 index 000000000..7fa445fc4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_attached_ne.json @@ -0,0 +1,41 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 8, 1.5, 7.75 ], + "to": [ 12, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 4, 16, 2 ], "texture": "#texture" }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture" } + } + }, + { "from": [ 12, 1.5, 7.75 ], + "to": [ 16, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 4, 16, 2 ], "texture": "#texture" }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_attached_ns.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_attached_ns.json new file mode 100644 index 000000000..e7d8d9cfa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_attached_ns.json @@ -0,0 +1,41 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 8 ], + "to": [ 8.25, 1.5, 12 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 12 ], + "to": [ 8.25, 1.5, 16 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_attached_nse.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_attached_nse.json new file mode 100644 index 000000000..745983f58 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_attached_nse.json @@ -0,0 +1,57 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 8 ], + "to": [ 8.25, 1.5, 12 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 12 ], + "to": [ 8.25, 1.5, 16 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 8, 1.5, 7.75 ], + "to": [ 12, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 4, 16, 2 ], "texture": "#texture" }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture" } + } + }, + { "from": [ 12, 1.5, 7.75 ], + "to": [ 16, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 4, 16, 2 ], "texture": "#texture" }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_attached_nsew.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_attached_nsew.json new file mode 100644 index 000000000..b34593d4b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_attached_nsew.json @@ -0,0 +1,73 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 8 ], + "to": [ 8.25, 1.5, 12 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 12 ], + "to": [ 8.25, 1.5, 16 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 0, 1.5, 7.75 ], + "to": [ 4, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 4, 16, 2 ], "texture": "#texture" }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture" } + } + }, + { "from": [ 4, 1.5, 7.75 ], + "to": [ 8, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 4, 16, 2 ], "texture": "#texture" }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture" } + } + }, + { "from": [ 8, 1.5, 7.75 ], + "to": [ 12, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 4, 16, 2 ], "texture": "#texture" }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture" } + } + }, + { "from": [ 12, 1.5, 7.75 ], + "to": [ 16, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 4, 16, 2 ], "texture": "#texture" }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_hook.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_hook.json new file mode 100644 index 000000000..95279bd3f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_hook.json @@ -0,0 +1,72 @@ +{ + "textures": { + "particle": "block/oak_planks", + "hook": "block/tripwire_hook", + "wood": "block/oak_planks" + }, + "elements": [ + { "from": [ 6.2, 3.8, 7.9 ], + "to": [ 9.8, 4.6, 11.5 ], + "rotation": { "origin": [ 8, 6, 5.2 ], "axis": "x", "angle": -45 }, + "faces": { + "down": { "uv": [ 5, 3, 11, 9 ], "texture": "#hook" }, + "up": { "uv": [ 5, 3, 11, 9 ], "texture": "#hook" }, + "north": { "uv": [ 5, 3, 11, 4 ], "texture": "#hook" }, + "south": { "uv": [ 5, 8, 11, 9 ], "texture": "#hook" }, + "west": { "uv": [ 5, 8, 11, 9 ], "texture": "#hook" }, + "east": { "uv": [ 5, 3, 11, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 3.8, 10.3 ], + "to": [ 8.6, 4.6, 10.3 ], + "rotation": { "origin": [ 8, 6, 5.2 ], "axis": "x", "angle": -45 }, + "faces": { + "north": { "uv": [ 7, 8, 9, 9 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 3.8, 9.1 ], + "to": [ 8.6, 4.6, 9.1 ], + "rotation": { "origin": [ 8, 6, 5.2 ], "axis": "x", "angle": -45 }, + "faces": { + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 3.8, 9.1 ], + "to": [ 7.4, 4.6, 10.3 ], + "rotation": { "origin": [ 8, 6, 5.2 ], "axis": "x", "angle": -45 }, + "faces": { + "east": { "uv": [ 7, 8, 9, 9 ], "texture": "#hook" } + } + }, + { "from": [ 8.6, 3.8, 9.1 ], + "to": [ 8.6, 4.6, 10.3 ], + "rotation": { "origin": [ 8, 6, 5.2 ], "axis": "x", "angle": -45 }, + "faces": { + "west": { "uv": [ 7, 3, 9, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 5.2, 10 ], + "to": [ 8.8, 6.8, 14 ], + "rotation": { "origin": [ 8, 6, 14 ], "axis": "x", "angle": 45 }, + "faces": { + "down": { "uv": [ 7, 9, 9, 14 ], "texture": "#wood" }, + "up": { "uv": [ 7, 2, 9, 7 ], "texture": "#wood" }, + "north": { "uv": [ 7, 9, 9, 11 ], "texture": "#wood" }, + "south": { "uv": [ 7, 9, 9, 11 ], "texture": "#wood" }, + "west": { "uv": [ 2, 9, 7, 11 ], "texture": "#wood" }, + "east": { "uv": [ 9, 9, 14, 11 ], "texture": "#wood" } + } + }, + { "from": [ 6, 1, 14 ], + "to": [ 10, 9, 16 ], + "faces": { + "down": { "uv": [ 6, 14, 10, 16 ], "texture": "#wood" }, + "up": { "uv": [ 6, 0, 10, 2 ], "texture": "#wood" }, + "north": { "uv": [ 6, 7, 10, 15 ], "texture": "#wood" }, + "south": { "uv": [ 6, 7, 10, 15 ], "texture": "#wood", "cullface": "south" }, + "west": { "uv": [ 0, 7, 2, 15 ], "texture": "#wood" }, + "east": { "uv": [ 14, 7, 16, 15 ], "texture": "#wood" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_hook_attached.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_hook_attached.json new file mode 100644 index 000000000..582284448 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_hook_attached.json @@ -0,0 +1,79 @@ +{ + "textures": { + "particle": "block/oak_planks", + "hook": "block/tripwire_hook", + "wood": "block/oak_planks", + "tripwire": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 6.7 ], + "rotation": { "origin": [ 8, 0, 0 ], "axis": "x", "angle": -22.5, "rescale": true }, + "faces": { + "down": { "uv": [ 16, 6, 0, 8 ], "texture": "#tripwire", "rotation": 90 }, + "up": { "uv": [ 0, 6, 16, 8 ], "texture": "#tripwire", "rotation": 90 } + } + }, + { "from": [ 6.2, 4.2, 6.7 ], + "to": [ 9.8, 5, 10.3 ], + "rotation": { "origin": [ 8, 4.2, 6.7 ], "axis": "x", "angle": -22.5, "rescale": false }, + "faces": { + "down": { "uv": [ 5, 3, 11, 9 ], "texture": "#hook" }, + "up": { "uv": [ 5, 3, 11, 9 ], "texture": "#hook" }, + "north": { "uv": [ 5, 3, 11, 4 ], "texture": "#hook" }, + "south": { "uv": [ 5, 8, 11, 9 ], "texture": "#hook" }, + "west": { "uv": [ 5, 8, 11, 9 ], "texture": "#hook" }, + "east": { "uv": [ 5, 3, 11, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 4.2, 9.1 ], + "to": [ 8.6, 5, 9.1 ], + "rotation": { "origin": [ 8, 4.2, 6.7 ], "axis": "x", "angle": -22.5, "rescale": false }, + "faces": { + "north": { "uv": [ 7, 8, 9, 9 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 4.2, 7.9 ], + "to": [ 8.6, 5, 7.9 ], + "rotation": { "origin": [ 8, 4.2, 6.7 ], "axis": "x", "angle": -22.5, "rescale": false }, + "faces": { + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 4.2, 7.9 ], + "to": [ 7.4, 5, 9.1 ], + "rotation": { "origin": [ 8, 4.2, 6.7 ], "axis": "x", "angle": -22.5, "rescale": false }, + "faces": { + "east": { "uv": [ 7, 8, 9, 9 ], "texture": "#hook" } + } + }, + { "from": [ 8.6, 4.2, 7.9 ], + "to": [ 8.6, 5, 9.1 ], + "rotation": { "origin": [ 8, 4.2, 6.7 ], "axis": "x", "angle": -22.5, "rescale": false }, + "faces": { + "west": { "uv": [ 7, 3, 9, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 5.2, 10 ], + "to": [ 8.8, 6.8, 14 ], + "faces": { + "down": { "uv": [ 7, 9, 9, 14 ], "texture": "#wood" }, + "up": { "uv": [ 7, 2, 9, 7 ], "texture": "#wood" }, + "north": { "uv": [ 7, 9, 9, 11 ], "texture": "#wood" }, + "west": { "uv": [ 2, 9, 7, 11 ], "texture": "#wood" }, + "east": { "uv": [ 9, 9, 14, 11 ], "texture": "#wood" } + } + }, + { "from": [ 6, 1, 14 ], + "to": [ 10, 9, 16 ], + "faces": { + "down": { "uv": [ 6, 14, 10, 16 ], "texture": "#wood" }, + "up": { "uv": [ 6, 0, 10, 2 ], "texture": "#wood" }, + "north": { "uv": [ 6, 7, 10, 15 ], "texture": "#wood" }, + "south": { "uv": [ 6, 7, 10, 15 ], "texture": "#wood", "cullface": "south" }, + "west": { "uv": [ 0, 7, 2, 15 ], "texture": "#wood" }, + "east": { "uv": [ 14, 7, 16, 15 ], "texture": "#wood" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_hook_attached_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_hook_attached_on.json new file mode 100644 index 000000000..c0e4d1adb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_hook_attached_on.json @@ -0,0 +1,76 @@ +{ + "textures": { + "particle": "block/oak_planks", + "hook": "block/tripwire_hook", + "wood": "block/oak_planks", + "tripwire": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 0.5, 0 ], + "to": [ 8.25, 0.5, 6.7 ], + "rotation": { "origin": [ 8, 0, 0 ], "axis": "x", "angle": -22.5, "rescale": true }, + "faces": { + "down": { "uv": [ 16, 6, 0, 8 ], "texture": "#tripwire", "rotation": 90 }, + "up": { "uv": [ 0, 6, 16, 8 ], "texture": "#tripwire", "rotation": 90 } + } + }, + { "from": [ 6.2, 3.4, 6.7 ], + "to": [ 9.8, 4.2, 10.3 ], + "faces": { + "down": { "uv": [ 5, 3, 11, 9 ], "texture": "#hook" }, + "up": { "uv": [ 5, 3, 11, 9 ], "texture": "#hook" }, + "north": { "uv": [ 5, 3, 11, 4 ], "texture": "#hook" }, + "south": { "uv": [ 5, 8, 11, 9 ], "texture": "#hook" }, + "west": { "uv": [ 5, 8, 11, 9 ], "texture": "#hook" }, + "east": { "uv": [ 5, 3, 11, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 3.4, 9.1 ], + "to": [ 8.6, 4.2, 9.1 ], + "faces": { + "north": { "uv": [ 7, 8, 9, 9 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 3.4, 7.9 ], + "to": [ 8.6, 4.2, 7.9 ], + "faces": { + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 3.4, 7.9 ], + "to": [ 7.4, 4.2, 9.1 ], + "faces": { + "east": { "uv": [ 7, 8, 9, 9 ], "texture": "#hook" } + } + }, + { "from": [ 8.6, 3.4, 7.9 ], + "to": [ 8.6, 4.2, 9.1 ], + "faces": { + "west": { "uv": [ 7, 3, 9, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 5.2, 10 ], + "to": [ 8.8, 6.8, 14 ], + "rotation": { "origin": [ 8, 6, 14 ], "axis": "x", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 7, 9, 9, 14 ], "texture": "#wood" }, + "up": { "uv": [ 7, 2, 9, 7 ], "texture": "#wood" }, + "north": { "uv": [ 7, 9, 9, 11 ], "texture": "#wood" }, + "south": { "uv": [ 7, 9, 9, 11 ], "texture": "#wood" }, + "west": { "uv": [ 2, 9, 7, 11 ], "texture": "#wood" }, + "east": { "uv": [ 9, 9, 14, 11 ], "texture": "#wood" } + } + }, + { "from": [ 6, 1, 14 ], + "to": [ 10, 9, 16 ], + "faces": { + "down": { "uv": [ 6, 14, 10, 16 ], "texture": "#wood" }, + "up": { "uv": [ 6, 0, 10, 2 ], "texture": "#wood" }, + "north": { "uv": [ 6, 7, 10, 15 ], "texture": "#wood" }, + "south": { "uv": [ 6, 7, 10, 15 ], "texture": "#wood", "cullface": "south" }, + "west": { "uv": [ 0, 7, 2, 15 ], "texture": "#wood" }, + "east": { "uv": [ 14, 7, 16, 15 ], "texture": "#wood" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_hook_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_hook_on.json new file mode 100644 index 000000000..5b2494b14 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_hook_on.json @@ -0,0 +1,67 @@ +{ + "textures": { + "particle": "block/oak_planks", + "hook": "block/tripwire_hook", + "wood": "block/oak_planks" + }, + "elements": [ + { "from": [ 6.2, 4.2, 6.7 ], + "to": [ 9.8, 5, 10.3 ], + "faces": { + "down": { "uv": [ 5, 3, 11, 9 ], "texture": "#hook" }, + "up": { "uv": [ 5, 3, 11, 9 ], "texture": "#hook" }, + "north": { "uv": [ 5, 3, 11, 4 ], "texture": "#hook" }, + "south": { "uv": [ 5, 8, 11, 9 ], "texture": "#hook" }, + "west": { "uv": [ 5, 8, 11, 9 ], "texture": "#hook" }, + "east": { "uv": [ 5, 3, 11, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 4.2, 9.1 ], + "to": [ 8.6, 5, 9.1 ], + "faces": { + "north": { "uv": [ 7, 8, 9, 9 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 4.2, 7.9 ], + "to": [ 8.6, 5, 7.9 ], + "faces": { + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 4.2, 7.9 ], + "to": [ 7.4, 5, 9.1 ], + "faces": { + "east": { "uv": [ 7, 8, 9, 9 ], "texture": "#hook" } + } + }, + { "from": [ 8.6, 4.2, 7.9 ], + "to": [ 8.6, 5, 9.1 ], + "faces": { + "west": { "uv": [ 7, 3, 9, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 5.2, 10 ], + "to": [ 8.8, 6.8, 14 ], + "rotation": { "origin": [ 8, 6, 14 ], "axis": "x", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 7, 9, 9, 14 ], "texture": "#wood" }, + "up": { "uv": [ 7, 2, 9, 7 ], "texture": "#wood" }, + "north": { "uv": [ 7, 9, 9, 11 ], "texture": "#wood" }, + "south": { "uv": [ 7, 9, 9, 11 ], "texture": "#wood" }, + "west": { "uv": [ 2, 9, 7, 11 ], "texture": "#wood" }, + "east": { "uv": [ 9, 9, 14, 11 ], "texture": "#wood" } + } + }, + { "from": [ 6, 1, 14 ], + "to": [ 10, 9, 16 ], + "faces": { + "down": { "uv": [ 6, 14, 10, 16 ], "texture": "#wood" }, + "up": { "uv": [ 6, 0, 10, 2 ], "texture": "#wood" }, + "north": { "uv": [ 6, 7, 10, 15 ], "texture": "#wood" }, + "south": { "uv": [ 6, 7, 10, 15 ], "texture": "#wood", "cullface": "south" }, + "west": { "uv": [ 0, 7, 2, 15 ], "texture": "#wood" }, + "east": { "uv": [ 14, 7, 16, 15 ], "texture": "#wood" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_n.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_n.json new file mode 100644 index 000000000..fe858fece --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_n.json @@ -0,0 +1,33 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 8 ], + "to": [ 8.25, 1.5, 12 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_ne.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_ne.json new file mode 100644 index 000000000..6ce78f4c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_ne.json @@ -0,0 +1,41 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 8, 1.5, 7.75 ], + "to": [ 12, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 2, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture" } + } + }, + { "from": [ 12, 1.5, 7.75 ], + "to": [ 16, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 2, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_ns.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_ns.json new file mode 100644 index 000000000..9c87db52f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_ns.json @@ -0,0 +1,41 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 8 ], + "to": [ 8.25, 1.5, 12 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 12 ], + "to": [ 8.25, 1.5, 16 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_nse.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_nse.json new file mode 100644 index 000000000..2ab3aa758 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_nse.json @@ -0,0 +1,57 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 8 ], + "to": [ 8.25, 1.5, 12 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 12 ], + "to": [ 8.25, 1.5, 16 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 8, 1.5, 7.75 ], + "to": [ 12, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 2, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture" } + } + }, + { "from": [ 12, 1.5, 7.75 ], + "to": [ 16, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 2, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_nsew.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_nsew.json new file mode 100644 index 000000000..9f96d4039 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tripwire_nsew.json @@ -0,0 +1,73 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 8 ], + "to": [ 8.25, 1.5, 12 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 12 ], + "to": [ 8.25, 1.5, 16 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 0, 1.5, 7.75 ], + "to": [ 4, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 2, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture" } + } + }, + { "from": [ 4, 1.5, 7.75 ], + "to": [ 8, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 2, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture" } + } + }, + { "from": [ 8, 1.5, 7.75 ], + "to": [ 12, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 2, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture" } + } + }, + { "from": [ 12, 1.5, 7.75 ], + "to": [ 16, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 2, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tube_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tube_coral.json new file mode 100644 index 000000000..0a1597096 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tube_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/tube_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tube_coral_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tube_coral_block.json new file mode 100644 index 000000000..4de67c0b4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tube_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/tube_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tube_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tube_coral_fan.json new file mode 100644 index 000000000..6a5e968c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tube_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/tube_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tube_coral_wall_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tube_coral_wall_fan.json new file mode 100644 index 000000000..6a36d289c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tube_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/tube_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff.json new file mode 100644 index 000000000..80ca09340 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_slab.json new file mode 100644 index 000000000..b0b0e379a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks", + "top": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_slab_top.json new file mode 100644 index 000000000..092a7f5b8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks", + "top": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs.json new file mode 100644 index 000000000..a6dc2d357 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks", + "top": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs_inner.json new file mode 100644 index 000000000..537c7b594 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks", + "top": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs_outer.json new file mode 100644 index 000000000..f7ed13e9b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks", + "top": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_inventory.json new file mode 100644 index 000000000..05c36dae4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_post.json new file mode 100644 index 000000000..1c8723f56 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_side.json new file mode 100644 index 000000000..72c095e35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_side_tall.json new file mode 100644 index 000000000..3ff51373f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_bricks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_bricks.json new file mode 100644 index 000000000..3ba4278bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_slab.json new file mode 100644 index 000000000..b77e66fd4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/tuff", + "side": "minecraft:block/tuff", + "top": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_slab_top.json new file mode 100644 index 000000000..c4bbe6e3d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/tuff", + "side": "minecraft:block/tuff", + "top": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_stairs.json new file mode 100644 index 000000000..ba84f4e72 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/tuff", + "side": "minecraft:block/tuff", + "top": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_stairs_inner.json new file mode 100644 index 000000000..cb7a1db83 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/tuff", + "side": "minecraft:block/tuff", + "top": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_stairs_outer.json new file mode 100644 index 000000000..7b8b85a88 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/tuff", + "side": "minecraft:block/tuff", + "top": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_wall_inventory.json new file mode 100644 index 000000000..f07195021 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_wall_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_wall_post.json new file mode 100644 index 000000000..66c478765 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_wall_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_wall_side.json new file mode 100644 index 000000000..1590701ca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_wall_side_tall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_wall_side_tall.json new file mode 100644 index 000000000..9b7e3338c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/tuff_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/turtle_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/turtle_egg.json new file mode 100644 index 000000000..94ce75f72 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/turtle_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_turtle_egg", + "textures": { + "all": "minecraft:block/turtle_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/twisting_vines.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/twisting_vines.json new file mode 100644 index 000000000..1e0770280 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/twisting_vines.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/twisting_vines" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/twisting_vines_plant.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/twisting_vines_plant.json new file mode 100644 index 000000000..20a056e0f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/twisting_vines_plant.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/twisting_vines_plant" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/two_dead_sea_pickles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/two_dead_sea_pickles.json new file mode 100644 index 000000000..0a618603b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/two_dead_sea_pickles.json @@ -0,0 +1,46 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/sea_pickle", + "all": "block/sea_pickle" + }, + "elements": [ + { "from": [ 3, 0, 3 ], + "to": [ 7, 6, 7 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 3, 5.95, 3 ], + "to": [ 7, 5.95, 7 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 8, 0, 8 ], + "to": [ 12, 4, 12 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 9 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 9 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 9 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 9 ], "texture": "#all" } + } + }, + { + "from": [ 8, 3.95, 8 ], + "to": [ 12, 3.95, 12 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/two_sea_pickles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/two_sea_pickles.json new file mode 100644 index 000000000..612d0ff99 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/two_sea_pickles.json @@ -0,0 +1,86 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/sea_pickle", + "all": "block/sea_pickle" + }, + "elements": [ + { "from": [ 3, 0, 3 ], + "to": [ 7, 6, 7 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 3, 5.95, 3 ], + "to": [ 7, 5.95, 7 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 8, 0, 8 ], + "to": [ 12, 4, 12 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 9 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 9 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 9 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 9 ], "texture": "#all" } + } + }, + { + "from": [ 8, 3.95, 8 ], + "to": [ 12, 3.95, 12 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 4.5, 5.2, 5 ], + "to": [ 5.5, 8.7, 5 ], + "rotation": { "origin": [ 5, 5.6, 5 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 5, 5.2, 4.5 ], + "to": [ 5, 8.7, 5.5 ], + "rotation": { "origin": [ 5, 5.6, 5 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + }, + { + "from": [ 9.5, 3.2, 10 ], + "to": [ 10.5, 6.7, 10 ], + "rotation": { "origin": [10, 8, 10 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 10, 3.2, 9.5 ], + "to": [ 10, 6.7, 10.5 ], + "rotation": { "origin": [ 10, 8, 10 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/two_slightly_cracked_turtle_eggs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/two_slightly_cracked_turtle_eggs.json new file mode 100644 index 000000000..4d1a9503b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/two_slightly_cracked_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_two_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg_slightly_cracked" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/two_turtle_eggs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/two_turtle_eggs.json new file mode 100644 index 000000000..22209d56a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/two_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_two_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/two_very_cracked_turtle_eggs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/two_very_cracked_turtle_eggs.json new file mode 100644 index 000000000..1408a48fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/two_very_cracked_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_two_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg_very_cracked" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault.json new file mode 100644 index 000000000..f9e887f41 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/template_vault", + "textures": { + "bottom": "minecraft:block/vault_bottom", + "front": "minecraft:block/vault_front_off", + "side": "minecraft:block/vault_side_off", + "top": "minecraft:block/vault_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_active.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_active.json new file mode 100644 index 000000000..c7adf1dd3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_active.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/template_vault", + "textures": { + "bottom": "minecraft:block/vault_bottom", + "front": "minecraft:block/vault_front_on", + "side": "minecraft:block/vault_side_on", + "top": "minecraft:block/vault_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_active_ominous.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_active_ominous.json new file mode 100644 index 000000000..494416020 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_active_ominous.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/template_vault", + "textures": { + "bottom": "minecraft:block/vault_bottom_ominous", + "front": "minecraft:block/vault_front_on_ominous", + "side": "minecraft:block/vault_side_on_ominous", + "top": "minecraft:block/vault_top_ominous" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_ejecting_reward.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_ejecting_reward.json new file mode 100644 index 000000000..f903d6ae4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_ejecting_reward.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/template_vault", + "textures": { + "bottom": "minecraft:block/vault_bottom", + "front": "minecraft:block/vault_front_ejecting", + "side": "minecraft:block/vault_side_on", + "top": "minecraft:block/vault_top_ejecting" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_ejecting_reward_ominous.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_ejecting_reward_ominous.json new file mode 100644 index 000000000..eb382fdcf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_ejecting_reward_ominous.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/template_vault", + "textures": { + "bottom": "minecraft:block/vault_bottom_ominous", + "front": "minecraft:block/vault_front_ejecting_ominous", + "side": "minecraft:block/vault_side_on_ominous", + "top": "minecraft:block/vault_top_ejecting_ominous" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_ominous.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_ominous.json new file mode 100644 index 000000000..8e40a6ea7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_ominous.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/template_vault", + "textures": { + "bottom": "minecraft:block/vault_bottom_ominous", + "front": "minecraft:block/vault_front_off_ominous", + "side": "minecraft:block/vault_side_off_ominous", + "top": "minecraft:block/vault_top_ominous" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_unlocking.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_unlocking.json new file mode 100644 index 000000000..a5d94da7e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_unlocking.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/template_vault", + "textures": { + "bottom": "minecraft:block/vault_bottom", + "front": "minecraft:block/vault_front_ejecting", + "side": "minecraft:block/vault_side_on", + "top": "minecraft:block/vault_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_unlocking_ominous.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_unlocking_ominous.json new file mode 100644 index 000000000..7b9f1ddfc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vault_unlocking_ominous.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/template_vault", + "textures": { + "bottom": "minecraft:block/vault_bottom_ominous", + "front": "minecraft:block/vault_front_ejecting_ominous", + "side": "minecraft:block/vault_side_on_ominous", + "top": "minecraft:block/vault_top_ominous" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/verdant_froglight.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/verdant_froglight.json new file mode 100644 index 000000000..092d7455d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/verdant_froglight.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/verdant_froglight_top", + "side": "minecraft:block/verdant_froglight_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/verdant_froglight_horizontal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/verdant_froglight_horizontal.json new file mode 100644 index 000000000..83001ec8a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/verdant_froglight_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/verdant_froglight_top", + "side": "minecraft:block/verdant_froglight_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/very_cracked_turtle_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/very_cracked_turtle_egg.json new file mode 100644 index 000000000..74ff16061 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/very_cracked_turtle_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_turtle_egg", + "textures": { + "all": "minecraft:block/turtle_egg_very_cracked" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vine.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vine.json new file mode 100644 index 000000000..6a48a4708 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/vine.json @@ -0,0 +1,17 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/vine", + "vine": "block/vine" + }, + "elements": [ + { "from": [ 0, 0, 0.8 ], + "to": [ 16, 16, 0.8 ], + "shade": false, + "faces": { + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#vine", "tintindex": 0 }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wall_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wall_inventory.json new file mode 100644 index 000000000..943dbfc9a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wall_inventory.json @@ -0,0 +1,43 @@ +{ "parent": "block/block", + "display": { + "gui": { + "rotation": [ 30, 135, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "fixed": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + } + }, + "textures": { + "particle": "#wall" + }, + "elements": [ + { "from": [ 4, 0, 4 ], + "to": [ 12, 16, 12 ], + "faces": { + "down": { "uv": [ 4, 4, 12, 12 ], "texture": "#wall", "cullface": "down" }, + "up": { "uv": [ 4, 4, 12, 12 ], "texture": "#wall" }, + "north": { "uv": [ 4, 0, 12, 16 ], "texture": "#wall" }, + "south": { "uv": [ 4, 0, 12, 16 ], "texture": "#wall" }, + "west": { "uv": [ 4, 0, 12, 16 ], "texture": "#wall" }, + "east": { "uv": [ 4, 0, 12, 16 ], "texture": "#wall" } + }, + "__comment": "Center post" + }, + { "from": [ 5, 0, 0 ], + "to": [ 11, 13, 16 ], + "faces": { + "down": { "uv": [ 5, 0, 11, 16 ], "texture": "#wall", "cullface": "down" }, + "up": { "uv": [ 5, 0, 11, 16 ], "texture": "#wall" }, + "north": { "uv": [ 5, 3, 11, 16 ], "texture": "#wall", "cullface": "north" }, + "south": { "uv": [ 5, 3, 11, 16 ], "texture": "#wall", "cullface": "south" }, + "west": { "uv": [ 0, 3, 16, 16 ], "texture": "#wall" }, + "east": { "uv": [ 0, 3, 16, 16 ], "texture": "#wall" } + }, + "__comment": "Full wall" + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wall_torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wall_torch.json new file mode 100644 index 000000000..e30eec7f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wall_torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_torch_wall", + "textures": { + "torch": "minecraft:block/torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_button.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_button.json new file mode 100644 index 000000000..bdf5bc88b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_button_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_button_inventory.json new file mode 100644 index 000000000..2332270f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_button_pressed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_button_pressed.json new file mode 100644 index 000000000..feb58b7a9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_bottom_left.json new file mode 100644 index 000000000..be46139aa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/warped_door_bottom", + "top": "minecraft:block/warped_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_bottom_left_open.json new file mode 100644 index 000000000..82a610082 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/warped_door_bottom", + "top": "minecraft:block/warped_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_bottom_right.json new file mode 100644 index 000000000..a094977e6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/warped_door_bottom", + "top": "minecraft:block/warped_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_bottom_right_open.json new file mode 100644 index 000000000..844828eb6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/warped_door_bottom", + "top": "minecraft:block/warped_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_top_left.json new file mode 100644 index 000000000..0ad4e6ba9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/warped_door_bottom", + "top": "minecraft:block/warped_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_top_left_open.json new file mode 100644 index 000000000..350c45329 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/warped_door_bottom", + "top": "minecraft:block/warped_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_top_right.json new file mode 100644 index 000000000..2340de27f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/warped_door_bottom", + "top": "minecraft:block/warped_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_top_right_open.json new file mode 100644 index 000000000..892224d46 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/warped_door_bottom", + "top": "minecraft:block/warped_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_gate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_gate.json new file mode 100644 index 000000000..11e873bef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_gate_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_gate_open.json new file mode 100644 index 000000000..f4f3f82d9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_gate_wall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_gate_wall.json new file mode 100644 index 000000000..ad90d1538 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_gate_wall_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_gate_wall_open.json new file mode 100644 index 000000000..af30e1e67 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_inventory.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_inventory.json new file mode 100644 index 000000000..296e99f98 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_post.json new file mode 100644 index 000000000..51ef01dd8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_side.json new file mode 100644 index 000000000..6dba3fec7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fungus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fungus.json new file mode 100644 index 000000000..c07b792a9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_fungus.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/warped_fungus" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_hanging_sign.json new file mode 100644 index 000000000..8d0629a43 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_hyphae.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_hyphae.json new file mode 100644 index 000000000..eb9e767f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_hyphae.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/warped_stem", + "side": "minecraft:block/warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_nylium.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_nylium.json new file mode 100644 index 000000000..2b283233b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_nylium.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/netherrack", + "side": "minecraft:block/warped_nylium_side", + "top": "minecraft:block/warped_nylium" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_planks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_planks.json new file mode 100644 index 000000000..993971b55 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_pressure_plate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_pressure_plate.json new file mode 100644 index 000000000..7cf3ebd76 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_pressure_plate_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_pressure_plate_down.json new file mode 100644 index 000000000..1ec67ce33 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_roots.json new file mode 100644 index 000000000..85bc33166 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_roots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/warped_roots" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_sign.json new file mode 100644 index 000000000..b7b47f672 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_slab.json new file mode 100644 index 000000000..fafb50154 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/warped_planks", + "side": "minecraft:block/warped_planks", + "top": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_slab_top.json new file mode 100644 index 000000000..712a48e5f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/warped_planks", + "side": "minecraft:block/warped_planks", + "top": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_stairs.json new file mode 100644 index 000000000..b18eb1d3b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/warped_planks", + "side": "minecraft:block/warped_planks", + "top": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_stairs_inner.json new file mode 100644 index 000000000..6641754f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/warped_planks", + "side": "minecraft:block/warped_planks", + "top": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_stairs_outer.json new file mode 100644 index 000000000..22716e7b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/warped_planks", + "side": "minecraft:block/warped_planks", + "top": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_stem.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_stem.json new file mode 100644 index 000000000..2d1fcc344 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_stem.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/warped_stem_top", + "side": "minecraft:block/warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_trapdoor_bottom.json new file mode 100644 index 000000000..211b1addc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/warped_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_trapdoor_open.json new file mode 100644 index 000000000..cfcf7177c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/warped_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_trapdoor_top.json new file mode 100644 index 000000000..daac6db98 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/warped_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_wart_block.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_wart_block.json new file mode 100644 index 000000000..7f41d1a56 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/warped_wart_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/warped_wart_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/water.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/water.json new file mode 100644 index 000000000..759074723 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/water.json @@ -0,0 +1,6 @@ +{ + "textures": { + "particle": "block/water_still" + } +} + diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/water_cauldron_full.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/water_cauldron_full.json new file mode 100644 index 000000000..7e246053f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/water_cauldron_full.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/template_cauldron_full", + "textures": { + "bottom": "minecraft:block/cauldron_bottom", + "content": "minecraft:block/water_still", + "inside": "minecraft:block/cauldron_inner", + "particle": "minecraft:block/cauldron_side", + "side": "minecraft:block/cauldron_side", + "top": "minecraft:block/cauldron_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/water_cauldron_level1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/water_cauldron_level1.json new file mode 100644 index 000000000..83648ba95 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/water_cauldron_level1.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/template_cauldron_level1", + "textures": { + "bottom": "minecraft:block/cauldron_bottom", + "content": "minecraft:block/water_still", + "inside": "minecraft:block/cauldron_inner", + "particle": "minecraft:block/cauldron_side", + "side": "minecraft:block/cauldron_side", + "top": "minecraft:block/cauldron_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/water_cauldron_level2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/water_cauldron_level2.json new file mode 100644 index 000000000..0b19a8167 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/water_cauldron_level2.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/template_cauldron_level2", + "textures": { + "bottom": "minecraft:block/cauldron_bottom", + "content": "minecraft:block/water_still", + "inside": "minecraft:block/cauldron_inner", + "particle": "minecraft:block/cauldron_side", + "side": "minecraft:block/cauldron_side", + "top": "minecraft:block/cauldron_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_chiseled_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_chiseled_copper.json new file mode 100644 index 000000000..f11c331cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_chiseled_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper.json new file mode 100644 index 000000000..aa42be792 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/weathered_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb.json new file mode 100644 index 000000000..442b89ff6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/weathered_copper_bulb" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_lit.json new file mode 100644 index 000000000..969c5c1d4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_lit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/weathered_copper_bulb_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_lit_powered.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_lit_powered.json new file mode 100644 index 000000000..1d21a1c6d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_lit_powered.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/weathered_copper_bulb_lit_powered" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_powered.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_powered.json new file mode 100644 index 000000000..e70687424 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_powered.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/weathered_copper_bulb_powered" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_left.json new file mode 100644 index 000000000..b833db921 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/weathered_copper_door_bottom", + "top": "minecraft:block/weathered_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_left_open.json new file mode 100644 index 000000000..fc40f5cb8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/weathered_copper_door_bottom", + "top": "minecraft:block/weathered_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_right.json new file mode 100644 index 000000000..a9c531398 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/weathered_copper_door_bottom", + "top": "minecraft:block/weathered_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_right_open.json new file mode 100644 index 000000000..11845962c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/weathered_copper_door_bottom", + "top": "minecraft:block/weathered_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_left.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_left.json new file mode 100644 index 000000000..893750c64 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/weathered_copper_door_bottom", + "top": "minecraft:block/weathered_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_left_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_left_open.json new file mode 100644 index 000000000..13aac26a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/weathered_copper_door_bottom", + "top": "minecraft:block/weathered_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_right.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_right.json new file mode 100644 index 000000000..19ff9ae35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/weathered_copper_door_bottom", + "top": "minecraft:block/weathered_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_right_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_right_open.json new file mode 100644 index 000000000..4ee275088 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/weathered_copper_door_bottom", + "top": "minecraft:block/weathered_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_grate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_grate.json new file mode 100644 index 000000000..2902a24ba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_grate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/weathered_copper_grate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_bottom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_bottom.json new file mode 100644 index 000000000..6bc6f0d6d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/weathered_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_open.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_open.json new file mode 100644 index 000000000..a73f59ab0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_open", + "textures": { + "texture": "minecraft:block/weathered_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_top.json new file mode 100644 index 000000000..ebb49ffd9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_top", + "textures": { + "texture": "minecraft:block/weathered_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper.json new file mode 100644 index 000000000..061c79cbc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/weathered_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_slab.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_slab.json new file mode 100644 index 000000000..e5c0d887b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/weathered_cut_copper", + "side": "minecraft:block/weathered_cut_copper", + "top": "minecraft:block/weathered_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_slab_top.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_slab_top.json new file mode 100644 index 000000000..82dfb4368 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/weathered_cut_copper", + "side": "minecraft:block/weathered_cut_copper", + "top": "minecraft:block/weathered_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs.json new file mode 100644 index 000000000..db06d2ae0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/weathered_cut_copper", + "side": "minecraft:block/weathered_cut_copper", + "top": "minecraft:block/weathered_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs_inner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs_inner.json new file mode 100644 index 000000000..4850db433 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/weathered_cut_copper", + "side": "minecraft:block/weathered_cut_copper", + "top": "minecraft:block/weathered_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs_outer.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs_outer.json new file mode 100644 index 000000000..7804f7236 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/weathered_cut_copper", + "side": "minecraft:block/weathered_cut_copper", + "top": "minecraft:block/weathered_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weeping_vines.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weeping_vines.json new file mode 100644 index 000000000..a675fda16 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weeping_vines.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/weeping_vines" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weeping_vines_plant.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weeping_vines_plant.json new file mode 100644 index 000000000..c7a9ae05d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/weeping_vines_plant.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/weeping_vines_plant" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wet_sponge.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wet_sponge.json new file mode 100644 index 000000000..1b0b8a973 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wet_sponge.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/wet_sponge" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage0.json new file mode 100644 index 000000000..8343729c1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/wheat_stage0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage1.json new file mode 100644 index 000000000..1fa14ff8f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/wheat_stage1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage2.json new file mode 100644 index 000000000..9c2e59a1d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/wheat_stage2" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage3.json new file mode 100644 index 000000000..75b167dd2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/wheat_stage3" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage4.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage4.json new file mode 100644 index 000000000..3dae7e5e7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/wheat_stage4" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage5.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage5.json new file mode 100644 index 000000000..1cd7d96be --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/wheat_stage5" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage6.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage6.json new file mode 100644 index 000000000..7201c51a5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/wheat_stage6" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage7.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage7.json new file mode 100644 index 000000000..492b67150 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wheat_stage7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/wheat_stage7" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_cake.json new file mode 100644 index 000000000..568f818a4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/white_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_cake_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_cake_lit.json new file mode 100644 index 000000000..6bd9fca0e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/white_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_four_candles.json new file mode 100644 index 000000000..64ad91d27 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/white_candle", + "particle": "minecraft:block/white_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_four_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_four_candles_lit.json new file mode 100644 index 000000000..0504735b5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/white_candle_lit", + "particle": "minecraft:block/white_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_one_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_one_candle.json new file mode 100644 index 000000000..61585d993 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/white_candle", + "particle": "minecraft:block/white_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_one_candle_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_one_candle_lit.json new file mode 100644 index 000000000..3a3758315 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/white_candle_lit", + "particle": "minecraft:block/white_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_three_candles.json new file mode 100644 index 000000000..fd58e51cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/white_candle", + "particle": "minecraft:block/white_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_three_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_three_candles_lit.json new file mode 100644 index 000000000..3c4b7aa74 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/white_candle_lit", + "particle": "minecraft:block/white_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_two_candles.json new file mode 100644 index 000000000..4aa5d6405 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/white_candle", + "particle": "minecraft:block/white_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_two_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_two_candles_lit.json new file mode 100644 index 000000000..cf27452f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/white_candle_lit", + "particle": "minecraft:block/white_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_carpet.json new file mode 100644 index 000000000..08d5186e6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/white_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_concrete.json new file mode 100644 index 000000000..92188f478 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/white_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_concrete_powder.json new file mode 100644 index 000000000..2c8c16b17 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/white_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_glazed_terracotta.json new file mode 100644 index 000000000..e33fbedc0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/white_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_shulker_box.json new file mode 100644 index 000000000..3a9a58d33 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/white_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass.json new file mode 100644 index 000000000..4e135e3dc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/white_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_noside.json new file mode 100644 index 000000000..b854d5438 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/white_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..a4cf80c37 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/white_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_post.json new file mode 100644 index 000000000..5762d3d7b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/white_stained_glass_pane_top", + "pane": "minecraft:block/white_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_side.json new file mode 100644 index 000000000..5e5dabbc3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/white_stained_glass_pane_top", + "pane": "minecraft:block/white_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..8f1f74bed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/white_stained_glass_pane_top", + "pane": "minecraft:block/white_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_terracotta.json new file mode 100644 index 000000000..eb6bc0069 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/white_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_tulip.json new file mode 100644 index 000000000..d31ceab86 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/white_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_wool.json new file mode 100644 index 000000000..8af86fa1b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/white_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/white_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wildflowers_1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wildflowers_1.json new file mode 100644 index 000000000..d6ec7f174 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wildflowers_1.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flowerbed_1", + "textures": { + "flowerbed": "minecraft:block/wildflowers", + "stem": "minecraft:block/wildflowers_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wildflowers_2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wildflowers_2.json new file mode 100644 index 000000000..7bb30b8b0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wildflowers_2.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flowerbed_2", + "textures": { + "flowerbed": "minecraft:block/wildflowers", + "stem": "minecraft:block/wildflowers_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wildflowers_3.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wildflowers_3.json new file mode 100644 index 000000000..e2e004f5f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wildflowers_3.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flowerbed_3", + "textures": { + "flowerbed": "minecraft:block/wildflowers", + "stem": "minecraft:block/wildflowers_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wildflowers_4.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wildflowers_4.json new file mode 100644 index 000000000..ee50217b0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wildflowers_4.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flowerbed_4", + "textures": { + "flowerbed": "minecraft:block/wildflowers", + "stem": "minecraft:block/wildflowers_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wither_rose.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wither_rose.json new file mode 100644 index 000000000..470894581 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/wither_rose.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/wither_rose" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_cake.json new file mode 100644 index 000000000..f84e4f7ca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/yellow_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_cake_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_cake_lit.json new file mode 100644 index 000000000..4a3388b02 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/yellow_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_four_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_four_candles.json new file mode 100644 index 000000000..ee076d7eb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/yellow_candle", + "particle": "minecraft:block/yellow_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_four_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_four_candles_lit.json new file mode 100644 index 000000000..ce1d68448 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/yellow_candle_lit", + "particle": "minecraft:block/yellow_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_one_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_one_candle.json new file mode 100644 index 000000000..187fb20f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/yellow_candle", + "particle": "minecraft:block/yellow_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_one_candle_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_one_candle_lit.json new file mode 100644 index 000000000..d40198468 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/yellow_candle_lit", + "particle": "minecraft:block/yellow_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_three_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_three_candles.json new file mode 100644 index 000000000..69260bbe1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/yellow_candle", + "particle": "minecraft:block/yellow_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_three_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_three_candles_lit.json new file mode 100644 index 000000000..cdbf4fea0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/yellow_candle_lit", + "particle": "minecraft:block/yellow_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_two_candles.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_two_candles.json new file mode 100644 index 000000000..1167ec7b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/yellow_candle", + "particle": "minecraft:block/yellow_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_two_candles_lit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_two_candles_lit.json new file mode 100644 index 000000000..d53b38667 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/yellow_candle_lit", + "particle": "minecraft:block/yellow_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_carpet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_carpet.json new file mode 100644 index 000000000..7d08c9e1e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/yellow_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_concrete.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_concrete.json new file mode 100644 index 000000000..b89815249 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/yellow_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_concrete_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_concrete_powder.json new file mode 100644 index 000000000..8882b67bd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/yellow_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_glazed_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_glazed_terracotta.json new file mode 100644 index 000000000..fa60d0dcc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/yellow_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_shulker_box.json new file mode 100644 index 000000000..c54fe67ce --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/yellow_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass.json new file mode 100644 index 000000000..cd225fdc5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/yellow_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_noside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_noside.json new file mode 100644 index 000000000..d8c226134 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/yellow_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_noside_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..668a6ef29 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/yellow_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_post.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_post.json new file mode 100644 index 000000000..e2b57957e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/yellow_stained_glass_pane_top", + "pane": "minecraft:block/yellow_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_side.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_side.json new file mode 100644 index 000000000..2f5a1c2b5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/yellow_stained_glass_pane_top", + "pane": "minecraft:block/yellow_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_side_alt.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..acd867a1a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/yellow_stained_glass_pane_top", + "pane": "minecraft:block/yellow_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_terracotta.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_terracotta.json new file mode 100644 index 000000000..8f3e76eed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/yellow_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_wool.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_wool.json new file mode 100644 index 000000000..2f0dab367 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/block/yellow_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/yellow_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_boat.json new file mode 100644 index 000000000..5b93e9865 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/acacia_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_chest_boat.json new file mode 100644 index 000000000..fbac5cb80 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/acacia_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_door.json new file mode 100644 index 000000000..7ecc5bbd8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/acacia_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_hanging_sign.json new file mode 100644 index 000000000..16c7c4030 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/acacia_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_sapling.json new file mode 100644 index 000000000..89e557914 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/acacia_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_sign.json new file mode 100644 index 000000000..05032df9c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/acacia_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/acacia_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/activator_rail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/activator_rail.json new file mode 100644 index 000000000..9ae2bd074 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/activator_rail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/activator_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/air.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/air.json new file mode 100644 index 000000000..e7062e637 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/air.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:missingno" + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/allay_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/allay_spawn_egg.json new file mode 100644 index 000000000..b7365fef2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/allay_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/allay_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/allium.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/allium.json new file mode 100644 index 000000000..cf132b4b3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/allium.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/allium" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/amethyst_bud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/amethyst_bud.json new file mode 100644 index 000000000..d3bd62823 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/amethyst_bud.json @@ -0,0 +1,20 @@ +{ + "parent": "minecraft:item/generated", + "display": { + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 0, 5, 0 ], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "thirdperson_righthand": { + "translation": [ 0, 4, 1 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "head": { + "translation": [ 0, 14, -5 ] + }, + "gui": { + "translation": [ 0, 2, 0 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/amethyst_cluster.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/amethyst_cluster.json new file mode 100644 index 000000000..abc8c7d35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/amethyst_cluster.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/amethyst_cluster" + }, + "display": { + "head": { + "translation": [ 0, 14, -5 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/amethyst_shard.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/amethyst_shard.json new file mode 100644 index 000000000..a0bab4ff7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/amethyst_shard.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/amethyst_shard" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/angler_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/angler_pottery_sherd.json new file mode 100644 index 000000000..b805ab216 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/angler_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/angler_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/apple.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/apple.json new file mode 100644 index 000000000..c314b0587 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/apple.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/apple" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/archer_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/archer_pottery_sherd.json new file mode 100644 index 000000000..1b73b22dc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/archer_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/archer_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/armadillo_scute.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/armadillo_scute.json new file mode 100644 index 000000000..ca4d17d0d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/armadillo_scute.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/armadillo_scute" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/armadillo_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/armadillo_spawn_egg.json new file mode 100644 index 000000000..73c5e6911 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/armadillo_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/armadillo_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/armor_stand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/armor_stand.json new file mode 100644 index 000000000..f8f34a7b5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/armor_stand.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/armor_stand" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/arms_up_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/arms_up_pottery_sherd.json new file mode 100644 index 000000000..94339d522 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/arms_up_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/arms_up_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/arrow.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/arrow.json new file mode 100644 index 000000000..37689ea02 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/arrow.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/arrow" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/axolotl_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/axolotl_bucket.json new file mode 100644 index 000000000..221f7fa6e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/axolotl_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/axolotl_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/axolotl_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/axolotl_spawn_egg.json new file mode 100644 index 000000000..90a124222 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/axolotl_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/axolotl_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/azure_bluet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/azure_bluet.json new file mode 100644 index 000000000..5d4725150 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/azure_bluet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/azure_bluet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/baked_potato.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/baked_potato.json new file mode 100644 index 000000000..b9324fe71 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/baked_potato.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/baked_potato" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo.json new file mode 100644 index 000000000..2a46e1c3e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/bamboo" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo_chest_raft.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo_chest_raft.json new file mode 100644 index 000000000..93370902d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo_chest_raft.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bamboo_chest_raft" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo_door.json new file mode 100644 index 000000000..ff7c997db --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bamboo_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo_hanging_sign.json new file mode 100644 index 000000000..a634960ab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bamboo_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo_raft.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo_raft.json new file mode 100644 index 000000000..84ded131a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo_raft.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bamboo_raft" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo_sign.json new file mode 100644 index 000000000..2d6bb57c7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bamboo_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bamboo_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/barrier.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/barrier.json new file mode 100644 index 000000000..080cff20c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/barrier.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/barrier" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bat_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bat_spawn_egg.json new file mode 100644 index 000000000..1d2f04751 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bat_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bat_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bee_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bee_spawn_egg.json new file mode 100644 index 000000000..93aed8c10 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bee_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bee_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/beef.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/beef.json new file mode 100644 index 000000000..5545b3c82 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/beef.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/beef" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/beetroot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/beetroot.json new file mode 100644 index 000000000..dcc7276a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/beetroot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/beetroot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/beetroot_seeds.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/beetroot_seeds.json new file mode 100644 index 000000000..d20b2cd44 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/beetroot_seeds.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/beetroot_seeds" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/beetroot_soup.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/beetroot_soup.json new file mode 100644 index 000000000..3a0755d68 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/beetroot_soup.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/beetroot_soup" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bell.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bell.json new file mode 100644 index 000000000..fe24c1f4c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bell.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bell" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/big_dripleaf.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/big_dripleaf.json new file mode 100644 index 000000000..56cc7f0ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/big_dripleaf.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:block/big_dripleaf", + "display": { + "gui": { + "rotation": [ 30, 225, 0 ], + "translation": [ 0, -2, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "fixed": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 0, -1 ], + "scale":[ 0.5, 0.5, 0.5 ] + }, + "thirdperson_righthand": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 1, 0 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 0, 0 ], + "translation": [ 1.13, 0, 1.13], + "scale": [ 0.68, 0.68, 0.68 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_boat.json new file mode 100644 index 000000000..20f68b32d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/birch_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_chest_boat.json new file mode 100644 index 000000000..b7549aeb9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/birch_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_door.json new file mode 100644 index 000000000..2b0e4f916 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/birch_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_hanging_sign.json new file mode 100644 index 000000000..9d15f706c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/birch_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_sapling.json new file mode 100644 index 000000000..3c45f3b6a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/birch_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_sign.json new file mode 100644 index 000000000..d10beadcd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/birch_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/birch_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_bed.json new file mode 100644 index 000000000..c8757a9ae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/black_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_bundle.json new file mode 100644 index 000000000..84299e450 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/black_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_bundle_open_back.json new file mode 100644 index 000000000..ff313951b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/black_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_bundle_open_front.json new file mode 100644 index 000000000..d31bc086c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/black_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_candle.json new file mode 100644 index 000000000..837c9349a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/black_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_dye.json new file mode 100644 index 000000000..0502b4054 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/black_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_harness.json new file mode 100644 index 000000000..c8216ebe6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/black_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_shulker_box.json new file mode 100644 index 000000000..5f45328d1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/black_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_stained_glass_pane.json new file mode 100644 index 000000000..75081749e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/black_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/black_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blade_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blade_pottery_sherd.json new file mode 100644 index 000000000..0795cc804 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blade_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/blade_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blaze_powder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blaze_powder.json new file mode 100644 index 000000000..1e735c193 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blaze_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/blaze_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blaze_rod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blaze_rod.json new file mode 100644 index 000000000..2c8c052a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blaze_rod.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/blaze_rod" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blaze_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blaze_spawn_egg.json new file mode 100644 index 000000000..468642924 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blaze_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/blaze_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_bed.json new file mode 100644 index 000000000..59f7f2ba3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/blue_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_bundle.json new file mode 100644 index 000000000..f6005a3c9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/blue_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_bundle_open_back.json new file mode 100644 index 000000000..ff7d420e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/blue_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_bundle_open_front.json new file mode 100644 index 000000000..3e06e408a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/blue_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_candle.json new file mode 100644 index 000000000..e561230f5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_dye.json new file mode 100644 index 000000000..4235b5988 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/blue_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_egg.json new file mode 100644 index 000000000..5d2aa874b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/blue_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_harness.json new file mode 100644 index 000000000..77d82cf29 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/blue_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_orchid.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_orchid.json new file mode 100644 index 000000000..13449dc1a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_orchid.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/blue_orchid" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_shulker_box.json new file mode 100644 index 000000000..62a9dfd81 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/blue_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_stained_glass_pane.json new file mode 100644 index 000000000..c48900628 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/blue_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bogged_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bogged_spawn_egg.json new file mode 100644 index 000000000..fb5ddc078 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bogged_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bogged_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bolt_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bolt_armor_trim_smithing_template.json new file mode 100644 index 000000000..dfaada50d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bolt_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bolt_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bone.json new file mode 100644 index 000000000..3063401c6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bone.json @@ -0,0 +1,13 @@ +{ + "parent": "item/handheld", + "textures": { + "layer0": "item/bone" + }, + "display": { + "head": { + "rotation": [ 0, 0, -45 ], + "translation": [ 0, -4.5, -6.5], + "scale":[ 1, 1, 1 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bone_meal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bone_meal.json new file mode 100644 index 000000000..60f7c5f09 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bone_meal.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bone_meal" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/book.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/book.json new file mode 100644 index 000000000..1ca201bfe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/book.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/book" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bordure_indented_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bordure_indented_banner_pattern.json new file mode 100644 index 000000000..02706b20c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bordure_indented_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bordure_indented_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bow.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bow.json new file mode 100644 index 000000000..f6c193305 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bow.json @@ -0,0 +1,28 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/bow" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ -80, 260, -40 ], + "translation": [ -1, -2, 2.5 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "thirdperson_lefthand": { + "rotation": [ -80, -280, 40 ], + "translation": [ -1, -2, 2.5 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 1.13, 3.2, 1.13], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 90, -25 ], + "translation": [ 1.13, 3.2, 1.13], + "scale": [ 0.68, 0.68, 0.68 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bow_pulling_0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bow_pulling_0.json new file mode 100644 index 000000000..065264811 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bow_pulling_0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/bow", + "textures": { + "layer0": "minecraft:item/bow_pulling_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bow_pulling_1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bow_pulling_1.json new file mode 100644 index 000000000..bc1f9778f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bow_pulling_1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/bow", + "textures": { + "layer0": "minecraft:item/bow_pulling_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bow_pulling_2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bow_pulling_2.json new file mode 100644 index 000000000..cec87c74e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bow_pulling_2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/bow", + "textures": { + "layer0": "minecraft:item/bow_pulling_2" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bowl.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bowl.json new file mode 100644 index 000000000..d6a579ca4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bowl.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bowl" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brain_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brain_coral.json new file mode 100644 index 000000000..68c13d9d0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brain_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/brain_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brain_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brain_coral_fan.json new file mode 100644 index 000000000..9b00117a0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brain_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/brain_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bread.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bread.json new file mode 100644 index 000000000..9f62cd758 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bread.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bread" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/breeze_rod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/breeze_rod.json new file mode 100644 index 000000000..3e621f36d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/breeze_rod.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/breeze_rod" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/breeze_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/breeze_spawn_egg.json new file mode 100644 index 000000000..e421a5907 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/breeze_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/breeze_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brewer_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brewer_pottery_sherd.json new file mode 100644 index 000000000..88b36e178 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brewer_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/brewer_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brewing_stand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brewing_stand.json new file mode 100644 index 000000000..414f4eccd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brewing_stand.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/brewing_stand" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brick.json new file mode 100644 index 000000000..4ba38e868 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/brick" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_bed.json new file mode 100644 index 000000000..fd4abaa04 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/brown_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_bundle.json new file mode 100644 index 000000000..7f289642b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/brown_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_bundle_open_back.json new file mode 100644 index 000000000..fa9041ebb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/brown_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_bundle_open_front.json new file mode 100644 index 000000000..e0fa96f04 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/brown_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_candle.json new file mode 100644 index 000000000..0486b2818 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/brown_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_dye.json new file mode 100644 index 000000000..d9cb87fbf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/brown_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_egg.json new file mode 100644 index 000000000..900e61a9d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/brown_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_harness.json new file mode 100644 index 000000000..ec3ce2b40 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/brown_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_mushroom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_mushroom.json new file mode 100644 index 000000000..f1779d5c9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_mushroom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/brown_mushroom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_shulker_box.json new file mode 100644 index 000000000..c28ee18a0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/brown_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_stained_glass_pane.json new file mode 100644 index 000000000..0a40ae5fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brown_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/brown_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brush.json new file mode 100644 index 000000000..8973ac981 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brush.json @@ -0,0 +1,23 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/brush" + }, + "display": { + "firstperson_lefthand": { + "rotation": [ 55, -85, 0 ], + "translation": [ 8.0, 0.5, -5.5 ], + "scale": [ 1.0, 1.0, 1.0 ] + }, + "thirdperson_righthand": { + "rotation": [ 0, 0, 45 ], + "translation": [ 0, 4, 0 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 0, -45 ], + "translation": [ 0, 4, 0 ], + "scale": [ 0.9, 0.9, 0.9 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brush_brushing_0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brush_brushing_0.json new file mode 100644 index 000000000..672921573 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brush_brushing_0.json @@ -0,0 +1,23 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/brush" + }, + "display": { + "firstperson_lefthand": { + "rotation": [ 55, -85, 0 ], + "translation": [ 8.0, 0.5, -5.5 ], + "scale": [ 1.0, 1.0, 1.0 ] + }, + "thirdperson_righthand": { + "rotation": [ 0, 0, 0 ], + "translation": [ 4, 2, 0 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 0, 0], + "translation": [ -4, 2, 0 ], + "scale": [ 0.9, 0.9, 0.9 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brush_brushing_1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brush_brushing_1.json new file mode 100644 index 000000000..8973ac981 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brush_brushing_1.json @@ -0,0 +1,23 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/brush" + }, + "display": { + "firstperson_lefthand": { + "rotation": [ 55, -85, 0 ], + "translation": [ 8.0, 0.5, -5.5 ], + "scale": [ 1.0, 1.0, 1.0 ] + }, + "thirdperson_righthand": { + "rotation": [ 0, 0, 45 ], + "translation": [ 0, 4, 0 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 0, -45 ], + "translation": [ 0, 4, 0 ], + "scale": [ 0.9, 0.9, 0.9 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brush_brushing_2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brush_brushing_2.json new file mode 100644 index 000000000..729697bec --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/brush_brushing_2.json @@ -0,0 +1,23 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/brush" + }, + "display": { + "firstperson_lefthand": { + "rotation": [ 55, -85, 0 ], + "translation": [ 8.0, 0.5, -5.5 ], + "scale": [ 1.0, 1.0, 1.0 ] + }, + "thirdperson_righthand": { + "rotation": [ 0, 0, 90 ], + "translation": [ -4, 2, 0 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 0, -90 ], + "translation": [ 4, 2, 0 ], + "scale": [ 0.9, 0.9, 0.9 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bubble_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bubble_coral.json new file mode 100644 index 000000000..8d8ea3f8e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bubble_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/bubble_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bubble_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bubble_coral_fan.json new file mode 100644 index 000000000..40a144167 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bubble_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/bubble_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bucket.json new file mode 100644 index 000000000..727318a40 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bundle.json new file mode 100644 index 000000000..af189a9c9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bundle_open_back.json new file mode 100644 index 000000000..18ed887f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bundle_open_front.json new file mode 100644 index 000000000..aa799600c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/burn_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/burn_pottery_sherd.json new file mode 100644 index 000000000..1c81d466b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/burn_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/burn_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bush.json new file mode 100644 index 000000000..b9945900a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/bush.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/bush" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cactus_flower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cactus_flower.json new file mode 100644 index 000000000..c97601721 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cactus_flower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/cactus_flower" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cake.json new file mode 100644 index 000000000..70a9bd0af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cake.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cake" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/camel_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/camel_spawn_egg.json new file mode 100644 index 000000000..1ac9acb3f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/camel_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/camel_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/campfire.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/campfire.json new file mode 100644 index 000000000..8042feb6d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/campfire.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/campfire" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/candle.json new file mode 100644 index 000000000..9e4f4d11a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/carrot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/carrot.json new file mode 100644 index 000000000..3fe4125ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/carrot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/carrot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/carrot_on_a_stick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/carrot_on_a_stick.json new file mode 100644 index 000000000..a768c1f25 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/carrot_on_a_stick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld_rod", + "textures": { + "layer0": "minecraft:item/carrot_on_a_stick" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cat_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cat_spawn_egg.json new file mode 100644 index 000000000..385f2c10f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cat_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cat_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cauldron.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cauldron.json new file mode 100644 index 000000000..43b8a2480 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cauldron.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cauldron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cave_spider_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cave_spider_spawn_egg.json new file mode 100644 index 000000000..f5f57afb3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cave_spider_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cave_spider_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chain.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chain.json new file mode 100644 index 000000000..c6ed30bf1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chain.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chain" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots.json new file mode 100644 index 000000000..35126d5ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_amethyst_trim.json new file mode 100644 index 000000000..14ea3c2b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_copper_trim.json new file mode 100644 index 000000000..d05f56ae5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_diamond_trim.json new file mode 100644 index 000000000..c66f7f1cc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_emerald_trim.json new file mode 100644 index 000000000..748078fe8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_gold_trim.json new file mode 100644 index 000000000..6be04b71a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_iron_trim.json new file mode 100644 index 000000000..fc71c6d8b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_lapis_trim.json new file mode 100644 index 000000000..105d7c72d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_netherite_trim.json new file mode 100644 index 000000000..ecc9975e1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_quartz_trim.json new file mode 100644 index 000000000..2657964ae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_redstone_trim.json new file mode 100644 index 000000000..48eee0190 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_resin_trim.json new file mode 100644 index 000000000..b6c36c2d9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_boots_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate.json new file mode 100644 index 000000000..3efbf4107 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_amethyst_trim.json new file mode 100644 index 000000000..d3af51849 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_copper_trim.json new file mode 100644 index 000000000..7c8c3c439 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_diamond_trim.json new file mode 100644 index 000000000..374ccdb9a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_emerald_trim.json new file mode 100644 index 000000000..3e871cda2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_gold_trim.json new file mode 100644 index 000000000..cc80f46da --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_iron_trim.json new file mode 100644 index 000000000..81a5242c5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_lapis_trim.json new file mode 100644 index 000000000..865560ab4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_netherite_trim.json new file mode 100644 index 000000000..4c9e2289d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_quartz_trim.json new file mode 100644 index 000000000..291441ae8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_redstone_trim.json new file mode 100644 index 000000000..4ee218315 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_resin_trim.json new file mode 100644 index 000000000..f44bdc5e3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet.json new file mode 100644 index 000000000..e5bd2d42d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_amethyst_trim.json new file mode 100644 index 000000000..d1fdcc920 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_copper_trim.json new file mode 100644 index 000000000..ef16e96f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_diamond_trim.json new file mode 100644 index 000000000..e004f2d17 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_emerald_trim.json new file mode 100644 index 000000000..cf1b7fb64 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_gold_trim.json new file mode 100644 index 000000000..c83e53433 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_iron_trim.json new file mode 100644 index 000000000..56b43947f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_lapis_trim.json new file mode 100644 index 000000000..8cae5aea5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_netherite_trim.json new file mode 100644 index 000000000..d7b200160 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_quartz_trim.json new file mode 100644 index 000000000..83b8eba24 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_redstone_trim.json new file mode 100644 index 000000000..03406139f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_resin_trim.json new file mode 100644 index 000000000..0d8593073 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_helmet_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings.json new file mode 100644 index 000000000..22530cf97 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_amethyst_trim.json new file mode 100644 index 000000000..7c1b0e8f0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_copper_trim.json new file mode 100644 index 000000000..510189833 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_diamond_trim.json new file mode 100644 index 000000000..6344872e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_emerald_trim.json new file mode 100644 index 000000000..747b1f3a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_gold_trim.json new file mode 100644 index 000000000..4d23f0579 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_iron_trim.json new file mode 100644 index 000000000..71034c608 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_lapis_trim.json new file mode 100644 index 000000000..d54897c6c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_netherite_trim.json new file mode 100644 index 000000000..ff14a3878 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_quartz_trim.json new file mode 100644 index 000000000..97a0aa847 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_redstone_trim.json new file mode 100644 index 000000000..8117e44af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_resin_trim.json new file mode 100644 index 000000000..359125397 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chainmail_leggings_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/charcoal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/charcoal.json new file mode 100644 index 000000000..d50222351 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/charcoal.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/charcoal" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_boat.json new file mode 100644 index 000000000..dae18f875 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cherry_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_chest_boat.json new file mode 100644 index 000000000..3be1e98f8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cherry_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_door.json new file mode 100644 index 000000000..bd650f606 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cherry_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_hanging_sign.json new file mode 100644 index 000000000..0d513d12b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cherry_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_sapling.json new file mode 100644 index 000000000..44470b530 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/cherry_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_sign.json new file mode 100644 index 000000000..e82a317d1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cherry_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cherry_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chest.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chest.json new file mode 100644 index 000000000..fb1b4c691 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chest.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_chest", + "textures": { + "particle": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chest_minecart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chest_minecart.json new file mode 100644 index 000000000..bacac30e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chest_minecart.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chest_minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chicken.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chicken.json new file mode 100644 index 000000000..661e00acf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chicken.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chicken" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chicken_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chicken_spawn_egg.json new file mode 100644 index 000000000..bd2b54fd4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chicken_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chicken_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chorus_fruit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chorus_fruit.json new file mode 100644 index 000000000..8c84c4f33 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/chorus_fruit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chorus_fruit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clay_ball.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clay_ball.json new file mode 100644 index 000000000..1cfb12b5f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clay_ball.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clay_ball" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_00.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_00.json new file mode 100644 index 000000000..e8dfc6093 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_00.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_00" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_01.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_01.json new file mode 100644 index 000000000..fc6b62936 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_01.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_01" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_02.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_02.json new file mode 100644 index 000000000..329f07c4b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_02.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_02" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_03.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_03.json new file mode 100644 index 000000000..2f727967d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_03.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_03" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_04.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_04.json new file mode 100644 index 000000000..a29f62930 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_04.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_04" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_05.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_05.json new file mode 100644 index 000000000..c054a610d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_05.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_05" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_06.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_06.json new file mode 100644 index 000000000..45d346d6a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_06.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_06" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_07.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_07.json new file mode 100644 index 000000000..6e218b17e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_07.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_07" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_08.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_08.json new file mode 100644 index 000000000..5bacb1d17 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_08.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_08" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_09.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_09.json new file mode 100644 index 000000000..af1b9d9eb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_09.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_09" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_10.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_10.json new file mode 100644 index 000000000..f4c66214e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_10.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_10" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_11.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_11.json new file mode 100644 index 000000000..9ddde2ece --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_11.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_11" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_12.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_12.json new file mode 100644 index 000000000..42cdfdde0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_12.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_12" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_13.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_13.json new file mode 100644 index 000000000..a81db14bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_13.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_13" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_14.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_14.json new file mode 100644 index 000000000..5eb2e365f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_14.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_14" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_15.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_15.json new file mode 100644 index 000000000..34b71c539 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_15.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_15" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_16.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_16.json new file mode 100644 index 000000000..6ad0e2c4c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_16.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_16" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_17.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_17.json new file mode 100644 index 000000000..ce4688087 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_17.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_17" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_18.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_18.json new file mode 100644 index 000000000..ecda55f2b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_18.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_18" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_19.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_19.json new file mode 100644 index 000000000..750bf76e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_19.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_19" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_20.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_20.json new file mode 100644 index 000000000..aa1136d58 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_20.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_20" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_21.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_21.json new file mode 100644 index 000000000..aabcd1303 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_21.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_21" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_22.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_22.json new file mode 100644 index 000000000..0c9cfe8ea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_22.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_22" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_23.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_23.json new file mode 100644 index 000000000..18752a4ce --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_23.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_23" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_24.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_24.json new file mode 100644 index 000000000..7e875df9a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_24.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_24" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_25.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_25.json new file mode 100644 index 000000000..4c939e6a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_25.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_25" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_26.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_26.json new file mode 100644 index 000000000..8039bdef0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_26.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_26" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_27.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_27.json new file mode 100644 index 000000000..76fd7d6e5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_27.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_27" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_28.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_28.json new file mode 100644 index 000000000..ef5c699b6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_28.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_28" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_29.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_29.json new file mode 100644 index 000000000..f95d697fe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_29.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_29" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_30.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_30.json new file mode 100644 index 000000000..328a5161e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_30.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_30" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_31.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_31.json new file mode 100644 index 000000000..28b91d101 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_31.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_31" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_32.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_32.json new file mode 100644 index 000000000..c6d18099b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_32.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_32" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_33.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_33.json new file mode 100644 index 000000000..c5a1932f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_33.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_33" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_34.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_34.json new file mode 100644 index 000000000..584f10d3e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_34.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_34" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_35.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_35.json new file mode 100644 index 000000000..aad78040a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_35.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_35" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_36.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_36.json new file mode 100644 index 000000000..d1a8c92bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_36.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_36" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_37.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_37.json new file mode 100644 index 000000000..ef30c8237 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_37.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_37" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_38.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_38.json new file mode 100644 index 000000000..243825acf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_38.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_38" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_39.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_39.json new file mode 100644 index 000000000..59de1c0a9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_39.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_39" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_40.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_40.json new file mode 100644 index 000000000..1c629d8f0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_40.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_40" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_41.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_41.json new file mode 100644 index 000000000..646d162e0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_41.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_41" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_42.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_42.json new file mode 100644 index 000000000..8f3f38d11 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_42.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_42" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_43.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_43.json new file mode 100644 index 000000000..4930ee49d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_43.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_43" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_44.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_44.json new file mode 100644 index 000000000..e98964dad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_44.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_44" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_45.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_45.json new file mode 100644 index 000000000..dd8a50ea7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_45.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_45" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_46.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_46.json new file mode 100644 index 000000000..7bc0f9beb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_46.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_46" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_47.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_47.json new file mode 100644 index 000000000..97835facd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_47.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_47" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_48.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_48.json new file mode 100644 index 000000000..617408133 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_48.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_48" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_49.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_49.json new file mode 100644 index 000000000..3c6067e62 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_49.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_49" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_50.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_50.json new file mode 100644 index 000000000..3e30e1d8b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_50.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_50" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_51.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_51.json new file mode 100644 index 000000000..45af5151e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_51.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_51" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_52.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_52.json new file mode 100644 index 000000000..9a28ead08 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_52.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_52" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_53.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_53.json new file mode 100644 index 000000000..85176573d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_53.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_53" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_54.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_54.json new file mode 100644 index 000000000..096b67a56 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_54.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_54" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_55.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_55.json new file mode 100644 index 000000000..730b22c00 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_55.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_55" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_56.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_56.json new file mode 100644 index 000000000..ad087180d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_56.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_56" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_57.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_57.json new file mode 100644 index 000000000..47711b17c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_57.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_57" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_58.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_58.json new file mode 100644 index 000000000..420370eae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_58.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_58" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_59.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_59.json new file mode 100644 index 000000000..d8ca2ed35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_59.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_59" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_60.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_60.json new file mode 100644 index 000000000..2b50d056d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_60.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_60" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_61.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_61.json new file mode 100644 index 000000000..c0cba9653 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_61.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_61" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_62.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_62.json new file mode 100644 index 000000000..cb92524ba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_62.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_62" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_63.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_63.json new file mode 100644 index 000000000..db6691c95 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/clock_63.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_63" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/closed_eyeblossom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/closed_eyeblossom.json new file mode 100644 index 000000000..a75232fd7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/closed_eyeblossom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/closed_eyeblossom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/coal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/coal.json new file mode 100644 index 000000000..551d462ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/coal.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/coal" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/coast_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/coast_armor_trim_smithing_template.json new file mode 100644 index 000000000..598b27c88 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/coast_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/coast_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cobweb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cobweb.json new file mode 100644 index 000000000..64ebc0bd1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cobweb.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/cobweb" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cocoa_beans.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cocoa_beans.json new file mode 100644 index 000000000..cb83b5d4d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cocoa_beans.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cocoa_beans" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cod.json new file mode 100644 index 000000000..a36ba0c8e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cod.json @@ -0,0 +1,13 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/cod" + }, + "display": { + "head": { + "rotation": [ 0, 90, -60 ], + "translation": [ -7, -4, -7], + "scale":[ 0.8, 0.8, 0.8] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cod_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cod_bucket.json new file mode 100644 index 000000000..35c4ca0f5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cod_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cod_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cod_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cod_spawn_egg.json new file mode 100644 index 000000000..f77e73aa1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cod_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cod_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/command_block_minecart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/command_block_minecart.json new file mode 100644 index 000000000..7a3cf69b6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/command_block_minecart.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/command_block_minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/comparator.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/comparator.json new file mode 100644 index 000000000..6aa4fbe2d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/comparator.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/comparator" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_00.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_00.json new file mode 100644 index 000000000..dc856843d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_00.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_00" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_01.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_01.json new file mode 100644 index 000000000..75d4178dc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_01.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_01" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_02.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_02.json new file mode 100644 index 000000000..b91b4ba83 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_02.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_02" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_03.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_03.json new file mode 100644 index 000000000..10bf34a65 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_03.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_03" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_04.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_04.json new file mode 100644 index 000000000..cf2e7eb7a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_04.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_04" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_05.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_05.json new file mode 100644 index 000000000..e78ede9ca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_05.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_05" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_06.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_06.json new file mode 100644 index 000000000..3679f2293 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_06.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_06" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_07.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_07.json new file mode 100644 index 000000000..37c1d3102 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_07.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_07" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_08.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_08.json new file mode 100644 index 000000000..706d7fb84 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_08.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_08" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_09.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_09.json new file mode 100644 index 000000000..1a0dd1a36 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_09.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_09" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_10.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_10.json new file mode 100644 index 000000000..965ec5602 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_10.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_10" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_11.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_11.json new file mode 100644 index 000000000..dde2e5592 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_11.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_11" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_12.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_12.json new file mode 100644 index 000000000..ffe3aa7dc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_12.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_12" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_13.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_13.json new file mode 100644 index 000000000..985d2d38b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_13.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_13" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_14.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_14.json new file mode 100644 index 000000000..27fc108b4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_14.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_14" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_15.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_15.json new file mode 100644 index 000000000..0b72926ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_15.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_15" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_16.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_16.json new file mode 100644 index 000000000..19788d5e9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_16.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_16" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_17.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_17.json new file mode 100644 index 000000000..ddcb506f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_17.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_17" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_18.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_18.json new file mode 100644 index 000000000..5f47bcdbe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_18.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_18" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_19.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_19.json new file mode 100644 index 000000000..256894713 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_19.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_19" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_20.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_20.json new file mode 100644 index 000000000..26b95b334 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_20.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_20" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_21.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_21.json new file mode 100644 index 000000000..0948b81aa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_21.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_21" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_22.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_22.json new file mode 100644 index 000000000..a594efd24 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_22.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_22" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_23.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_23.json new file mode 100644 index 000000000..8e7b9c002 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_23.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_23" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_24.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_24.json new file mode 100644 index 000000000..b9bba9033 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_24.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_24" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_25.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_25.json new file mode 100644 index 000000000..b896c210c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_25.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_25" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_26.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_26.json new file mode 100644 index 000000000..8c6c7aac3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_26.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_26" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_27.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_27.json new file mode 100644 index 000000000..f5e26c56e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_27.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_27" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_28.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_28.json new file mode 100644 index 000000000..7a766cfd2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_28.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_28" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_29.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_29.json new file mode 100644 index 000000000..990c9054f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_29.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_29" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_30.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_30.json new file mode 100644 index 000000000..725443ad2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_30.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_30" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_31.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_31.json new file mode 100644 index 000000000..bbbd539fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/compass_31.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_31" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/conduit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/conduit.json new file mode 100644 index 000000000..c8efa7857 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/conduit.json @@ -0,0 +1,37 @@ +{ + "textures": { + "particle": "block/conduit" + }, + "display": { + "gui": { + "rotation": [ 30, 45, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 1.0, 1.0, 1.0 ] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 3, 0], + "scale":[ 0.5, 0.5, 0.5 ] + }, + "head": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 1, 1, 1] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 1, 1, 1 ] + }, + "thirdperson_righthand": { + "rotation": [ 75, 315, 0 ], + "translation": [ 0, 2.5, 0], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 315, 0 ], + "translation": [ 0, 0, 0], + "scale": [ 0.8, 0.8, 0.8 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_beef.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_beef.json new file mode 100644 index 000000000..2360514a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_beef.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cooked_beef" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_chicken.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_chicken.json new file mode 100644 index 000000000..6608b49c2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_chicken.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cooked_chicken" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_cod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_cod.json new file mode 100644 index 000000000..ed4d23924 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_cod.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cooked_cod" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_mutton.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_mutton.json new file mode 100644 index 000000000..41455e0e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_mutton.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cooked_mutton" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_porkchop.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_porkchop.json new file mode 100644 index 000000000..85a6bb4f0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_porkchop.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cooked_porkchop" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_rabbit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_rabbit.json new file mode 100644 index 000000000..7217b8a86 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_rabbit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cooked_rabbit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_salmon.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_salmon.json new file mode 100644 index 000000000..d4be30a79 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cooked_salmon.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cooked_salmon" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cookie.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cookie.json new file mode 100644 index 000000000..c1addfd8f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cookie.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cookie" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/copper_door.json new file mode 100644 index 000000000..88468c6b4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/copper_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/copper_ingot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/copper_ingot.json new file mode 100644 index 000000000..c8feae647 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/copper_ingot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_ingot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cornflower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cornflower.json new file mode 100644 index 000000000..ca317c8b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cornflower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/cornflower" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cow_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cow_spawn_egg.json new file mode 100644 index 000000000..dff99686c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cow_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cow_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/creaking_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/creaking_spawn_egg.json new file mode 100644 index 000000000..7f7e2f933 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/creaking_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/creaking_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/creeper_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/creeper_banner_pattern.json new file mode 100644 index 000000000..d626b7310 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/creeper_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/creeper_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/creeper_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/creeper_spawn_egg.json new file mode 100644 index 000000000..226a73e77 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/creeper_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/creeper_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crimson_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crimson_door.json new file mode 100644 index 000000000..ef94c1cc8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crimson_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/crimson_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crimson_fungus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crimson_fungus.json new file mode 100644 index 000000000..6fdfd2fa2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crimson_fungus.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/crimson_fungus" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crimson_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crimson_hanging_sign.json new file mode 100644 index 000000000..47d3729d9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crimson_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/crimson_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crimson_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crimson_roots.json new file mode 100644 index 000000000..19ea0092c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crimson_roots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/crimson_roots" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crimson_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crimson_sign.json new file mode 100644 index 000000000..3d2a86b74 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crimson_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/crimson_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow.json new file mode 100644 index 000000000..173cac0f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow.json @@ -0,0 +1,28 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/crossbow_standby" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ -90, 0, -60 ], + "translation": [ 2, 0.1, -3 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "thirdperson_lefthand": { + "rotation": [ -90, 0, 30 ], + "translation": [ 2, 0.1, -3 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "firstperson_righthand": { + "rotation": [ -90, 0, -55 ], + "translation": [ 1.13, 3.2, 1.13], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "firstperson_lefthand": { + "rotation": [ -90, 0, 35 ], + "translation": [ 1.13, 3.2, 1.13], + "scale": [ 0.68, 0.68, 0.68 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow_arrow.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow_arrow.json new file mode 100644 index 000000000..5d324f9ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow_arrow.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/crossbow", + "textures": { + "layer0": "minecraft:item/crossbow_arrow" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow_firework.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow_firework.json new file mode 100644 index 000000000..577cfeac5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow_firework.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/crossbow", + "textures": { + "layer0": "minecraft:item/crossbow_firework" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow_pulling_0.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow_pulling_0.json new file mode 100644 index 000000000..1eca0652e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow_pulling_0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/crossbow", + "textures": { + "layer0": "minecraft:item/crossbow_pulling_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow_pulling_1.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow_pulling_1.json new file mode 100644 index 000000000..d704c814a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow_pulling_1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/crossbow", + "textures": { + "layer0": "minecraft:item/crossbow_pulling_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow_pulling_2.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow_pulling_2.json new file mode 100644 index 000000000..aa95a9440 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/crossbow_pulling_2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/crossbow", + "textures": { + "layer0": "minecraft:item/crossbow_pulling_2" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_bed.json new file mode 100644 index 000000000..046fa8118 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/cyan_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_bundle.json new file mode 100644 index 000000000..996896862 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cyan_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_bundle_open_back.json new file mode 100644 index 000000000..44e1d54a8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/cyan_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_bundle_open_front.json new file mode 100644 index 000000000..e5e484d88 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/cyan_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_candle.json new file mode 100644 index 000000000..4b565936e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cyan_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_dye.json new file mode 100644 index 000000000..634aa6ec1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cyan_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_harness.json new file mode 100644 index 000000000..11c6b9315 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cyan_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_shulker_box.json new file mode 100644 index 000000000..e06a479cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/cyan_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_stained_glass_pane.json new file mode 100644 index 000000000..61db9a4d2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/cyan_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/cyan_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dandelion.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dandelion.json new file mode 100644 index 000000000..1628250e4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dandelion.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dandelion" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/danger_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/danger_pottery_sherd.json new file mode 100644 index 000000000..136b5d965 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/danger_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/danger_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_boat.json new file mode 100644 index 000000000..66ced7960 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dark_oak_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_chest_boat.json new file mode 100644 index 000000000..bc981607d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dark_oak_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_door.json new file mode 100644 index 000000000..89ad212f2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dark_oak_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_hanging_sign.json new file mode 100644 index 000000000..5d095e988 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dark_oak_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_sapling.json new file mode 100644 index 000000000..1a02b3242 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dark_oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_sign.json new file mode 100644 index 000000000..962a237af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dark_oak_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dark_oak_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_brain_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_brain_coral.json new file mode 100644 index 000000000..8e2439122 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_brain_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_brain_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_brain_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_brain_coral_fan.json new file mode 100644 index 000000000..a6488a838 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_brain_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_brain_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_bubble_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_bubble_coral.json new file mode 100644 index 000000000..7802938b9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_bubble_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_bubble_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_bubble_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_bubble_coral_fan.json new file mode 100644 index 000000000..e06ea5f95 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_bubble_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_bubble_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_bush.json new file mode 100644 index 000000000..cb8a5f08f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_bush.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_bush" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_fire_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_fire_coral.json new file mode 100644 index 000000000..7795cff34 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_fire_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_fire_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_fire_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_fire_coral_fan.json new file mode 100644 index 000000000..7d33a6e77 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_fire_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_fire_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_horn_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_horn_coral.json new file mode 100644 index 000000000..8dc414ad3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_horn_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_horn_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_horn_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_horn_coral_fan.json new file mode 100644 index 000000000..4e2715a9b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_horn_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_horn_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_tube_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_tube_coral.json new file mode 100644 index 000000000..1d08eff69 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_tube_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_tube_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_tube_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_tube_coral_fan.json new file mode 100644 index 000000000..86ad4fd4c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dead_tube_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_tube_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/debug_stick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/debug_stick.json new file mode 100644 index 000000000..f0dc3b971 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/debug_stick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stick" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/decorated_pot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/decorated_pot.json new file mode 100644 index 000000000..27f62a4a7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/decorated_pot.json @@ -0,0 +1,38 @@ +{ + "gui_light": "front", + "textures": { + "particle": "entity/decorated_pot/decorated_pot_side" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 2, 0.5], + "scale":[ 0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.375, 0.375, 0.375] + }, + "gui": { + "rotation": [ 30, 45, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.60, 0.60, 0.60] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 1, 0], + "scale":[ 0.25, 0.25, 0.25] + }, + "head": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 16, 0], + "scale":[ 1.5, 1.5, 1.5 ] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.5, 0.5, 0.5] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/detector_rail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/detector_rail.json new file mode 100644 index 000000000..707b24920 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/detector_rail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/detector_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond.json new file mode 100644 index 000000000..dacde7f16 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_axe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_axe.json new file mode 100644 index 000000000..9ab049970 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_axe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/diamond_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots.json new file mode 100644 index 000000000..d32578216 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_amethyst_trim.json new file mode 100644 index 000000000..a193a70c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_copper_trim.json new file mode 100644 index 000000000..5ad8de504 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_diamond_trim.json new file mode 100644 index 000000000..9dd940a29 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_diamond_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_emerald_trim.json new file mode 100644 index 000000000..039509d04 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_gold_trim.json new file mode 100644 index 000000000..99c5a53b8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_iron_trim.json new file mode 100644 index 000000000..f692720f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_lapis_trim.json new file mode 100644 index 000000000..411b13107 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_netherite_trim.json new file mode 100644 index 000000000..55b29ae24 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_quartz_trim.json new file mode 100644 index 000000000..fdecfc8b8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_redstone_trim.json new file mode 100644 index 000000000..5661c5216 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_resin_trim.json new file mode 100644 index 000000000..ffe193dc0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_boots_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate.json new file mode 100644 index 000000000..2ca3222a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_amethyst_trim.json new file mode 100644 index 000000000..34901619b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_copper_trim.json new file mode 100644 index 000000000..9a1c45212 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_diamond_trim.json new file mode 100644 index 000000000..731236728 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_diamond_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_emerald_trim.json new file mode 100644 index 000000000..7656f0b93 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_gold_trim.json new file mode 100644 index 000000000..b3b7c9916 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_iron_trim.json new file mode 100644 index 000000000..6eeae07fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_lapis_trim.json new file mode 100644 index 000000000..a973c512c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_netherite_trim.json new file mode 100644 index 000000000..bb5a1007a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_quartz_trim.json new file mode 100644 index 000000000..937d5ee31 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_redstone_trim.json new file mode 100644 index 000000000..63d776079 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_resin_trim.json new file mode 100644 index 000000000..5c70bed5d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_chestplate_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet.json new file mode 100644 index 000000000..8ab9fc022 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_amethyst_trim.json new file mode 100644 index 000000000..623a571ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_copper_trim.json new file mode 100644 index 000000000..c0a1d8824 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_diamond_trim.json new file mode 100644 index 000000000..0d82b9c02 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_diamond_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_emerald_trim.json new file mode 100644 index 000000000..d23a9a6ea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_gold_trim.json new file mode 100644 index 000000000..cd80cebe0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_iron_trim.json new file mode 100644 index 000000000..694acc9b5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_lapis_trim.json new file mode 100644 index 000000000..014fe7355 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_netherite_trim.json new file mode 100644 index 000000000..35098eb05 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_quartz_trim.json new file mode 100644 index 000000000..104fb171a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_redstone_trim.json new file mode 100644 index 000000000..f520dae20 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_resin_trim.json new file mode 100644 index 000000000..3acc4297a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_helmet_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_hoe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_hoe.json new file mode 100644 index 000000000..c777b6d39 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_hoe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/diamond_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_horse_armor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_horse_armor.json new file mode 100644 index 000000000..017194b73 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_horse_armor.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_horse_armor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings.json new file mode 100644 index 000000000..11622ca5e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_amethyst_trim.json new file mode 100644 index 000000000..355ce9663 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_copper_trim.json new file mode 100644 index 000000000..882c71998 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_diamond_trim.json new file mode 100644 index 000000000..2d6367397 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_diamond_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_emerald_trim.json new file mode 100644 index 000000000..4bacdd8b6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_gold_trim.json new file mode 100644 index 000000000..90655d486 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_iron_trim.json new file mode 100644 index 000000000..7503db5e3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_lapis_trim.json new file mode 100644 index 000000000..8f0a3f847 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_netherite_trim.json new file mode 100644 index 000000000..9d8085c8e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_quartz_trim.json new file mode 100644 index 000000000..85edee564 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_redstone_trim.json new file mode 100644 index 000000000..2232f1a3b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_resin_trim.json new file mode 100644 index 000000000..bf555e5d4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_leggings_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_pickaxe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_pickaxe.json new file mode 100644 index 000000000..88301e5cf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_pickaxe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/diamond_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_shovel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_shovel.json new file mode 100644 index 000000000..dc4e6c84b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_shovel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/diamond_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_sword.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_sword.json new file mode 100644 index 000000000..26f4a2e09 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/diamond_sword.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/diamond_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/disc_fragment_5.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/disc_fragment_5.json new file mode 100644 index 000000000..806624c7b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/disc_fragment_5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/disc_fragment_5" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dolphin_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dolphin_spawn_egg.json new file mode 100644 index 000000000..91e8a5df5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dolphin_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dolphin_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/donkey_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/donkey_spawn_egg.json new file mode 100644 index 000000000..77caa0439 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/donkey_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/donkey_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dragon_breath.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dragon_breath.json new file mode 100644 index 000000000..424980b1d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dragon_breath.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dragon_breath" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dragon_head.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dragon_head.json new file mode 100644 index 000000000..862647621 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dragon_head.json @@ -0,0 +1,15 @@ +{ + "parent": "item/template_skull", + "display": { + "gui": { + "translation": [ -2, 2, 0 ], + "rotation": [ 30, 45, 0 ], + "scale": [ 0.6, 0.6, 0.6 ] + }, + "thirdperson_righthand": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, -1, 2 ], + "scale": [ 0.5, 0.5, 0.5 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dried_kelp.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dried_kelp.json new file mode 100644 index 000000000..a4e4efffc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dried_kelp.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dried_kelp" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/drowned_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/drowned_spawn_egg.json new file mode 100644 index 000000000..c1ec42509 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/drowned_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/drowned_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dune_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dune_armor_trim_smithing_template.json new file mode 100644 index 000000000..eaf0f46c1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/dune_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dune_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/echo_shard.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/echo_shard.json new file mode 100644 index 000000000..a6f71e738 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/echo_shard.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/echo_shard" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/egg.json new file mode 100644 index 000000000..86ec3cae9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/elder_guardian_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/elder_guardian_spawn_egg.json new file mode 100644 index 000000000..8d432b667 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/elder_guardian_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/elder_guardian_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/elytra.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/elytra.json new file mode 100644 index 000000000..2f1789e6a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/elytra.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/elytra" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/elytra_broken.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/elytra_broken.json new file mode 100644 index 000000000..6751976a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/elytra_broken.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/elytra_broken" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/emerald.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/emerald.json new file mode 100644 index 000000000..4f19c1d9f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/emerald.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/enchanted_book.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/enchanted_book.json new file mode 100644 index 000000000..b6a35e577 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/enchanted_book.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/enchanted_book" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/enchanted_golden_apple.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/enchanted_golden_apple.json new file mode 100644 index 000000000..868c92193 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/enchanted_golden_apple.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_apple" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/end_crystal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/end_crystal.json new file mode 100644 index 000000000..15aa5897f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/end_crystal.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/end_crystal" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ender_chest.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ender_chest.json new file mode 100644 index 000000000..31a5c7d7a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ender_chest.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_chest", + "textures": { + "particle": "minecraft:block/obsidian" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ender_dragon_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ender_dragon_spawn_egg.json new file mode 100644 index 000000000..d0a2206df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ender_dragon_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ender_dragon_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ender_eye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ender_eye.json new file mode 100644 index 000000000..d29cc4e08 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ender_eye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ender_eye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ender_pearl.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ender_pearl.json new file mode 100644 index 000000000..e6ccd02fa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ender_pearl.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ender_pearl" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/enderman_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/enderman_spawn_egg.json new file mode 100644 index 000000000..6ea7d6888 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/enderman_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/enderman_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/endermite_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/endermite_spawn_egg.json new file mode 100644 index 000000000..775b5e8ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/endermite_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/endermite_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/evoker_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/evoker_spawn_egg.json new file mode 100644 index 000000000..4b1201247 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/evoker_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/evoker_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/experience_bottle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/experience_bottle.json new file mode 100644 index 000000000..22a77fe72 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/experience_bottle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/experience_bottle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/explorer_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/explorer_pottery_sherd.json new file mode 100644 index 000000000..affa6dd29 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/explorer_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/explorer_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/exposed_copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/exposed_copper_door.json new file mode 100644 index 000000000..78a9d4d8d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/exposed_copper_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/exposed_copper_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/eye_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/eye_armor_trim_smithing_template.json new file mode 100644 index 000000000..d629fc1b6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/eye_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/eye_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/feather.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/feather.json new file mode 100644 index 000000000..1b88f92d8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/feather.json @@ -0,0 +1,13 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/feather" + }, + "display": { + "head": { + "rotation": [ 0, 0, 45 ], + "translation": [ -1, 13, 7], + "scale":[ 1, 1, 1] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fermented_spider_eye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fermented_spider_eye.json new file mode 100644 index 000000000..06bbefceb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fermented_spider_eye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/fermented_spider_eye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fern.json new file mode 100644 index 000000000..851ce5d38 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/fern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/field_masoned_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/field_masoned_banner_pattern.json new file mode 100644 index 000000000..404fbedee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/field_masoned_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/field_masoned_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/filled_map.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/filled_map.json new file mode 100644 index 000000000..2d681387f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/filled_map.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/filled_map", + "layer1": "minecraft:item/filled_map_markings" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fire_charge.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fire_charge.json new file mode 100644 index 000000000..27d3f0d81 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fire_charge.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/fire_charge" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fire_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fire_coral.json new file mode 100644 index 000000000..8585f4c8f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fire_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/fire_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fire_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fire_coral_fan.json new file mode 100644 index 000000000..c27e2d3a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fire_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/fire_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/firefly_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/firefly_bush.json new file mode 100644 index 000000000..e166c3576 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/firefly_bush.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/firefly_bush" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/firework_rocket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/firework_rocket.json new file mode 100644 index 000000000..cb7cf197c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/firework_rocket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/firework_rocket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/firework_star.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/firework_star.json new file mode 100644 index 000000000..b54ca29d1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/firework_star.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/firework_star", + "layer1": "minecraft:item/firework_star_overlay" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fishing_rod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fishing_rod.json new file mode 100644 index 000000000..32143f32d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fishing_rod.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld_rod", + "textures": { + "layer0": "minecraft:item/fishing_rod" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fishing_rod_cast.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fishing_rod_cast.json new file mode 100644 index 000000000..63190afc7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fishing_rod_cast.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld_rod", + "textures": { + "layer0": "minecraft:item/fishing_rod_cast" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flint.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flint.json new file mode 100644 index 000000000..3a5572958 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flint.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/flint" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flint_and_steel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flint_and_steel.json new file mode 100644 index 000000000..d11a12a90 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flint_and_steel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/flint_and_steel" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flow_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flow_armor_trim_smithing_template.json new file mode 100644 index 000000000..0aec5a447 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flow_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/flow_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flow_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flow_banner_pattern.json new file mode 100644 index 000000000..82c9af4ba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flow_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/flow_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flow_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flow_pottery_sherd.json new file mode 100644 index 000000000..ad6dac5dc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flow_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/flow_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flower_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flower_banner_pattern.json new file mode 100644 index 000000000..ea8b8215f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flower_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/flower_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flower_pot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flower_pot.json new file mode 100644 index 000000000..e50e0fa1a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/flower_pot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/flower_pot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fox_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fox_spawn_egg.json new file mode 100644 index 000000000..3a3fd8d45 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/fox_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/fox_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/friend_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/friend_pottery_sherd.json new file mode 100644 index 000000000..b618f305d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/friend_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/friend_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/frog_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/frog_spawn_egg.json new file mode 100644 index 000000000..08e60641b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/frog_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/frog_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/frogspawn.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/frogspawn.json new file mode 100644 index 000000000..6fd44430f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/frogspawn.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/frogspawn" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/furnace_minecart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/furnace_minecart.json new file mode 100644 index 000000000..e3e6f2223 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/furnace_minecart.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/furnace_minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/generated.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/generated.json new file mode 100644 index 000000000..89aa79e95 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/generated.json @@ -0,0 +1,30 @@ +{ + "parent": "builtin/generated", + "gui_light": "front", + "display": { + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 2, 0], + "scale":[ 0.5, 0.5, 0.5 ] + }, + "head": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 13, 7], + "scale":[ 1, 1, 1] + }, + "thirdperson_righthand": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 3, 1 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 1.13, 3.2, 1.13], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "scale": [ 1, 1, 1 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ghast_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ghast_spawn_egg.json new file mode 100644 index 000000000..727230af5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ghast_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ghast_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ghast_tear.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ghast_tear.json new file mode 100644 index 000000000..d7d6e6f3a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ghast_tear.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ghast_tear" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glass_bottle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glass_bottle.json new file mode 100644 index 000000000..9b4ab510c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glass_bottle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/glass_bottle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glass_pane.json new file mode 100644 index 000000000..de799dcff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glistering_melon_slice.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glistering_melon_slice.json new file mode 100644 index 000000000..90c290a08 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glistering_melon_slice.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/glistering_melon_slice" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/globe_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/globe_banner_pattern.json new file mode 100644 index 000000000..3948f16f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/globe_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/globe_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glow_berries.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glow_berries.json new file mode 100644 index 000000000..b77ea725e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glow_berries.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/glow_berries" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glow_ink_sac.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glow_ink_sac.json new file mode 100644 index 000000000..fc21cec42 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glow_ink_sac.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/glow_ink_sac" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glow_item_frame.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glow_item_frame.json new file mode 100644 index 000000000..a2323a19b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glow_item_frame.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/glow_item_frame" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glow_lichen.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glow_lichen.json new file mode 100644 index 000000000..7b796f838 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glow_lichen.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/glow_lichen" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glow_squid_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glow_squid_spawn_egg.json new file mode 100644 index 000000000..1cfe9f30b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glow_squid_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/glow_squid_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glowstone_dust.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glowstone_dust.json new file mode 100644 index 000000000..4b78f60be --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/glowstone_dust.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/glowstone_dust" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/goat_horn.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/goat_horn.json new file mode 100644 index 000000000..d2632890f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/goat_horn.json @@ -0,0 +1,28 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/goat_horn" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 3, 1 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 3, 1 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 1.13, 3.2, 1.13 ], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 90, -25 ], + "translation": [ 1.13, 3.2, 1.13 ], + "scale": [ 0.68, 0.68, 0.68 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/goat_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/goat_spawn_egg.json new file mode 100644 index 000000000..145421ec3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/goat_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/goat_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gold_ingot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gold_ingot.json new file mode 100644 index 000000000..230e3111f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gold_ingot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/gold_ingot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gold_nugget.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gold_nugget.json new file mode 100644 index 000000000..3da43c93d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gold_nugget.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/gold_nugget" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_apple.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_apple.json new file mode 100644 index 000000000..868c92193 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_apple.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_apple" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_axe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_axe.json new file mode 100644 index 000000000..42008eeae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_axe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/golden_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots.json new file mode 100644 index 000000000..24f3c5879 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_amethyst_trim.json new file mode 100644 index 000000000..da31bd587 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_copper_trim.json new file mode 100644 index 000000000..e79eb60a1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_diamond_trim.json new file mode 100644 index 000000000..2ced80f9a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_emerald_trim.json new file mode 100644 index 000000000..78154d772 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_gold_trim.json new file mode 100644 index 000000000..354544588 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_gold_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_iron_trim.json new file mode 100644 index 000000000..b63010f02 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_lapis_trim.json new file mode 100644 index 000000000..268ab549a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_netherite_trim.json new file mode 100644 index 000000000..e329b9cbc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_quartz_trim.json new file mode 100644 index 000000000..4e8cc2d3b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_redstone_trim.json new file mode 100644 index 000000000..bda608e0b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_resin_trim.json new file mode 100644 index 000000000..3bf3bb8ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_boots_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_carrot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_carrot.json new file mode 100644 index 000000000..8d36365f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_carrot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_carrot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate.json new file mode 100644 index 000000000..8c7b0bbf7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_amethyst_trim.json new file mode 100644 index 000000000..d0b4b1816 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_copper_trim.json new file mode 100644 index 000000000..f9b9f9382 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_diamond_trim.json new file mode 100644 index 000000000..adf1bc6f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_emerald_trim.json new file mode 100644 index 000000000..af97428b3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_gold_trim.json new file mode 100644 index 000000000..3328597c2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_gold_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_iron_trim.json new file mode 100644 index 000000000..ed2aa0edd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_lapis_trim.json new file mode 100644 index 000000000..4c748a101 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_netherite_trim.json new file mode 100644 index 000000000..aab4dfb37 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_quartz_trim.json new file mode 100644 index 000000000..1632e6ce6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_redstone_trim.json new file mode 100644 index 000000000..2f24fa905 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_resin_trim.json new file mode 100644 index 000000000..98f609a05 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_chestplate_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet.json new file mode 100644 index 000000000..d0c081568 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_amethyst_trim.json new file mode 100644 index 000000000..47ccae21b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_copper_trim.json new file mode 100644 index 000000000..4a3ee8e40 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_diamond_trim.json new file mode 100644 index 000000000..2ad2462a9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_emerald_trim.json new file mode 100644 index 000000000..f9623b16d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_gold_trim.json new file mode 100644 index 000000000..2276b5ad1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_gold_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_iron_trim.json new file mode 100644 index 000000000..81f10c4d8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_lapis_trim.json new file mode 100644 index 000000000..ff7d2b4d6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_netherite_trim.json new file mode 100644 index 000000000..bbbb72913 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_quartz_trim.json new file mode 100644 index 000000000..583d8cda9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_redstone_trim.json new file mode 100644 index 000000000..3a85360b6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_resin_trim.json new file mode 100644 index 000000000..d9d23f2eb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_helmet_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_hoe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_hoe.json new file mode 100644 index 000000000..7d2a2e5df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_hoe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/golden_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_horse_armor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_horse_armor.json new file mode 100644 index 000000000..9fbc0e909 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_horse_armor.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_horse_armor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings.json new file mode 100644 index 000000000..cb5bd0e69 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_amethyst_trim.json new file mode 100644 index 000000000..3d4bb850b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_copper_trim.json new file mode 100644 index 000000000..41e999edc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_diamond_trim.json new file mode 100644 index 000000000..d85fda9b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_emerald_trim.json new file mode 100644 index 000000000..544b209fa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_gold_trim.json new file mode 100644 index 000000000..23eae507f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_gold_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_iron_trim.json new file mode 100644 index 000000000..877cb174d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_lapis_trim.json new file mode 100644 index 000000000..bb2fca2b8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_netherite_trim.json new file mode 100644 index 000000000..0a41f244c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_quartz_trim.json new file mode 100644 index 000000000..c966b6d5e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_redstone_trim.json new file mode 100644 index 000000000..ec9e671ff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_resin_trim.json new file mode 100644 index 000000000..b685dc674 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_leggings_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_pickaxe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_pickaxe.json new file mode 100644 index 000000000..185c855bc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_pickaxe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/golden_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_shovel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_shovel.json new file mode 100644 index 000000000..c2d1dc003 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_shovel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/golden_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_sword.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_sword.json new file mode 100644 index 000000000..02e540976 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/golden_sword.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/golden_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_bed.json new file mode 100644 index 000000000..306670549 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/gray_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_bundle.json new file mode 100644 index 000000000..a076d1563 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/gray_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_bundle_open_back.json new file mode 100644 index 000000000..f27e95531 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/gray_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_bundle_open_front.json new file mode 100644 index 000000000..9c7bb376b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/gray_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_candle.json new file mode 100644 index 000000000..176cf59ff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_dye.json new file mode 100644 index 000000000..f3c301065 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/gray_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_harness.json new file mode 100644 index 000000000..20d4b49b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/gray_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_shulker_box.json new file mode 100644 index 000000000..c70434932 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/gray_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_stained_glass_pane.json new file mode 100644 index 000000000..e2b88aa70 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gray_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_bed.json new file mode 100644 index 000000000..d7c7154a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/green_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_bundle.json new file mode 100644 index 000000000..c4589577d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/green_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_bundle_open_back.json new file mode 100644 index 000000000..81ffde325 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/green_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_bundle_open_front.json new file mode 100644 index 000000000..a188a6a14 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/green_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_candle.json new file mode 100644 index 000000000..494c6ed42 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/green_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_dye.json new file mode 100644 index 000000000..2ded932e7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/green_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_harness.json new file mode 100644 index 000000000..e26462865 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/green_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_shulker_box.json new file mode 100644 index 000000000..6e8e01e7a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/green_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_stained_glass_pane.json new file mode 100644 index 000000000..ff4a30f74 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/green_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/green_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/guardian_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/guardian_spawn_egg.json new file mode 100644 index 000000000..da7bdc47b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/guardian_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/guardian_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gunpowder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gunpowder.json new file mode 100644 index 000000000..82faa64c6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/gunpowder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/gunpowder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/guster_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/guster_banner_pattern.json new file mode 100644 index 000000000..c24b83c7c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/guster_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/guster_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/guster_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/guster_pottery_sherd.json new file mode 100644 index 000000000..f1bda3e1f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/guster_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/guster_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/handheld.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/handheld.json new file mode 100644 index 000000000..51ea90fc5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/handheld.json @@ -0,0 +1,25 @@ +{ + "parent": "item/generated", + "display": { + "thirdperson_righthand": { + "rotation": [ 0, -90, 55 ], + "translation": [ 0, 4.0, 0.5 ], + "scale": [ 0.85, 0.85, 0.85 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 90, -55 ], + "translation": [ 0, 4.0, 0.5 ], + "scale": [ 0.85, 0.85, 0.85 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 1.13, 3.2, 1.13 ], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 90, -25 ], + "translation": [ 1.13, 3.2, 1.13 ], + "scale": [ 0.68, 0.68, 0.68 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/handheld_mace.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/handheld_mace.json new file mode 100644 index 000000000..928ce0d22 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/handheld_mace.json @@ -0,0 +1,25 @@ +{ + "parent": "item/handheld", + "display": { + "thirdperson_righthand": { + "rotation": [ 0, -90, 55 ], + "translation": [ 0, 4.0, 1 ], + "scale": [ 1, 1, 1 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 90, -55 ], + "translation": [ 0, 4.0, 1 ], + "scale": [ 1, 1, 1 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 0, 3, 0.8 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 90, -25 ], + "translation": [ 0, 3, 0.8 ], + "scale": [ 0.9, 0.9, 0.9 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/handheld_rod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/handheld_rod.json new file mode 100644 index 000000000..de794a4ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/handheld_rod.json @@ -0,0 +1,25 @@ +{ + "parent": "item/handheld", + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 90, 55 ], + "translation": [ 0, 4.0, 2.5 ], + "scale": [ 0.85, 0.85, 0.85 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, -90, -55 ], + "translation": [ 0, 4.0, 2.5 ], + "scale": [ 0.85, 0.85, 0.85 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 90, 25 ], + "translation": [ 0, 1.6, 0.8 ], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, -90, -25 ], + "translation": [ 0, 1.6, 0.8 ], + "scale": [ 0.68, 0.68, 0.68 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/hanging_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/hanging_roots.json new file mode 100644 index 000000000..05320edbb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/hanging_roots.json @@ -0,0 +1,18 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "minecraft:block/hanging_roots" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 0, 1 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 1.13, 0, 1.13], + "scale": [ 0.68, 0.68, 0.68 ] + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/happy_ghast_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/happy_ghast_spawn_egg.json new file mode 100644 index 000000000..2a1ccf308 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/happy_ghast_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/happy_ghast_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/heart_of_the_sea.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/heart_of_the_sea.json new file mode 100644 index 000000000..eb299204f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/heart_of_the_sea.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/heart_of_the_sea" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/heart_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/heart_pottery_sherd.json new file mode 100644 index 000000000..e5c457415 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/heart_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/heart_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/heartbreak_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/heartbreak_pottery_sherd.json new file mode 100644 index 000000000..48c49fa4f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/heartbreak_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/heartbreak_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/hoglin_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/hoglin_spawn_egg.json new file mode 100644 index 000000000..f70b2420d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/hoglin_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/hoglin_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/honey_bottle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/honey_bottle.json new file mode 100644 index 000000000..2a69e5f9d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/honey_bottle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/honey_bottle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/honeycomb.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/honeycomb.json new file mode 100644 index 000000000..b183a8eca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/honeycomb.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/honeycomb" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/hopper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/hopper.json new file mode 100644 index 000000000..b9e548805 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/hopper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/hopper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/hopper_minecart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/hopper_minecart.json new file mode 100644 index 000000000..8bf456072 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/hopper_minecart.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/hopper_minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/horn_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/horn_coral.json new file mode 100644 index 000000000..5994465ff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/horn_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/horn_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/horn_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/horn_coral_fan.json new file mode 100644 index 000000000..e2078bf4b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/horn_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/horn_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/horse_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/horse_spawn_egg.json new file mode 100644 index 000000000..acd1d7e3a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/horse_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/horse_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/host_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/host_armor_trim_smithing_template.json new file mode 100644 index 000000000..cff91b211 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/host_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/host_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/howl_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/howl_pottery_sherd.json new file mode 100644 index 000000000..377031992 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/howl_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/howl_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/husk_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/husk_spawn_egg.json new file mode 100644 index 000000000..67e1acb11 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/husk_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/husk_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ink_sac.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ink_sac.json new file mode 100644 index 000000000..4e528dcd0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ink_sac.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ink_sac" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_axe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_axe.json new file mode 100644 index 000000000..6ddc54911 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_axe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/iron_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_bars.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_bars.json new file mode 100644 index 000000000..97aa41fc7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_bars.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/iron_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots.json new file mode 100644 index 000000000..ee127da27 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_amethyst_trim.json new file mode 100644 index 000000000..c520b66aa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_copper_trim.json new file mode 100644 index 000000000..f4321a79a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_diamond_trim.json new file mode 100644 index 000000000..58dfbd8a3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_emerald_trim.json new file mode 100644 index 000000000..ebba41162 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_gold_trim.json new file mode 100644 index 000000000..b1601c91a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_iron_trim.json new file mode 100644 index 000000000..65b960829 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_iron_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_lapis_trim.json new file mode 100644 index 000000000..1aefdf66a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_netherite_trim.json new file mode 100644 index 000000000..f6a2d1021 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_quartz_trim.json new file mode 100644 index 000000000..52af0ee74 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_redstone_trim.json new file mode 100644 index 000000000..a838412c6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_resin_trim.json new file mode 100644 index 000000000..50976be49 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_boots_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate.json new file mode 100644 index 000000000..2c52d1bde --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_amethyst_trim.json new file mode 100644 index 000000000..ab82095dc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_copper_trim.json new file mode 100644 index 000000000..956ba4845 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_diamond_trim.json new file mode 100644 index 000000000..e559d7cc5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_emerald_trim.json new file mode 100644 index 000000000..e143c99de --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_gold_trim.json new file mode 100644 index 000000000..f5dfee4c3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_iron_trim.json new file mode 100644 index 000000000..38ba7c1b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_iron_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_lapis_trim.json new file mode 100644 index 000000000..03ae6fbd1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_netherite_trim.json new file mode 100644 index 000000000..ccb152452 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_quartz_trim.json new file mode 100644 index 000000000..981e14a3e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_redstone_trim.json new file mode 100644 index 000000000..208a2524f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_resin_trim.json new file mode 100644 index 000000000..2b877534b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_chestplate_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_door.json new file mode 100644 index 000000000..a057f8f8c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_golem_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_golem_spawn_egg.json new file mode 100644 index 000000000..833cd364b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_golem_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_golem_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet.json new file mode 100644 index 000000000..8203b8a5d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_amethyst_trim.json new file mode 100644 index 000000000..53b64e68a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_copper_trim.json new file mode 100644 index 000000000..61314f95e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_diamond_trim.json new file mode 100644 index 000000000..d469b22f0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_emerald_trim.json new file mode 100644 index 000000000..bc596c65b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_gold_trim.json new file mode 100644 index 000000000..f68de78da --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_iron_trim.json new file mode 100644 index 000000000..b471361fe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_iron_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_lapis_trim.json new file mode 100644 index 000000000..ef272104f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_netherite_trim.json new file mode 100644 index 000000000..9f6c5f523 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_quartz_trim.json new file mode 100644 index 000000000..c34faf479 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_redstone_trim.json new file mode 100644 index 000000000..9ad0a7b50 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_resin_trim.json new file mode 100644 index 000000000..0292053d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_helmet_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_hoe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_hoe.json new file mode 100644 index 000000000..889dd3a38 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_hoe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/iron_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_horse_armor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_horse_armor.json new file mode 100644 index 000000000..3a560516f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_horse_armor.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_horse_armor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_ingot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_ingot.json new file mode 100644 index 000000000..1fc74dfc6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_ingot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_ingot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings.json new file mode 100644 index 000000000..324b71c18 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_amethyst_trim.json new file mode 100644 index 000000000..e64f52a62 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_copper_trim.json new file mode 100644 index 000000000..48a46fe8c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_diamond_trim.json new file mode 100644 index 000000000..a706ce346 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_emerald_trim.json new file mode 100644 index 000000000..88c613757 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_gold_trim.json new file mode 100644 index 000000000..90ca5a6ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_iron_trim.json new file mode 100644 index 000000000..e85d215ec --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_iron_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_lapis_trim.json new file mode 100644 index 000000000..063137c1f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_netherite_trim.json new file mode 100644 index 000000000..5afcdf928 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_quartz_trim.json new file mode 100644 index 000000000..5ce4703ca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_redstone_trim.json new file mode 100644 index 000000000..c907c7a1e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_resin_trim.json new file mode 100644 index 000000000..11dba3be5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_leggings_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_nugget.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_nugget.json new file mode 100644 index 000000000..3873a52ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_nugget.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_nugget" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_pickaxe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_pickaxe.json new file mode 100644 index 000000000..8a5f40797 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_pickaxe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/iron_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_shovel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_shovel.json new file mode 100644 index 000000000..26674cfb2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_shovel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/iron_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_sword.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_sword.json new file mode 100644 index 000000000..ebbcd4118 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/iron_sword.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/iron_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/item_frame.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/item_frame.json new file mode 100644 index 000000000..09797547d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/item_frame.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/item_frame" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_boat.json new file mode 100644 index 000000000..4cc14d5c7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/jungle_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_chest_boat.json new file mode 100644 index 000000000..e2b2e3bbf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/jungle_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_door.json new file mode 100644 index 000000000..2fbc71f50 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/jungle_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_hanging_sign.json new file mode 100644 index 000000000..19222949e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/jungle_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_sapling.json new file mode 100644 index 000000000..4dd71de23 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/jungle_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_sign.json new file mode 100644 index 000000000..2ee2828e1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/jungle_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/jungle_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/kelp.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/kelp.json new file mode 100644 index 000000000..b701d7b50 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/kelp.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/kelp" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/knowledge_book.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/knowledge_book.json new file mode 100644 index 000000000..bc355f72a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/knowledge_book.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/knowledge_book" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ladder.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ladder.json new file mode 100644 index 000000000..b4fd6267c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ladder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/ladder" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lantern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lantern.json new file mode 100644 index 000000000..ce9e5c103 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lapis_lazuli.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lapis_lazuli.json new file mode 100644 index 000000000..ee8bdea52 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lapis_lazuli.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/lapis_lazuli" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/large_amethyst_bud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/large_amethyst_bud.json new file mode 100644 index 000000000..0e601416d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/large_amethyst_bud.json @@ -0,0 +1,11 @@ + { + "parent": "item/amethyst_bud", + "textures": { + "layer0": "minecraft:block/large_amethyst_bud" + }, + "display": { + "fixed": { + "translation": [ 0, 4, 0 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/large_fern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/large_fern.json new file mode 100644 index 000000000..1072e9402 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/large_fern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/large_fern_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lava_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lava_bucket.json new file mode 100644 index 000000000..4052c615e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lava_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/lava_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lead.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lead.json new file mode 100644 index 000000000..df628d663 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lead.json @@ -0,0 +1,13 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/lead" + }, + "display": { + "head": { + "rotation": [ 0, 0, 0 ], + "translation": [ 2.75, -2.75, -6.5], + "scale":[ 0.8, 0.8, 0.8] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leaf_litter.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leaf_litter.json new file mode 100644 index 000000000..3c03d48c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leaf_litter.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leaf_litter" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather.json new file mode 100644 index 000000000..2b48d1f83 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots.json new file mode 100644 index 000000000..54bdcdbf6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_amethyst_trim.json new file mode 100644 index 000000000..2b6f4a7e5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_amethyst_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_copper_trim.json new file mode 100644 index 000000000..e6a7f7c87 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_copper_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_diamond_trim.json new file mode 100644 index 000000000..07dc69b0f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_diamond_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_emerald_trim.json new file mode 100644 index 000000000..9ebfe59ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_emerald_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_gold_trim.json new file mode 100644 index 000000000..e17c9a74b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_gold_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_iron_trim.json new file mode 100644 index 000000000..196913b60 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_iron_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_lapis_trim.json new file mode 100644 index 000000000..8c5b3bdd5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_lapis_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_netherite_trim.json new file mode 100644 index 000000000..254a56366 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_netherite_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_quartz_trim.json new file mode 100644 index 000000000..5d056ad76 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_quartz_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_redstone_trim.json new file mode 100644 index 000000000..c85de7a41 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_redstone_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_resin_trim.json new file mode 100644 index 000000000..43fcb574c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_boots_resin_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate.json new file mode 100644 index 000000000..4628d113f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_amethyst_trim.json new file mode 100644 index 000000000..b615e9476 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_amethyst_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_copper_trim.json new file mode 100644 index 000000000..cccfd3c0a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_copper_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_diamond_trim.json new file mode 100644 index 000000000..660d6665a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_diamond_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_emerald_trim.json new file mode 100644 index 000000000..38ab18ae7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_emerald_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_gold_trim.json new file mode 100644 index 000000000..7dd884934 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_gold_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_iron_trim.json new file mode 100644 index 000000000..9b6fcf497 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_iron_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_lapis_trim.json new file mode 100644 index 000000000..343d68283 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_lapis_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_netherite_trim.json new file mode 100644 index 000000000..a95532ca9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_netherite_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_quartz_trim.json new file mode 100644 index 000000000..319aa4473 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_quartz_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_redstone_trim.json new file mode 100644 index 000000000..cb2008c1a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_redstone_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_resin_trim.json new file mode 100644 index 000000000..41205308d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_chestplate_resin_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet.json new file mode 100644 index 000000000..74041e7cb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_amethyst_trim.json new file mode 100644 index 000000000..6f4df1bbe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_amethyst_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_copper_trim.json new file mode 100644 index 000000000..2c1275a89 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_copper_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_diamond_trim.json new file mode 100644 index 000000000..315eb0dec --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_diamond_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_emerald_trim.json new file mode 100644 index 000000000..0167efb86 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_emerald_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_gold_trim.json new file mode 100644 index 000000000..0e8c4560c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_gold_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_iron_trim.json new file mode 100644 index 000000000..7b1b8b853 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_iron_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_lapis_trim.json new file mode 100644 index 000000000..555c28286 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_lapis_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_netherite_trim.json new file mode 100644 index 000000000..9e3ddb7db --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_netherite_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_quartz_trim.json new file mode 100644 index 000000000..63fe5bc15 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_quartz_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_redstone_trim.json new file mode 100644 index 000000000..df0448307 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_redstone_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_resin_trim.json new file mode 100644 index 000000000..1812bdd3a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_helmet_resin_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_horse_armor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_horse_armor.json new file mode 100644 index 000000000..f96eae753 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_horse_armor.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_horse_armor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings.json new file mode 100644 index 000000000..0d101f4e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_amethyst_trim.json new file mode 100644 index 000000000..331e2096c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_amethyst_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_copper_trim.json new file mode 100644 index 000000000..cc6a39454 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_copper_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_diamond_trim.json new file mode 100644 index 000000000..9a5313eae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_diamond_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_emerald_trim.json new file mode 100644 index 000000000..71156943a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_emerald_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_gold_trim.json new file mode 100644 index 000000000..528c94e7a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_gold_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_iron_trim.json new file mode 100644 index 000000000..3e9d66348 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_iron_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_lapis_trim.json new file mode 100644 index 000000000..6858077cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_lapis_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_netherite_trim.json new file mode 100644 index 000000000..abf3b6157 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_netherite_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_quartz_trim.json new file mode 100644 index 000000000..29b21d50c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_quartz_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_redstone_trim.json new file mode 100644 index 000000000..9b35d59f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_redstone_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_resin_trim.json new file mode 100644 index 000000000..73cde2c43 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/leather_leggings_resin_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lever.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lever.json new file mode 100644 index 000000000..d5a62d479 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lever.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/lever" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light.json new file mode 100644 index 000000000..9afb5f2d6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_00.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_00.json new file mode 100644 index 000000000..f6029196c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_00.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_00" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_01.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_01.json new file mode 100644 index 000000000..50fe9d526 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_01.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_01" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_02.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_02.json new file mode 100644 index 000000000..3112e828d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_02.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_02" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_03.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_03.json new file mode 100644 index 000000000..7b7d13046 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_03.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_03" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_04.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_04.json new file mode 100644 index 000000000..eeca8b9c1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_04.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_04" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_05.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_05.json new file mode 100644 index 000000000..920f2957c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_05.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_05" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_06.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_06.json new file mode 100644 index 000000000..f60f6bf7e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_06.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_06" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_07.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_07.json new file mode 100644 index 000000000..b795ac71e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_07.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_07" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_08.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_08.json new file mode 100644 index 000000000..d34ca3a15 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_08.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_08" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_09.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_09.json new file mode 100644 index 000000000..861002fe1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_09.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_09" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_10.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_10.json new file mode 100644 index 000000000..3bda0d190 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_10.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_10" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_11.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_11.json new file mode 100644 index 000000000..582b6183d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_11.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_11" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_12.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_12.json new file mode 100644 index 000000000..f9dc8d109 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_12.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_12" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_13.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_13.json new file mode 100644 index 000000000..2f9d3815e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_13.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_13" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_14.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_14.json new file mode 100644 index 000000000..263b45fe3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_14.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_14" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_15.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_15.json new file mode 100644 index 000000000..6f39d142a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_15.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_15" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_bed.json new file mode 100644 index 000000000..fac4cda76 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/light_blue_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_bundle.json new file mode 100644 index 000000000..7f4e733b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_blue_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_bundle_open_back.json new file mode 100644 index 000000000..e5a589c94 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/light_blue_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_bundle_open_front.json new file mode 100644 index 000000000..02e939218 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/light_blue_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_candle.json new file mode 100644 index 000000000..e445d4ad5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_dye.json new file mode 100644 index 000000000..297407daf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_blue_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_harness.json new file mode 100644 index 000000000..31259cdd3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_blue_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_shulker_box.json new file mode 100644 index 000000000..d17a7729e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/light_blue_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_stained_glass_pane.json new file mode 100644 index 000000000..d810047f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_blue_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/light_blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_bed.json new file mode 100644 index 000000000..67c2af9eb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/light_gray_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_bundle.json new file mode 100644 index 000000000..88a6b82d3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_gray_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_bundle_open_back.json new file mode 100644 index 000000000..91f04e7c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/light_gray_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_bundle_open_front.json new file mode 100644 index 000000000..3887d1bb4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/light_gray_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_candle.json new file mode 100644 index 000000000..332e87c61 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_dye.json new file mode 100644 index 000000000..40a44accb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_gray_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_harness.json new file mode 100644 index 000000000..432f83fd8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_gray_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_shulker_box.json new file mode 100644 index 000000000..0efe127aa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/light_gray_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_stained_glass_pane.json new file mode 100644 index 000000000..502847437 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/light_gray_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/light_gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lilac.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lilac.json new file mode 100644 index 000000000..7e062c921 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lilac.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/lilac_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lily_of_the_valley.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lily_of_the_valley.json new file mode 100644 index 000000000..2cd5a1cd0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lily_of_the_valley.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/lily_of_the_valley" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lily_pad.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lily_pad.json new file mode 100644 index 000000000..e3aaf7f9e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lily_pad.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/lily_pad" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_bed.json new file mode 100644 index 000000000..3efda22b0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/lime_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_bundle.json new file mode 100644 index 000000000..3af851fbf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/lime_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_bundle_open_back.json new file mode 100644 index 000000000..c4aae6421 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/lime_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_bundle_open_front.json new file mode 100644 index 000000000..a79171845 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/lime_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_candle.json new file mode 100644 index 000000000..84617ccf8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/lime_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_dye.json new file mode 100644 index 000000000..36ae6c824 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/lime_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_harness.json new file mode 100644 index 000000000..cade16bf2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/lime_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_shulker_box.json new file mode 100644 index 000000000..5e0062e22 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/lime_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_stained_glass_pane.json new file mode 100644 index 000000000..7f15356d4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lime_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/lime_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lingering_potion.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lingering_potion.json new file mode 100644 index 000000000..a786fc0aa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/lingering_potion.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/potion_overlay", + "layer1": "minecraft:item/lingering_potion" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/llama_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/llama_spawn_egg.json new file mode 100644 index 000000000..4950af13a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/llama_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/llama_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mace.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mace.json new file mode 100644 index 000000000..b62af83de --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mace.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld_mace", + "textures": { + "layer0": "minecraft:item/mace" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_bed.json new file mode 100644 index 000000000..19af87b67 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/magenta_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_bundle.json new file mode 100644 index 000000000..973ef505f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/magenta_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_bundle_open_back.json new file mode 100644 index 000000000..2cb31ce2c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/magenta_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_bundle_open_front.json new file mode 100644 index 000000000..925f1c1c7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/magenta_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_candle.json new file mode 100644 index 000000000..b4b756203 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/magenta_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_dye.json new file mode 100644 index 000000000..f1ebae5bc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/magenta_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_harness.json new file mode 100644 index 000000000..f51483f50 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/magenta_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_shulker_box.json new file mode 100644 index 000000000..f21cad42d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/magenta_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_stained_glass_pane.json new file mode 100644 index 000000000..ad9621d10 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magenta_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/magenta_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magma_cream.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magma_cream.json new file mode 100644 index 000000000..f9d7a14d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magma_cream.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/magma_cream" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magma_cube_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magma_cube_spawn_egg.json new file mode 100644 index 000000000..5fd646c61 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/magma_cube_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/magma_cube_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_boat.json new file mode 100644 index 000000000..6816d9e02 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mangrove_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_chest_boat.json new file mode 100644 index 000000000..006def690 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mangrove_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_door.json new file mode 100644 index 000000000..c67a120c4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mangrove_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_hanging_sign.json new file mode 100644 index 000000000..431863612 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mangrove_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_propagule.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_propagule.json new file mode 100644 index 000000000..38a689e6b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_propagule.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mangrove_propagule" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_sign.json new file mode 100644 index 000000000..867584b16 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mangrove_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mangrove_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/map.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/map.json new file mode 100644 index 000000000..282650e26 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/map.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/map" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/medium_amethyst_bud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/medium_amethyst_bud.json new file mode 100644 index 000000000..686d48f48 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/medium_amethyst_bud.json @@ -0,0 +1,11 @@ + { + "parent": "item/amethyst_bud", + "textures": { + "layer0": "minecraft:block/medium_amethyst_bud" + }, + "display": { + "fixed": { + "translation": [ 0, 6, 0 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/melon_seeds.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/melon_seeds.json new file mode 100644 index 000000000..71e34075f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/melon_seeds.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/melon_seeds" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/melon_slice.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/melon_slice.json new file mode 100644 index 000000000..70a587eb8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/melon_slice.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/melon_slice" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/milk_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/milk_bucket.json new file mode 100644 index 000000000..4f4a252f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/milk_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/milk_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/minecart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/minecart.json new file mode 100644 index 000000000..f478d37cc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/minecart.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/miner_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/miner_pottery_sherd.json new file mode 100644 index 000000000..c31761d1e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/miner_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/miner_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mojang_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mojang_banner_pattern.json new file mode 100644 index 000000000..bfac8a9e3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mojang_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mojang_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mooshroom_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mooshroom_spawn_egg.json new file mode 100644 index 000000000..9b53bf4e1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mooshroom_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mooshroom_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mourner_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mourner_pottery_sherd.json new file mode 100644 index 000000000..08950424b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mourner_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mourner_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mule_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mule_spawn_egg.json new file mode 100644 index 000000000..1b73ff677 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mule_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mule_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mushroom_stew.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mushroom_stew.json new file mode 100644 index 000000000..70e31deb8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mushroom_stew.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mushroom_stew" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_11.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_11.json new file mode 100644 index 000000000..aa9afb6fe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_11.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_11" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_13.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_13.json new file mode 100644 index 000000000..eb7eee8b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_13.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_13" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_5.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_5.json new file mode 100644 index 000000000..c431c6704 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_5" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_blocks.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_blocks.json new file mode 100644 index 000000000..fa70fbc5d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_blocks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_blocks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_cat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_cat.json new file mode 100644 index 000000000..86c9ff552 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_cat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_cat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_chirp.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_chirp.json new file mode 100644 index 000000000..b89464c2e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_chirp.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_chirp" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_creator.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_creator.json new file mode 100644 index 000000000..cd8e281c1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_creator.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_creator" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_creator_music_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_creator_music_box.json new file mode 100644 index 000000000..eeece1829 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_creator_music_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_creator_music_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_far.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_far.json new file mode 100644 index 000000000..3fe312854 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_far.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_far" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_lava_chicken.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_lava_chicken.json new file mode 100644 index 000000000..ada6dd1fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_lava_chicken.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_lava_chicken" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_mall.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_mall.json new file mode 100644 index 000000000..41eea3675 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_mall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_mall" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_mellohi.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_mellohi.json new file mode 100644 index 000000000..8b6fc61cc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_mellohi.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_mellohi" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_otherside.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_otherside.json new file mode 100644 index 000000000..3cfc540e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_otherside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_otherside" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_pigstep.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_pigstep.json new file mode 100644 index 000000000..241ffa8e1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_pigstep.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_pigstep" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_precipice.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_precipice.json new file mode 100644 index 000000000..051ae5e8a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_precipice.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_precipice" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_relic.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_relic.json new file mode 100644 index 000000000..d225ce681 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_relic.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_relic" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_stal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_stal.json new file mode 100644 index 000000000..b9b968211 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_stal.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_stal" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_strad.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_strad.json new file mode 100644 index 000000000..add37ea1d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_strad.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_strad" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_tears.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_tears.json new file mode 100644 index 000000000..97bafe41b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_tears.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_tears" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_wait.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_wait.json new file mode 100644 index 000000000..215e160de --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_wait.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_wait" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_ward.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_ward.json new file mode 100644 index 000000000..24bb7ee92 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/music_disc_ward.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_ward" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mutton.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mutton.json new file mode 100644 index 000000000..56c070d45 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/mutton.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mutton" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/name_tag.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/name_tag.json new file mode 100644 index 000000000..ee668ff55 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/name_tag.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/name_tag" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/nautilus_shell.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/nautilus_shell.json new file mode 100644 index 000000000..35a8e5097 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/nautilus_shell.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/nautilus_shell" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/nether_brick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/nether_brick.json new file mode 100644 index 000000000..b72605844 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/nether_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/nether_brick" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/nether_sprouts.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/nether_sprouts.json new file mode 100644 index 000000000..847698f84 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/nether_sprouts.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/nether_sprouts" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/nether_star.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/nether_star.json new file mode 100644 index 000000000..b2874c285 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/nether_star.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/nether_star" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/nether_wart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/nether_wart.json new file mode 100644 index 000000000..de82d450e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/nether_wart.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/nether_wart" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_axe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_axe.json new file mode 100644 index 000000000..50d50009a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_axe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots.json new file mode 100644 index 000000000..c7dae9029 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_amethyst_trim.json new file mode 100644 index 000000000..e2049a22f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_copper_trim.json new file mode 100644 index 000000000..f0b92c017 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_diamond_trim.json new file mode 100644 index 000000000..8be51aca8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_emerald_trim.json new file mode 100644 index 000000000..65a08e500 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_gold_trim.json new file mode 100644 index 000000000..806f861b3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_iron_trim.json new file mode 100644 index 000000000..2bffc3498 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_lapis_trim.json new file mode 100644 index 000000000..5d68abb3d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_netherite_trim.json new file mode 100644 index 000000000..b5c31415d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_netherite_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_quartz_trim.json new file mode 100644 index 000000000..23ff1d64a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_redstone_trim.json new file mode 100644 index 000000000..1c68b81f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_resin_trim.json new file mode 100644 index 000000000..a6395da18 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_boots_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate.json new file mode 100644 index 000000000..61d2982ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_amethyst_trim.json new file mode 100644 index 000000000..945363a35 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_copper_trim.json new file mode 100644 index 000000000..51c30e494 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_diamond_trim.json new file mode 100644 index 000000000..3a38051a9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_emerald_trim.json new file mode 100644 index 000000000..e774df9d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_gold_trim.json new file mode 100644 index 000000000..fcd52da7d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_iron_trim.json new file mode 100644 index 000000000..09d65529f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_lapis_trim.json new file mode 100644 index 000000000..ee2a9d3e3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_netherite_trim.json new file mode 100644 index 000000000..b80d9cff2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_netherite_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_quartz_trim.json new file mode 100644 index 000000000..51af51b88 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_redstone_trim.json new file mode 100644 index 000000000..a1979f266 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_resin_trim.json new file mode 100644 index 000000000..b352e3beb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_chestplate_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet.json new file mode 100644 index 000000000..4df20a59b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_amethyst_trim.json new file mode 100644 index 000000000..534ef695d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_copper_trim.json new file mode 100644 index 000000000..d435422bd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_diamond_trim.json new file mode 100644 index 000000000..e50ce756c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_emerald_trim.json new file mode 100644 index 000000000..22876e114 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_gold_trim.json new file mode 100644 index 000000000..405e6bbce --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_iron_trim.json new file mode 100644 index 000000000..c7afe68c0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_lapis_trim.json new file mode 100644 index 000000000..3bc06d400 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_netherite_trim.json new file mode 100644 index 000000000..630061661 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_netherite_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_quartz_trim.json new file mode 100644 index 000000000..3b614408a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_redstone_trim.json new file mode 100644 index 000000000..533466cb3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_resin_trim.json new file mode 100644 index 000000000..07e5f3e58 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_helmet_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_hoe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_hoe.json new file mode 100644 index 000000000..d9c185dcd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_hoe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_ingot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_ingot.json new file mode 100644 index 000000000..0ef436c07 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_ingot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_ingot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings.json new file mode 100644 index 000000000..e3e889cc2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_amethyst_trim.json new file mode 100644 index 000000000..7a254f283 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_copper_trim.json new file mode 100644 index 000000000..3c2f5f3fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_diamond_trim.json new file mode 100644 index 000000000..ac71f9eed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_emerald_trim.json new file mode 100644 index 000000000..a30340338 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_gold_trim.json new file mode 100644 index 000000000..1e49fde47 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_iron_trim.json new file mode 100644 index 000000000..09d1dbb99 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_lapis_trim.json new file mode 100644 index 000000000..62a4e71d9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_netherite_trim.json new file mode 100644 index 000000000..734ea70e5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_netherite_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_quartz_trim.json new file mode 100644 index 000000000..55e5445e4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_redstone_trim.json new file mode 100644 index 000000000..e6bafbe73 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_resin_trim.json new file mode 100644 index 000000000..46652a0dd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_leggings_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_pickaxe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_pickaxe.json new file mode 100644 index 000000000..663d51627 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_pickaxe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_scrap.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_scrap.json new file mode 100644 index 000000000..8465c6781 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_scrap.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_scrap" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_shovel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_shovel.json new file mode 100644 index 000000000..88e93948e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_shovel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_sword.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_sword.json new file mode 100644 index 000000000..a2d7ef428 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_sword.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_upgrade_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_upgrade_smithing_template.json new file mode 100644 index 000000000..17012d1bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/netherite_upgrade_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_upgrade_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_boat.json new file mode 100644 index 000000000..793cf5206 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/oak_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_chest_boat.json new file mode 100644 index 000000000..0d6c1c49b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/oak_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_door.json new file mode 100644 index 000000000..93f7e7351 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/oak_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_hanging_sign.json new file mode 100644 index 000000000..400c727f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/oak_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_sapling.json new file mode 100644 index 000000000..93a96b44e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_sign.json new file mode 100644 index 000000000..0f6a0f050 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oak_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/oak_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ocelot_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ocelot_spawn_egg.json new file mode 100644 index 000000000..4adda9300 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ocelot_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ocelot_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ominous_bottle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ominous_bottle.json new file mode 100644 index 000000000..de2d68f74 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ominous_bottle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ominous_bottle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ominous_trial_key.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ominous_trial_key.json new file mode 100644 index 000000000..32057a58b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ominous_trial_key.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ominous_trial_key" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/open_eyeblossom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/open_eyeblossom.json new file mode 100644 index 000000000..ac735ccd9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/open_eyeblossom.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/open_eyeblossom", + "layer1": "minecraft:block/open_eyeblossom_emissive" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_bed.json new file mode 100644 index 000000000..c014375aa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/orange_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_bundle.json new file mode 100644 index 000000000..593cfc8d3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/orange_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_bundle_open_back.json new file mode 100644 index 000000000..b484ed1fe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/orange_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_bundle_open_front.json new file mode 100644 index 000000000..7f55075b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/orange_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_candle.json new file mode 100644 index 000000000..9f35bc60e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/orange_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_dye.json new file mode 100644 index 000000000..4c5e5e9b9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/orange_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_harness.json new file mode 100644 index 000000000..3f2180821 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/orange_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_shulker_box.json new file mode 100644 index 000000000..e8a725a2b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/orange_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_stained_glass_pane.json new file mode 100644 index 000000000..756f767a6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/orange_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_tulip.json new file mode 100644 index 000000000..70ba2d3af --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/orange_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/orange_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oxeye_daisy.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oxeye_daisy.json new file mode 100644 index 000000000..dc6eaab32 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oxeye_daisy.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/oxeye_daisy" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oxidized_copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oxidized_copper_door.json new file mode 100644 index 000000000..cd2edca38 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/oxidized_copper_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/oxidized_copper_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/painting.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/painting.json new file mode 100644 index 000000000..0222609b7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/painting.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/painting" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_hanging_moss.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_hanging_moss.json new file mode 100644 index 000000000..41100eeda --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_hanging_moss.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/pale_hanging_moss" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_boat.json new file mode 100644 index 000000000..d40a5136e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pale_oak_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_chest_boat.json new file mode 100644 index 000000000..00d122ead --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pale_oak_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_door.json new file mode 100644 index 000000000..0f7964be1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pale_oak_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_hanging_sign.json new file mode 100644 index 000000000..4d5f08f48 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pale_oak_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_sapling.json new file mode 100644 index 000000000..7c162db68 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/pale_oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_sign.json new file mode 100644 index 000000000..c9018638a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pale_oak_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pale_oak_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/panda_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/panda_spawn_egg.json new file mode 100644 index 000000000..e18ff722b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/panda_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/panda_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/paper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/paper.json new file mode 100644 index 000000000..5cfa9dd85 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/paper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/paper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/parrot_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/parrot_spawn_egg.json new file mode 100644 index 000000000..dbda1d12f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/parrot_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/parrot_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/peony.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/peony.json new file mode 100644 index 000000000..b87b076e9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/peony.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/peony_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/phantom_membrane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/phantom_membrane.json new file mode 100644 index 000000000..aa7891ced --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/phantom_membrane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/phantom_membrane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/phantom_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/phantom_spawn_egg.json new file mode 100644 index 000000000..0e9a87845 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/phantom_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/phantom_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pig_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pig_spawn_egg.json new file mode 100644 index 000000000..c9f75608d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pig_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pig_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/piglin_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/piglin_banner_pattern.json new file mode 100644 index 000000000..e19d96c8c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/piglin_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/piglin_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/piglin_brute_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/piglin_brute_spawn_egg.json new file mode 100644 index 000000000..040d3224a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/piglin_brute_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/piglin_brute_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/piglin_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/piglin_spawn_egg.json new file mode 100644 index 000000000..79439547d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/piglin_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/piglin_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pillager_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pillager_spawn_egg.json new file mode 100644 index 000000000..54ab4a3f6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pillager_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pillager_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_bed.json new file mode 100644 index 000000000..7565d98f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/pink_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_bundle.json new file mode 100644 index 000000000..2d76ab30e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pink_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_bundle_open_back.json new file mode 100644 index 000000000..a99ca47fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/pink_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_bundle_open_front.json new file mode 100644 index 000000000..4f7b5fb44 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/pink_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_candle.json new file mode 100644 index 000000000..0d64b1caf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pink_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_dye.json new file mode 100644 index 000000000..bf230ebc6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pink_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_harness.json new file mode 100644 index 000000000..cbaf8262d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pink_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_petals.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_petals.json new file mode 100644 index 000000000..ce099c8a5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_petals.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pink_petals" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_shulker_box.json new file mode 100644 index 000000000..e71465fea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/pink_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_stained_glass_pane.json new file mode 100644 index 000000000..13681586a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/pink_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_tulip.json new file mode 100644 index 000000000..9d76762d5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pink_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/pink_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pitcher_plant.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pitcher_plant.json new file mode 100644 index 000000000..e5898a0fa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pitcher_plant.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pitcher_plant" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pitcher_pod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pitcher_pod.json new file mode 100644 index 000000000..b5f561ac3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pitcher_pod.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pitcher_pod" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/plenty_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/plenty_pottery_sherd.json new file mode 100644 index 000000000..c3fd23217 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/plenty_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/plenty_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pointed_dripstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pointed_dripstone.json new file mode 100644 index 000000000..f30f9594f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pointed_dripstone.json @@ -0,0 +1,18 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pointed_dripstone" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 100, 0 ], + "translation": [ -1, -1, 0], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 100, 0 ], + "translation": [ 0, -2, 0], + "scale": [ 0.9, 0.9, 0.9 ] + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/poisonous_potato.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/poisonous_potato.json new file mode 100644 index 000000000..f35777956 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/poisonous_potato.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/poisonous_potato" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/polar_bear_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/polar_bear_spawn_egg.json new file mode 100644 index 000000000..01d5fd1a7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/polar_bear_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/polar_bear_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/popped_chorus_fruit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/popped_chorus_fruit.json new file mode 100644 index 000000000..b5357bde3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/popped_chorus_fruit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/popped_chorus_fruit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/poppy.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/poppy.json new file mode 100644 index 000000000..089cf3ed3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/poppy.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/poppy" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/porkchop.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/porkchop.json new file mode 100644 index 000000000..7de45731d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/porkchop.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/porkchop" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/potato.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/potato.json new file mode 100644 index 000000000..3ba923817 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/potato.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/potato" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/potion.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/potion.json new file mode 100644 index 000000000..b4ae02ba6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/potion.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/potion_overlay", + "layer1": "minecraft:item/potion" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/powder_snow_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/powder_snow_bucket.json new file mode 100644 index 000000000..e99a5f9f0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/powder_snow_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/powder_snow_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/powered_rail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/powered_rail.json new file mode 100644 index 000000000..ecaf13bf2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/powered_rail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/powered_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/prismarine_crystals.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/prismarine_crystals.json new file mode 100644 index 000000000..6883eebef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/prismarine_crystals.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/prismarine_crystals" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/prismarine_shard.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/prismarine_shard.json new file mode 100644 index 000000000..7b533d3f9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/prismarine_shard.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/prismarine_shard" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/prize_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/prize_pottery_sherd.json new file mode 100644 index 000000000..f73490ab0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/prize_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/prize_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pufferfish.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pufferfish.json new file mode 100644 index 000000000..11ebd2190 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pufferfish.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pufferfish" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pufferfish_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pufferfish_bucket.json new file mode 100644 index 000000000..b5abbd8f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pufferfish_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pufferfish_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pufferfish_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pufferfish_spawn_egg.json new file mode 100644 index 000000000..f1e839df6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pufferfish_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pufferfish_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pumpkin_pie.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pumpkin_pie.json new file mode 100644 index 000000000..72ba77d56 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pumpkin_pie.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pumpkin_pie" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pumpkin_seeds.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pumpkin_seeds.json new file mode 100644 index 000000000..bd203f063 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/pumpkin_seeds.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pumpkin_seeds" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_bed.json new file mode 100644 index 000000000..606fae8c2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/purple_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_bundle.json new file mode 100644 index 000000000..a6a56bf61 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/purple_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_bundle_open_back.json new file mode 100644 index 000000000..51c7f27fe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/purple_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_bundle_open_front.json new file mode 100644 index 000000000..55a80b560 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/purple_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_candle.json new file mode 100644 index 000000000..9a0d2020a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/purple_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_dye.json new file mode 100644 index 000000000..a4082d107 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/purple_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_harness.json new file mode 100644 index 000000000..1693ad854 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/purple_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_shulker_box.json new file mode 100644 index 000000000..8521d10fe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/purple_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_stained_glass_pane.json new file mode 100644 index 000000000..646a69b90 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/purple_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/purple_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/quartz.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/quartz.json new file mode 100644 index 000000000..6da4a8601 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/quartz.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rabbit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rabbit.json new file mode 100644 index 000000000..0c0294fff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rabbit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/rabbit" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rabbit_foot.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rabbit_foot.json new file mode 100644 index 000000000..dc68690a2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rabbit_foot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/rabbit_foot" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rabbit_hide.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rabbit_hide.json new file mode 100644 index 000000000..b6327793e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rabbit_hide.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/rabbit_hide" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rabbit_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rabbit_spawn_egg.json new file mode 100644 index 000000000..df2a0fec5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rabbit_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/rabbit_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rabbit_stew.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rabbit_stew.json new file mode 100644 index 000000000..311dfe991 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rabbit_stew.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/rabbit_stew" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rail.json new file mode 100644 index 000000000..4e07db100 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/raiser_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/raiser_armor_trim_smithing_template.json new file mode 100644 index 000000000..b80f4a01d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/raiser_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/raiser_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ravager_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ravager_spawn_egg.json new file mode 100644 index 000000000..8f1f906de --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ravager_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ravager_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/raw_copper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/raw_copper.json new file mode 100644 index 000000000..94712fdeb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/raw_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/raw_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/raw_gold.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/raw_gold.json new file mode 100644 index 000000000..df31aa71a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/raw_gold.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/raw_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/raw_iron.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/raw_iron.json new file mode 100644 index 000000000..57ba62723 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/raw_iron.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/raw_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_00.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_00.json new file mode 100644 index 000000000..753be1b22 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_00.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_00" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_01.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_01.json new file mode 100644 index 000000000..3e0630888 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_01.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_01" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_02.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_02.json new file mode 100644 index 000000000..c6bfef5db --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_02.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_02" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_03.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_03.json new file mode 100644 index 000000000..874a349e1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_03.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_03" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_04.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_04.json new file mode 100644 index 000000000..d1fb39c2f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_04.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_04" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_05.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_05.json new file mode 100644 index 000000000..c1958b511 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_05.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_05" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_06.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_06.json new file mode 100644 index 000000000..7ebdd8c82 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_06.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_06" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_07.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_07.json new file mode 100644 index 000000000..eabb1f035 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_07.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_07" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_08.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_08.json new file mode 100644 index 000000000..d59f4c131 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_08.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_08" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_09.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_09.json new file mode 100644 index 000000000..cb2ddbc9f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_09.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_09" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_10.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_10.json new file mode 100644 index 000000000..30618a33f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_10.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_10" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_11.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_11.json new file mode 100644 index 000000000..6d29eae1f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_11.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_11" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_12.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_12.json new file mode 100644 index 000000000..c455ce86f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_12.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_12" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_13.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_13.json new file mode 100644 index 000000000..9982cc53d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_13.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_13" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_14.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_14.json new file mode 100644 index 000000000..0ba7e45b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_14.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_14" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_15.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_15.json new file mode 100644 index 000000000..adb5c1298 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_15.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_15" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_16.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_16.json new file mode 100644 index 000000000..ff17fc8ed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_16.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_16" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_17.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_17.json new file mode 100644 index 000000000..5a906f0b0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_17.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_17" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_18.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_18.json new file mode 100644 index 000000000..d2665866a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_18.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_18" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_19.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_19.json new file mode 100644 index 000000000..fe36dcac0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_19.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_19" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_20.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_20.json new file mode 100644 index 000000000..1632015ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_20.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_20" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_21.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_21.json new file mode 100644 index 000000000..1f52a2cfb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_21.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_21" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_22.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_22.json new file mode 100644 index 000000000..bae9ef118 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_22.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_22" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_23.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_23.json new file mode 100644 index 000000000..f46180c5c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_23.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_23" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_24.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_24.json new file mode 100644 index 000000000..c7acb6b87 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_24.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_24" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_25.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_25.json new file mode 100644 index 000000000..234b7ab93 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_25.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_25" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_26.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_26.json new file mode 100644 index 000000000..0f988f3b6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_26.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_26" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_27.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_27.json new file mode 100644 index 000000000..1587617bc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_27.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_27" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_28.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_28.json new file mode 100644 index 000000000..4153fb073 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_28.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_28" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_29.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_29.json new file mode 100644 index 000000000..47e3fff10 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_29.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_29" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_30.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_30.json new file mode 100644 index 000000000..6a39baad3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_30.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_30" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_31.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_31.json new file mode 100644 index 000000000..e1bb4c130 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/recovery_compass_31.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_31" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_bed.json new file mode 100644 index 000000000..7a15f5512 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/red_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_bundle.json new file mode 100644 index 000000000..2b450a41e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/red_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_bundle_open_back.json new file mode 100644 index 000000000..8d01e6cde --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/red_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_bundle_open_front.json new file mode 100644 index 000000000..502fe44a9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/red_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_candle.json new file mode 100644 index 000000000..54fbba028 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/red_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_dye.json new file mode 100644 index 000000000..77765d363 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/red_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_harness.json new file mode 100644 index 000000000..55b06b9fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/red_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_mushroom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_mushroom.json new file mode 100644 index 000000000..3be0c03ff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_mushroom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/red_mushroom" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_shulker_box.json new file mode 100644 index 000000000..618ccff66 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/red_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_stained_glass_pane.json new file mode 100644 index 000000000..699b006f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/red_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_tulip.json new file mode 100644 index 000000000..406b1ecef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/red_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/red_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/redstone.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/redstone.json new file mode 100644 index 000000000..d273009e4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/redstone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/redstone_torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/redstone_torch.json new file mode 100644 index 000000000..ba2060bba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/redstone_torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/redstone_torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/repeater.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/repeater.json new file mode 100644 index 000000000..7a8b05fb4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/repeater.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/repeater" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/resin_brick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/resin_brick.json new file mode 100644 index 000000000..4b91fc38e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/resin_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/resin_brick" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/resin_clump.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/resin_clump.json new file mode 100644 index 000000000..edfacb65b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/resin_clump.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/resin_clump" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rib_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rib_armor_trim_smithing_template.json new file mode 100644 index 000000000..dce771717 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rib_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/rib_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rose_bush.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rose_bush.json new file mode 100644 index 000000000..4a71ea357 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rose_bush.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/rose_bush_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rotten_flesh.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rotten_flesh.json new file mode 100644 index 000000000..6d7899529 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/rotten_flesh.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/rotten_flesh" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/saddle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/saddle.json new file mode 100644 index 000000000..91895cb40 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/saddle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/saddle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/salmon.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/salmon.json new file mode 100644 index 000000000..dcac1db78 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/salmon.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/salmon" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/salmon_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/salmon_bucket.json new file mode 100644 index 000000000..15217f222 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/salmon_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/salmon_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/salmon_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/salmon_spawn_egg.json new file mode 100644 index 000000000..c5c93b26e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/salmon_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/salmon_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/scrape_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/scrape_pottery_sherd.json new file mode 100644 index 000000000..52717375a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/scrape_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/scrape_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sculk_vein.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sculk_vein.json new file mode 100644 index 000000000..78df0e28f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sculk_vein.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/sculk_vein" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sea_pickle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sea_pickle.json new file mode 100644 index 000000000..c7f2f9688 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sea_pickle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sea_pickle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/seagrass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/seagrass.json new file mode 100644 index 000000000..91c88ccb5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/seagrass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/seagrass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sentry_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sentry_armor_trim_smithing_template.json new file mode 100644 index 000000000..37c62bc90 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sentry_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sentry_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shaper_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shaper_armor_trim_smithing_template.json new file mode 100644 index 000000000..0d10c46b6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shaper_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/shaper_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sheaf_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sheaf_pottery_sherd.json new file mode 100644 index 000000000..f5f85477d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sheaf_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sheaf_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shears.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shears.json new file mode 100644 index 000000000..bc9bf0148 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shears.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/shears" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sheep_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sheep_spawn_egg.json new file mode 100644 index 000000000..89c13e318 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sheep_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sheep_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shelter_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shelter_pottery_sherd.json new file mode 100644 index 000000000..11fc43b3c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shelter_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/shelter_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shield.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shield.json new file mode 100644 index 000000000..c9ec6c76a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shield.json @@ -0,0 +1,43 @@ +{ + "gui_light": "front", + "textures": { + "particle": "block/dark_oak_planks" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 90, 0 ], + "translation": [ 10, 6, -4 ], + "scale": [ 1, 1, 1 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 90, 0 ], + "translation": [ 10, 6, 12 ], + "scale": [ 1, 1, 1 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 180, 5 ], + "translation": [ -10, 2, -10 ], + "scale": [ 1.25, 1.25, 1.25 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 180, 5 ], + "translation": [ 10, 0, -10 ], + "scale": [ 1.25, 1.25, 1.25 ] + }, + "gui": { + "rotation": [ 15, -25, -5 ], + "translation": [ 2, 3, 0 ], + "scale": [ 0.65, 0.65, 0.65 ] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ -4.5, 4.5, -5], + "scale":[ 0.55, 0.55, 0.55] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 2, 4, 2], + "scale":[ 0.25, 0.25, 0.25] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shield_blocking.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shield_blocking.json new file mode 100644 index 000000000..c688ef03e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shield_blocking.json @@ -0,0 +1,33 @@ +{ + "gui_light": "front", + "textures": { + "particle": "block/dark_oak_planks" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 45, 155, 0 ], + "translation": [ -3.49, 11, -2 ], + "scale": [ 1, 1, 1 ] + }, + "thirdperson_lefthand": { + "rotation": [ 45, 155, 0 ], + "translation": [ 11.51, 7, 2.5 ], + "scale": [ 1, 1, 1 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 180, -5 ], + "translation": [ -15, 5, -11 ], + "scale": [ 1.25, 1.25, 1.25 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 180, -5 ], + "translation": [ 5, 5, -11 ], + "scale": [ 1.25, 1.25, 1.25 ] + }, + "gui": { + "rotation": [ 15, -25, -5 ], + "translation": [ 2, 3, 0 ], + "scale": [ 0.65, 0.65, 0.65 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/short_dry_grass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/short_dry_grass.json new file mode 100644 index 000000000..9f128fa5a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/short_dry_grass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/short_dry_grass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/short_grass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/short_grass.json new file mode 100644 index 000000000..50fc8466b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/short_grass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/short_grass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shulker_box.json new file mode 100644 index 000000000..f547516b2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shulker_shell.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shulker_shell.json new file mode 100644 index 000000000..6aae0f45e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shulker_shell.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/shulker_shell" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shulker_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shulker_spawn_egg.json new file mode 100644 index 000000000..d73111776 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/shulker_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/shulker_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/silence_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/silence_armor_trim_smithing_template.json new file mode 100644 index 000000000..5254eced6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/silence_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/silence_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/silverfish_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/silverfish_spawn_egg.json new file mode 100644 index 000000000..1d4c065e1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/silverfish_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/silverfish_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/skeleton_horse_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/skeleton_horse_spawn_egg.json new file mode 100644 index 000000000..648137002 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/skeleton_horse_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/skeleton_horse_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/skeleton_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/skeleton_spawn_egg.json new file mode 100644 index 000000000..7913cb6d1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/skeleton_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/skeleton_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/skull_banner_pattern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/skull_banner_pattern.json new file mode 100644 index 000000000..a39281f76 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/skull_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/skull_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/skull_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/skull_pottery_sherd.json new file mode 100644 index 000000000..b7765121c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/skull_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/skull_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/slime_ball.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/slime_ball.json new file mode 100644 index 000000000..812f0860a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/slime_ball.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/slime_ball" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/slime_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/slime_spawn_egg.json new file mode 100644 index 000000000..3f86521f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/slime_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/slime_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/small_amethyst_bud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/small_amethyst_bud.json new file mode 100644 index 000000000..cfa83d8e1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/small_amethyst_bud.json @@ -0,0 +1,16 @@ +{ + "parent": "item/amethyst_bud", + "textures": { + "layer0": "minecraft:block/small_amethyst_bud" + }, + "display": { + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 0, 6, 0 ], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "fixed": { + "translation": [ 0, 7, 0 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/small_dripleaf.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/small_dripleaf.json new file mode 100644 index 000000000..488841ff7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/small_dripleaf.json @@ -0,0 +1,15 @@ +{ + "parent": "minecraft:block/small_dripleaf_top", + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 4, 1 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 45, 0 ], + "translation": [ 0, 3.2, 0 ], + "scale": [ 0.40, 0.40, 0.40 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sniffer_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sniffer_egg.json new file mode 100644 index 000000000..0f35a4d91 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sniffer_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sniffer_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sniffer_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sniffer_spawn_egg.json new file mode 100644 index 000000000..046de3172 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sniffer_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sniffer_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/snort_pottery_sherd.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/snort_pottery_sherd.json new file mode 100644 index 000000000..d3a8ebc30 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/snort_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/snort_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/snout_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/snout_armor_trim_smithing_template.json new file mode 100644 index 000000000..a6c6c622e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/snout_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/snout_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/snow_golem_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/snow_golem_spawn_egg.json new file mode 100644 index 000000000..9c3f1221c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/snow_golem_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/snow_golem_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/snowball.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/snowball.json new file mode 100644 index 000000000..7dec4deea --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/snowball.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/snowball" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/soul_campfire.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/soul_campfire.json new file mode 100644 index 000000000..ef63b765a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/soul_campfire.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/soul_campfire" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/soul_lantern.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/soul_lantern.json new file mode 100644 index 000000000..53e659088 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/soul_lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/soul_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/soul_torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/soul_torch.json new file mode 100644 index 000000000..96dbfdfb9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/soul_torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/soul_torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spectral_arrow.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spectral_arrow.json new file mode 100644 index 000000000..33a79f8ef --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spectral_arrow.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spectral_arrow" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spider_eye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spider_eye.json new file mode 100644 index 000000000..fd7547f4a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spider_eye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spider_eye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spider_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spider_spawn_egg.json new file mode 100644 index 000000000..0d2542929 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spider_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spider_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spire_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spire_armor_trim_smithing_template.json new file mode 100644 index 000000000..fe7a6df08 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spire_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spire_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/splash_potion.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/splash_potion.json new file mode 100644 index 000000000..626ccc0f5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/splash_potion.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/potion_overlay", + "layer1": "minecraft:item/splash_potion" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_boat.json new file mode 100644 index 000000000..a425c2c8e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spruce_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_chest_boat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_chest_boat.json new file mode 100644 index 000000000..36d7a7f59 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spruce_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_door.json new file mode 100644 index 000000000..c1a3bf29c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spruce_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_hanging_sign.json new file mode 100644 index 000000000..90c40e299 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spruce_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_sapling.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_sapling.json new file mode 100644 index 000000000..1c9752de5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/spruce_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_sign.json new file mode 100644 index 000000000..f5c26ebf9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spruce_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spruce_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spyglass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spyglass.json new file mode 100644 index 000000000..c5d7e691c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spyglass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spyglass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spyglass_in_hand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spyglass_in_hand.json new file mode 100644 index 000000000..1baca0eae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/spyglass_in_hand.json @@ -0,0 +1,53 @@ +{ + "textures": { + "spyglass": "item/spyglass_model", + "particle": "#spyglass" + }, + "elements": [ + { + "from": [7, 8.5, 7], + "to": [9, 13.5, 9], + "faces": { + "north": {"uv": [0, 2, 2, 7], "texture": "#spyglass"}, + "east": {"uv": [0, 2, 2, 7], "texture": "#spyglass"}, + "south": {"uv": [0, 2, 2, 7], "texture": "#spyglass"}, + "west": {"uv": [0, 2, 2, 7], "texture": "#spyglass"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#spyglass"} + } + }, + { + "from": [6.9, 2.4, 6.9], + "to": [9.1, 8.6, 9.1], + "faces": { + "north": {"uv": [0, 7, 2, 13], "texture": "#spyglass"}, + "east": {"uv": [0, 7, 2, 13], "texture": "#spyglass"}, + "south": {"uv": [0, 7, 2, 13], "texture": "#spyglass"}, + "west": {"uv": [0, 7, 2, 13], "texture": "#spyglass"}, + "up": {"uv": [0, 5, 2, 7], "texture": "#spyglass"}, + "down": {"uv": [0, 13, 2, 15], "texture": "#spyglass"} + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [0, -2, 0] + }, + "ground": { + "rotation": [90, 0, 0] + }, + "gui": { + "rotation": [-67.5, 0, 45], + "scale": [1.5, 1.5, 1.5] + }, + "head": { + "rotation": [90, 0, 0], + "translation": [0, 0, -16], + "scale": [1.6, 1.6, 1.6] + }, + "fixed": { + "translation": [0, 0, -1.5], + "scale": [1.5, 1.5, 1.5] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/squid_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/squid_spawn_egg.json new file mode 100644 index 000000000..23102e772 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/squid_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/squid_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stick.json new file mode 100644 index 000000000..f0dc3b971 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stick" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stone_axe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stone_axe.json new file mode 100644 index 000000000..1e3bc7e89 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stone_axe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stone_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stone_hoe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stone_hoe.json new file mode 100644 index 000000000..13f40c63b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stone_hoe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stone_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stone_pickaxe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stone_pickaxe.json new file mode 100644 index 000000000..dec09cbe7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stone_pickaxe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stone_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stone_shovel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stone_shovel.json new file mode 100644 index 000000000..727a68b95 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stone_shovel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stone_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stone_sword.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stone_sword.json new file mode 100644 index 000000000..ba4a89f15 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stone_sword.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stone_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stray_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stray_spawn_egg.json new file mode 100644 index 000000000..87bbb174c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/stray_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/stray_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/strider_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/strider_spawn_egg.json new file mode 100644 index 000000000..424df94f5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/strider_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/strider_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/string.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/string.json new file mode 100644 index 000000000..ca6251bf8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/string.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/string" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/structure_void.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/structure_void.json new file mode 100644 index 000000000..65fb4840e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/structure_void.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/structure_void" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sugar.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sugar.json new file mode 100644 index 000000000..74e73ebd9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sugar.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sugar" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sugar_cane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sugar_cane.json new file mode 100644 index 000000000..ee6d1fc12 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sugar_cane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sugar_cane" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sunflower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sunflower.json new file mode 100644 index 000000000..694e244c8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sunflower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/sunflower_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/suspicious_stew.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/suspicious_stew.json new file mode 100644 index 000000000..15e645a3d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/suspicious_stew.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/suspicious_stew" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sweet_berries.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sweet_berries.json new file mode 100644 index 000000000..e16589413 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/sweet_berries.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sweet_berries" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tadpole_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tadpole_bucket.json new file mode 100644 index 000000000..44e1336b0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tadpole_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/tadpole_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tadpole_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tadpole_spawn_egg.json new file mode 100644 index 000000000..2e6fb4469 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tadpole_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/tadpole_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tall_dry_grass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tall_dry_grass.json new file mode 100644 index 000000000..6b11a1fd5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tall_dry_grass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/tall_dry_grass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tall_grass.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tall_grass.json new file mode 100644 index 000000000..df809ea7b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tall_grass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/tall_grass_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_banner.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_banner.json new file mode 100644 index 000000000..14b25dcc2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_banner.json @@ -0,0 +1,38 @@ +{ + "gui_light": "front", + "textures": { + "particle": "block/oak_planks" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 2, 0.5], + "scale":[ 0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.375, 0.375, 0.375] + }, + "gui": { + "rotation": [ 30, 20, 0 ], + "translation": [ 0, -3.25, 0], + "scale":[ 0.5325, 0.5325, 0.5325] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 1, 0], + "scale":[ 0.25, 0.25, 0.25] + }, + "head": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 16, 7], + "scale":[ 1.5, 1.5, 1.5 ] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.5, 0.5, 0.5] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_bed.json new file mode 100644 index 000000000..c8e397499 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_bed.json @@ -0,0 +1,34 @@ +{ + "display": { + "thirdperson_righthand": { + "rotation": [ 30, 160, 0 ], + "translation": [ 0, 3, -2], + "scale":[ 0.23, 0.23, 0.23] + }, + "firstperson_righthand": { + "rotation": [ 30, 160, 0 ], + "translation": [ 0, 3, 0], + "scale":[ 0.375, 0.375, 0.375] + }, + "gui": { + "rotation": [ 30, 160, 0 ], + "translation": [ 2, 3, 0], + "scale":[ 0.5325, 0.5325, 0.5325] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 1, 2], + "scale":[ 0.25, 0.25, 0.25] + }, + "head": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 10, -8], + "scale":[ 1,1,1 ] + }, + "fixed": { + "rotation": [ 270, 0, 0 ], + "translation": [ 0, 4, -2], + "scale":[ 0.5, 0.5, 0.5] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_bundle_open_back.json new file mode 100644 index 000000000..a710db4dc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_bundle_open_back.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "display": { + "gui": { + "translation": [ 0, 0, -16 ] + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_bundle_open_front.json new file mode 100644 index 000000000..51442b45c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_bundle_open_front.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "display": { + "gui": { + "translation": [ 0, 0, 16 ] + } + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_chest.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_chest.json new file mode 100644 index 000000000..455c5427b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_chest.json @@ -0,0 +1,34 @@ +{ + "display": { + "gui": { + "rotation": [ 30, 45, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 3, 0], + "scale":[ 0.25, 0.25, 0.25 ] + }, + "head": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 1, 1, 1] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.5, 0.5, 0.5 ] + }, + "thirdperson_righthand": { + "rotation": [ 75, 315, 0 ], + "translation": [ 0, 2.5, 0], + "scale": [ 0.375, 0.375, 0.375 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 315, 0 ], + "translation": [ 0, 0, 0], + "scale": [ 0.4, 0.4, 0.4 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_music_disc.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_music_disc.json new file mode 100644 index 000000000..41268452c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_music_disc.json @@ -0,0 +1,10 @@ +{ + "parent": "item/generated", + "gui_light": "front", + "display": { + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ -0.5, 0, 0 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_shulker_box.json new file mode 100644 index 000000000..455c5427b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_shulker_box.json @@ -0,0 +1,34 @@ +{ + "display": { + "gui": { + "rotation": [ 30, 45, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 3, 0], + "scale":[ 0.25, 0.25, 0.25 ] + }, + "head": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 1, 1, 1] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.5, 0.5, 0.5 ] + }, + "thirdperson_righthand": { + "rotation": [ 75, 315, 0 ], + "translation": [ 0, 2.5, 0], + "scale": [ 0.375, 0.375, 0.375 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 315, 0 ], + "translation": [ 0, 0, 0], + "scale": [ 0.4, 0.4, 0.4 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_skull.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_skull.json new file mode 100644 index 000000000..4ec347ade --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/template_skull.json @@ -0,0 +1,27 @@ +{ + "textures": { + "particle": "block/soul_sand" + }, + "display": { + "gui": { + "rotation": [ 30, 45, 0 ], + "translation": [ 0, 3, 0 ], + "scale": [ 1, 1, 1 ] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 4, 0], + "scale":[ 1, 1, 1 ] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 3, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "thirdperson_righthand": { + "rotation": [ 45, 45, 0 ], + "translation": [ 0, 3, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tide_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tide_armor_trim_smithing_template.json new file mode 100644 index 000000000..f3c544053 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tide_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/tide_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tipped_arrow.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tipped_arrow.json new file mode 100644 index 000000000..0b1241052 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tipped_arrow.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/tipped_arrow_head", + "layer1": "minecraft:item/tipped_arrow_base" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tnt_minecart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tnt_minecart.json new file mode 100644 index 000000000..c3c326048 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tnt_minecart.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/tnt_minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tooting_goat_horn.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tooting_goat_horn.json new file mode 100644 index 000000000..c412562eb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tooting_goat_horn.json @@ -0,0 +1,26 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/goat_horn" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, -125, 0 ], + "translation": [ -1, 2, 2 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 55, 0 ], + "translation": [ -1, 2, 2 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -55, -5 ], + "translation": [ -1, -2.5, -7.5 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 115, 5 ], + "translation": [ 0 , -2.5, -7.5 ] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/torch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/torch.json new file mode 100644 index 000000000..a734b43bc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/torchflower.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/torchflower.json new file mode 100644 index 000000000..bac7a8253 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/torchflower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/torchflower" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/torchflower_seeds.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/torchflower_seeds.json new file mode 100644 index 000000000..6637aa8cb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/torchflower_seeds.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/torchflower_seeds" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/totem_of_undying.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/totem_of_undying.json new file mode 100644 index 000000000..abefc0572 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/totem_of_undying.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/totem_of_undying" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trader_llama_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trader_llama_spawn_egg.json new file mode 100644 index 000000000..dd644cb82 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trader_llama_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/trader_llama_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trapped_chest.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trapped_chest.json new file mode 100644 index 000000000..fb1b4c691 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trapped_chest.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_chest", + "textures": { + "particle": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trial_key.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trial_key.json new file mode 100644 index 000000000..0ff9e82f0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trial_key.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/trial_key" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trident.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trident.json new file mode 100644 index 000000000..f129b55e9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trident.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/trident" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trident_in_hand.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trident_in_hand.json new file mode 100644 index 000000000..e7562b4aa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trident_in_hand.json @@ -0,0 +1,43 @@ +{ + "gui_light": "front", + "textures": { + "particle": "item/trident" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 60, 0 ], + "translation": [ 11, 17, -2 ], + "scale": [ 1, 1, 1 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 60, 0 ], + "translation": [ 3, 17, 12 ], + "scale": [ 1, 1, 1 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ -3, 17, 1], + "scale": [ 1, 1, 1 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 90, -25 ], + "translation": [ 13, 17, 1], + "scale": [ 1, 1, 1 ] + }, + "gui": { + "rotation": [ 15, -25, -5 ], + "translation": [ 2, 3, 0 ], + "scale": [ 0.65, 0.65, 0.65 ] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ -2, 4, -5], + "scale":[ 0.5, 0.5, 0.5] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 4, 4, 2], + "scale":[ 0.25, 0.25, 0.25] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trident_throwing.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trident_throwing.json new file mode 100644 index 000000000..0749afcd7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/trident_throwing.json @@ -0,0 +1,43 @@ +{ + "gui_light": "front", + "textures": { + "particle": "item/trident" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 90, 180 ], + "translation": [ 8, -17, 9 ], + "scale": [ 1, 1, 1 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 90, 180 ], + "translation": [ 8, -17, -7 ], + "scale": [ 1, 1, 1 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ -3, 17, 1], + "scale": [ 1, 1, 1 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 90, -25 ], + "translation": [ 13, 17, 1], + "scale": [ 1, 1, 1 ] + }, + "gui": { + "rotation": [ 15, -25, -5 ], + "translation": [ 2, 3, 0 ], + "scale": [ 0.65, 0.65, 0.65 ] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ -2, 4, -5], + "scale":[ 0.5, 0.5, 0.5] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 4, 4, 2], + "scale":[ 0.25, 0.25, 0.25] + } + } +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tripwire_hook.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tripwire_hook.json new file mode 100644 index 000000000..b4a83abd0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tripwire_hook.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/tripwire_hook" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tropical_fish.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tropical_fish.json new file mode 100644 index 000000000..d8e9ebc63 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tropical_fish.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/tropical_fish" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tropical_fish_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tropical_fish_bucket.json new file mode 100644 index 000000000..2ea21229b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tropical_fish_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/tropical_fish_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tropical_fish_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tropical_fish_spawn_egg.json new file mode 100644 index 000000000..f35039931 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tropical_fish_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/tropical_fish_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tube_coral.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tube_coral.json new file mode 100644 index 000000000..dc0358e15 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tube_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/tube_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tube_coral_fan.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tube_coral_fan.json new file mode 100644 index 000000000..76c880f73 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/tube_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/tube_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_egg.json new file mode 100644 index 000000000..bbc29d4a5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet.json new file mode 100644 index 000000000..60d78346a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_amethyst_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_amethyst_trim.json new file mode 100644 index 000000000..b957586d4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_copper_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_copper_trim.json new file mode 100644 index 000000000..dcbbfcfe5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_diamond_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_diamond_trim.json new file mode 100644 index 000000000..759556164 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_emerald_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_emerald_trim.json new file mode 100644 index 000000000..15cca0893 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_gold_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_gold_trim.json new file mode 100644 index 000000000..d7b0c824b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_iron_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_iron_trim.json new file mode 100644 index 000000000..2f4cbc6fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_lapis_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_lapis_trim.json new file mode 100644 index 000000000..95d3bc725 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_netherite_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_netherite_trim.json new file mode 100644 index 000000000..7c16fa614 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_quartz_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_quartz_trim.json new file mode 100644 index 000000000..6bcfbb694 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_redstone_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_redstone_trim.json new file mode 100644 index 000000000..4c694cbb5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_resin_trim.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_resin_trim.json new file mode 100644 index 000000000..64adf32e4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_helmet_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_scute.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_scute.json new file mode 100644 index 000000000..64af43c32 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_scute.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_scute" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_spawn_egg.json new file mode 100644 index 000000000..559691cf3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/turtle_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/twisting_vines.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/twisting_vines.json new file mode 100644 index 000000000..fe4d57c09 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/twisting_vines.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/twisting_vines_plant" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/vex_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/vex_armor_trim_smithing_template.json new file mode 100644 index 000000000..93ec389ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/vex_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/vex_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/vex_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/vex_spawn_egg.json new file mode 100644 index 000000000..8ad861c6c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/vex_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/vex_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/villager_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/villager_spawn_egg.json new file mode 100644 index 000000000..3c69426ad --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/villager_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/villager_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/vindicator_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/vindicator_spawn_egg.json new file mode 100644 index 000000000..371c13f74 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/vindicator_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/vindicator_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/vine.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/vine.json new file mode 100644 index 000000000..c1eaec402 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/vine.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/vine" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wandering_trader_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wandering_trader_spawn_egg.json new file mode 100644 index 000000000..54a52c05d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wandering_trader_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wandering_trader_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ward_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ward_armor_trim_smithing_template.json new file mode 100644 index 000000000..b8be109ee --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/ward_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ward_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warden_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warden_spawn_egg.json new file mode 100644 index 000000000..a26c8a56f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warden_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/warden_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_door.json new file mode 100644 index 000000000..5bc37290d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/warped_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_fungus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_fungus.json new file mode 100644 index 000000000..eecb3bfdc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_fungus.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/warped_fungus" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_fungus_on_a_stick.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_fungus_on_a_stick.json new file mode 100644 index 000000000..562fe25cd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_fungus_on_a_stick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld_rod", + "textures": { + "layer0": "minecraft:item/warped_fungus_on_a_stick" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_hanging_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_hanging_sign.json new file mode 100644 index 000000000..fe9180a77 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/warped_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_roots.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_roots.json new file mode 100644 index 000000000..d44aa5776 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_roots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/warped_roots" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_sign.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_sign.json new file mode 100644 index 000000000..82db6f279 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/warped_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/warped_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/water_bucket.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/water_bucket.json new file mode 100644 index 000000000..af17e57d7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/water_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/water_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wayfinder_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wayfinder_armor_trim_smithing_template.json new file mode 100644 index 000000000..0d31b00cc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wayfinder_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wayfinder_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/weathered_copper_door.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/weathered_copper_door.json new file mode 100644 index 000000000..91c28c7bc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/weathered_copper_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/weathered_copper_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/weeping_vines.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/weeping_vines.json new file mode 100644 index 000000000..834b71c51 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/weeping_vines.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/weeping_vines_plant" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wheat.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wheat.json new file mode 100644 index 000000000..f77a8c8f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wheat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wheat" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wheat_seeds.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wheat_seeds.json new file mode 100644 index 000000000..8fd9068f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wheat_seeds.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wheat_seeds" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_bed.json new file mode 100644 index 000000000..93d81aff0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/white_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_bundle.json new file mode 100644 index 000000000..6efd8ccb8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/white_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_bundle_open_back.json new file mode 100644 index 000000000..29479f6ac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/white_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_bundle_open_front.json new file mode 100644 index 000000000..0946151ab --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/white_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_candle.json new file mode 100644 index 000000000..d13392c4e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/white_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_dye.json new file mode 100644 index 000000000..68b02c07c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/white_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_harness.json new file mode 100644 index 000000000..5c9e9f68c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/white_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_shulker_box.json new file mode 100644 index 000000000..6fd0156e7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/white_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_stained_glass_pane.json new file mode 100644 index 000000000..dbe66a16a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/white_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_tulip.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_tulip.json new file mode 100644 index 000000000..f19409060 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/white_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/white_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wild_armor_trim_smithing_template.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wild_armor_trim_smithing_template.json new file mode 100644 index 000000000..52c438c78 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wild_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wild_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wildflowers.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wildflowers.json new file mode 100644 index 000000000..b4e709562 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wildflowers.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wildflowers" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wind_charge.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wind_charge.json new file mode 100644 index 000000000..821c34ebb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wind_charge.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wind_charge" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/witch_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/witch_spawn_egg.json new file mode 100644 index 000000000..374863990 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/witch_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/witch_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wither_rose.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wither_rose.json new file mode 100644 index 000000000..9579e7c48 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wither_rose.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/wither_rose" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wither_skeleton_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wither_skeleton_spawn_egg.json new file mode 100644 index 000000000..b39d9de40 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wither_skeleton_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wither_skeleton_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wither_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wither_spawn_egg.json new file mode 100644 index 000000000..3c16da2db --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wither_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wither_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wolf_armor.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wolf_armor.json new file mode 100644 index 000000000..11f104282 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wolf_armor.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wolf_armor" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wolf_armor_dyed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wolf_armor_dyed.json new file mode 100644 index 000000000..b08d08290 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wolf_armor_dyed.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wolf_armor", + "layer1": "minecraft:item/wolf_armor_overlay" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wolf_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wolf_spawn_egg.json new file mode 100644 index 000000000..e2b5ddc04 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wolf_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wolf_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wooden_axe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wooden_axe.json new file mode 100644 index 000000000..e08423dbf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wooden_axe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/wooden_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wooden_hoe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wooden_hoe.json new file mode 100644 index 000000000..a925c76b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wooden_hoe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/wooden_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wooden_pickaxe.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wooden_pickaxe.json new file mode 100644 index 000000000..5b9bbab7d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wooden_pickaxe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/wooden_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wooden_shovel.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wooden_shovel.json new file mode 100644 index 000000000..7c4d82876 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wooden_shovel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/wooden_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wooden_sword.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wooden_sword.json new file mode 100644 index 000000000..4024a58a0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/wooden_sword.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/wooden_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/writable_book.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/writable_book.json new file mode 100644 index 000000000..9398becac --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/writable_book.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/writable_book" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/written_book.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/written_book.json new file mode 100644 index 000000000..45a096029 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/written_book.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/written_book" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_bed.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_bed.json new file mode 100644 index 000000000..cc67ceffa --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/yellow_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_bundle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_bundle.json new file mode 100644 index 000000000..c685714df --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/yellow_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_bundle_open_back.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_bundle_open_back.json new file mode 100644 index 000000000..04998c2b0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/yellow_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_bundle_open_front.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_bundle_open_front.json new file mode 100644 index 000000000..a4794d6ba --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/yellow_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_candle.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_candle.json new file mode 100644 index 000000000..8f2e07288 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/yellow_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_dye.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_dye.json new file mode 100644 index 000000000..14d6bb6a0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/yellow_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_harness.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_harness.json new file mode 100644 index 000000000..b2783bebe --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/yellow_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_shulker_box.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_shulker_box.json new file mode 100644 index 000000000..318a620e7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/yellow_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_stained_glass_pane.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_stained_glass_pane.json new file mode 100644 index 000000000..e17c28a21 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/yellow_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/yellow_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/zoglin_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/zoglin_spawn_egg.json new file mode 100644 index 000000000..f87407767 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/zoglin_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/zoglin_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/zombie_horse_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/zombie_horse_spawn_egg.json new file mode 100644 index 000000000..9d8a4e2fc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/zombie_horse_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/zombie_horse_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/zombie_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/zombie_spawn_egg.json new file mode 100644 index 000000000..f0f63d8db --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/zombie_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/zombie_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/zombie_villager_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/zombie_villager_spawn_egg.json new file mode 100644 index 000000000..651e67d8b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/zombie_villager_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/zombie_villager_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/zombified_piglin_spawn_egg.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/zombified_piglin_spawn_egg.json new file mode 100644 index 000000000..fab7c383c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/models/item/zombified_piglin_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/zombified_piglin_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/ambient_entity_effect.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/ambient_entity_effect.json new file mode 100644 index 000000000..3be9c3a95 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/ambient_entity_effect.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:effect_7", + "minecraft:effect_6", + "minecraft:effect_5", + "minecraft:effect_4", + "minecraft:effect_3", + "minecraft:effect_2", + "minecraft:effect_1", + "minecraft:effect_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/angry_villager.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/angry_villager.json new file mode 100644 index 000000000..ab50717b1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/angry_villager.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:angry" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/ash.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/ash.json new file mode 100644 index 000000000..ca698ca44 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/ash.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/bubble.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/bubble.json new file mode 100644 index 000000000..c9ad64490 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/bubble.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:bubble" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/bubble_column_up.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/bubble_column_up.json new file mode 100644 index 000000000..c9ad64490 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/bubble_column_up.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:bubble" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/bubble_pop.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/bubble_pop.json new file mode 100644 index 000000000..65ff9e5f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/bubble_pop.json @@ -0,0 +1,9 @@ +{ + "textures": [ + "minecraft:bubble_pop_0", + "minecraft:bubble_pop_1", + "minecraft:bubble_pop_2", + "minecraft:bubble_pop_3", + "minecraft:bubble_pop_4" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/campfire_cosy_smoke.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/campfire_cosy_smoke.json new file mode 100644 index 000000000..a99bffe8b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/campfire_cosy_smoke.json @@ -0,0 +1,16 @@ +{ + "textures": [ + "minecraft:big_smoke_0", + "minecraft:big_smoke_1", + "minecraft:big_smoke_2", + "minecraft:big_smoke_3", + "minecraft:big_smoke_4", + "minecraft:big_smoke_5", + "minecraft:big_smoke_6", + "minecraft:big_smoke_7", + "minecraft:big_smoke_8", + "minecraft:big_smoke_9", + "minecraft:big_smoke_10", + "minecraft:big_smoke_11" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/campfire_signal_smoke.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/campfire_signal_smoke.json new file mode 100644 index 000000000..a99bffe8b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/campfire_signal_smoke.json @@ -0,0 +1,16 @@ +{ + "textures": [ + "minecraft:big_smoke_0", + "minecraft:big_smoke_1", + "minecraft:big_smoke_2", + "minecraft:big_smoke_3", + "minecraft:big_smoke_4", + "minecraft:big_smoke_5", + "minecraft:big_smoke_6", + "minecraft:big_smoke_7", + "minecraft:big_smoke_8", + "minecraft:big_smoke_9", + "minecraft:big_smoke_10", + "minecraft:big_smoke_11" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/cherry_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/cherry_leaves.json new file mode 100644 index 000000000..c373f2e5b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/cherry_leaves.json @@ -0,0 +1,16 @@ +{ + "textures": [ + "minecraft:cherry_0", + "minecraft:cherry_1", + "minecraft:cherry_2", + "minecraft:cherry_3", + "minecraft:cherry_4", + "minecraft:cherry_5", + "minecraft:cherry_6", + "minecraft:cherry_7", + "minecraft:cherry_8", + "minecraft:cherry_9", + "minecraft:cherry_10", + "minecraft:cherry_11" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/cloud.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/cloud.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/cloud.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/composter.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/composter.json new file mode 100644 index 000000000..f9f9746ae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/composter.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:glint" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/crimson_spore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/crimson_spore.json new file mode 100644 index 000000000..ca698ca44 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/crimson_spore.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/crit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/crit.json new file mode 100644 index 000000000..735a9d74f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/crit.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:critical_hit" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/current_down.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/current_down.json new file mode 100644 index 000000000..c9ad64490 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/current_down.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:bubble" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/damage_indicator.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/damage_indicator.json new file mode 100644 index 000000000..3c9f32072 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/damage_indicator.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:damage" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dolphin.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dolphin.json new file mode 100644 index 000000000..ca698ca44 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dolphin.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dragon_breath.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dragon_breath.json new file mode 100644 index 000000000..e65716e39 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dragon_breath.json @@ -0,0 +1,7 @@ +{ + "textures": [ + "minecraft:generic_5", + "minecraft:generic_6", + "minecraft:generic_7" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_dripstone_lava.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_dripstone_lava.json new file mode 100644 index 000000000..987e9f30a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_dripstone_lava.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_hang" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_dripstone_water.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_dripstone_water.json new file mode 100644 index 000000000..987e9f30a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_dripstone_water.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_hang" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_honey.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_honey.json new file mode 100644 index 000000000..6a657af29 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_honey.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_hang" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_lava.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_lava.json new file mode 100644 index 000000000..987e9f30a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_lava.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_hang" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_obsidian_tear.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_obsidian_tear.json new file mode 100644 index 000000000..6a657af29 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_obsidian_tear.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_hang" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_water.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_water.json new file mode 100644 index 000000000..987e9f30a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dripping_water.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_hang" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dust.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dust.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dust.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dust_color_transition.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dust_color_transition.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dust_color_transition.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dust_plume.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dust_plume.json new file mode 100644 index 000000000..e0996e04f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/dust_plume.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/effect.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/effect.json new file mode 100644 index 000000000..3be9c3a95 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/effect.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:effect_7", + "minecraft:effect_6", + "minecraft:effect_5", + "minecraft:effect_4", + "minecraft:effect_3", + "minecraft:effect_2", + "minecraft:effect_1", + "minecraft:effect_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/egg_crack.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/egg_crack.json new file mode 100644 index 000000000..bab4ed655 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/egg_crack.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:glint" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/electric_spark.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/electric_spark.json new file mode 100644 index 000000000..aa3870da9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/electric_spark.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:glow" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/enchant.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/enchant.json new file mode 100644 index 000000000..d2175f03f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/enchant.json @@ -0,0 +1,30 @@ +{ + "textures": [ + "minecraft:sga_a", + "minecraft:sga_b", + "minecraft:sga_c", + "minecraft:sga_d", + "minecraft:sga_e", + "minecraft:sga_f", + "minecraft:sga_g", + "minecraft:sga_h", + "minecraft:sga_i", + "minecraft:sga_j", + "minecraft:sga_k", + "minecraft:sga_l", + "minecraft:sga_m", + "minecraft:sga_n", + "minecraft:sga_o", + "minecraft:sga_p", + "minecraft:sga_q", + "minecraft:sga_r", + "minecraft:sga_s", + "minecraft:sga_t", + "minecraft:sga_u", + "minecraft:sga_v", + "minecraft:sga_w", + "minecraft:sga_x", + "minecraft:sga_y", + "minecraft:sga_z" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/enchanted_hit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/enchanted_hit.json new file mode 100644 index 000000000..9dfa4dada --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/enchanted_hit.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:enchanted_hit" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/end_rod.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/end_rod.json new file mode 100644 index 000000000..4fdc55ffc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/end_rod.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:glitter_7", + "minecraft:glitter_6", + "minecraft:glitter_5", + "minecraft:glitter_4", + "minecraft:glitter_3", + "minecraft:glitter_2", + "minecraft:glitter_1", + "minecraft:glitter_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/entity_effect.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/entity_effect.json new file mode 100644 index 000000000..3be9c3a95 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/entity_effect.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:effect_7", + "minecraft:effect_6", + "minecraft:effect_5", + "minecraft:effect_4", + "minecraft:effect_3", + "minecraft:effect_2", + "minecraft:effect_1", + "minecraft:effect_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/explosion.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/explosion.json new file mode 100644 index 000000000..6e3e151a5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/explosion.json @@ -0,0 +1,20 @@ +{ + "textures": [ + "minecraft:explosion_0", + "minecraft:explosion_1", + "minecraft:explosion_2", + "minecraft:explosion_3", + "minecraft:explosion_4", + "minecraft:explosion_5", + "minecraft:explosion_6", + "minecraft:explosion_7", + "minecraft:explosion_8", + "minecraft:explosion_9", + "minecraft:explosion_10", + "minecraft:explosion_11", + "minecraft:explosion_12", + "minecraft:explosion_13", + "minecraft:explosion_14", + "minecraft:explosion_15" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_dripstone_lava.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_dripstone_lava.json new file mode 100644 index 000000000..520ad48bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_dripstone_lava.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_dripstone_water.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_dripstone_water.json new file mode 100644 index 000000000..520ad48bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_dripstone_water.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_dust.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_dust.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_dust.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_honey.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_honey.json new file mode 100644 index 000000000..2732837e3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_honey.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_lava.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_lava.json new file mode 100644 index 000000000..520ad48bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_lava.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_nectar.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_nectar.json new file mode 100644 index 000000000..2732837e3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_nectar.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_obsidian_tear.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_obsidian_tear.json new file mode 100644 index 000000000..2732837e3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_obsidian_tear.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_spore_blossom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_spore_blossom.json new file mode 100644 index 000000000..2732837e3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_spore_blossom.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_water.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_water.json new file mode 100644 index 000000000..520ad48bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/falling_water.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/firefly.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/firefly.json new file mode 100644 index 000000000..592e0f8f1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/firefly.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:firefly" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/firework.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/firework.json new file mode 100644 index 000000000..9e4709bc6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/firework.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:spark_7", + "minecraft:spark_6", + "minecraft:spark_5", + "minecraft:spark_4", + "minecraft:spark_3", + "minecraft:spark_2", + "minecraft:spark_1", + "minecraft:spark_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/fishing.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/fishing.json new file mode 100644 index 000000000..49f427bca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/fishing.json @@ -0,0 +1,8 @@ +{ + "textures": [ + "minecraft:splash_0", + "minecraft:splash_1", + "minecraft:splash_2", + "minecraft:splash_3" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/flame.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/flame.json new file mode 100644 index 000000000..f506424da --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/flame.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:flame" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/flash.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/flash.json new file mode 100644 index 000000000..9d842205b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/flash.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:flash" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/glow.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/glow.json new file mode 100644 index 000000000..8c0a8d204 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/glow.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:glow" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/glow_squid_ink.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/glow_squid_ink.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/glow_squid_ink.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/gust.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/gust.json new file mode 100644 index 000000000..ae6f2dd90 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/gust.json @@ -0,0 +1,16 @@ +{ + "textures": [ + "minecraft:gust_0", + "minecraft:gust_1", + "minecraft:gust_2", + "minecraft:gust_3", + "minecraft:gust_4", + "minecraft:gust_5", + "minecraft:gust_6", + "minecraft:gust_7", + "minecraft:gust_8", + "minecraft:gust_9", + "minecraft:gust_10", + "minecraft:gust_11" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/happy_villager.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/happy_villager.json new file mode 100644 index 000000000..f9f9746ae --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/happy_villager.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:glint" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/heart.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/heart.json new file mode 100644 index 000000000..686a2dcf3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/heart.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:heart" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/infested.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/infested.json new file mode 100644 index 000000000..5910ce70c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/infested.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:infested" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/instant_effect.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/instant_effect.json new file mode 100644 index 000000000..7ec70d324 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/instant_effect.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:spell_7", + "minecraft:spell_6", + "minecraft:spell_5", + "minecraft:spell_4", + "minecraft:spell_3", + "minecraft:spell_2", + "minecraft:spell_1", + "minecraft:spell_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/landing_honey.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/landing_honey.json new file mode 100644 index 000000000..3af906fe9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/landing_honey.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_land" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/landing_lava.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/landing_lava.json new file mode 100644 index 000000000..89230de9a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/landing_lava.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_land" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/landing_obsidian_tear.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/landing_obsidian_tear.json new file mode 100644 index 000000000..3af906fe9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/landing_obsidian_tear.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_land" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/large_smoke.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/large_smoke.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/large_smoke.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/lava.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/lava.json new file mode 100644 index 000000000..da6979fed --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/lava.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:lava" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/mycelium.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/mycelium.json new file mode 100644 index 000000000..ca698ca44 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/mycelium.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/nautilus.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/nautilus.json new file mode 100644 index 000000000..6b9eafdf8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/nautilus.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:nautilus" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/note.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/note.json new file mode 100644 index 000000000..8097a3d71 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/note.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:note" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/ominous_spawning.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/ominous_spawning.json new file mode 100644 index 000000000..6508b58d6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/ominous_spawning.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:ominous_spawning" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/pale_oak_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/pale_oak_leaves.json new file mode 100644 index 000000000..8769866f4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/pale_oak_leaves.json @@ -0,0 +1,16 @@ +{ + "textures": [ + "minecraft:pale_oak_0", + "minecraft:pale_oak_1", + "minecraft:pale_oak_2", + "minecraft:pale_oak_3", + "minecraft:pale_oak_4", + "minecraft:pale_oak_5", + "minecraft:pale_oak_6", + "minecraft:pale_oak_7", + "minecraft:pale_oak_8", + "minecraft:pale_oak_9", + "minecraft:pale_oak_10", + "minecraft:pale_oak_11" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/poof.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/poof.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/poof.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/portal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/portal.json new file mode 100644 index 000000000..f970e447f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/portal.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_0", + "minecraft:generic_1", + "minecraft:generic_2", + "minecraft:generic_3", + "minecraft:generic_4", + "minecraft:generic_5", + "minecraft:generic_6", + "minecraft:generic_7" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/raid_omen.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/raid_omen.json new file mode 100644 index 000000000..37c611ef2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/raid_omen.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:raid_omen" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/rain.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/rain.json new file mode 100644 index 000000000..49f427bca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/rain.json @@ -0,0 +1,8 @@ +{ + "textures": [ + "minecraft:splash_0", + "minecraft:splash_1", + "minecraft:splash_2", + "minecraft:splash_3" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/reverse_portal.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/reverse_portal.json new file mode 100644 index 000000000..f970e447f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/reverse_portal.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_0", + "minecraft:generic_1", + "minecraft:generic_2", + "minecraft:generic_3", + "minecraft:generic_4", + "minecraft:generic_5", + "minecraft:generic_6", + "minecraft:generic_7" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/scrape.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/scrape.json new file mode 100644 index 000000000..aa3870da9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/scrape.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:glow" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sculk_charge.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sculk_charge.json new file mode 100644 index 000000000..0e825f110 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sculk_charge.json @@ -0,0 +1,11 @@ +{ + "textures": [ + "minecraft:sculk_charge_0", + "minecraft:sculk_charge_1", + "minecraft:sculk_charge_2", + "minecraft:sculk_charge_3", + "minecraft:sculk_charge_4", + "minecraft:sculk_charge_5", + "minecraft:sculk_charge_6" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sculk_charge_pop.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sculk_charge_pop.json new file mode 100644 index 000000000..45d6bcc4f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sculk_charge_pop.json @@ -0,0 +1,8 @@ +{ + "textures": [ + "minecraft:sculk_charge_pop_0", + "minecraft:sculk_charge_pop_1", + "minecraft:sculk_charge_pop_2", + "minecraft:sculk_charge_pop_3" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sculk_soul.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sculk_soul.json new file mode 100644 index 000000000..642ff2825 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sculk_soul.json @@ -0,0 +1,15 @@ +{ + "textures": [ + "minecraft:sculk_soul_0", + "minecraft:sculk_soul_1", + "minecraft:sculk_soul_2", + "minecraft:sculk_soul_3", + "minecraft:sculk_soul_4", + "minecraft:sculk_soul_5", + "minecraft:sculk_soul_6", + "minecraft:sculk_soul_7", + "minecraft:sculk_soul_8", + "minecraft:sculk_soul_9", + "minecraft:sculk_soul_10" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/shriek.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/shriek.json new file mode 100644 index 000000000..ad08a5988 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/shriek.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:shriek" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/small_flame.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/small_flame.json new file mode 100644 index 000000000..ef790a1f7 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/small_flame.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:flame" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/small_gust.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/small_gust.json new file mode 100644 index 000000000..376dff661 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/small_gust.json @@ -0,0 +1,11 @@ +{ + "textures": [ + "minecraft:small_gust_0", + "minecraft:small_gust_1", + "minecraft:small_gust_2", + "minecraft:small_gust_3", + "minecraft:small_gust_4", + "minecraft:small_gust_5", + "minecraft:small_gust_6" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/smoke.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/smoke.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/smoke.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sneeze.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sneeze.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sneeze.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/snowflake.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/snowflake.json new file mode 100644 index 000000000..e0996e04f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/snowflake.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sonic_boom.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sonic_boom.json new file mode 100644 index 000000000..f08e512b0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sonic_boom.json @@ -0,0 +1,20 @@ +{ + "textures": [ + "minecraft:sonic_boom_0", + "minecraft:sonic_boom_1", + "minecraft:sonic_boom_2", + "minecraft:sonic_boom_3", + "minecraft:sonic_boom_4", + "minecraft:sonic_boom_5", + "minecraft:sonic_boom_6", + "minecraft:sonic_boom_7", + "minecraft:sonic_boom_8", + "minecraft:sonic_boom_9", + "minecraft:sonic_boom_10", + "minecraft:sonic_boom_11", + "minecraft:sonic_boom_12", + "minecraft:sonic_boom_13", + "minecraft:sonic_boom_14", + "minecraft:sonic_boom_15" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/soul.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/soul.json new file mode 100644 index 000000000..08defaea4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/soul.json @@ -0,0 +1,15 @@ +{ + "textures": [ + "minecraft:soul_0", + "minecraft:soul_1", + "minecraft:soul_2", + "minecraft:soul_3", + "minecraft:soul_4", + "minecraft:soul_5", + "minecraft:soul_6", + "minecraft:soul_7", + "minecraft:soul_8", + "minecraft:soul_9", + "minecraft:soul_10" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/soul_fire_flame.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/soul_fire_flame.json new file mode 100644 index 000000000..6064eacb8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/soul_fire_flame.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:soul_fire_flame" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/spit.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/spit.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/spit.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/splash.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/splash.json new file mode 100644 index 000000000..49f427bca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/splash.json @@ -0,0 +1,8 @@ +{ + "textures": [ + "minecraft:splash_0", + "minecraft:splash_1", + "minecraft:splash_2", + "minecraft:splash_3" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/spore_blossom_air.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/spore_blossom_air.json new file mode 100644 index 000000000..520ad48bf --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/spore_blossom_air.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/squid_ink.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/squid_ink.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/squid_ink.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sweep_attack.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sweep_attack.json new file mode 100644 index 000000000..3b9fe7896 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/sweep_attack.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:sweep_0", + "minecraft:sweep_1", + "minecraft:sweep_2", + "minecraft:sweep_3", + "minecraft:sweep_4", + "minecraft:sweep_5", + "minecraft:sweep_6", + "minecraft:sweep_7" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/tinted_leaves.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/tinted_leaves.json new file mode 100644 index 000000000..ac37a183b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/tinted_leaves.json @@ -0,0 +1,16 @@ +{ + "textures": [ + "minecraft:leaf_0", + "minecraft:leaf_1", + "minecraft:leaf_2", + "minecraft:leaf_3", + "minecraft:leaf_4", + "minecraft:leaf_5", + "minecraft:leaf_6", + "minecraft:leaf_7", + "minecraft:leaf_8", + "minecraft:leaf_9", + "minecraft:leaf_10", + "minecraft:leaf_11" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/totem_of_undying.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/totem_of_undying.json new file mode 100644 index 000000000..4fdc55ffc --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/totem_of_undying.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:glitter_7", + "minecraft:glitter_6", + "minecraft:glitter_5", + "minecraft:glitter_4", + "minecraft:glitter_3", + "minecraft:glitter_2", + "minecraft:glitter_1", + "minecraft:glitter_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/trail.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/trail.json new file mode 100644 index 000000000..5590ac4d3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/trail.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:generic_0" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/trial_omen.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/trial_omen.json new file mode 100644 index 000000000..1e0bd583c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/trial_omen.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:trial_omen" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/trial_spawner_detection.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/trial_spawner_detection.json new file mode 100644 index 000000000..c39375485 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/trial_spawner_detection.json @@ -0,0 +1,9 @@ +{ + "textures": [ + "minecraft:trial_spawner_detection_0", + "minecraft:trial_spawner_detection_1", + "minecraft:trial_spawner_detection_2", + "minecraft:trial_spawner_detection_3", + "minecraft:trial_spawner_detection_4" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/trial_spawner_detection_ominous.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/trial_spawner_detection_ominous.json new file mode 100644 index 000000000..062b339fb --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/trial_spawner_detection_ominous.json @@ -0,0 +1,9 @@ +{ + "textures": [ + "minecraft:trial_spawner_detection_ominous_0", + "minecraft:trial_spawner_detection_ominous_1", + "minecraft:trial_spawner_detection_ominous_2", + "minecraft:trial_spawner_detection_ominous_3", + "minecraft:trial_spawner_detection_ominous_4" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/underwater.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/underwater.json new file mode 100644 index 000000000..ca698ca44 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/underwater.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/vault_connection.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/vault_connection.json new file mode 100644 index 000000000..184afd460 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/vault_connection.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:vault_connection" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/vibration.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/vibration.json new file mode 100644 index 000000000..c2cf0ff5a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/vibration.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:vibration" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/warped_spore.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/warped_spore.json new file mode 100644 index 000000000..ca698ca44 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/warped_spore.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/wax_off.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/wax_off.json new file mode 100644 index 000000000..aa3870da9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/wax_off.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:glow" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/wax_on.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/wax_on.json new file mode 100644 index 000000000..aa3870da9 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/wax_on.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:glow" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/white_ash.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/white_ash.json new file mode 100644 index 000000000..5590ac4d3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/white_ash.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:generic_0" + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/white_smoke.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/white_smoke.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/white_smoke.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/witch.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/witch.json new file mode 100644 index 000000000..7ec70d324 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/particles/witch.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:spell_7", + "minecraft:spell_6", + "minecraft:spell_5", + "minecraft:spell_4", + "minecraft:spell_3", + "minecraft:spell_2", + "minecraft:spell_1", + "minecraft:spell_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/blur.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/blur.json new file mode 100644 index 000000000..691a2863c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/blur.json @@ -0,0 +1,162 @@ +{ + "targets": { + "swap": {} + }, + "passes": [ + { + "vertex_shader": "minecraft:post/blur", + "fragment_shader": "minecraft:post/box_blur", + "inputs": [ + { + "sampler_name": "In", + "target": "minecraft:main", + "bilinear": true + } + ], + "output": "swap", + "uniforms": { + "BlurConfig": [ + { + "name": "BlurDir", + "type": "vec2", + "value": [ 1.0, 0.0 ] + }, + { + "name": "Radius", + "type": "float", + "value": 0.0 + } + ] + } + }, + { + "vertex_shader": "minecraft:post/blur", + "fragment_shader": "minecraft:post/box_blur", + "inputs": [ + { + "sampler_name": "In", + "target": "swap", + "bilinear": true + } + ], + "output": "minecraft:main", + "uniforms": { + "BlurConfig": [ + { + "name": "BlurDir", + "type": "vec2", + "value": [ 0.0, 1.0 ] + }, + { + "name": "Radius", + "type": "float", + "value": 0.0 + } + ] + } + }, { + "vertex_shader": "minecraft:post/blur", + "fragment_shader": "minecraft:post/box_blur", + "inputs": [ + { + "sampler_name": "In", + "target": "minecraft:main", + "bilinear": true + } + ], + "output": "swap", + "uniforms": { + "BlurConfig": [ + { + "name": "BlurDir", + "type": "vec2", + "value": [ 1.0, 0.0 ] + }, + { + "name": "Radius", + "type": "float", + "value": 0.0 + } + ] + } + }, + { + "vertex_shader": "minecraft:post/blur", + "fragment_shader": "minecraft:post/box_blur", + "inputs": [ + { + "sampler_name": "In", + "target": "swap", + "bilinear": true + } + ], + "output": "minecraft:main", + "uniforms": { + "BlurConfig": [ + { + "name": "BlurDir", + "type": "vec2", + "value": [ 0.0, 1.0 ] + }, + { + "name": "Radius", + "type": "float", + "value": 0.0 + } + ] + } + }, + { + "vertex_shader": "minecraft:post/blur", + "fragment_shader": "minecraft:post/box_blur", + "inputs": [ + { + "sampler_name": "In", + "target": "minecraft:main", + "bilinear": true + } + ], + "output": "swap", + "uniforms": { + "BlurConfig": [ + { + "name": "BlurDir", + "type": "vec2", + "value": [ 1.0, 0.0 ] + }, + { + "name": "Radius", + "type": "float", + "value": 0.0 + } + ] + } + }, + { + "vertex_shader": "minecraft:post/blur", + "fragment_shader": "minecraft:post/box_blur", + "inputs": [ + { + "sampler_name": "In", + "target": "swap", + "bilinear": true + } + ], + "output": "minecraft:main", + "uniforms": { + "BlurConfig": [ + { + "name": "BlurDir", + "type": "vec2", + "value": [ 0.0, 1.0 ] + }, + { + "name": "Radius", + "type": "float", + "value": 0.0 + } + ] + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/creeper.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/creeper.json new file mode 100644 index 000000000..c3d06a74e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/creeper.json @@ -0,0 +1,62 @@ +{ + "targets": { + "swap": {} + }, + "passes": [ + { + "vertex_shader": "minecraft:post/sobel", + "fragment_shader": "minecraft:post/color_convolve", + "inputs": [ + { + "sampler_name": "In", + "target": "minecraft:main" + } + ], + "output": "swap", + "uniforms": { + "ColorConfig": [ + { + "name": "RedMatrix", + "type": "vec3", + "value": [ 0.0, 0.0, 0.0 ] + }, + { + "name": "GreenMatrix", + "type": "vec3", + "value": [ 0.3, 0.59, 0.11 ] + }, + { + "name": "BlueMatrix", + "type": "vec3", + "value": [ 0.0, 0.0, 0.0 ] + } + ] + } + }, + { + "vertex_shader": "minecraft:post/sobel", + "fragment_shader": "minecraft:post/bits", + "inputs": [ + { + "sampler_name": "In", + "target": "swap" + } + ], + "output": "minecraft:main", + "uniforms": { + "BitsConfig": [ + { + "name": "Resolution", + "type": "float", + "value": 16.0 + }, + { + "name": "MosaicSize", + "type": "float", + "value": 4.0 + } + ] + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/entity_outline.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/entity_outline.json new file mode 100644 index 000000000..05d5ce616 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/entity_outline.json @@ -0,0 +1,90 @@ +{ + "targets": { + "swap": {} + }, + "passes": [ + { + "vertex_shader": "minecraft:post/sobel", + "fragment_shader": "minecraft:post/entity_sobel", + "inputs": [ + { + "sampler_name": "In", + "target": "minecraft:entity_outline" + } + ], + "output": "swap" + }, + { + "vertex_shader": "minecraft:post/blur", + "fragment_shader": "minecraft:post/entity_outline_box_blur", + "inputs": [ + { + "sampler_name": "In", + "target": "swap", + "bilinear": true + } + ], + "output": "minecraft:entity_outline", + "uniforms": { + "BlurConfig": [ + { + "name": "BlurDir", + "type": "vec2", + "value": [ 1.0, 0.0 ] + }, + { + "name": "Radius", + "type": "float", + "value": 2.0 + } + ] + } + }, + { + "vertex_shader": "minecraft:post/blur", + "fragment_shader": "minecraft:post/entity_outline_box_blur", + "inputs": [ + { + "sampler_name": "In", + "target": "minecraft:entity_outline", + "bilinear": true + } + ], + "output": "swap", + "uniforms": { + "BlurConfig": [ + { + "name": "BlurDir", + "type": "vec2", + "value": [ 0.0, 1.0 ] + }, + { + "name": "Radius", + "type": "float", + "value": 2.0 + } + ] + } + }, + { + "vertex_shader": "minecraft:post/blit", + "fragment_shader": "minecraft:post/blit", + "inputs": [ + { + "sampler_name": "In", + "target": "swap" + } + ], + "uniforms": { + "BlitConfig": [ + { + "name": "ColorModulate", + "type": "vec4", + "value": [ 1.0, 1.0, 1.0, 1.0 ] + } + ] + }, + "output": "minecraft:entity_outline" + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/invert.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/invert.json new file mode 100644 index 000000000..d3a4057c5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/invert.json @@ -0,0 +1,47 @@ +{ + "targets": { + "swap": {} + }, + "passes": [ + { + "vertex_shader": "minecraft:post/blit", + "fragment_shader": "minecraft:post/invert", + "inputs": [ + { + "sampler_name": "In", + "target": "minecraft:main" + } + ], + "output": "swap", + "uniforms": { + "InvertConfig": [ + { + "name": "InverseAmount", + "type": "float", + "value": 0.8 + } + ] + } + }, + { + "vertex_shader": "minecraft:post/blit", + "fragment_shader": "minecraft:post/blit", + "inputs": [ + { + "sampler_name": "In", + "target": "swap" + } + ], + "uniforms": { + "BlitConfig": [ + { + "name": "ColorModulate", + "type": "vec4", + "value": [ 1.0, 1.0, 1.0, 1.0 ] + } + ] + }, + "output": "minecraft:main" + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/spider.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/spider.json new file mode 100644 index 000000000..45b7df00d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/spider.json @@ -0,0 +1,364 @@ +{ + "targets": { + "large_blur": {}, + "small_blur": {}, + "temp": {}, + "swap": {} + }, + "passes": [ + { + "vertex_shader": "minecraft:post/blur", + "fragment_shader": "minecraft:post/box_blur", + "inputs": [ + { + "sampler_name": "In", + "target": "minecraft:main", + "bilinear": true + } + ], + "output": "temp", + "uniforms": { + "BlurConfig": [ + { + "name": "BlurDir", + "type": "vec2", + "value": [ 1.0, 0.0 ] + }, + { + "name": "Radius", + "type": "float", + "value": 15.0 + } + ] + } + }, + { + "vertex_shader": "minecraft:post/blur", + "fragment_shader": "minecraft:post/box_blur", + "inputs": [ + { + "sampler_name": "In", + "target": "temp", + "bilinear": true + } + ], + "output": "large_blur", + "uniforms": { + "BlurConfig": [ + { + "name": "BlurDir", + "type": "vec2", + "value": [ 0.0, 1.0 ] + }, + { + "name": "Radius", + "type": "float", + "value": 15.0 + } + ] + } + }, + { + "vertex_shader": "minecraft:post/blur", + "fragment_shader": "minecraft:post/box_blur", + "inputs": [ + { + "sampler_name": "In", + "target": "minecraft:main", + "bilinear": true + } + ], + "output": "temp", + "uniforms": { + "BlurConfig": [ + { + "name": "BlurDir", + "type": "vec2", + "value": [ 1.0, 0.0 ] + }, + { + "name": "Radius", + "type": "float", + "value": 7.0 + } + ] + } + }, + { + "vertex_shader": "minecraft:post/blur", + "fragment_shader": "minecraft:post/box_blur", + "inputs": [ + { + "sampler_name": "In", + "target": "temp", + "bilinear": true + } + ], + "output": "small_blur", + "uniforms": { + "BlurConfig": [ + { + "name": "BlurDir", + "type": "vec2", + "value": [ 0.0, 1.0 ] + }, + { + "name": "Radius", + "type": "float", + "value": 7.0 + } + ] + } + }, + { + "vertex_shader": "minecraft:post/rotscale", + "fragment_shader": "minecraft:post/spiderclip", + "inputs": [ + { + "sampler_name": "In", + "target": "minecraft:main" + }, + { + "sampler_name": "Blur", + "target": "large_blur" + } + ], + "output": "temp", + "uniforms": { + "RotScaleConfig": [ + { + "name": "InScale", + "type": "vec2", + "value": [ 1.25, 2.0 ] + }, + { + "name": "InOffset", + "type": "vec2", + "value": [ -0.125, -0.1 ] + }, + { + "name": "InRotation", + "type": "float", + "value": 0.0 + } + ], + "SpiderConfig": [ + { + "name": "Scissor", + "type": "vec4", + "value": [ 0.0, 0.0, 1.0, 1.0 ] + }, + { + "name": "Vignette", + "type": "vec4", + "value": [ 0.1, 0.1, 0.9, 0.9 ] + } + ] + } + }, + { + "vertex_shader": "minecraft:post/rotscale", + "fragment_shader": "minecraft:post/spiderclip", + "inputs": [ + { + "sampler_name": "In", + "target": "small_blur" + }, + { + "sampler_name": "Blur", + "target": "temp" + } + ], + "output": "swap", + "uniforms": { + "RotScaleConfig": [ + { + "name": "InScale", + "type": "vec2", + "value": [ 2.35, 4.2 ] + }, + { + "name": "InOffset", + "type": "vec2", + "value": [ -1.1, -1.5 ] + }, + { + "name": "InRotation", + "type": "float", + "value": -45.0 + } + ], + "SpiderConfig": [ + { + "name": "Scissor", + "type": "vec4", + "value": [ 0.21, 0.0, 0.79, 1.0 ] + }, + { + "name": "Vignette", + "type": "vec4", + "value": [ 0.31, 0.1, 0.69, 0.9 ] + } + ] + } + }, + { + "vertex_shader": "minecraft:post/rotscale", + "fragment_shader": "minecraft:post/spiderclip", + "inputs": [ + { + "sampler_name": "In", + "target": "small_blur" + }, + { + "sampler_name": "Blur", + "target": "swap" + } + ], + "output": "temp", + "uniforms": { + "RotScaleConfig": [ + { + "name": "InScale", + "type": "vec2", + "value": [ 2.35, 4.2 ] + }, + { + "name": "InOffset", + "type": "vec2", + "value": [ 0.45, -4.45 ] + }, + { + "name": "InRotation", + "type": "float", + "value": 45.0 + } + ], + "SpiderConfig": [ + { + "name": "Scissor", + "type": "vec4", + "value": [ 0.21, 0.0, 0.79, 1.0 ] + }, + { + "name": "Vignette", + "type": "vec4", + "value": [ 0.31, 0.1, 0.69, 0.9 ] + } + ] + } + }, + { + "vertex_shader": "minecraft:post/rotscale", + "fragment_shader": "minecraft:post/spiderclip", + "inputs": [ + { + "sampler_name": "In", + "target": "small_blur" + }, + { + "sampler_name": "Blur", + "target": "temp" + } + ], + "output": "swap", + "uniforms": { + "RotScaleConfig": [ + { + "name": "InScale", + "type": "vec2", + "value": [ 2.35, 2.35 ] + }, + { + "name": "InOffset", + "type": "vec2", + "value": [ -0.385, -1.29 ] + }, + { + "name": "InRotation", + "type": "float", + "value": 0.0 + } + ], + "SpiderConfig": [ + { + "name": "Scissor", + "type": "vec4", + "value": [ 0.0, 0.0, 1.0, 1.0 ] + }, + { + "name": "Vignette", + "type": "vec4", + "value": [ 0.31, 0.1, 0.69, 0.9 ] + } + ] + } + }, + { + "vertex_shader": "minecraft:post/rotscale", + "fragment_shader": "minecraft:post/spiderclip", + "inputs": [ + { + "sampler_name": "In", + "target": "small_blur" + }, + { + "sampler_name": "Blur", + "target": "swap" + } + ], + "output": "temp", + "uniforms": { + "RotScaleConfig": [ + { + "name": "InScale", + "type": "vec2", + "value": [ 2.35, 2.35 ] + }, + { + "name": "InOffset", + "type": "vec2", + "value": [ -0.965, -1.29 ] + }, + { + "name": "InRotation", + "type": "float", + "value": 0.0 + } + ], + "SpiderConfig": [ + { + "name": "Scissor", + "type": "vec4", + "value": [ 0.0, 0.0, 1.0, 1.0 ] + }, + { + "name": "Vignette", + "type": "vec4", + "value": [ 0.31, 0.1, 0.69, 0.9 ] + } + ] + } + }, + { + "vertex_shader": "minecraft:post/blit", + "fragment_shader": "minecraft:post/blit", + "inputs": [ + { + "sampler_name": "In", + "target": "temp" + } + ], + "output": "minecraft:main", + "uniforms": { + "BlitConfig": [ + { + "name": "ColorModulate", + "type": "vec4", + "value": [ 1.0, 0.8, 0.8, 1.0 ] + } + ] + } + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/transparency.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/transparency.json new file mode 100644 index 000000000..469aa4d24 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/post_effect/transparency.json @@ -0,0 +1,88 @@ +{ + "targets" : { + "final": {} + }, + "passes": [ + { + "vertex_shader": "minecraft:post/screenquad", + "fragment_shader": "minecraft:post/transparency", + "inputs": [ + { + "sampler_name": "Main", + "target": "minecraft:main" + }, + { + "sampler_name": "MainDepth", + "target": "minecraft:main", + "use_depth_buffer": true + }, + { + "sampler_name": "Translucent", + "target": "minecraft:translucent" + }, + { + "sampler_name": "TranslucentDepth", + "target": "minecraft:translucent", + "use_depth_buffer": true + }, + { + "sampler_name": "ItemEntity", + "target": "minecraft:item_entity" + }, + { + "sampler_name": "ItemEntityDepth", + "target": "minecraft:item_entity", + "use_depth_buffer": true + }, + { + "sampler_name": "Particles", + "target": "minecraft:particles" + }, + { + "sampler_name": "ParticlesDepth", + "target": "minecraft:particles", + "use_depth_buffer": true + }, + { + "sampler_name": "Clouds", + "target": "minecraft:clouds" + }, + { + "sampler_name": "CloudsDepth", + "target": "minecraft:clouds", + "use_depth_buffer": true + }, + { + "sampler_name": "Weather", + "target": "minecraft:weather" + }, + { + "sampler_name": "WeatherDepth", + "target": "minecraft:weather", + "use_depth_buffer": true + } + ], + "output": "final" + }, + { + "vertex_shader": "minecraft:post/blit", + "fragment_shader": "minecraft:post/blit", + "inputs": [ + { + "sampler_name": "In", + "target": "final" + } + ], + "uniforms": { + "BlitConfig": [ + { + "name": "ColorModulate", + "type": "vec4", + "value": [ 1.0, 1.0, 1.0, 1.0 ] + } + ] + }, + "output": "minecraft:main" + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/regional_compliancies.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/regional_compliancies.json new file mode 100644 index 000000000..db5736b92 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/regional_compliancies.json @@ -0,0 +1,15 @@ +{ + "KOR" : [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + } + ] +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/blit_screen.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/blit_screen.fsh new file mode 100644 index 000000000..a1d342677 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/blit_screen.fsh @@ -0,0 +1,11 @@ +#version 150 + +uniform sampler2D InSampler; + +in vec2 texCoord; + +out vec4 fragColor; + +void main() { + fragColor = texture(InSampler, texCoord); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/blit_screen.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/blit_screen.vsh new file mode 100644 index 000000000..405da001a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/blit_screen.vsh @@ -0,0 +1,11 @@ +#version 150 + +in vec3 Position; + +out vec2 texCoord; + +void main() { + vec2 screenPos = Position.xy * 2.0 - 1.0; + gl_Position = vec4(screenPos.x, screenPos.y, 1.0, 1.0); + texCoord = Position.xy; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/entity.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/entity.fsh new file mode 100644 index 000000000..352919472 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/entity.fsh @@ -0,0 +1,32 @@ +#version 150 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec4 lightMapColor; +in vec4 overlayColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); +#ifdef ALPHA_CUTOUT + if (color.a < ALPHA_CUTOUT) { + discard; + } +#endif + color *= vertexColor * ColorModulator; +#ifndef NO_OVERLAY + color.rgb = mix(overlayColor.rgb, color.rgb, overlayColor.a); +#endif +#ifndef EMISSIVE + color *= lightMapColor; +#endif + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/entity.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/entity.vsh new file mode 100644 index 000000000..5c901ff4d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/entity.vsh @@ -0,0 +1,44 @@ +#version 150 + +#moj_import +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV1; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler1; +uniform sampler2D Sampler2; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; +out vec4 lightMapColor; +out vec4 overlayColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); +#ifdef NO_CARDINAL_LIGHTING + vertexColor = Color; +#else + vertexColor = minecraft_mix_light(Light0_Direction, Light1_Direction, Normal, Color); +#endif +#ifndef EMISSIVE + lightMapColor = texelFetch(Sampler2, UV2 / 16, 0); +#endif + overlayColor = texelFetch(Sampler1, UV1, 0); + + texCoord0 = UV0; +#ifdef APPLY_TEXTURE_MATRIX + texCoord0 = (TextureMat * vec4(UV0, 0.0, 1.0)).xy; +#endif +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/glint.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/glint.fsh new file mode 100644 index 000000000..5e905f7d4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/glint.fsh @@ -0,0 +1,22 @@ +#version 150 + +#moj_import +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * ColorModulator; + if (color.a < 0.1) { + discard; + } + float fade = (1.0f - total_fog_value(sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd)) * GlintAlpha; + fragColor = vec4(color.rgb * fade, color.a); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/glint.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/glint.vsh new file mode 100644 index 000000000..2febb0656 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/glint.vsh @@ -0,0 +1,20 @@ +#version 150 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec2 UV0; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + texCoord0 = (TextureMat * vec4(UV0, 0.0, 1.0)).xy; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/gui.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/gui.fsh new file mode 100644 index 000000000..6dc48f34b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/gui.fsh @@ -0,0 +1,23 @@ +#version 150 + +// Can't moj_import in things used during startup, when resource packs don't exist. +// This is a copy of dynamicimports.glsl +layout(std140) uniform DynamicTransforms { + mat4 ModelViewMat; + vec4 ColorModulator; + vec3 ModelOffset; + mat4 TextureMat; + float LineWidth; +}; + +in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + vec4 color = vertexColor; + if (color.a == 0.0) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/gui.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/gui.vsh new file mode 100644 index 000000000..378994ad5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/gui.vsh @@ -0,0 +1,25 @@ +#version 150 + +// Can't moj_import in things used during startup, when resource packs don't exist. +// This is a copy of dynamicimports.glsl and projection.glsl +layout(std140) uniform DynamicTransforms { + mat4 ModelViewMat; + vec4 ColorModulator; + vec3 ModelOffset; + mat4 TextureMat; + float LineWidth; +}; +layout(std140) uniform Projection { + mat4 ProjMat; +}; + +in vec3 Position; +in vec4 Color; + +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/lightmap.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/lightmap.fsh new file mode 100644 index 000000000..10b316671 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/lightmap.fsh @@ -0,0 +1,70 @@ +#version 150 + +layout(std140) uniform LightmapInfo { + float AmbientLightFactor; + float SkyFactor; + float BlockFactor; + int UseBrightLightmap; + float NightVisionFactor; + float DarknessScale; + float DarkenWorldFactor; + float BrightnessFactor; + vec3 SkyLightColor; +} lightmapInfo; + +in vec2 texCoord; + +out vec4 fragColor; + +float get_brightness(float level) { + float curved_level = level / (4.0 - 3.0 * level); + return mix(curved_level, 1.0, lightmapInfo.AmbientLightFactor); +} + +vec3 notGamma(vec3 x) { + vec3 nx = 1.0 - x; + return 1.0 - nx * nx * nx * nx; +} + +void main() { + float block_brightness = get_brightness(floor(texCoord.x * 16) / 15) * lightmapInfo.BlockFactor; + float sky_brightness = get_brightness(floor(texCoord.y * 16) / 15) * lightmapInfo.SkyFactor; + + // cubic nonsense, dips to yellowish in the middle, white when fully saturated + vec3 color = vec3( + block_brightness, + block_brightness * ((block_brightness * 0.6 + 0.4) * 0.6 + 0.4), + block_brightness * (block_brightness * block_brightness * 0.6 + 0.4) + ); + + if (lightmapInfo.UseBrightLightmap != 0) { + color = mix(color, vec3(0.99, 1.12, 1.0), 0.25); + color = clamp(color, 0.0, 1.0); + } else { + color += lightmapInfo.SkyLightColor * sky_brightness; + color = mix(color, vec3(0.75), 0.04); + + vec3 darkened_color = color * vec3(0.7, 0.6, 0.6); + color = mix(color, darkened_color, lightmapInfo.DarkenWorldFactor); + } + + if (lightmapInfo.NightVisionFactor > 0.0) { + // scale up uniformly until 1.0 is hit by one of the colors + float max_component = max(color.r, max(color.g, color.b)); + if (max_component < 1.0) { + vec3 bright_color = color / max_component; + color = mix(color, bright_color, lightmapInfo.NightVisionFactor); + } + } + + if (lightmapInfo.UseBrightLightmap == 0) { + color = clamp(color - vec3(lightmapInfo.DarknessScale), 0.0, 1.0); + } + + vec3 notGamma = notGamma(color); + color = mix(color, notGamma, lightmapInfo.BrightnessFactor); + color = mix(color, vec3(0.75), 0.04); + color = clamp(color, 0.0, 1.0); + + fragColor = vec4(color, 1.0); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/panorama.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/panorama.fsh new file mode 100644 index 000000000..42a7f0930 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/panorama.fsh @@ -0,0 +1,11 @@ +#version 150 + +uniform samplerCube Sampler0; + +in vec3 texCoord0; + +out vec4 fragColor; + +void main() { + fragColor = texture(Sampler0, texCoord0); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/panorama.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/panorama.vsh new file mode 100644 index 000000000..83be8eb0f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/panorama.vsh @@ -0,0 +1,13 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +out vec3 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + texCoord0 = Position; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/particle.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/particle.fsh new file mode 100644 index 000000000..e1942645f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/particle.fsh @@ -0,0 +1,21 @@ +#version 150 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec2 texCoord0; +in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; + if (color.a < 0.1) { + discard; + } + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/particle.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/particle.vsh new file mode 100644 index 000000000..6300f2d01 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/particle.vsh @@ -0,0 +1,26 @@ +#version 150 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec2 UV0; +in vec4 Color; +in ivec2 UV2; + +uniform sampler2D Sampler2; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec2 texCoord0; +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + texCoord0 = UV0; + vertexColor = Color * texelFetch(Sampler2, UV2 / 16, 0); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position.fsh new file mode 100644 index 000000000..60c099345 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position.fsh @@ -0,0 +1,13 @@ +#version 150 + +#moj_import +#moj_import + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; + +out vec4 fragColor; + +void main() { + fragColor = apply_fog(ColorModulator, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position.vsh new file mode 100644 index 000000000..1f3bd9d4d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position.vsh @@ -0,0 +1,17 @@ +#version 150 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color.fsh new file mode 100644 index 000000000..bd3ff05e0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color.fsh @@ -0,0 +1,15 @@ +#version 150 + +#moj_import + +in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + vec4 color = vertexColor; + if (color.a == 0.0) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color.vsh new file mode 100644 index 000000000..2e50bbe4b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color.vsh @@ -0,0 +1,15 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; + +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color_lightmap.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color_lightmap.fsh new file mode 100644 index 000000000..dda4fadca --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color_lightmap.fsh @@ -0,0 +1,15 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler2; + +in vec4 vertexColor; +in vec2 texCoord2; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler2, texCoord2) * vertexColor; + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color_lightmap.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color_lightmap.vsh new file mode 100644 index 000000000..9497915b0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color_lightmap.vsh @@ -0,0 +1,18 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV2; + +out vec4 vertexColor; +out vec2 texCoord2; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; + texCoord2 = UV2; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color_tex_lightmap.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color_tex_lightmap.fsh new file mode 100644 index 000000000..0568d470d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color_tex_lightmap.fsh @@ -0,0 +1,19 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +in vec4 vertexColor; +in vec2 texCoord0; +in vec2 texCoord2; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor; + if (color.a < 0.1) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color_tex_lightmap.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color_tex_lightmap.vsh new file mode 100644 index 000000000..346f7f17c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_color_tex_lightmap.vsh @@ -0,0 +1,21 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in vec2 UV2; + +out vec4 vertexColor; +out vec2 texCoord0; +out vec2 texCoord2; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; + texCoord0 = UV0; + texCoord2 = UV2; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_tex.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_tex.fsh new file mode 100644 index 000000000..b57e74fb8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_tex.fsh @@ -0,0 +1,17 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + if (color.a == 0.0) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_tex.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_tex.vsh new file mode 100644 index 000000000..19761c38e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_tex.vsh @@ -0,0 +1,15 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec2 UV0; + +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + texCoord0 = UV0; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_tex_color.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_tex_color.fsh new file mode 100644 index 000000000..128a891c0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_tex_color.fsh @@ -0,0 +1,26 @@ +#version 150 + +// Can't moj_import in things used during startup, when resource packs don't exist. +// This is a copy of dynamicimports.glsl +layout(std140) uniform DynamicTransforms { + mat4 ModelViewMat; + vec4 ColorModulator; + vec3 ModelOffset; + mat4 TextureMat; + float LineWidth; +}; + +uniform sampler2D Sampler0; + +in vec2 texCoord0; +in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor; + if (color.a == 0.0) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_tex_color.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_tex_color.vsh new file mode 100644 index 000000000..839fbbde3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/position_tex_color.vsh @@ -0,0 +1,28 @@ +#version 150 + +// Can't moj_import in things used during startup, when resource packs don't exist. +// This is a copy of dynamicimports.glsl and projection.glsl +layout(std140) uniform DynamicTransforms { + mat4 ModelViewMat; + vec4 ColorModulator; + vec3 ModelOffset; + mat4 TextureMat; + float LineWidth; +}; +layout(std140) uniform Projection { + mat4 ProjMat; +}; + +in vec3 Position; +in vec2 UV0; +in vec4 Color; + +out vec2 texCoord0; +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + texCoord0 = UV0; + vertexColor = Color; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_beacon_beam.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_beacon_beam.fsh new file mode 100644 index 000000000..083dde043 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_beacon_beam.fsh @@ -0,0 +1,19 @@ +#version 150 + +#moj_import +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + color *= vertexColor * ColorModulator; + float fragmentDistance = -ProjMat[3].z / ((gl_FragCoord.z) * -2.0 + 1.0 - ProjMat[2].z); + fragColor = apply_fog(color, fragmentDistance, fragmentDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_beacon_beam.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_beacon_beam.vsh new file mode 100644 index 000000000..75608eaa4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_beacon_beam.vsh @@ -0,0 +1,18 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; + +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; + texCoord0 = UV0; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_clouds.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_clouds.fsh new file mode 100644 index 000000000..b6a56cc54 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_clouds.fsh @@ -0,0 +1,15 @@ +#version 150 + +#moj_import + + +in float vertexDistance; +in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + vec4 color = vertexColor; + color.a *= 1.0f - linear_fog_value(vertexDistance, 0, FogCloudsEnd); + fragColor = color; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_clouds.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_clouds.vsh new file mode 100644 index 000000000..6698eebcd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_clouds.vsh @@ -0,0 +1,90 @@ +#version 150 + +#moj_import +#moj_import +#moj_import + +const int FLAG_MASK_DIR = 7; +const int FLAG_INSIDE_FACE = 1 << 4; +const int FLAG_USE_TOP_COLOR = 1 << 5; +const int FLAG_EXTRA_Z = 1 << 6; +const int FLAG_EXTRA_X = 1 << 7; + +layout(std140) uniform CloudInfo { + vec4 CloudColor; + vec3 CloudOffset; + vec3 CellSize; +}; + +uniform isamplerBuffer CloudFaces; + +out float vertexDistance; +out vec4 vertexColor; + +const vec3[] vertices = vec3[]( + // Bottom face + vec3(1, 0, 0), + vec3(1, 0, 1), + vec3(0, 0, 1), + vec3(0, 0, 0), + // Top face + vec3(0, 1, 0), + vec3(0, 1, 1), + vec3(1, 1, 1), + vec3(1, 1, 0), + // North face + vec3(0, 0, 0), + vec3(0, 1, 0), + vec3(1, 1, 0), + vec3(1, 0, 0), + // South face + vec3(1, 0, 1), + vec3(1, 1, 1), + vec3(0, 1, 1), + vec3(0, 0, 1), + // West face + vec3(0, 0, 1), + vec3(0, 1, 1), + vec3(0, 1, 0), + vec3(0, 0, 0), + // East face + vec3(1, 0, 0), + vec3(1, 1, 0), + vec3(1, 1, 1), + vec3(1, 0, 1) +); + +const vec4[] faceColors = vec4[]( + // Bottom face + vec4(0.7, 0.7, 0.7, 0.8), + // Top face + vec4(1.0, 1.0, 1.0, 0.8), + // North face + vec4(0.8, 0.8, 0.8, 0.8), + // South face + vec4(0.8, 0.8, 0.8, 0.8), + // West face + vec4(0.9, 0.9, 0.9, 0.8), + // East face + vec4(0.9, 0.9, 0.9, 0.8) +); + +void main() { + int quadVertex = gl_VertexID % 4; + int index = (gl_VertexID / 4) * 3; + + int cellX = texelFetch(CloudFaces, index).r; + int cellZ = texelFetch(CloudFaces, index + 1).r; + int dirAndFlags = texelFetch(CloudFaces, index + 2).r; + int direction = dirAndFlags & FLAG_MASK_DIR; + bool isInsideFace = (dirAndFlags & FLAG_INSIDE_FACE) == FLAG_INSIDE_FACE; + bool useTopColor = (dirAndFlags & FLAG_USE_TOP_COLOR) == FLAG_USE_TOP_COLOR; + cellX = (cellX << 1) | ((dirAndFlags & FLAG_EXTRA_X) >> 7); + cellZ = (cellZ << 1) | ((dirAndFlags & FLAG_EXTRA_Z) >> 6); + vec3 faceVertex = vertices[(direction * 4) + (isInsideFace ? 3 - quadVertex : quadVertex)]; + vec3 pos = (faceVertex * CellSize) + (vec3(cellX, 0, cellZ) * CellSize) + CloudOffset; + gl_Position = ProjMat * ModelViewMat * vec4(pos, 1.0); + + vertexDistance = fog_spherical_distance(pos); + vertexColor = (useTopColor ? faceColors[1] : faceColors[direction]) * CloudColor; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_crumbling.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_crumbling.fsh new file mode 100644 index 000000000..96f820468 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_crumbling.fsh @@ -0,0 +1,23 @@ +#version 150 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; +in vec2 texCoord2; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor; + if (color.a < 0.1) { + discard; + } + color = color * ColorModulator; + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_crumbling.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_crumbling.vsh new file mode 100644 index 000000000..30decdb31 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_crumbling.vsh @@ -0,0 +1,27 @@ +#version 150 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in vec2 UV2; +in vec3 Normal; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; +out vec2 texCoord2; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color; + texCoord0 = UV0; + texCoord2 = UV2; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_end_portal.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_end_portal.fsh new file mode 100644 index 000000000..490e02b4f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_end_portal.fsh @@ -0,0 +1,63 @@ +#version 150 + +#moj_import +#moj_import +#moj_import + +uniform sampler2D Sampler0; +uniform sampler2D Sampler1; + +in vec4 texProj0; +in float sphericalVertexDistance; +in float cylindricalVertexDistance; + +const vec3[] COLORS = vec3[]( + vec3(0.022087, 0.098399, 0.110818), + vec3(0.011892, 0.095924, 0.089485), + vec3(0.027636, 0.101689, 0.100326), + vec3(0.046564, 0.109883, 0.114838), + vec3(0.064901, 0.117696, 0.097189), + vec3(0.063761, 0.086895, 0.123646), + vec3(0.084817, 0.111994, 0.166380), + vec3(0.097489, 0.154120, 0.091064), + vec3(0.106152, 0.131144, 0.195191), + vec3(0.097721, 0.110188, 0.187229), + vec3(0.133516, 0.138278, 0.148582), + vec3(0.070006, 0.243332, 0.235792), + vec3(0.196766, 0.142899, 0.214696), + vec3(0.047281, 0.315338, 0.321970), + vec3(0.204675, 0.390010, 0.302066), + vec3(0.080955, 0.314821, 0.661491) +); + +const mat4 SCALE_TRANSLATE = mat4( + 0.5, 0.0, 0.0, 0.25, + 0.0, 0.5, 0.0, 0.25, + 0.0, 0.0, 1.0, 0.0, + 0.0, 0.0, 0.0, 1.0 +); + +mat4 end_portal_layer(float layer) { + mat4 translate = mat4( + 1.0, 0.0, 0.0, 17.0 / layer, + 0.0, 1.0, 0.0, (2.0 + layer / 1.5) * (GameTime * 1.5), + 0.0, 0.0, 1.0, 0.0, + 0.0, 0.0, 0.0, 1.0 + ); + + mat2 rotate = mat2_rotate_z(radians((layer * layer * 4321.0 + layer * 9.0) * 2.0)); + + mat2 scale = mat2((4.5 - layer / 4.0) * 2.0); + + return mat4(scale * rotate) * translate * SCALE_TRANSLATE; +} + +out vec4 fragColor; + +void main() { + vec3 color = textureProj(Sampler0, texProj0).rgb * COLORS[0]; + for (int i = 0; i < PORTAL_LAYERS; i++) { + color += textureProj(Sampler1, texProj0 * end_portal_layer(float(i + 1))).rgb * COLORS[i]; + } + fragColor = apply_fog(vec4(color, 1.0), sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_end_portal.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_end_portal.vsh new file mode 100644 index 000000000..5269645e2 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_end_portal.vsh @@ -0,0 +1,20 @@ +#version 150 + +#moj_import +#moj_import +#moj_import +#moj_import + +in vec3 Position; + +out vec4 texProj0; +out float sphericalVertexDistance; +out float cylindricalVertexDistance; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + texProj0 = projection_from_position(gl_Position); + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_alpha.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_alpha.fsh new file mode 100644 index 000000000..7289c11e8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_alpha.fsh @@ -0,0 +1,18 @@ +#version 150 + +uniform sampler2D Sampler0; + +in vec4 vertexColor; +in vec2 texCoord0; +in vec2 texCoord1; +in vec2 texCoord2; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + if (color.a < vertexColor.a) { + discard; + } + fragColor = color; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_alpha.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_alpha.vsh new file mode 100644 index 000000000..fce457bc4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_alpha.vsh @@ -0,0 +1,25 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in vec2 UV1; +in vec2 UV2; +in vec3 Normal; + +out vec4 vertexColor; +out vec2 texCoord0; +out vec2 texCoord1; +out vec2 texCoord2; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; + texCoord0 = UV0; + texCoord1 = UV1; + texCoord2 = UV2; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_decal.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_decal.fsh new file mode 100644 index 000000000..657536b49 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_decal.fsh @@ -0,0 +1,24 @@ +#version 150 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec4 overlayColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + if (color.a < 0.1) { + discard; + } + color.rgb = mix(overlayColor.rgb, color.rgb, overlayColor.a); + color *= vertexColor * ColorModulator; + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_decal.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_decal.vsh new file mode 100644 index 000000000..07194af4c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_decal.vsh @@ -0,0 +1,33 @@ +#version 150 + +#moj_import +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV1; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler1; +uniform sampler2D Sampler2; + + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; +out vec4 overlayColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = minecraft_mix_light(Light0_Direction, Light1_Direction, Normal, Color) * texelFetch(Sampler2, UV2 / 16, 0); + overlayColor = texelFetch(Sampler1, UV1, 0); + texCoord0 = UV0; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_shadow.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_shadow.fsh new file mode 100644 index 000000000..1b9ab2ad1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_shadow.fsh @@ -0,0 +1,19 @@ +#version 150 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, clamp(texCoord0, 0.0, 1.0)); + color *= vertexColor * ColorModulator; + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_shadow.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_shadow.vsh new file mode 100644 index 000000000..333cb7d66 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_shadow.vsh @@ -0,0 +1,23 @@ +#version 150 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color; + texCoord0 = UV0; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.fsh new file mode 100644 index 000000000..9f2978e68 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.fsh @@ -0,0 +1,22 @@ +#version 150 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; +in vec2 texCoord1; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; + if (color.a < 0.1) { + discard; + } + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.vsh new file mode 100644 index 000000000..74e89f215 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.vsh @@ -0,0 +1,34 @@ +#version 150 + +#moj_import +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in vec2 UV1; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler2; + + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; +out vec2 texCoord1; +out vec2 texCoord2; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = minecraft_mix_light(Light0_Direction, Light1_Direction, Normal, Color) * texelFetch(Sampler2, UV2 / 16, 0); + texCoord0 = UV0; + texCoord1 = UV1; + texCoord2 = UV2; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_leash.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_leash.fsh new file mode 100644 index 000000000..3e93cd782 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_leash.fsh @@ -0,0 +1,14 @@ +#version 150 + +#moj_import + + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +flat in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + fragColor = apply_fog(vertexColor, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_leash.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_leash.vsh new file mode 100644 index 000000000..f70872a0b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_leash.vsh @@ -0,0 +1,23 @@ +#version 150 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in ivec2 UV2; + +uniform sampler2D Sampler2; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +flat out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color * ColorModulator * texelFetch(Sampler2, UV2 / 16, 0); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_lightning.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_lightning.fsh new file mode 100644 index 000000000..0e577f8de --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_lightning.fsh @@ -0,0 +1,14 @@ +#version 150 + +#moj_import +#moj_import + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + fragColor = vertexColor * ColorModulator * (1.0f - total_fog_value(sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd)); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_lightning.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_lightning.vsh new file mode 100644 index 000000000..294941c64 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_lightning.vsh @@ -0,0 +1,20 @@ +#version 150 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_lines.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_lines.fsh new file mode 100644 index 000000000..4e6f6ac98 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_lines.fsh @@ -0,0 +1,15 @@ +#version 150 + +#moj_import +#moj_import + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + vec4 color = vertexColor * ColorModulator; + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_lines.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_lines.vsh new file mode 100644 index 000000000..c358bc4b6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_lines.vsh @@ -0,0 +1,47 @@ +#version 150 + +#moj_import +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec3 Normal; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; + +const float VIEW_SHRINK = 1.0 - (1.0 / 256.0); +const mat4 VIEW_SCALE = mat4( + VIEW_SHRINK, 0.0, 0.0, 0.0, + 0.0, VIEW_SHRINK, 0.0, 0.0, + 0.0, 0.0, VIEW_SHRINK, 0.0, + 0.0, 0.0, 0.0, 1.0 +); + +void main() { + vec4 linePosStart = ProjMat * VIEW_SCALE * ModelViewMat * vec4(Position, 1.0); + vec4 linePosEnd = ProjMat * VIEW_SCALE * ModelViewMat * vec4(Position + Normal, 1.0); + + vec3 ndc1 = linePosStart.xyz / linePosStart.w; + vec3 ndc2 = linePosEnd.xyz / linePosEnd.w; + + vec2 lineScreenDirection = normalize((ndc2.xy - ndc1.xy) * ScreenSize); + vec2 lineOffset = vec2(-lineScreenDirection.y, lineScreenDirection.x) * LineWidth / ScreenSize; + + if (lineOffset.x < 0.0) { + lineOffset *= -1.0; + } + + if (gl_VertexID % 2 == 0) { + gl_Position = vec4((ndc1 + vec3(lineOffset, 0.0)) * linePosStart.w, linePosStart.w); + } else { + gl_Position = vec4((ndc1 - vec3(lineOffset, 0.0)) * linePosStart.w, linePosStart.w); + } + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_outline.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_outline.fsh new file mode 100644 index 000000000..5f427348b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_outline.fsh @@ -0,0 +1,18 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + if (color.a == 0.0) { + discard; + } + fragColor = vec4(ColorModulator.rgb * vertexColor.rgb, ColorModulator.a); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_outline.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_outline.vsh new file mode 100644 index 000000000..75608eaa4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_outline.vsh @@ -0,0 +1,18 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; + +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; + texCoord0 = UV0; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text.fsh new file mode 100644 index 000000000..a635f9a96 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text.fsh @@ -0,0 +1,21 @@ +#version 150 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; + if (color.a < 0.1) { + discard; + } + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text.vsh new file mode 100644 index 000000000..c56743c23 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text.vsh @@ -0,0 +1,26 @@ +#version 150 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV2; + +uniform sampler2D Sampler2; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color * texelFetch(Sampler2, UV2 / 16, 0); + texCoord0 = UV0; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background.fsh new file mode 100644 index 000000000..e9bcf8b82 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background.fsh @@ -0,0 +1,21 @@ +#version 150 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = vertexColor * ColorModulator; + if (color.a < 0.1) { + discard; + } + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background.vsh new file mode 100644 index 000000000..6ee48c89d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background.vsh @@ -0,0 +1,23 @@ +#version 150 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in ivec2 UV2; + +uniform sampler2D Sampler2; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color * texelFetch(Sampler2, UV2 / 16, 0); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background_see_through.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background_see_through.fsh new file mode 100644 index 000000000..ce363a57a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background_see_through.fsh @@ -0,0 +1,15 @@ +#version 150 + +#moj_import + +in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + vec4 color = vertexColor; + if (color.a < 0.1) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background_see_through.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background_see_through.vsh new file mode 100644 index 000000000..2e50bbe4b --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background_see_through.vsh @@ -0,0 +1,15 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; + +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity.fsh new file mode 100644 index 000000000..be686d498 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity.fsh @@ -0,0 +1,21 @@ +#version 150 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0).rrrr * vertexColor * ColorModulator; + if (color.a < 0.1) { + discard; + } + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity.vsh new file mode 100644 index 000000000..c56743c23 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity.vsh @@ -0,0 +1,26 @@ +#version 150 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV2; + +uniform sampler2D Sampler2; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color * texelFetch(Sampler2, UV2 / 16, 0); + texCoord0 = UV0; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity_see_through.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity_see_through.fsh new file mode 100644 index 000000000..9dac05f21 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity_see_through.fsh @@ -0,0 +1,18 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0).rrrr * vertexColor; + if (color.a < 0.1) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity_see_through.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity_see_through.vsh new file mode 100644 index 000000000..75608eaa4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity_see_through.vsh @@ -0,0 +1,18 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; + +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; + texCoord0 = UV0; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_see_through.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_see_through.fsh new file mode 100644 index 000000000..892d4a63a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_see_through.fsh @@ -0,0 +1,18 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor; + if (color.a < 0.1) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_see_through.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_see_through.vsh new file mode 100644 index 000000000..75608eaa4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_text_see_through.vsh @@ -0,0 +1,18 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; + +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; + texCoord0 = UV0; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent_moving_block.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent_moving_block.fsh new file mode 100644 index 000000000..7e58ff164 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent_moving_block.fsh @@ -0,0 +1,20 @@ +#version 150 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; +uniform sampler2D Sampler2; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor; + color = color * ColorModulator; + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent_moving_block.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent_moving_block.vsh new file mode 100644 index 000000000..49dee1d17 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent_moving_block.vsh @@ -0,0 +1,27 @@ +#version 150 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler2; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color * texelFetch(Sampler2, UV2 / 16, 0); + texCoord0 = UV0; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_water_mask.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_water_mask.fsh new file mode 100644 index 000000000..6dd8d18e5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_water_mask.fsh @@ -0,0 +1,9 @@ +#version 150 + +#moj_import + +out vec4 fragColor; + +void main() { + fragColor = ColorModulator; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_water_mask.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_water_mask.vsh new file mode 100644 index 000000000..a27ad4670 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_water_mask.vsh @@ -0,0 +1,10 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_world_border.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_world_border.fsh new file mode 100644 index 000000000..b57e74fb8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_world_border.fsh @@ -0,0 +1,17 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + if (color.a == 0.0) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_world_border.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_world_border.vsh new file mode 100644 index 000000000..23ceddfc1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/rendertype_world_border.vsh @@ -0,0 +1,16 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec2 UV0; + +out vec2 texCoord0; + +void main() { + vec3 pos = Position + ModelOffset; + gl_Position = ProjMat * ModelViewMat * vec4(pos, 1.0); + + texCoord0 = (TextureMat * vec4(UV0, 0.0, 1.0)).xy; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/sky.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/sky.fsh new file mode 100644 index 000000000..8057e5501 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/sky.fsh @@ -0,0 +1,13 @@ +#version 150 + +#moj_import +#moj_import + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; + +out vec4 fragColor; + +void main() { + fragColor = apply_fog(ColorModulator, sphericalVertexDistance, cylindricalVertexDistance, 0.0, FogSkyEnd, FogSkyEnd, FogSkyEnd, FogColor); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/sky.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/sky.vsh new file mode 100644 index 000000000..1f3bd9d4d --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/sky.vsh @@ -0,0 +1,17 @@ +#version 150 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/stars.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/stars.fsh new file mode 100644 index 000000000..6dd8d18e5 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/stars.fsh @@ -0,0 +1,9 @@ +#version 150 + +#moj_import + +out vec4 fragColor; + +void main() { + fragColor = ColorModulator; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/stars.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/stars.vsh new file mode 100644 index 000000000..a27ad4670 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/stars.vsh @@ -0,0 +1,10 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/terrain.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/terrain.fsh new file mode 100644 index 000000000..144bfc5b3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/terrain.fsh @@ -0,0 +1,23 @@ +#version 150 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; +#ifdef ALPHA_CUTOUT + if (color.a < ALPHA_CUTOUT) { + discard; + } +#endif + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/terrain.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/terrain.vsh new file mode 100644 index 000000000..e226a6026 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/core/terrain.vsh @@ -0,0 +1,32 @@ +#version 150 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler2; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +vec4 minecraft_sample_lightmap(sampler2D lightMap, ivec2 uv) { + return texture(lightMap, clamp(uv / 256.0, vec2(0.5 / 16.0), vec2(15.5 / 16.0))); +} + +void main() { + vec3 pos = Position + ModelOffset; + gl_Position = ProjMat * ModelViewMat * vec4(pos, 1.0); + + sphericalVertexDistance = fog_spherical_distance(pos); + cylindricalVertexDistance = fog_cylindrical_distance(pos); + vertexColor = Color * minecraft_sample_lightmap(Sampler2, UV2); + texCoord0 = UV0; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/dynamictransforms.glsl b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/dynamictransforms.glsl new file mode 100644 index 000000000..385ebdbf0 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/dynamictransforms.glsl @@ -0,0 +1,9 @@ +#version 150 + +layout(std140) uniform DynamicTransforms { + mat4 ModelViewMat; + vec4 ColorModulator; + vec3 ModelOffset; + mat4 TextureMat; + float LineWidth; +}; diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/fog.glsl b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/fog.glsl new file mode 100644 index 000000000..99973da2f --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/fog.glsl @@ -0,0 +1,40 @@ +#version 150 + +layout(std140) uniform Fog { + vec4 FogColor; + float FogEnvironmentalStart; + float FogEnvironmentalEnd; + float FogRenderDistanceStart; + float FogRenderDistanceEnd; + float FogSkyEnd; + float FogCloudsEnd; +}; + +float linear_fog_value(float vertexDistance, float fogStart, float fogEnd) { + if (vertexDistance <= fogStart) { + return 0.0; + } else if (vertexDistance >= fogEnd) { + return 1.0; + } + + return (vertexDistance - fogStart) / (fogEnd - fogStart); +} + +float total_fog_value(float sphericalVertexDistance, float cylindricalVertexDistance, float environmentalStart, float environmantalEnd, float renderDistanceStart, float renderDistanceEnd) { + return max(linear_fog_value(sphericalVertexDistance, environmentalStart, environmantalEnd), linear_fog_value(cylindricalVertexDistance, renderDistanceStart, renderDistanceEnd)); +} + +vec4 apply_fog(vec4 inColor, float sphericalVertexDistance, float cylindricalVertexDistance, float environmentalStart, float environmantalEnd, float renderDistanceStart, float renderDistanceEnd, vec4 fogColor) { + float fogValue = total_fog_value(sphericalVertexDistance, cylindricalVertexDistance, environmentalStart, environmantalEnd, renderDistanceStart, renderDistanceEnd); + return vec4(mix(inColor.rgb, fogColor.rgb, fogValue * fogColor.a), inColor.a); +} + +float fog_spherical_distance(vec3 pos) { + return length(pos); +} + +float fog_cylindrical_distance(vec3 pos) { + float distXZ = length(pos.xz); + float distY = abs(pos.y); + return max(distXZ, distY); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/globals.glsl b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/globals.glsl new file mode 100644 index 000000000..28d163a2c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/globals.glsl @@ -0,0 +1,8 @@ +#version 150 + +layout(std140) uniform Globals { + vec2 ScreenSize; + float GlintAlpha; + float GameTime; + int MenuBlurRadius; +}; diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/light.glsl b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/light.glsl new file mode 100644 index 000000000..81e868628 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/light.glsl @@ -0,0 +1,17 @@ +#version 150 + +#define MINECRAFT_LIGHT_POWER (0.6) +#define MINECRAFT_AMBIENT_LIGHT (0.4) + +layout(std140) uniform Lighting { + vec3 Light0_Direction; + vec3 Light1_Direction; +}; + +vec4 minecraft_mix_light(vec3 lightDir0, vec3 lightDir1, vec3 normal, vec4 color) { + float light0 = max(0.0, dot(lightDir0, normal)); + float light1 = max(0.0, dot(lightDir1, normal)); + float lightAccum = min(1.0, (light0 + light1) * MINECRAFT_LIGHT_POWER + MINECRAFT_AMBIENT_LIGHT); + return vec4(color.rgb * lightAccum, color.a); +} + diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/matrix.glsl b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/matrix.glsl new file mode 100644 index 000000000..c64fd06e6 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/matrix.glsl @@ -0,0 +1,8 @@ +#version 150 + +mat2 mat2_rotate_z(float radians) { + return mat2( + cos(radians), -sin(radians), + sin(radians), cos(radians) + ); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/projection.glsl b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/projection.glsl new file mode 100644 index 000000000..32021eb27 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/include/projection.glsl @@ -0,0 +1,12 @@ +#version 150 + +layout(std140) uniform Projection { + mat4 ProjMat; +}; + +vec4 projection_from_position(vec4 position) { + vec4 projection = position * 0.5; + projection.xy = vec2(projection.x + projection.w, projection.y + projection.w); + projection.zw = position.zw; + return projection; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/bits.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/bits.fsh new file mode 100644 index 000000000..348c5f351 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/bits.fsh @@ -0,0 +1,35 @@ +#version 150 + +uniform sampler2D InSampler; + +in vec2 texCoord; +in vec2 oneTexel; + +layout(std140) uniform SamplerInfo { + vec2 OutSize; + vec2 InSize; +}; + +layout(std140) uniform BitsConfig { + float Resolution; + float MosaicSize; +}; + +out vec4 fragColor; + +const float Saturation = 1.5; + +void main() { + vec2 mosaicInSize = InSize / MosaicSize; + vec2 fractPix = fract(texCoord * mosaicInSize) / mosaicInSize; + + vec4 baseTexel = texture(InSampler, texCoord - fractPix); + + vec3 fractTexel = baseTexel.rgb - fract(baseTexel.rgb * Resolution) / Resolution; + float luma = dot(fractTexel, vec3(0.3, 0.59, 0.11)); + vec3 chroma = (fractTexel - luma) * Saturation; + baseTexel.rgb = luma + chroma; + baseTexel.a = 1.0; + + fragColor = baseTexel; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/blit.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/blit.fsh new file mode 100644 index 000000000..c3f8a3b4c --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/blit.fsh @@ -0,0 +1,15 @@ +#version 150 + +uniform sampler2D InSampler; + +layout(std140) uniform BlitConfig { + vec4 ColorModulate; +}; + +in vec2 texCoord; + +out vec4 fragColor; + +void main(){ + fragColor = texture(InSampler, texCoord) * ColorModulate; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/blit.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/blit.vsh new file mode 100644 index 000000000..66eb597a8 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/blit.vsh @@ -0,0 +1,19 @@ +#version 150 + +#moj_import + +in vec4 Position; + +layout(std140) uniform SamplerInfo { + vec2 OutSize; + vec2 InSize; +}; + +out vec2 texCoord; + +void main(){ + vec4 outPos = ProjMat * vec4(Position.xy * OutSize, 0.0, 1.0); + gl_Position = vec4(outPos.xy, 0.2, 1.0); + + texCoord = Position.xy; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/blur.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/blur.vsh new file mode 100644 index 000000000..f553b29d4 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/blur.vsh @@ -0,0 +1,28 @@ +#version 150 + +#moj_import + +in vec4 Position; + +layout(std140) uniform SamplerInfo { + vec2 OutSize; + vec2 InSize; +}; + +layout(std140) uniform BlurConfig { + vec2 BlurDir; + float Radius; +}; + +out vec2 texCoord; +out vec2 sampleStep; + +void main() { + vec4 outPos = ProjMat * vec4(Position.xy * OutSize, 0.0, 1.0); + gl_Position = vec4(outPos.xy, 0.2, 1.0); + + vec2 oneTexel = 1.0 / InSize; + sampleStep = oneTexel * BlurDir; + + texCoord = Position.xy; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/box_blur.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/box_blur.fsh new file mode 100644 index 000000000..1f4db1ed1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/box_blur.fsh @@ -0,0 +1,28 @@ +#version 150 + +#moj_import + +uniform sampler2D InSampler; + +layout(std140) uniform BlurConfig { + vec2 BlurDir; + float Radius; +}; + +in vec2 texCoord; +in vec2 sampleStep; + +out vec4 fragColor; + +// This shader relies on GL_LINEAR sampling to reduce the amount of texture samples in half. +// Instead of sampling each pixel position with a step of 1 we sample between pixels with a step of 2. +// In the end we sample the last pixel with a half weight, since the amount of pixels to sample is always odd (actualRadius * 2 + 1). +void main() { + vec4 blurred = vec4(0.0); + float actualRadius = Radius >= 0.5 ? round(Radius) : float(MenuBlurRadius); + for (float a = -actualRadius + 0.5; a <= actualRadius; a += 2.0) { + blurred += texture(InSampler, texCoord + sampleStep * a); + } + blurred += texture(InSampler, texCoord + sampleStep * actualRadius) / 2.0; + fragColor = blurred / (actualRadius + 0.5); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/color_convolve.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/color_convolve.fsh new file mode 100644 index 000000000..935516f60 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/color_convolve.fsh @@ -0,0 +1,39 @@ +#version 150 + +uniform sampler2D InSampler; + +in vec2 texCoord; +in vec2 oneTexel; + +layout(std140) uniform SamplerInfo { + vec2 OutSize; + vec2 InSize; +}; + +layout(std140) uniform ColorConfig { + vec3 RedMatrix; + vec3 GreenMatrix; + vec3 BlueMatrix; +}; + +const vec3 Gray = vec3(0.3, 0.59, 0.11); +const float Saturation = 1.8; + +out vec4 fragColor; + +void main() { + vec4 InTexel = texture(InSampler, texCoord); + + // Color Matrix + float RedValue = dot(InTexel.rgb, RedMatrix); + float GreenValue = dot(InTexel.rgb, GreenMatrix); + float BlueValue = dot(InTexel.rgb, BlueMatrix); + vec3 OutColor = vec3(RedValue, GreenValue, BlueValue); + + // Saturation + float Luma = dot(OutColor, Gray); + vec3 Chroma = OutColor - Luma; + OutColor = (Chroma * Saturation) + Luma; + + fragColor = vec4(OutColor, 1.0); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/entity_outline_box_blur.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/entity_outline_box_blur.fsh new file mode 100644 index 000000000..4197a6563 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/entity_outline_box_blur.fsh @@ -0,0 +1,18 @@ +#version 150 + +uniform sampler2D InSampler; + +in vec2 texCoord; +in vec2 sampleStep; + +out vec4 fragColor; + +void main() { + vec4 blurred = vec4(0.0); + float radius = 2.0; + for (float a = -radius + 0.5; a <= radius; a += 2.0) { + blurred += texture(InSampler, texCoord + sampleStep * a); + } + blurred += texture(InSampler, texCoord + sampleStep * radius) / 2.0; + fragColor = vec4((blurred / (radius + 0.5)).rgb, blurred.a); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/entity_sobel.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/entity_sobel.fsh new file mode 100644 index 000000000..080bb9a25 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/entity_sobel.fsh @@ -0,0 +1,23 @@ +#version 150 + +uniform sampler2D InSampler; + +in vec2 texCoord; +in vec2 oneTexel; + +out vec4 fragColor; + +void main(){ + vec4 center = texture(InSampler, texCoord); + vec4 left = texture(InSampler, texCoord - vec2(oneTexel.x, 0.0)); + vec4 right = texture(InSampler, texCoord + vec2(oneTexel.x, 0.0)); + vec4 up = texture(InSampler, texCoord - vec2(0.0, oneTexel.y)); + vec4 down = texture(InSampler, texCoord + vec2(0.0, oneTexel.y)); + float leftDiff = abs(center.a - left.a); + float rightDiff = abs(center.a - right.a); + float upDiff = abs(center.a - up.a); + float downDiff = abs(center.a - down.a); + float total = clamp(leftDiff + rightDiff + upDiff + downDiff, 0.0, 1.0); + vec3 outColor = center.rgb * center.a + left.rgb * left.a + right.rgb * right.a + up.rgb * up.a + down.rgb * down.a; + fragColor = vec4(outColor * 0.2, total); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/invert.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/invert.fsh new file mode 100644 index 000000000..45ca06319 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/invert.fsh @@ -0,0 +1,18 @@ +#version 150 + +uniform sampler2D InSampler; + +in vec2 texCoord; + +layout(std140) uniform InvertConfig { + float InverseAmount; +}; + +out vec4 fragColor; + +void main(){ + vec4 diffuseColor = texture(InSampler, texCoord); + vec4 invertColor = 1.0 - diffuseColor; + vec4 outColor = mix(diffuseColor, invertColor, InverseAmount); + fragColor = vec4(outColor.rgb, 1.0); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/invert.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/invert.vsh new file mode 100644 index 000000000..ca4c3ba5a --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/invert.vsh @@ -0,0 +1,23 @@ +#version 150 + +#moj_import + +in vec4 Position; + +layout(std140) uniform SamplerInfo { + vec2 OutSize; + vec2 InSize; +}; + +out vec2 texCoord; + +void main(){ + vec4 outPos = ProjMat * vec4(Position.xy * OutSize, 0.0, 1.0); + gl_Position = vec4(outPos.xy, 0.2, 1.0); + + vec2 sizeRatio = OutSize / InSize; + texCoord = Position.xy; + texCoord.x = texCoord.x * sizeRatio.x; + texCoord.y = texCoord.y * sizeRatio.y; + texCoord.y = sizeRatio.y - texCoord.y; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/rotscale.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/rotscale.vsh new file mode 100644 index 000000000..8c01073ff --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/rotscale.vsh @@ -0,0 +1,34 @@ +#version 150 + +#moj_import + +in vec4 Position; + +layout(std140) uniform SamplerInfo { + vec2 OutSize; + vec2 InSize; +}; + +layout(std140) uniform RotScaleConfig { + vec2 InScale; + vec2 InOffset; + float InRotation; +}; + +out vec2 texCoord; +out vec2 scaledCoord; + +void main(){ + vec4 outPos = ProjMat * vec4(Position.xy * OutSize, 0.0, 1.0); + gl_Position = vec4(outPos.xy, 0.2, 1.0); + + texCoord = Position.xy; + + float Deg2Rad = 0.0174532925; + float InRadians = InRotation * Deg2Rad; + float Cosine = cos(InRadians); + float Sine = sin(InRadians); + float RotU = texCoord.x * Cosine - texCoord.y * Sine; + float RotV = texCoord.y * Cosine + texCoord.x * Sine; + scaledCoord = vec2(RotU, RotV) * InScale + InOffset; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/screenquad.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/screenquad.vsh new file mode 100644 index 000000000..cecbb0669 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/screenquad.vsh @@ -0,0 +1,18 @@ +#version 150 + +#moj_import + +in vec4 Position; + +layout(std140) uniform SamplerInfo { + vec2 OutSize; + vec2 InSize; +}; + +out vec2 texCoord; + +void main() { + vec4 outPos = ProjMat * vec4(Position.xy * OutSize, 0.0, 1.0); + gl_Position = vec4(outPos.xy, 0.2, 1.0); + texCoord = Position.xy; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/sobel.vsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/sobel.vsh new file mode 100644 index 000000000..0d83a51d1 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/sobel.vsh @@ -0,0 +1,22 @@ +#version 150 + +#moj_import + +in vec4 Position; + +layout(std140) uniform SamplerInfo { + vec2 OutSize; + vec2 InSize; +}; + +out vec2 texCoord; +out vec2 oneTexel; + +void main(){ + vec4 outPos = ProjMat * vec4(Position.xy * OutSize, 0.0, 1.0); + gl_Position = vec4(outPos.xy, 0.2, 1.0); + + oneTexel = 1.0 / InSize; + + texCoord = Position.xy; +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/spiderclip.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/spiderclip.fsh new file mode 100644 index 000000000..fbf8ee639 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/spiderclip.fsh @@ -0,0 +1,39 @@ +#version 150 + +uniform sampler2D InSampler; +uniform sampler2D BlurSampler; + +in vec2 texCoord; +in vec2 scaledCoord; + +layout(std140) uniform SamplerInfo { + vec2 OutSize; + vec2 InSize; +}; + +layout(std140) uniform SpiderConfig { + vec4 Scissor; + vec4 Vignette; +}; + +out vec4 fragColor; + +void main() { + vec4 ScaledTexel = texture(InSampler, scaledCoord); + vec4 BlurTexel = texture(BlurSampler, texCoord); + vec4 OutTexel = ScaledTexel; + + // -- Alpha Clipping -- + if (scaledCoord.x < Scissor.x) OutTexel = BlurTexel; + if (scaledCoord.y < Scissor.y) OutTexel = BlurTexel; + if (scaledCoord.x > Scissor.z) OutTexel = BlurTexel; + if (scaledCoord.y > Scissor.w) OutTexel = BlurTexel; + + clamp(scaledCoord, 0.0, 1.0); + + if (scaledCoord.x < Vignette.x) OutTexel = mix(BlurTexel, OutTexel, (Scissor.x - scaledCoord.x) / (Scissor.x - Vignette.x)); + if (scaledCoord.y < Vignette.y) OutTexel = mix(BlurTexel, OutTexel, (Scissor.y - scaledCoord.y) / (Scissor.y - Vignette.y)); + if (scaledCoord.x > Vignette.z) OutTexel = mix(BlurTexel, OutTexel, (Scissor.z - scaledCoord.x) / (Scissor.z - Vignette.z)); + if (scaledCoord.y > Vignette.w) OutTexel = mix(BlurTexel, OutTexel, (Scissor.w - scaledCoord.y) / (Scissor.w - Vignette.w)); + fragColor = vec4(OutTexel.rgb, 1.0); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/transparency.fsh b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/transparency.fsh new file mode 100644 index 000000000..690b3178e --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/shaders/post/transparency.fsh @@ -0,0 +1,70 @@ +#version 150 + +uniform sampler2D MainSampler; +uniform sampler2D MainDepthSampler; +uniform sampler2D TranslucentSampler; +uniform sampler2D TranslucentDepthSampler; +uniform sampler2D ItemEntitySampler; +uniform sampler2D ItemEntityDepthSampler; +uniform sampler2D ParticlesSampler; +uniform sampler2D ParticlesDepthSampler; +uniform sampler2D WeatherSampler; +uniform sampler2D WeatherDepthSampler; +uniform sampler2D CloudsSampler; +uniform sampler2D CloudsDepthSampler; + +in vec2 texCoord; + +#define NUM_LAYERS 6 + +vec4 color_layers[NUM_LAYERS]; +float depth_layers[NUM_LAYERS]; +int active_layers = 0; + +out vec4 fragColor; + +void try_insert( vec4 color, float depth ) { + if ( color.a == 0.0 ) { + return; + } + + color_layers[active_layers] = color; + depth_layers[active_layers] = depth; + + int jj = active_layers++; + int ii = jj - 1; + while ( jj > 0 && depth_layers[jj] > depth_layers[ii] ) { + float depthTemp = depth_layers[ii]; + depth_layers[ii] = depth_layers[jj]; + depth_layers[jj] = depthTemp; + + vec4 colorTemp = color_layers[ii]; + color_layers[ii] = color_layers[jj]; + color_layers[jj] = colorTemp; + + jj = ii--; + } +} + +vec3 blend( vec3 dst, vec4 src ) { + return ( dst * ( 1.0 - src.a ) ) + src.rgb; +} + +void main() { + color_layers[0] = vec4( texture( MainSampler, texCoord ).rgb, 1.0 ); + depth_layers[0] = texture( MainDepthSampler, texCoord ).r; + active_layers = 1; + + try_insert( texture( TranslucentSampler, texCoord ), texture( TranslucentDepthSampler, texCoord ).r ); + try_insert( texture( ItemEntitySampler, texCoord ), texture( ItemEntityDepthSampler, texCoord ).r ); + try_insert( texture( ParticlesSampler, texCoord ), texture( ParticlesDepthSampler, texCoord ).r ); + try_insert( texture( WeatherSampler, texCoord ), texture( WeatherDepthSampler, texCoord ).r ); + try_insert( texture( CloudsSampler, texCoord ), texture( CloudsDepthSampler, texCoord ).r ); + + vec3 texelAccum = color_layers[0].rgb; + for ( int ii = 1; ii < active_layers; ++ii ) { + texelAccum = blend( texelAccum, color_layers[ii] ); + } + + fragColor = vec4( texelAccum.rgb, 1.0 ); +} diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/texts/credits.json b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/texts/credits.json new file mode 100644 index 000000000..ee7abf1f3 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/texts/credits.json @@ -0,0 +1,4863 @@ +[ + { + "section": "Mojang Studios", + "disciplines": [ + { + "discipline": "Mojang Studios Leadership", + "titles": [ + { + "title": "Studio Head", + "names": [ + "Kayleen Walters" + ] + }, + { + "title": "Chief Operating Officer", + "names": [ + "Annie Chenn" + ] + }, + { + "title": "Head of Brand, Growth & Partnerships", + "names": [ + "Ada Duan" + ] + }, + { + "title": "Head of Minecraft Game Experience", + "names": [ + "Ryan B. Cooper" + ] + }, + { + "title": "Chief of Staff", + "names": [ + "Amy Stillion" + ] + }, + { + "title": "Chief Creative Officer", + "names": [ + "Jens Bergensten" + ] + }, + { + "title": "Head of Franchise Product Strategy", + "names": [ + "Scott Dell'Osso" + ] + }, + { + "title": "Head of People Operations", + "names": [ + "Emma Brandt" + ] + } + ] + }, + { + "discipline": "Design", + "titles": [ + { + "title": "Game Director, Minecraft", + "names": [ + "Agnes Larsson" + ] + }, + { + "title": "Creative Director, Brand", + "names": [ + "Markus Toivonen" + ] + }, + { + "title": "Creative Director", + "names": [ + "John Yamamoto" + ] + }, + { + "title": "Creative Directors, Games", + "names": [ + "Craig Leigh", + "Magnus Nedfors", + "Måns Olson" + ] + }, + { + "title": "Creative Director, Entertainment", + "names": [ + "Torfi Frans Ólafsson" + ] + }, + { + "title": "Creative Managers", + "names": [ + "Alex Macleod", + "Rasmus Eriksson", + "Samir Belarbi" + ] + }, + { + "title": "Design Directors", + "names": [ + "Antti Meriluoto", + "Laura de Llorens Garcia", + "Orvar Halldorsson" + ] + }, + { + "title": "Design Managers", + "names": [ + "Art Usher", + "Jesper Staafjord", + "Robin Hedin" + ] + }, + { + "title": "Lead Game Designers", + "names": [ + "Cory Scheviak", + "Daniel Jansson", + "Guillaume Mroz", + "Matthew Gatland", + "Nickole Li", + "Rob Poerschke", + "Robin V Vincent", + "Uladzislau Charnaus" + ] + }, + { + "title": "Game Designers", + "names": [ + "Brandon Pearce", + "Christian Berg", + "Colton Phillips", + "Dana Lee (Insight Global, Inc)", + "Giuseppe Libonati (Insight Global, Inc)", + "Justice Mealer (Insight Global, Inc)", + "Katherine Durkin (Insight Global, Inc)", + "Kelsey Howard", + "Kyle Wood (Insight Global, Inc)", + "Mark Anthony Esparagoza (Insight Global, Inc)", + "Michael Söderqvist", + "Michael Stagnitta", + "Nir Vaknin", + "Steve Enos", + "Tate Sliwa (Insight Global, Inc)", + "Tod Pang" + ] + }, + { + "title": "Narrative Director", + "names": [ + "Kevin Grace" + ] + }, + { + "title": "Narrative Director, Entertainment", + "names": [ + "Alex Wiltshire" + ] + }, + { + "title": "User Experience Design Directors", + "names": [ + "Anna Wendelin", + "Carlos Lidón" + ] + }, + { + "title": "User Experience Design Leads", + "names": [ + "Josefine Lindqvist", + "Unn Swanström" + ] + }, + { + "title": "User Experience Designers", + "names": [ + "Aksel Englund", + "Alejandra Ricciardi (Globant)", + "Hajar Harda", + "Imani Ricks", + "Jem Alexander", + "Karolin Pettersson", + "Margot Laucournet", + "Sebastian Melchor Hedman", + "Tom Keen" + ] + } + ] + }, + { + "discipline": "Programming", + "titles": [ + { + "title": "Technical Directors", + "names": [ + "Michael J. Ott", + "Stefan Annell" + ] + }, + { + "title": "Engineering Director", + "names": [ + "Mathias Ericsson" + ] + }, + { + "title": "Engineering Director, Franchise Technologies and Services", + "names": [ + "Geoff Ebersol" + ] + }, + { + "title": "Engineering Director, Growth Products", + "names": [ + "Lawrence M. Sanchez II" + ] + }, + { + "title": "Engineering Director, Internal New Games", + "names": [ + "Aisling Canton" + ] + }, + { + "title": "Engineering Directors, Bedrock Platform", + "names": [ + "Jeff McKune", + "Vince Curley" + ] + }, + { + "title": "Engineering Manager, Franchise Services", + "names": [ + "Matt Hawley" + ] + }, + { + "title": "Engineering Managers", + "names": [ + "Christian Diefenbach", + "Elina Dettner", + "Ellenor Wiig", + "Elvira Melentyeva", + "Erik Wallin", + "Erika Renlund", + "Fanny P Vadillo Herrera", + "Haronid Moncivais", + "Henrik Savenstedt", + "Joel Bergman", + "Jonas Jonsson", + "Jonas Keating", + "Lie Fujita", + "Magnus Puig De La Bellacasa Cristiansson", + "Nick Horvath", + "Per Sahlée", + "Rijil Narath", + "Tanya Reinhardt (Ascendion, Inc)" + ] + }, + { + "title": "Lead Software Engineers", + "names": [ + "Bill Carlson", + "Brian Schwartz", + "Brock Davis", + "Bryan Yeo", + "Chris BeHanna", + "Dan Samhold", + "David Carlton", + "David Cowan", + "Derrick Price", + "Gary McLaughlin", + "Henning Erlandsen", + "Jake Shirley", + "Jose Marcos De Oliveira", + "Kanita Rauniyar", + "Loren Hoffman", + "Mason McCuskey", + "Matt Cooley", + "Max Bouchez", + "Nickolas Graczyk", + "Paul Crawford", + "River Gillis", + "Ryan Burns", + "Torbjörn Allard", + "Yash Shroff" + ] + }, + { + "title": "Technical Leads", + "names": [ + "Andrew Maher", + "Anton Arbring", + "Dan Mauk", + "David Ekermann", + "Felix Jones", + "Garrett Allen", + "Jahmai O'Sullivan", + "Jakob Rydén", + "James S Yarrow", + "Jeffrey Kumley", + "Joe Brockhaus", + "Mangal Srinivasamurthy", + "Michael Kranz", + "Michael Stoyke", + "Mikael Hedberg", + "Nick Burlingame", + "Oleg Kozitsyn", + "Patrick McGannon", + "Paulo Ragonha", + "Raphael Landaverde", + "Robert Sanchez", + "Robert Sjödahl", + "Sue Loh", + "Tristan Schneider", + "Zhengwu Zhang" + ] + }, + { + "title": "Software Engineers", + "names": [ + "A.J. Fairfield", + "Abhinav Jain (Ascendion, Inc)", + "Abhishek Talati (Ascendion, Inc)", + "Abinaya Sambandam (Ascendion, Inc)", + "Addison Kaufmann", + "Adrian Ferrer (Insight Global, Inc)", + "Adrian Ster (Globant)", + "Aileen Hadsell", + "Ajit Belkunde (Ascendion, Inc)", + "Alec Chan", + "Alejandro Rosales Martinez (Artech Consulting, LLC)", + "Alex Carvalho Camargo (Ascendion, Inc)", + "Alex Schuldberg", + "Alex Troyer", + "Alex Wouters (Insight Global, Inc)", + "Alexander Kofford (Insight Global, Inc)", + "Alexander Torstling", + "Alexandru Boaru (Globant)", + "Ali Yassiry (Netlight)", + "Álvaro García Gutiérrez (Globant)", + "Alvee Akash (Ascendion, Inc)", + "Amy Bernhoft", + "Andres Altamirano Montealvo", + "Andrew Griffin", + "Anna Päärni", + "Anthony Sopkow (Ascendion, Inc)", + "Anthony Young", + "Antonino Liconti", + "Apurva Raman", + "Ashwin Brahmarouthu (Ascendion, Inc)", + "Austin Shaythong (Insight Global, Inc)", + "Ayannah Rashida Oluwatoyin Adegeye", + "Bartosz Bok", + "Billy Sjöberg", + "Björn Larsson", + "Brian Luger", + "Bryan DeNosky", + "Cameron Chancey (Insight Global, Inc)", + "Chad George", + "Chad Meyers", + "Chloe Basel", + "Chris Mhley", + "Chris Sedar", + "Christian Adåker", + "Christopher Miceli", + "Cierra Shawe", + "Corey Goodman (Insight Global, Inc)", + "Corey Smith (Insight Global, Inc)", + "Craig Steyn", + "Dana Zhu", + "Daniel Lobo", + "Daniel Stevens", + "Dat Trieu", + "David Rice (Ascendion, Inc)", + "David Westen", + "Declan Hopkins", + "Dmytro Safonov", + "Dominic DaCosta", + "Dragos Bogdan (Globant)", + "Dylan Johanson", + "Dylan Ross (Insight Global, Inc)", + "Elisabeth Gangenes", + "Emma Villemoes", + "Eric Grimsborn (Netlight)", + "Eric Johnston", + "Eric Rehmeyer", + "Eric Sjögren", + "Eric Walston", + "Ericson Gonzalez (Globant)", + "Erik M Schulz", + "Francisco Alejandro Garcia Cebada", + "Georgii \"Fry\" Gavrichev", + "Guilherme Recchi Cardozo", + "Gunnar Headley", + "Gustav Taxén", + "Harald Johansson", + "Hebert Pena Serna (Artech Consulting, LLC)", + "Hector M Arriaga Pineda", + "Hector M Llanos III", + "Hedvig Fahlstedt (Netlight)", + "Huanyu Shao", + "Hugo Hägglund", + "Ian Gaither", + "Isaac Dayton", + "Isaiah Dickison (Insight Global, Inc)", + "Jaafer Sheriff", + "Jacek Wołkowicz", + "Jacob Presley (Insight Global, Inc)", + "Jaime Vargas", + "James Friedenberg (Insight Global, Inc)", + "James G Moore", + "James Nicholls", + "Jamie Fristrom", + "Javier Castro Landaverde (Artech Consulting, LLC)", + "Jeremy Robinson (Insight Global, Inc)", + "Jessica Chen", + "Jifeng Zhang", + "Jillian Polsin", + "Jithin Joji Anchanattu (Ascendion, Inc)", + "Johan Yngman", + "Johannes Busch", + "John Littlewood (Mirado Consulting)", + "Jon Maiga", + "Jonas Eriksson", + "Jonas Johansson", + "Jordan Maxwell (Insight Global, Inc)", + "José Carlos Bellido", + "Jozsef Hollo (Globant)", + "Julio Novais Raffaine", + "Justin Watkins", + "Khaleel Harper", + "Kiran Beersing-Vasquez (Netlight)", + "Kirsten Springer", + "Kyle Schwaneke", + "Lina Juuso", + "Lorenzo Vigano", + "Marco Ballabio", + "Mark Elling (Ascendion, Inc)", + "Mark Rowland (Insight Global, Inc)", + "Markus Gustavsson", + "Markus Winroth", + "Marlon Huber-Smith", + "Martin Hornqvist", + "Martin Moe", + "Matijas Matijevic", + "Matt Staubus", + "Matthew Clohessy", + "Max Perea Düring", + "Maxime Lebrot", + "Michael Davidson (Insight Global, Inc)", + "Michael Oliveira-Silva", + "Michael Seydl", + "Michelle Burd", + "Michelle Rosenbarker (Insight Global, Inc)", + "Mike Swartz", + "Miles Mbo", + "Molly Flemming", + "Mona El-Falou (Ascendion, Inc)", + "Natalie Mueller", + "Nathan Adams", + "Nicholas Curtis", + "Nico Suc", + "Nicolas del Fiorentino (Globant)", + "Niklas Erhard Olsson", + "Nilay Karaoglu", + "Nishith Gadhiya (Ascendion, Inc)", + "Oden Stark", + "Omar ElGaml", + "Oscar Åkesson", + "Oscar Andersson (Netlight)", + "Oswaldo Leyva Barrientos", + "Pär Axelsson", + "Parth Parikh (Ascendion, Inc)", + "Patrick Tobin", + "Paul Schierman", + "Per Ersson", + "Petter Gisslen", + "Petter Lundgren", + "Pouya Ashraf (Netlight)", + "Ragnar Rova", + "Rasmus Källqvist", + "Rebecca Kullenius", + "Rebecca McFadden", + "Reece Sagun (Ascendion, Inc)", + "Richard Meurling", + "Richard Payne (Insight Global, Inc)", + "Robert Di Battista", + "Robert Hunt", + "Rodel Dela Cruz (Ascendion, Inc)", + "Sam Hallam", + "Samuel Sage (Insight Global, Inc)", + "Samuel Schimmel (Insight Global, Inc)", + "Santosha Bhat (Ascendion, Inc)", + "Sarmis Streanga (Globant)", + "Sebastian Ross", + "Shane Pierce", + "Shipra Behera", + "Simon Fagerholm", + "Sofie Niska", + "Soundar B (Ascendion, Inc)", + "Stauffer Taylor", + "Stefan Torstensson", + "Stephanie Huynh", + "Sunil Nikam (Ascendion, Inc)", + "Tara Pratap", + "Taylor Feddersen", + "Tejas Shah", + "Therese Andersson", + "Timur Nazarov", + "Tobias Bexelius", + "Trancy Xiaoying Zhu", + "Tushar Patil (Ascendion, Inc)", + "Tyler Fedoris (Insight Global, Inc)", + "Vinay Kumar S B (Ascendion, Inc)", + "Vincent Telleria", + "Vishnu Kumar (Ascendion, Inc)", + "Wenfei Zhu", + "Wes Pesetti", + "Yeabsira Mekonnen", + "Zawar Alam (Ascendion, Inc)" + ] + } + ] + }, + { + "discipline": "Production", + "titles": [ + { + "title": "Head of Franchise Technologies and Services", + "names": [ + "Elvir Bahtijaragic" + ] + }, + { + "title": "Executive Producer, Education", + "names": [ + "Allison Matthews" + ] + }, + { + "title": "Executive Producers", + "names": [ + "Anita Sujarit", + "Fredrik Telenius", + "Hai Shi", + "Ingela Garneij", + "Klas Hammarström", + "Nikoo Jorjani" + ] + }, + { + "title": "Director of Bedrock Platform", + "names": [ + "Dave Cohen" + ] + }, + { + "title": "Director of Creator", + "names": [ + "Kayla Kinnunen" + ] + }, + { + "title": "Director of Internal New Games", + "names": [ + "David Nisshagen" + ] + }, + { + "title": "Director of Minecraft Launcher", + "names": [ + "David Marc Siegel" + ] + }, + { + "title": "Director of Minecraft Online & Marketplace", + "names": [ + "Travis Howland" + ] + }, + { + "title": "Director of Minecraft Websites", + "names": [ + "Todd Baldwin" + ] + }, + { + "title": "Director of Publishing and Licensing", + "names": [ + "Dennis Ries" + ] + }, + { + "title": "Director of Trust and Safety", + "names": [ + "Carlos Figueiredo" + ] + }, + { + "title": "Production Directors", + "names": [ + "Alina Skripnyk", + "Bryant Hawthorne", + "Eric Taylor", + "Justin Edwards", + "Kristina Ashment", + "Marcus Bodin", + "Mike Ammerlaan", + "Molly Woodruff", + "Nathan Rose", + "Todd Stevens" + ] + }, + { + "title": "Production Managers", + "names": [ + "Caroline Smith (Insight Global, Inc)", + "Luis Cascante" + ] + }, + { + "title": "Production Leads", + "names": [ + "Carrie Doring", + "Milo Bengtsson", + "Mona Landh Gullberg", + "Tim Mardell" + ] + }, + { + "title": "Principal Producers", + "names": [ + "Melinda Knight", + "Su Liu" + ] + }, + { + "title": "Producers", + "names": [ + "Aaron Hughes (Insight Global, Inc)", + "Adrian Östergård", + "Anjelika Zora Kosanic", + "Barrett Livingston", + "Bryan G. Bonham", + "Carlos Naranjo", + "Dawn Boughton (Apex Systems, Inc)", + "Elin Roslund", + "Ellen Karlsten", + "Eric Karlshammar", + "Gareth Young", + "Heesung Koo", + "Hillary Good (Simplicity Consulting Inc.)", + "Jennifer Boespflug Dotson (Insight Global, Inc)", + "Josefin Olsson", + "Kev Katona (Insight Global, Inc)", + "Kristina Barandiy", + "Laylah Bulman", + "Linda Dalin", + "Lisa Kempe", + "Marie Bustgaard", + "Micael Sjölund", + "Nicolette Suraga", + "Petter Denninger", + "Rakiv Joy", + "Riccardo Lenzi", + "Sarah Von Reis", + "Seo Hee Hong", + "Sofia Gothlin" + ] + }, + { + "title": "Media Producers", + "names": [ + "Andreas Dea Svensson", + "Johan Björnung Kvarnemo", + "Sandra Schöön" + ] + }, + { + "title": "Product Directors, Franchise Technologies and Services", + "names": [ + "Deanna Hearns", + "Saher Hirji" + ] + }, + { + "title": "Product Manager Leads", + "names": [ + "Anna Lundgren", + "Candice Giffin", + "Divya Babuji", + "Justin Johnson" + ] + }, + { + "title": "Product Managers", + "names": [ + "Ahmed Asif", + "August Carow", + "Barbara Konchinski", + "Carolina Broberg (Netlight)", + "Dejan Dimic", + "Donyea Cooley-White", + "Eliot Lee", + "Esteban Balbuena (Globant)", + "Grace Jung (Allegis Group Services, Inc)", + "Jorge Aleman Rodriguez", + "Kara Kono", + "Kari C Whiteside", + "Kat Siegert", + "Katie Ellison", + "Liz Smith", + "Madeline Psenka", + "Malte Tammerström", + "Marc Watson", + "Micah Myerscough", + "Milena Gonzalez", + "Nick Ljungqvist (MVP Global AB)", + "Rachel Ji", + "Stephen Scott", + "Tia Dalupan", + "Tori Tippin", + "Zerelina Mukherjee" + ] + }, + { + "title": "Organizational Coach", + "names": [ + "Jennie Martensson (Jenuine Coaching & Consulting AB)" + ] + }, + { + "title": "Release Management Lead", + "names": [ + "Josh Mulanax" + ] + }, + { + "title": "Release Managers", + "names": [ + "Andrew Pritchard", + "Hailey Dice (Hanson Consulting Group, Inc)", + "Joseph Panaccione (Apex Systems, Inc)", + "Joshua Bullard", + "Kristian Björk Grimberg", + "Kyle Sullivan (Hanson Consulting Group, Inc)" + ] + }, + { + "title": "Technical Writers", + "names": [ + "Jeff Kim (Insight Global, Inc)", + "Jill Headen (Insight Global, Inc)" + ] + }, + { + "title": "Technical Program Manager Lead", + "names": [ + "Eric Odell-Hein" + ] + }, + { + "title": "Technical Program Managers", + "names": [ + "Andrea Lam-Flannery", + "Aqsa Rauf (Apex Systems, Inc)", + "Benjamin Fall", + "Bobby Ou (my3Twelve, LLC)", + "Brynn Mendelsohn (Insight Global, Inc)", + "Chloe Li (my3Twelve, LLC)", + "Daniel Stewart", + "David Jho (my3Twelve, LLC)", + "Diana Lind (Harvey Nash, Inc)", + "Dylan Kesselring", + "Elizabeth Carty (Insight Global, Inc)", + "Garbo Chan (my3Twelve, LLC)", + "James Gregory", + "Jered Dowden (Ascendion, Inc)", + "Kei Schafer", + "Lauren Henderson", + "Mabel Chan (my3Twelve, LLC)", + "Timothy Mehta (Aquent, LLC)", + "Tina Lin (Ascendion, Inc)", + "William Weber (Apex Systems, Inc)" + ] + }, + { + "title": "Playtest Coordinator", + "names": [ + "Jonathan Carroll (Insight Global, Inc)" + ] + } + ] + }, + { + "discipline": "Visual Arts", + "titles": [ + { + "title": "Creative Leads", + "names": [ + "Erik Gestrelius", + "Johan Aronsson", + "Martin Johansson-He" + ] + }, + { + "title": "Art Directors", + "names": [ + "Amanda Ström", + "Filip Keatley Thoms", + "Jasper Boerstra", + "Julian Kerr", + "Markus Karlsson Frost", + "Ninni Landin", + "Seung Sung", + "Sherin Kwan", + "Ullis Linder" + ] + }, + { + "title": "Art Manager", + "names": [ + "Magdalena Berglind" + ] + }, + { + "title": "Artist Leads", + "names": [ + "Alexandra Dogaru", + "Evelina Kolovou", + "Joule Garvin", + "Meagan Dumford", + "Michael Apolis", + "Michael Neumann" + ] + }, + { + "title": "Artists", + "names": [ + "Adam Sellerfors", + "Amelie Bjurenhed", + "Brandon Korvas (Ten Gun Design, Inc)", + "Celene Presto (Harvey Nash, Inc)", + "Chase Farthing (Allegis Group Services, Inc)", + "Chi Wong", + "Christian Nordgren", + "Christina Dolan (Aquent, LLC)", + "Cristina Bravo Amigueti", + "Dana Mack (Harvey Nash, Inc)", + "Jan Cariaga", + "Jesse Munguia", + "Kirk Barnett", + "Lauren Bravo-Kohler", + "Margarita Sanchez (Allegis Group Services, Inc)", + "Mattis Grahm", + "Morten Rasmussen", + "Noam Briner", + "Peter Sheff", + "Rodrigo Corvalan Vivedes", + "Sarah Boeving", + "Scott Jobe (Allegis Group Services, Inc)", + "Stephanie Nannariello (Harvey Nash, Inc)" + ] + }, + { + "title": "Technical Artists", + "names": [ + "Brendan 'Sully' Sullivan", + "Dan Sonne" + ] + }, + { + "title": "Product Design Leads", + "names": [ + "Connor Burtis", + "Ryan Sand", + "Will Krause" + ] + }, + { + "title": "Product Designers", + "names": [ + "Adrian Ward", + "Débora Martins", + "Laura Palmroth", + "Ro Ocampo (Allegis Group Services, Inc)", + "Timothy Lusk (Allegis Group Services, Inc)" + ] + }, + { + "title": "Graphic Designers", + "names": [ + "Caitlin Willhoite (Ten Gun Design, Inc)", + "Isak de Jong" + ] + } + ] + }, + { + "discipline": "Audio", + "titles": [ + { + "title": "Audio Directors", + "names": [ + "Peter Hont", + "Samuel Åberg" + ] + }, + { + "title": "Sound Designers", + "names": [ + "Sandra Karlsson", + "Thareeq Roshan", + "Tom Koselnik Olovsson" + ] + }, + { + "title": "Music composed by", + "names": [ + "Aaron Cherof", + "Amos Roddy", + "Daniel Rosenfeld", + "Kumi Tanioka", + "Lena Raine" + ] + }, + { + "title": "Music Supervisors", + "names": [ + "Kyle Hopkins", + "Maya Halfon Cordova" + ] + } + ] + }, + { + "discipline": "Quality Assessment", + "titles": [ + { + "title": "Quality Director, Franchise Technologies and Services", + "names": [ + "Matthew Ng" + ] + }, + { + "title": "Quality Manager", + "names": [ + "David Fries" + ] + }, + { + "title": "Quality Leads", + "names": [ + "Joe Whitman", + "Mimi Holmstead" + ] + }, + { + "title": "Quality Engineers", + "names": [ + "Agata Monk", + "Aidan Bower", + "Alyssa Liu", + "Angela Ong", + "Archita Keni", + "Chris Woelfel", + "Christina Tran", + "Dalrek Davis", + "Erik Davis", + "Lisa Porter", + "Mark McAllister", + "Melissa Moorehead", + "Michelle Hyde", + "Mike Su", + "Tom Brisbane", + "Tom French" + ] + }, + { + "title": "Quality Assessment Specialists", + "names": [ + "Björn Philipson", + "Matthew Dryden", + "Olle Personne" + ] + }, + { + "title": "Program Managers", + "names": [ + "Bill Brewster (Experis)", + "Darren Benskin (Experis)", + "Dave Watkins (Experis)", + "Jon Doyle (Experis)", + "Lewis Read (Experis)", + "Onur Unaldi" + ] + }, + { + "title": "Test Director", + "names": [ + "Angelica Morris (Experis)" + ] + }, + { + "title": "Test Managers", + "names": [ + "Ben Farley (Experis)", + "Emily Lovering (Experis)", + "Mateusz Kałuża (Lionbridge)", + "Paweł Piekarski (Lionbridge)", + "Raasahn Browder (Experis)", + "Tyler Lovemark (Experis)" + ] + }, + { + "title": "Team Leads", + "names": [ + "Iwona Cieśla (Lionbridge)", + "Michał Sławek (Lionbridge)", + "Paulina Pałdyna (Lionbridge)", + "Piotr Jasiński (Lionbridge)", + "Witold Matejewski (Lionbridge)" + ] + }, + { + "title": "Test Leads", + "names": [ + "Adam Ronowski (Lionbridge)", + "Benjamin Sousa (Experis)", + "Daniel March (Lionbridge)", + "Kamil Zakrzewski (Lionbridge)", + "Maria Berube (Experis)", + "Santiago Quinio (Experis)" + ] + }, + { + "title": "Test Automation Engineers", + "names": [ + "Łukasz Marek (Lionbridge)", + "Marcin Cudny (Lionbridge)", + "Michał Nowak (Lionbridge)" + ] + }, + { + "title": "Software Test Engineers", + "names": [ + "Ada Kierzkowska (Lionbridge)", + "Adam DuBois (Experis)", + "Adam Rączkowski (Lionbridge)", + "Agata 'Tiger' Kawalec (Lionbridge)", + "Albert Wujkowski (Lionbridge)", + "Aleksandra Traczyk (Lionbridge)", + "Alex Vue (Experis)", + "Amelia Rozborska (Lionbridge)", + "Bartłomiej Krupiński (Lionbridge)", + "Bartłomiej Łobocki (Lionbridge)", + "Bartłomiej Mathea (Lionbridge)", + "Bartosz Kacprzak (Lionbridge)", + "Błażej Rajewski (Lionbridge)", + "Cezary Romecki (Lionbridge)", + "Damian Galicki (Lionbridge)", + "Daniel Posiadała (Lionbridge)", + "Daniel Tazelaar (Lionbridge)", + "David Deans (Experis)", + "Eric Izurieta (Experis)", + "Gabe Castro (Experis)", + "Gabriel Mróz (Lionbridge)", + "Henrik Ackler (Lionbridge)", + "Isaac Villagomez (Lionbridge)", + "Jakub Budzyński (Lionbridge)", + "Jakub Opaliński (Lionbridge)", + "Jordan Heredia (Experis)", + "Joseph Cuen (Experis)", + "Julie Tucker (Experis)", + "Katarzyna Pastor (Lionbridge)", + "Krzysztof Górski (Lionbridge)", + "Logan Marshall-Medlock (Experis)", + "Łukasz Jankowski (Lionbridge)", + "Łukasz Michalak (Lionbridge)", + "Marcin Klimek (Lionbridge)", + "Marcin Krysiak (Lionbridge)", + "Marcin Rosłon (Lionbridge)", + "Mateusz Miksa (Lionbridge)", + "Mikaela Reed (Experis)", + "Mikołaj Gruźliński (Lionbridge)", + "Piotr Burkowski (Lionbridge)", + "Piotr Gruszczyński (Lionbridge)", + "Piotr Orłowski (Lionbridge)", + "Richard Withrow (Experis)", + "Robert Bergeron (Experis)", + "Ryan Weant (Experis)", + "Sebastian Polanica (Lionbridge)", + "Sviatoslav Porubanskyi (Lionbridge)", + "Weronika Szajnfeld (Lionbridge)", + "Witold Januszewski-Skup (Lionbridge)" + ] + }, + { + "title": "Test Associates", + "names": [ + "Adam Czajkowski (Lionbridge)", + "Adrian Jakóbczak (Lionbridge)", + "Agata Stelmach (Lionbridge)", + "Agnieszka Sobieszuk (Lionbridge)", + "Aibat Yelemes (Lionbridge)", + "Alan Kotowski (Lionbridge)", + "Aleksander Borysiak (Lionbridge)", + "Aleksander Sierocinski (Lionbridge)", + "Aleksander Zygier (Lionbridge)", + "Aleksandra Jakubowska (Lionbridge)", + "Aleksandra Stelmach (Lionbridge)", + "Alex Nissen (Insight Global, Inc)", + "Alexey Solopov (Lionbridge)", + "Andrew McFarland (Lionbridge)", + "Andżelika Kurek (Lionbridge)", + "Aneta Woźnica (Lionbridge)", + "Anna Gordon (Lionbridge)", + "Anna Gutowska (Lionbridge)", + "Anna Zachara (Lionbridge)", + "Anthony Lopez (Lionbridge)", + "Anthony Zehm (Lionbridge)", + "Antoni Kostrzewa (Lionbridge)", + "Arkadiusz Czarnecki (Lionbridge)", + "Arkadiusz Grzesiński (Lionbridge)", + "Artem Matvieievskyi (Lionbridge)", + "Ata Helvacioglu (Lionbridge)", + "Barbara Rutkowska (Lionbridge)", + "Bartłomiej Słodkowski (Lionbridge)", + "Bartłomiej Truszkowski (Lionbridge)", + "Bartlomiej Wysocki", + "Bartosz Paciorkiewicz (Lionbridge)", + "Bartosz Pikutin (Lionbridge)", + "Bartosz Sowiński (Lionbridge)", + "Bartosz Staszczak (Lionbridge)", + "Bartosz Świderski (Lionbridge)", + "Bartosz Waleśkiewicz (Lionbridge)", + "Brady Smith (Lionbridge)", + "Burton Groves (Lionbridge)", + "Casey Nelson (Lionbridge)", + "Casper Sparks (Insight Global, Inc)", + "Cassan François (Lionbridge)", + "Damian Rokosz (Lionbridge)", + "Damian Spysiński (Lionbridge)", + "Damian Sztyk (Lionbridge)", + "Daniel Niewiadomski (Lionbridge)", + "Dawid Gryczan (Lionbridge)", + "Dominik Zwoliński (Lionbridge)", + "Emir Ali Misiratov (Lionbridge)", + "Ewa Merska (Lionbridge)", + "Filip Busłowicz (Lionbridge)", + "Filip Firlej (Lionbridge)", + "Franciszek Ścirka (Lionbridge)", + "Gabriel Wiśniowski (Lionbridge)", + "Hayden Dalton (Lionbridge)", + "Hubert Uberman (Lionbridge)", + "Igor Bogusiewicz (Lionbridge)", + "Igor Grabski (Lionbridge)", + "Igor Niewiadomski (Lionbridge)", + "Jacek Misztal (Lionbridge)", + "Jacob Childers (Experis)", + "Jacob Otto (Lionbridge)", + "Jakub Bobiński (Lionbridge)", + "Jakub Byliniak (Lionbridge)", + "Jakub Górnicki (Lionbridge)", + "Jakub Grzebisz (Lionbridge)", + "Jakub Istynowicz (Lionbridge)", + "Jakub Łuckiewicz (Lionbridge)", + "Jakub Malinowski (Lionbridge)", + "Jakub Mierzejewski (Lionbridge)", + "Jakub Mihułka (Lionbridge)", + "Jakub Obstawski (Lionbridge)", + "Jakub Owczarzak (Lionbridge)", + "Jakub Piekart (Lionbridge)", + "Jakub Puzio (Lionbridge)", + "Jakub Sierociński (Lionbridge)", + "Jakub Tabiszewski (Lionbridge)", + "Jakub Więch (Lionbridge)", + "Jakub Wojciechowski (Lionbridge)", + "Jakub Zgajewski (Lionbridge)", + "Jan Górski (Lionbridge)", + "Jan Kamiński (Lionbridge)", + "Jan Owczarczyk (Lionbridge)", + "Jan Tomaszewski (Lionbridge)", + "Jarosław Gasiński (Lionbridge)", + "Jessica Stephenson (Lionbridge)", + "Joanna Kossut (Lionbridge)", + "Julia Fischbach (Lionbridge)", + "Julia Jóźwiak (Lionbridge)", + "Kacper Bujakowski (Lionbridge)", + "Kacper Gosławski (Lionbridge)", + "Kacper Paś (Lionbridge)", + "Kacper Pławny (Lionbridge)", + "Kacper Senkowicz (Lionbridge)", + "Kamil Szymański (Lionbridge)", + "Kamran Akhundov (Lionbridge)", + "Kansas Spence (Experis)", + "Karol Kopeć (Lionbridge)", + "Karolina Pietraś (Lionbridge)", + "Karolina Prekurat (Lionbridge)", + "Karolina Zaleszczyk (Lionbridge)", + "Khaya Mvimbi (Lionbridge)", + "Kinga Banasiuk (Lionbridge)", + "Klim Kuznetsov (Lionbridge)", + "Konrad Justyński (Lionbridge)", + "Konrad Kruszyński (Lionbridge)", + "Konrad Pyrzanowski (Lionbridge)", + "Krzysztof Bajor (Lionbridge)", + "Kuba Karakula (Lionbridge)", + "Kyrylo Kunytskyi (Lionbridge)", + "Laura Androsiuk (Lionbridge)", + "Łukasz Majchrowski (Lionbridge)", + "Łukasz Sterna (Lionbridge)", + "Maciej Bielecki (Lionbridge)", + "Maciej Ginter (Lionbridge)", + "Maciej Michaluk (Lionbridge)", + "Maciej Pieszalski (Lionbridge)", + "Maciej Ruciński (Lionbridge)", + "Maciej Waszczuk (Lionbridge)", + "Maciej Wnuk (Lionbridge)", + "Maciej Wójcik (Lionbridge)", + "Magdalena Orzyłowska (Lionbridge)", + "Magdalena Wardak (Lionbridge)", + "Maja Piątek (Lionbridge)", + "Maksymilian Fabjańczuk-Niemirski (Lionbridge)", + "Maksymilian Kubiak (Lionbridge)", + "Maksymilian Skalski (Lionbridge)", + "Maksymilian Szydlik (Lionbridge)", + "Malichi Wilson (Lionbridge)", + "Maliki Wilson (Lionbridge)", + "Marceli Naskrętski (Lionbridge)", + "Marcin Kubicki (Lionbridge)", + "Marcin Paszkiewicz (Lionbridge)", + "Marcin Słoniewski (Lionbridge)", + "Marharyta Yelsukova (Lionbridge)", + "Marion Bojarski (Lionbridge)", + "Marta Czwarnóg (Lionbridge)", + "Martyna Szczepańska (Lionbridge)", + "Mateusz Borowski (Lionbridge)", + "Mateusz Iwaniuk (Lionbridge)", + "Mateusz Koriat (Lionbridge)", + "Mateusz Panek (Lionbridge)", + "Mateusz Radzyński (Lionbridge)", + "Mateusz Świecki (Lionbridge)", + "Max Stein (Experis)", + "Michał Kierzkowski (Lionbridge)", + "Michał Kowalik (Lionbridge)", + "Michał Przystup (Lionbridge)", + "Michał Sobianek (Lionbridge)", + "Mikołaj Błażejewski (Lionbridge)", + "Mikołaj Pawlak (Lionbridge)", + "Milena Olesiejuk (Lionbridge)", + "Mykhailo Prokhorov (Lionbridge)", + "Natalia Walczyńska (Lionbridge)", + "Nikola Janiak (Lionbridge)", + "Odo Przęczka (Lionbridge)", + "Oleksandr Lohin (Lionbridge)", + "Oleksii Hrabovskyi (Lionbridge)", + "Oskar Wiktorowicz (Lionbridge)", + "Oskar Żurawski (Lionbridge)", + "Patrycja Dwojak (Lionbridge)", + "Patryk Karwowski (Lionbridge)", + "Patryk Kubiszewski (Lionbridge)", + "Patryk Piekarski (Lionbridge)", + "Paweł Kaleta (Lionbridge)", + "Paweł Wójcik (Lionbridge)", + "Paweł Zwoliński (Lionbridge)", + "Piotr Adamiak (Lionbridge)", + "Piotr Gałecki (Lionbridge)", + "Piotr Kompa (Lionbridge)", + "Piotr Kruszewicz (Lionbridge)", + "Piotr Mudryk (Lionbridge)", + "Piotr Szafranowski (Lionbridge)", + "Platon Ogarev (Lionbridge)", + "Przemysław Rybicki (Lionbridge)", + "Przemysław Wojtaszek (Lionbridge)", + "Radosław Czerniszewski (Lionbridge)", + "Rafał Adamski (Lionbridge)", + "Rafał Gołębiowski (Lionbridge)", + "Rafał Owsa (Lionbridge)", + "Rafał Żulewski (Lionbridge)", + "Robert Zabłocki (Lionbridge)", + "Robert Żulewski (Lionbridge)", + "Sabina Ocaya Gamon (Lionbridge)", + "Samanta Giedraityte (Lionbridge)", + "Samantha Glass (Insight Global, Inc)", + "Sebastian Biegaj (Lionbridge)", + "Sebastian Esqueda (Experis)", + "Sebastian Łuczak (Lionbridge)", + "Sebastian Michalski (Lionbridge)", + "Stanisław Świderski (Lionbridge)", + "Szymon Barciś (Lionbridge)", + "Szymon Pielacha (Lionbridge)", + "Szymon Studencki (Lionbridge)", + "Thomas Jessup (Lionbridge)", + "Tim Radoń-Dubiniecki (Lionbridge)", + "Tomasz Kubajka (Lionbridge)", + "Tomasz Pyszczek (Lionbridge)", + "Uladzislau Kakhniuk (Lionbridge)", + "Viktoryia Liashkevich (Lionbridge)", + "Wiktor Wrona (Lionbridge)", + "Wiktoria Błaszkiewicz (Lionbridge)", + "Wiktoria Brodzik (Lionbridge)", + "Wiktoria Hałatkiewicz (Lionbridge)", + "Wiktoria Książek (Lionbridge)", + "Wiktoria Zatyka (Lionbridge)", + "Wojciech Olszewski (Lionbridge)", + "Wojciech Przewdziecki (Lionbridge)", + "Wyat Simmons (Lionbridge)", + "Yuliia Stefurak (Lionbridge)", + "Zofia Kossarzecka (Lionbridge)", + "Zuzanna Krężlewicz (Lionbridge)" + ] + } + ] + }, + { + "discipline": "User Research", + "titles": [ + { + "title": "User Research Lead", + "names": [ + "Deanne Adams" + ] + }, + { + "title": "User Researcher", + "names": [ + "Sarah Santiago" + ] + } + ] + }, + { + "discipline": "Operations", + "titles": [ + { + "title": "Operations Director, Global", + "names": [ + "Shanlenn B. Colby" + ] + }, + { + "title": "Operations Director", + "names": [ + "Jewell Morelli" + ] + }, + { + "title": "Operations Managers", + "names": [ + "Karolina Nylén", + "Mikaela Illanes", + "Renee Wikander", + "Sheila Ho", + "Stephanie Golden (Insight Global, Inc)" + ] + }, + { + "title": "Operations Coordinator", + "names": [ + "Stefanie Forsberg" + ] + }, + { + "title": "Creative Operations Director", + "names": [ + "Ulrika Silfverstolpe" + ] + }, + { + "title": "Creative Operations Manager", + "names": [ + "Isabella Balk" + ] + }, + { + "title": "People Operations Managers", + "names": [ + "Adam Lemcio", + "Aleksandra Ola Zajac", + "Ani Grey", + "Brittney Pettway", + "Catherine Hendrix", + "Georgia Marra", + "Joël Älveroth", + "Ludwig Moberg Edenbäck" + ] + }, + { + "title": "HR Directors", + "names": [ + "Darcy Harpel", + "Natalie Graham" + ] + }, + { + "title": "Human Resources", + "names": [ + "Line Thomson", + "Linn Holmertz", + "Yvonne Zarrin Manesh" + ] + }, + { + "title": "Talent Acquisition", + "names": [ + "Adam Conder (Insight Global, Inc)", + "Jeff Guyton (Insight Global, Inc)", + "Scott MacPherson (Insight Global, Inc)", + "Sofia Andersson" + ] + }, + { + "title": "Executive Business Administrators", + "names": [ + "Dinah Divinagracia", + "Erin Decker", + "Francine Jordan", + "Lovisa Grindelius" + ] + }, + { + "title": "IT Managers", + "names": [ + "Jason Perry Minard", + "Rene Astorga" + ] + }, + { + "title": "IT", + "names": [ + "Aaron Brindell (Experis)", + "Aaron Ingram (Experis)", + "Adam Barnette (Experis)", + "Brian Hein (Experis)", + "Dacke Blixt (Techfactory, AB)", + "Eric Filarski (My3Twelve, LLC)", + "Hannah Feilberg-Maiti (Techfactory, AB)", + "Matthew Cha (my3Twelve, LLC)", + "Shoghi Cervantes Pueyo", + "Tim Foster (my3Twelve, LLC)", + "Zelda Karttunen (Academic Work IT AB)" + ] + }, + { + "title": "Lead Automation Support", + "names": [ + "Matthew C. Moreno" + ] + }, + { + "title": "DevOps Engineer", + "names": [ + "Jordan Crockett (Allegis Group Services, Inc)" + ] + } + ] + }, + { + "discipline": "Player Care", + "titles": [ + { + "title": "Director of Player Care", + "names": [ + "Anne Quaranta" + ] + }, + { + "title": "Player Support Program Leads", + "names": [ + "Alexandru Giuglea", + "Erfon Haubenstock", + "Jake Rexus", + "Jen Pedersen" + ] + }, + { + "title": "Player Support Operations Manager", + "names": [ + "Justin Putnam (Apex Systems, Inc)" + ] + }, + { + "title": "Player Support", + "names": [ + "Angel De Aguiar (Apex Systems, Inc)", + "Arturo Gutierrez (Apex Systems, Inc)", + "Briana Acosta (Apex Systems, Inc)", + "Caleb Masters (Apex Systems, Inc)", + "Chirs Lok (Apex Systems, Inc)", + "Chris Eells (Apex Systems, Inc)", + "Daniel Coronel (Apex Systems, Inc)", + "Gabriel Gonzales (Apex Systems, Inc)", + "Julia Osobampo (Apex Systems, Inc)", + "Karoline Malik (Apex Systems, Inc)", + "Mara Croesy (Apex Systems, Inc)", + "Melinda Morales (Apex Systems, Inc)", + "Mey Saechao (Apex Systems, Inc)", + "Raul Garza (Apex Systems, Inc)", + "Sarah Wylie (Apex Systems, Inc)", + "Whitney Okafor (Apex Systems, Inc)" + ] + } + ] + }, + { + "discipline": "Data Analytics", + "titles": [ + { + "title": "Player Analytics and Insights Director", + "names": [ + "Francisco Rius" + ] + }, + { + "title": "Data Science and Analytics Managers", + "names": [ + "Abby Gaddis", + "Duncan Davis", + "Laura Funa", + "Miguel Fierro" + ] + }, + { + "title": "Data Engineering Manager", + "names": [ + "Bill Chism" + ] + }, + { + "title": "Data and Analytics Lead", + "names": [ + "Smitha Menon" + ] + }, + { + "title": "Analytics Environment Manager", + "names": [ + "Troy Henke" + ] + }, + { + "title": "Analytics Environment Engineering", + "names": [ + "Lucas Neubert (Ascendion, Inc)", + "Ryan Cox (Ascendion, Inc)", + "Sebastian Soffici", + "Whitney King (Fractal Analytics Inc)" + ] + }, + { + "title": "Data Science", + "names": [ + "Aaron Johnson", + "Alvaro Gil Moradillo", + "Axel Orrenius", + "Bhrigu Shree", + "Christer Norstrom", + "Grant Poinsatte", + "Kent Go (Aquent, LLC)", + "Kyle Iman", + "Matilda Tamm", + "Matthew Skirvin", + "Pujeethaa Jakka", + "Ramitha Kotarkonda", + "Scott Graham", + "Siva Balantrapu (Hitachi Digital Services LLC)", + "Swathi Sivadas", + "Tiana Ramirez (KellyMitchell Group, LLC)", + "Usama Bin Salim (Agility Partners LLC)", + "Victor Fong (Ascendion, Inc)", + "Xuan Ting Liu" + ] + }, + { + "title": "Data Engineering", + "names": [ + "Bill Klees", + "Deepthi Rajashekar", + "Dhiraj Nilange", + "Olusola Timothy Olojede", + "Sachin Dekate" + ] + } + ] + }, + { + "discipline": "Business Management & Licensing", + "titles": [ + { + "title": "Program Director, China Consumer & Global Partnerships", + "names": [ + "Jeremy Snook" + ] + }, + { + "title": "Program Director, Consumer Products", + "names": [ + "Hanna Willis" + ] + }, + { + "title": "Program Director, Franchise Development", + "names": [ + "Federico San Martin" + ] + }, + { + "title": "Program Directors", + "names": [ + "Ava Volandes", + "Bob Brennecke", + "Eileen Lee", + "Gaylon Blank", + "Sonal Majmudar", + "Stephanie Louie Craig" + ] + }, + { + "title": "Business Director, Franchise", + "names": [ + "Anthony Murphy" + ] + }, + { + "title": "Business Director, Japan & Market Expansion", + "names": [ + "Yutaka Noma" + ] + }, + { + "title": "Business Directors, Operations", + "names": [ + "Bill Lindell", + "Donald Brinkman" + ] + }, + { + "title": "Business Directors", + "names": [ + "Dan Zou", + "Michelle Hua", + "Patrick Geuder", + "Shabnam Elmi", + "Tim Gould" + ] + }, + { + "title": "Business Development Manager Leads", + "names": [ + "Inga Chamberlain", + "Rebecca A Miller" + ] + }, + { + "title": "Business Development Managers", + "names": [ + "Albert Pastore", + "Amy Barenblat (Iconma LLC)", + "Christy Weckner", + "MaryKate Mullen (Allegis Global Services, Inc)", + "Roger Villegas (Allegis Global Services, Inc)", + "Timothy Norton (Ascendion, Inc)" + ] + }, + { + "title": "Program Manager Lead", + "names": [ + "Susie Tinker" + ] + }, + { + "title": "Program Managers", + "names": [ + "Alex Luschen", + "Anita Collins (Excelsior Staffing LLC)", + "Bethany Gager (Apex Systems, Inc)", + "Brett Coleman (Apex Systems, Inc)", + "Chris Dauchot (Insight Global, Inc)", + "Emily Carlson", + "Greg Walls (Insight Global, Inc)", + "John Mercil (Insight Global, Inc)", + "Josh Ayala (Insight Global, Inc)", + "Liz Leo", + "Micky Yamaguchi", + "Monica Burba (Apex Systems, Inc)", + "Morgan Farrar", + "Nedra Wilson", + "Susan Morales (Apex Systems, Inc)", + "Vince Davis Espino (Insight Global, Inc)" + ] + }, + { + "title": "Business Managers", + "names": [ + "Audrey Searcy", + "Brandon H Kim", + "Christopher Johnsen (Allegis Group Services, Inc)", + "David K. Lau", + "Elizabeth Link (Aquent, LLC)", + "Ellen Wu", + "Eve Vashkus", + "Janet Cunningham", + "Kristin Grein", + "Lori Merritt (SGF USA LLC)", + "Matt Morgan", + "Natalia Ellenson", + "Nichole Green", + "Stephanie Turl (Simplicity Consulting Inc.)" + ] + }, + { + "title": "Technical Program Managers", + "names": [ + "DJ Stiner", + "Quinn Richter" + ] + } + ] + }, + { + "discipline": "Brand Management", + "titles": [ + { + "title": "Brand Director", + "names": [ + "Thomas Falkenstrom" + ] + }, + { + "title": "Brand Manager", + "names": [ + "Harry Elonen" + ] + }, + { + "title": "Brand Strategist", + "names": [ + "Astrid Segerlund" + ] + }, + { + "title": "Brand Analyst", + "names": [ + "Sofia Alm" + ] + } + ] + }, + { + "discipline": "Communications", + "titles": [ + { + "title": "Media Director", + "names": [ + "Vu Bui" + ] + }, + { + "title": "Director of Communications", + "names": [ + "Emil Rodriguez", + "Owen Jones" + ] + }, + { + "title": "Communications Managers", + "names": [ + "Addie Coronado", + "Alexis Crofts (Assembly Media, Inc)", + "Cristina Anderca", + "Cynthia Park (Assembly Media, Inc)", + "Holly Amber Smith", + "Maysan Zubi (Assembly Media, Inc)", + "Michael Rougeau (Assembly Media, Inc)", + "Petra Tell", + "Ramona Suris (Assembly Media, Inc)", + "Wesley Gore (Assembly Media, Inc)", + "Zulai Serrano Shimamoto" + ] + }, + { + "title": "Creative Writers", + "names": [ + "Julius Olofsson", + "Linn Viberg", + "Per Landin", + "Sophie Austin" + ] + }, + { + "title": "Director of Community", + "names": [ + "Nea Aime Rollan" + ] + }, + { + "title": "Social Media Lead", + "names": [ + "Sean Flanery" + ] + }, + { + "title": "Social Media Managers", + "names": [ + "Angelica Batth (Kforce, Inc)", + "Anthony Toczek", + "Cassandra Jones (Cypress Human Capital)", + "Paulina Espinoza-Gonzalez (Kforce, Inc)", + "Will Mowery (Harvey Nash, Inc)", + "William Chang (Randstad)" + ] + }, + { + "title": "Community Management Lead", + "names": [ + "Joel Sasaki" + ] + }, + { + "title": "Community Managers", + "names": [ + "Emily Hayes (Averro LLC)", + "Gustav Höglund", + "Jay Wells", + "Kristina Horner", + "Lindsey Schaal", + "Matt Gartzke", + "Michelle Archer Waterman", + "Sophia Lyon" + ] + }, + { + "title": "Content Managers", + "names": [ + "John Hansen (Insight Global, Inc)", + "Nadja Anderberg", + "Oskar Thysell", + "Reagan Sterner (Apex Systems, Inc)" + ] + }, + { + "title": "Publishing Editor", + "names": [ + "Lauren Marklund" + ] + } + ] + }, + { + "discipline": "Marketing", + "titles": [ + { + "title": "Head of Marketing", + "names": [ + "Jeanie DuMont" + ] + }, + { + "title": "Marketing Directors", + "names": [ + "Fergus Lynch", + "Gaylord Escalona", + "Katie Penza" + ] + }, + { + "title": "Marketing Managers", + "names": [ + "Amanda Correia", + "Amy Vuong (Cypress Human Capital)", + "Anton Maslennikov", + "Arkadiy Goldenshtern", + "Bradley Cummings", + "Egil Gloersen", + "Emily Orrson (Unfollow Media)", + "Halley Chang", + "Irene Ahn", + "Jaime Limon", + "Janis Fein (Ascendion, Inc)", + "Jeff Rivait", + "Jen Barry (Ten Gun Design, Inc)", + "Lauren Schuur (Ten Gun Design, Inc)", + "Lindsay Auten (Synaxis Corporation)", + "Makayla Mota (Harvey Nash, Inc)", + "Melissa Jenkins", + "Nick Ketter", + "Nicolas Sherman (Nextant LLC)", + "Sam Brody", + "Sara Cornish", + "Shari Gari (Aquent, LLC)", + "Terry Lewis (Ten Gun Design, Inc)" + ] + }, + { + "title": "Marketing Content Managers", + "names": [ + "Britt Riley (Insight Global, Inc)", + "Daria Sykuleva (Tata Consultancy Services LTD)", + "Jules Caesar (Insight Global, Inc)", + "Nicole Fabian Parodi (Tata Consultancy Services LTD)", + "Richard Lecker (Insight Global, Inc)", + "Sanjana Jadhav (Tata Consultancy Services LTD)", + "Wanda Roe (Tata Consultancy Services LTD)" + ] + }, + { + "title": "Web Content Manager", + "names": [ + "Joe Corrigan (Ten Gun Design, Inc)" + ] + }, + { + "title": "Web Content Authors & QA", + "names": [ + "Arvapally Bharath (HCL Technologies)", + "Jack Markley (HCL Technologies)", + "Nilesh Jaiswal (HCL Technologies)", + "Tobias Bankson (Ten Gun Design, Inc)" + ] + }, + { + "title": "Project Manager", + "names": [ + "Julie Toomey (Ten Gun Design, Inc)" + ] + } + ] + }, + { + "discipline": "Legal", + "titles": [ + { + "title": "Head of Legal", + "names": [ + "Nick Morgan (CELA)" + ] + }, + { + "title": "Senior Legal Counsel", + "names": [ + "Tim Han (CELA)" + ] + }, + { + "title": "Legal Counsel", + "names": [ + "Jessica Henderson", + "Jyl Brown (CELA)", + "Kari Annand (Snodgrass Annand)", + "Maya Yamazaki (Davis Wright Tremaine)" + ] + } + ] + }, + { + "discipline": "Finance", + "titles": [ + { + "title": "Finance Director", + "names": [ + "Marina Kostesic" + ] + }, + { + "title": "Finance Managers", + "names": [ + "Dennis Laviolette (Apex Systems, Inc)", + "Felix Huang Jr.", + "Mikkel Flækøy", + "Robert Scheibeck" + ] + }, + { + "title": "Financial Accountant", + "names": [ + "Josefina Axelsson" + ] + }, + { + "title": "Financial Consultants", + "names": [ + "Elias Selmo", + "Martin Rybrink" + ] + } + ] + } + ] + }, + { + "section": "Special Thanks", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "", + "names": [ + "4J Studios", + "Accenture, Web Engineering Services", + "Dan Roque, Creature Developer", + "Gideon Driver, Zen3 Infosolutions America, Inc", + "Jannis Petersen, Creator of Blockbench", + "John 'DrZhark' Olarte, Creature Developer", + "Julian Gough, Writer", + "Kent Christian Jense, Creature Developer", + "Michele \"skypjack\" Caini, Senior Software Engineer", + "Microsoft Gaming Safety Team", + "Microsoft Magic Team", + "Reza Elghazi, Developer Account Manager", + "The PlayFab Team", + "The Xbox Live Team", + "Vishnu Nalagangula, Zen3 Infosolutions America, Inc", + "Xbox Games Studios" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Blackbird Interactive", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Programmers", + "names": [ + "David Galloway", + "Devon Plourde", + "Jc Fowles", + "Michelle Rocha", + "Mike Biddlecombe", + "Sabrina Korsch-Sharma", + "Stevie Giovanni", + "Tim Stump" + ] + }, + { + "title": "Producer", + "names": [ + "Jeremy Powell" + ] + }, + { + "title": "Vice President, Development", + "names": [ + "Lee McKinnon Pederson" + ] + }, + { + "title": "Studio Technical Director", + "names": [ + "Michael Sikora" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Disbelief", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "President", + "names": [ + "Steve Ellmore" + ] + }, + { + "title": "CTO", + "names": [ + "Steve Anichini" + ] + }, + { + "title": "Producer", + "names": [ + "Andre Gracias" + ] + }, + { + "title": "Additional Production", + "names": [ + "Glenn Zomchek" + ] + }, + { + "title": "Technical Director", + "names": [ + "Kristofel Munson" + ] + }, + { + "title": "Lead Programmer", + "names": [ + "Tim Hagberg" + ] + }, + { + "title": "Senior Programmers", + "names": [ + "Matt Mackowski", + "Torin Wiebelt" + ] + }, + { + "title": "Programmers", + "names": [ + "Abhijit Zala", + "David Stout", + "Dylan Borg", + "Emmaline Kelly", + "Hugo Machado", + "Joey Montgomery", + "Micah Johnston" + ] + }, + { + "title": "Art Director", + "names": [ + "Gabe Bott" + ] + }, + { + "title": "Senior Technical Artist", + "names": [ + "Katie McCarthy" + ] + }, + { + "title": "Technical Artist", + "names": [ + "Ezri Sullivan" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Red Lens", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "President", + "names": [ + "Jared Noftle" + ] + }, + { + "title": "Dev Lead", + "names": [ + "Veasna Chhaysy-Park" + ] + }, + { + "title": "Tech Lead", + "names": [ + "Lily Leblanc" + ] + }, + { + "title": "Producer", + "names": [ + "Nova Barlow" + ] + }, + { + "title": "Software Engineers", + "names": [ + "Elgin Ciani", + "Grady Wright", + "Johnathan Liu", + "Jon Castro", + "Joshua Greene", + "Minji Chhaysy-Park", + "Mitchell Lee", + "Skyler Powers" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Skybox", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Founders", + "names": [ + "Derek MacNeil", + "Shyang Kong", + "Steven Silvester" + ] + }, + { + "title": "Production", + "names": [ + "Chris Aduna", + "Jason Obertas", + "Jennifer Barron", + "Keegan Dillman", + "Madeeha Ahmad", + "Michael Tolkamp", + "Phoenix Valencia", + "Tud Racanelli", + "Veronica Ng", + "Yaw Obiri-Yeboah" + ] + }, + { + "title": "Quality Assurance", + "names": [ + "Ace Cheung", + "Faith Chow", + "Franka Mostert", + "Ivan Yemelianov", + "Jimmy Chen", + "Leo Hewitt", + "Mark Ball", + "Valeriia Kirka", + "Vicky Huang", + "William Redmond", + "Zack Hutchinson" + ] + }, + { + "title": "Software Developers", + "names": [ + "Adrien Givry", + "Aidan Dearing", + "Alex Denford", + "Alexandra Kabak", + "Andrew Halabourda", + "Anthony Wong", + "Benny Wang", + "Brandon Chan", + "Chris Spyropoulos", + "Cody Ward", + "Colin Basnett", + "Daniel Shim", + "Delling Ingvaldson", + "Derek Bell", + "Don Liu", + "Eser Kokturk", + "Eugene Kuznetsov", + "Fred Zhang", + "Glen Conolly", + "Hao Tian", + "Harrison Mulder", + "Hayden Hur", + "Jaegar Sarauer", + "Jaidon van Herwaarden", + "Jian Bang Xu", + "Jiazhi Chang", + "John Ferguson", + "Jon Head", + "Jonathan Yim", + "Jordan Lacey", + "Jordan Millar", + "Justin Tim", + "Kirill Bizin", + "Kyle Roblin", + "Lawrence Wu", + "Marija Petkova", + "Max Fanning", + "Michael Di Spirito", + "Michael Stickland", + "Michel Morin", + "Mike Demone", + "Mukund Agarwal", + "Nathan Lacey", + "Niamh Cuileann", + "Remy Truong", + "Richard Walker", + "Robert Felizardo", + "Sardana Nikolaeva", + "Shreyas Babu", + "Teo Dutra", + "Thierry Bouchard", + "Thomas Le Gerroue-Drevillon", + "Ting-Chun Sun", + "Todd Saharchuk", + "Vassil Anguelov", + "Yong Hou", + "Younggi Kim", + "Zach Campbell", + "Zaid Rauf" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Sprung Studios Ltd", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "CEO", + "names": [ + "James Chaytor" + ] + }, + { + "title": "Director of Global Business Development", + "names": [ + "Brooke Allison" + ] + }, + { + "title": "Studio Director", + "names": [ + "Ben Adams" + ] + }, + { + "title": "Senior Producer", + "names": [ + "Amelia Wales" + ] + }, + { + "title": "Producer", + "names": [ + "Jaclynn Wong" + ] + }, + { + "title": "Head of UX/UI", + "names": [ + "Anton Li" + ] + }, + { + "title": "Senior UX/UI Designer", + "names": [ + "Dimitria Eleftherios" + ] + }, + { + "title": "UX/UI Designers", + "names": [ + "Felix Pham", + "Leticia Dornel", + "Ryan Chen" + ] + }, + { + "title": "Head of Engineering", + "names": [ + "Matthew Jarvis" + ] + }, + { + "title": "Senior UI Engineer", + "names": [ + "Louis Edbrooke" + ] + }, + { + "title": "Front-End Developers", + "names": [ + "Daniel Gomme", + "Spring McParlin Jones" + ] + }, + { + "title": "UI Engineers", + "names": [ + "Andrew Ting", + "Michael Nation", + "Yewon Jung" + ] + }, + { + "title": "Head of User Research", + "names": [ + "Luke Fraser" + ] + }, + { + "title": "Senior User Researcher", + "names": [ + "Erica Qiu" + ] + }, + { + "title": "IT Support", + "names": [ + "Sofwan Naing" + ] + } + ] + } + ] + }, + { + "section": "Mojang Studios Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Original Creator of Minecraft", + "names": [ + "Markus Persson" + ] + }, + { + "title": "Studio Head", + "names": [ + "Åsa Bredin", + "Helen Chiang" + ] + }, + { + "title": "Head of Minecraft", + "names": [ + "Matt Booty" + ] + }, + { + "title": "Head of Stockholm Studio", + "names": [ + "Ulrika Hojgard" + ] + }, + { + "title": "Chief Executive Officer", + "names": [ + "Carl Manneh" + ] + }, + { + "title": "Chief Technology Officer", + "names": [ + "Rikard Herlitz" + ] + }, + { + "title": "Chief of Staff", + "names": [ + "Andrew J. Adamyk", + "Yassal Sundman" + ] + }, + { + "title": "Chief Creative Officer", + "names": [ + "Saxs Persson" + ] + }, + { + "title": "Head of Franchise Operations", + "names": [ + "Josh Bliggenstorfer" + ] + }, + { + "title": "Head of Games", + "names": [ + "Patrick Liu", + "Sara Jansson Bach" + ] + }, + { + "title": "Game Director", + "names": [ + "Henrik Pettersson" + ] + }, + { + "title": "Creative Director", + "names": [ + "John Hendricks" + ] + }, + { + "title": "Creative Leads", + "names": [ + "Jesse Merriam", + "Louise Smith (Formosa)", + "Michael Harnisch" + ] + }, + { + "title": "Design Managers", + "names": [ + "Oskar Hansson Wettergren", + "Peter Diar Friman", + "Rabi Afram" + ] + }, + { + "title": "Game Designers", + "names": [ + "Brandon Franklin (Insight Global, Inc)", + "Colten Murphy (TEKsystems, Inc.)", + "Daniel Brynolf", + "H Jones", + "Henrik Kniberg", + "Jared Greiner", + "Jesper Westlund", + "Jesse A Hibbs (TEKsystems, Inc.)", + "Justin Van Oort", + "Lauren E. Careccia", + "Melissa Andrews (Insight Global, Inc)", + "Miko Charbonneau", + "Nikolaj Kledzik", + "Pontus Hammarberg", + "Pradnesh Patil" + ] + }, + { + "title": "Narrative Designer", + "names": [ + "Max Herngren" + ] + }, + { + "title": "Head of Creator Platform Engineering", + "names": [ + "Jason Cahill" + ] + }, + { + "title": "Franchise Technical Director", + "names": [ + "Michael Weilbacher" + ] + }, + { + "title": "Technical Directors", + "names": [ + "Christopher Östlund", + "Daniel Johansson", + "Jason Major", + "Kristoffer Jelbring" + ] + }, + { + "title": "Engineering Managers", + "names": [ + "Erik Rahm", + "Giulio 'Mac' Maistrelli", + "Johan Williams", + "Martin Almgren", + "Michael Scott", + "Mikael Stenelund", + "Peter Olsson", + "Rose Higgins", + "Selma Hosni", + "Wenlan Yang" + ] + }, + { + "title": "Lead Software Engineers", + "names": [ + "Aaron Heysse", + "Adrian LaVallee", + "Dan Posluns", + "Henry Golding", + "Jeff Ott", + "John Copic", + "John Seghers", + "Mark D. Andersen", + "Mark Grinols", + "Michael D McGrath", + "Nathan Miller", + "Niklas Börestam", + "Piotr Kundu", + "Robert Goins", + "Sebastian Hindefelt", + "Steve Robinson", + "Syrgak Turgumbaev", + "Timothy J Schutz", + "Tom Miles", + "Tyler Laing" + ] + }, + { + "title": "Technical Leads", + "names": [ + "Anton Nikolaienko", + "Fernando Via Canel", + "Niclas Unnervik" + ] + }, + { + "title": "Software Engineers", + "names": [ + "Aaron Ward (Insight Global, Inc)", + "Aaron Woodward", + "Adam Granzer (TEKsystems, Inc)", + "Adam Ramberg", + "Adam Schoelz (Ascendion, Inc)", + "Adrian T Orszulak", + "Adrian Toncean", + "Afeez Olusegun K Bello", + "Albin Odervall", + "Alex Baird (Collabera, LLC)", + "Alex Wennström", + "Alexander Johansson", + "Alexander Kandalaft (Insight Global, Inc)", + "Alexander Östman", + "Alexander Sandor", + "Alexander Wilkinson", + "Ali Alidoust", + "Amir Moulavi", + "Anders Gärdenäs", + "Anders Martini", + "Andreas Von Gegerfelt", + "Andrew Chien (Insight Global, Inc)", + "Andrew Hewitson", + "Andy Hill", + "Anna Pearson (Insight Global, Inc)", + "Anthony Cloudy", + "Archana Singh (Collabera, LLC)", + "Arindam Goswami (Ascendion, Inc)", + "Arman Vatandoust", + "Aron Nieminen", + "Arunkumar Jeganathan (Artech Consulting, LLC)", + "Ashish Sharma (Ascendion Inc)", + "Ashley Rentz (Insight Global, Inc)", + "Astrid Gunne", + "Astrid Rehn", + "Austin Jensen (Insight Global, Inc)", + "Austin Larkin (Insight Global, Inc)", + "Benjamin Arnold (Insight Global, Inc)", + "Benny Hellström", + "Bjarni Gudmundsson", + "Brendan Lauck (Insight Global, Inc)", + "Campbell Tran", + "Cezary Tomczak", + "Chris Barrett (Apex Systems, Inc)", + "Christian Westman", + "Christoffer Hammarström", + "Clayton Vaught", + "Coseo Frerichs (Insight Global, Inc)", + "Cullen Waters", + "Curtis Michael Eichner", + "Dag Oldenburg", + "Daniel Feldt", + "Daniel Frisk", + "Daniel Wustenhoff", + "Danila Dergachev", + "Dario Vodopivec", + "Dartangan Jackson (Ascendion, Inc)", + "Dave Stevens", + "David Dalström", + "David Karlehagen", + "David 'Lion' Kimbro (Insight Global, Inc)", + "David Marby", + "David Reiley (Collabera, LLC)", + "David Roberts (Insight Global, Inc)", + "Delia Varzariu (Globant)", + "Dimitri Kishmareishvili (CSI Interfusion, Inc)", + "Dodge Lafnitzegger (Insight Global, Inc)", + "Dolly Mackwan", + "Don S Frazier II", + "Drew Okenfuss", + "Elijah J Emerson", + "Elliot Strait (Ascendion, Inc)", + "Emelie Sidesiö", + "Emil Hedemalm", + "Emily Black", + "Emily Mattlin", + "Emily Rizzo (Insight Global, Inc)", + "Emily Yellen", + "Eric Grimsborn", + "Erik Broes", + "Erik Bylund", + "Erik Soderberg", + "Esteban Richey (Insight Global, Inc)", + "Esther Peters (Ascendion, Inc)", + "Evelyn Collier (Insight Global, Inc)", + "Evin Watson (Insight Global, Inc)", + "Fenil Shah (Collabera, LLC)", + "Fernando Cerdeira (Globant)", + "Filip Hedenskog", + "Fredrik Bergstrand", + "Gabriel Gerhardsson", + "Gabriel Gessle", + "Gage Way (Insight Global, Inc)", + "Geof Sawaya (Ascendion, Inc)", + "Guillaume Le Chenadec", + "Gustaf Zetterlund", + "Håkan Jonson", + "Håkan Wallin", + "Haley Eisenshtadt", + "Hampus Fristedt", + "Hannes Heijkenskjöld", + "Hazen Miller (Insight Global, Inc)", + "Heather Mace", + "Helena Hjertén", + "Henrik Barratt-Due", + "Herbert Mocke (Ascendion, Inc)", + "Irina Koulinitch", + "Isaac de la Vega", + "Jacob Bergdahl", + "Jakob Horndahl", + "Jakob Pogulis", + "James Klock (Collabera, LLC)", + "James Linden (Insight Global, Inc)", + "James McNatton", + "Jason Chionh", + "Jason Orion Burch", + "Javi Romero (Globant)", + "Jay Sharma (Insight Global, Inc)", + "Jeff 'Dextor' Blazier", + "Jeff Yanick (Ascendion, Inc)", + "Jeffery Yanick (Collabera, LLC)", + "Jeffrey J Jou (Insight Global, Inc)", + "Jeison Salazar (Insight Global, Inc)", + "Jimmy Almkvist", + "Jimmy Janow (Agility Partners, LLC)", + "Joachim Larsson", + "Joakim Ejenstam", + "Joakim Norberg", + "Johan Bernhardsson", + "Johannes Sundqvist", + "John Davis (Collabera, LLC)", + "John Estess (Randstad)", + "John Graf (Collabera, LLC)", + "John Haynes", + "John Littlewood", + "John Wordsworth", + "Johnny Sjöö", + "John-Philip Johansson", + "Jonas Bergström", + "Jonathan M Ortiz", + "Jonathan R Hoof", + "Jorge Antonio Jimenez (Design Laboratory, Inc)", + "Joseph Kichline", + "Josh Letellier", + "Joshua B Davis", + "Joshua Letellier", + "Joshua Owens (Collabera, LLC)", + "Joy Cedor (Ascendion, Inc)", + "Juliana Montes", + "Jun Fu (Ascendion, Inc)", + "Karim A Luccin", + "Kaylee Benoit (Randstad)", + "Kelly Fox (Insight Global Inc)", + "Kelly Keniston (Insight Global, Inc)", + "Kento Murawski (Insight Global, Inc)", + "Khaled Fahmy (Ascendion, Inc)", + "Kirill Mikhel", + "Kristin A Siu", + "Kristoffer Kobosko", + "Larry Ukaoma", + "Leonard Gram", + "Lesia Osovska", + "Levi Stoddard (Insight Global, Inc)", + "Linus Cumselius", + "Lisa Sturm", + "Lizaveta Rubinava (Collabera, LLC)", + "Loïc Benet", + "Loren Merriman (Kalvi Consulting Services, Inc)", + "Louis A Castaneda (Insight Global, Inc)", + "Lucas Carpenter (Collabera, LLC)", + "Lucy Lauzon (Collabera, LLC)", + "Luis A Angel Mex", + "Magnus Bentling", + "Magnus Jäderberg", + "Maksim Ivanov", + "Manoj Manoharan (Ascendion, Inc)", + "Marc Neander", + "Márcio de Oliveira da Silva", + "Marcus Olofsson", + "Maria Katsourani", + "Maria Lemón", + "Markus Arvidsson", + "Markus Magnusson", + "Mårten Helander", + "Martin Hag", + "Martin Hesselborn", + "Martin Nilsson", + "Martin Odhelius", + "Martin Pola", + "Mats Henricson", + "Matthew Guze (WaferWire Cloud Technologies)", + "Matthew Moses (Ascendion, Inc)", + "Matthew Phair", + "Mattias Selin", + "Maxwell Orth (Insight Global, Inc)", + "Maxxwell Plum (Insight Global, Inc)", + "Michael Andersson", + "Michael Chambers (Insight Global, Inc)", + "Michael Klopfenstein (Insight Global, Inc)", + "Michael Malmqvist", + "Michael 'Mikaus' Whiteley", + "Michael Novén", + "Michel Miranda (Globant)", + "Miguel Menindez Segura (Ascendion, Inc)", + "Mikael Malmqvist", + "Mikael Persson", + "Mike Carlson", + "Mike Marven (Insight Global, Inc)", + "Mohamed Fouad Saga", + "Mykhalio Ostapysko (Globant)", + "Nat Meo (Ascendion, Inc)", + "Nathan Gilbert", + "Nathan Sosnovske", + "Nicholas Draper (Insight Global, Inc)", + "Nikita Zetilov", + "Niklas Ekman", + "Norman Skinner (Insight Global, Inc)", + "Osama Balkasem (Collabera, LLC)", + "Oskar Carlbaum", + "Oskar Pedersen", + "Pär Berge", + "Patrick O'Leary", + "Patrick Szafranko (Ascendion, Inc)", + "Patrik Hillgren", + "Paula Roth", + "Pavel Grebnev", + "Peter Larsson", + "Petr Mrázek", + "Petter Holmberg", + "Philip Vieira", + "Poojitha Ponakala", + "Prashant Sharma (Ascendion, Inc)", + "Radha Kotamarti", + "Randy Gonzalez-Murillo (Collabera, LLC)", + "Rashad Murray (Insight Global, Inc)", + "Richard Pihlcrantz", + "Rob Austin", + "Robert Hurley (Ascendion, Inc)", + "Robert Thresher (Collabera, LLC)", + "Robin Somers", + "Robyn R To", + "Rodrick Edwards", + "Roman Timurson (Insight Global, Inc)", + "Rui Ma", + "Rui Xie (Insight Global, Inc)", + "Ryan Holtz", + "Ryan Seaman (Collabera, LLC)", + "Ryan Tyler Rae", + "Samuel Smethurst (Ascendion, Inc)", + "Scott Edsall (Collabera, LLC)", + "Sean Reilly", + "Sebasian Hindefeldt", + "Semih Energin", + "Sina Tamanna", + "Spencer Peterson (Insight Global, Inc)", + "Srinivasa Rao Chatala (Ascendion, Inc)", + "Stacy J Chen", + "Stephen Trigger (Insight Global, Inc)", + "Tanner Pearson (Insight Global, Inc)", + "Taylor M Riviera", + "Theodor Fleming", + "Thomas Guimbretière", + "Thomas Järvstrand", + "Thomas Spalter (Insight Global, Inc)", + "Tim Lindeberg", + "Tobias Möllstam", + "Tomas Alaeus", + "Tomer Braff (Collabera, LLC)", + "Tommy Wallberg", + "Travis Gates (Insight Global, Inc)", + "Udit Gandhi (Ascendion, Inc)", + "Victor Connor", + "Viktor Bergehall", + "Virgilio Jr Blones", + "Vitalii Sych", + "Vladimir Repcak (Collabera, LLC)", + "Volodymyr Belianinov (Ascendion, Inc)", + "Will Van Keulen", + "William Harmon (Insight Global, Inc)", + "Ying Guo (TEKsystems, Inc.)", + "Zack Moxley (Insight Global, Inc)", + "Zane Hintzman", + "Zeshan Ahmed (Ascendion, Inc)" + ] + }, + { + "title": "Lead Architects", + "names": [ + "Greg Snook", + "Peter M. Wiest" + ] + }, + { + "title": "Architects", + "names": [ + "Dom Humphrey", + "Mike Frost", + "Tommaso Checchi" + ] + }, + { + "title": "Launcher", + "names": [ + "Anders Rosén", + "Carl Westin", + "David Zevallos" + ] + }, + { + "title": "Additional Programming", + "names": [ + "Elliot Segal", + "Paul Spooner", + "Ryan Hitchman" + ] + }, + { + "title": "Chief Product Officer", + "names": [ + "Olof Carlson Sandvik" + ] + }, + { + "title": "Head of Games Expansion", + "names": [ + "John Thornton" + ] + }, + { + "title": "Head of Minecraft Atlas", + "names": [ + "Deirdre Quarnstrom" + ] + }, + { + "title": "Production Directors", + "names": [ + "Daniel Kaplan", + "Tyler Jeffers (Formosa)" + ] + }, + { + "title": "Director of Minecraft Online & Marketplace", + "names": [ + "Jessica Zahn" + ] + }, + { + "title": "Director of Bedrock Platform", + "names": [ + "Michael McManus" + ] + }, + { + "title": "Executive Producers", + "names": [ + "Erin Krell", + "Gama Aguilar-Gamez", + "Roger Carpenter" + ] + }, + { + "title": "Production Managers", + "names": [ + "Magdalena Björkman", + "Shah Rahman" + ] + }, + { + "title": "Production Leads", + "names": [ + "Charlotte Backer", + "Christine Platon", + "Sarah Carton", + "Sofie Lundberg" + ] + }, + { + "title": "Producers", + "names": [ + "Aaron Culbreth (Insight Global, Inc)", + "Adele Major", + "Alen Voljevica", + "Allan Contreras (Insight Global, Inc)", + "Anna Holdosi-Simon", + "Anna Jensen", + "Anna Zakipour", + "Annica Strand", + "Annie Desimone (Insight Global, Inc)", + "Ann-Kristin Adwent", + "Anthony Hanses (Insight Global, Inc)", + "Antonina Y Khazova", + "Åsa Skogström", + "Austin Maestre", + "Best Liang", + "Carina Kovacs Lockhart", + "Carina Pettersson", + "Carolin Szymaniak", + "Caylin Kaunas (Randstad)", + "Charlotte Angantyr", + "Chris Casanova", + "Chris Massena (Insight Global, Inc)", + "Christina-Antoinette Neofotistou", + "Christopher Dalid", + "Damian Finn (Lionbridge)", + "Dani Flores (Insight Global, Inc)", + "David Iooss (Randstad)", + "Dayana Sharshukova (Aquent, LLC)", + "Decker Geddes (Insight Global, Inc)", + "Elizabeth Batson (Insight Global, Inc)", + "Emily Steele (Formosa)", + "Emma Erixson", + "Ethan Koltz (Insight Global, Inc)", + "Foluso Akerele", + "Gabrielle Riggir", + "Hampus Nilsson", + "Hedwig Laza", + "Hugo Lang", + "Isaac Barron (Globant)", + "Isabella Arningsmark", + "Jason Rice", + "Jeffrey Carlo (Apex Systems, Inc)", + "Jennifer Lee (Insight Global, Inc)", + "Jewel Chukwufumn, Ifeguni", + "Jillian Brown (TEKsystems, Inc)", + "Johan Grunden", + "Johannes Fridd", + "John Garcia (Collabera, LLC)", + "Jonas Olaussen", + "Josefine Brink", + "Juan Gril", + "Julian Tunru", + "Justin So (Randstad)", + "Justin Woods", + "Justine Loong", + "Kasia Swica", + "Kelly Henckel", + "Kevin Katona (Design Laboratory, Inc)", + "Kyle Lawton", + "Lina Hagman", + "Lisa Bryer", + "Loudon St Hill (Insight Global, Inc)", + "Luis Qiang Liu", + "Marcus Rundström", + "Marie Stålkrantz", + "Markus Waltré", + "Martin Kurtovic", + "Matt Rodgers (eXcell, a division of CompuCom)", + "Megan Rodes (Formosa)", + "Michael Welch (Insight Global, Inc)", + "Moira Ingeltun", + "Natalie Selin", + "Nathan Tompkins (Randstad)", + "Negin Javanmardi", + "Nick Severson", + "Nicole Alers", + "Patrik Hamsten", + "Pontus Åselius", + "Robin Linder", + "Sara Lidberg", + "Seyit Ivhed", + "Sloane Delancer", + "Sofia Orrheim", + "Sofie Lekkas", + "Steph Huske (Allegis Group Services, Inc)", + "Stephanie Chen (Collabera, LLC)", + "Susanne Granlöf", + "Tess Kearney (Formosa)", + "Thomas Feng", + "Tien-Hung Nguyen (TEKsystems, Inc.)", + "Tilde Westrup", + "Trevor McCann (Yoh Services LLC)", + "William C Meyer (Pivotal Consulting, LLC)", + "William Cooper", + "Yesenia Cisneros" + ] + }, + { + "title": "Assistant Producer", + "names": [ + "Warren Loo" + ] + }, + { + "title": "Media Producers", + "names": [ + "André Angerbjörn", + "Ines Quintanar Cardenas" + ] + }, + { + "title": "Product Managers", + "names": [ + "Carmille Gidfors Netzler", + "Erica Lares (Apex Systems, Inc)", + "Halishia Chugani" + ] + }, + { + "title": "Organizational Coaches", + "names": [ + "Jonas Ekstrand", + "Karin Hagren", + "Linda Ahlström Nilsson", + "Martin Bloomstine", + "Rasmus Noah Hansen" + ] + }, + { + "title": "Release Managers", + "names": [ + "Beth Murphy (Kforce, Inc)", + "Dustin Wood (Design Laboratory, Inc)", + "Kyle Rogers (Randstad)", + "Robert Williamson (Apex Systems, Inc)" + ] + }, + { + "title": "Technical Writers", + "names": [ + "Bryce Bortree (Insight Global, Inc)", + "Jim Seaman (Insight Global, Inc)", + "Joshua Jones (Insight Global, Inc)", + "Nate Mackie (TEKsystems, Inc.)" + ] + }, + { + "title": "Technical Program Managers", + "names": [ + "Andy Puntahachart", + "Aysha Davis (Cyborg Mobile LLC)", + "Devarshi Hazarika", + "Dom Arcamone", + "Eloise Espel", + "Emily Price", + "Holly Pollock", + "Joshua Mueller (Apex Systems, Inc)", + "Morgan J. East (Randstad)", + "Roger Duke (Insight Global, Inc)", + "Ryan Seymour (TEKsystems, Inc.)", + "Stephen Frothingham (Wimmer Solutions)" + ] + }, + { + "title": "Localization", + "names": [ + "Amber Wu (Shanghai Wicresoft Co, Ltd.)" + ] + }, + { + "title": "Playtest Coordinators", + "names": [ + "Axel Savage", + "Liam Allman (Aquent, LLC)", + "Ricky White (Randstad)" + ] + }, + { + "title": "Art Directors", + "names": [ + "Alexis Holmqvist", + "Andy Zibits", + "Brad Shuber", + "Daniel Björkefors", + "Kim Petersen", + "Logan Lubera", + "Lynwood Montgomery (Formosa)", + "Ola Lanteli", + "Telemachus Stavropoulos", + "Viktor Blanke", + "Wiktor Persson" + ] + }, + { + "title": "Artist Leads", + "names": [ + "Christine Gutierrez", + "Gustav Embretsen", + "Lisa Hazen", + "Sarah Kisor" + ] + }, + { + "title": "Artists", + "names": [ + "Aleesa Tana (Formosa)", + "Amanda Cook (Harvey Nash, Inc)", + "Andrea Sanchez Sepulveda (Formosa)", + "Bart Kaufman (Randstad)", + "Branden Brushett (Aquent, LLC)", + "Claire Selvog (Formosa)", + "Dylan Sunkel (Collabera, LLC)", + "Elin Ölund Forsling", + "Erin Biafore (Formosa)", + "Erin Caswell (eXcell, a division of CompuCom)", + "Florian Decupper", + "Heath Night (Aquent, LLC)", + "Husein Kurbegovic", + "Jakob Gavelli", + "Jei G Ling (Allegis Group Services, Inc)", + "Jei Ling (Formosa)", + "Jerica Harada (TEKsystems, Inc.)", + "Jesper Hallin", + "Jonatan Pöljö", + "Jules Norcross (Aquent, LLC)", + "Kailey Hara (Formosa)", + "Kate Anderson (Formosa)", + "Kelly Greene (CompuCom Systems, Inc)", + "Kristen Malone (Randstad)", + "Kristoffer Zetterstrand", + "Lilei Yu (Collabera, LLC)", + "Liliia Chorna", + "Linus Chan (Formosa)", + "Marco Vale", + "Mariana Graham Ramirez", + "Mariana Salimena", + "Mark Eash Hershberger (Formosa)", + "Mark Hershberger (Apex Systems, Inc)", + "Mark Reyes (Formosa)", + "Michael R Fiedler (Insight Global, Inc)", + "Miki Bishop (Randstad)", + "Patrick Rodes (Formosa)", + "Phoebe Piepenbrok", + "Poi Poi Chen", + "Richard Worley", + "Rudy Solidarios (Formosa)", + "Salinee Goldenberg (Formosa)", + "Sarah Corean (Formosa)", + "Sarah Martino (Formosa)", + "William Thomas" + ] + }, + { + "title": "Product Designers", + "names": [ + "Affe Piran", + "Jennifer Hammervald", + "Jonathan Gallina", + "Kelsey Ranallo", + "Lisa Dahlström" + ] + }, + { + "title": "Graphic Designers", + "names": [ + "Adrian Leon (Formosa)", + "Dalila Copeland (Formosa)", + "Javier Rodriguez (Formosa)", + "Yong-Namm Lee" + ] + }, + { + "title": "Motion Graphics Designer", + "names": [ + "Gabe Philbin (Randstad)" + ] + }, + { + "title": "Sound Designers", + "names": [ + "Johan Pettersson", + "Kevin Martinez", + "Magnus Mikander", + "Rostislav Trifonov", + "Shauny Jang (Insight Global, Inc)" + ] + }, + { + "title": "Technical Audio Developer", + "names": [ + "Jonatan Crafoord" + ] + }, + { + "title": "Quality Engineers", + "names": [ + "Paul Coada", + "Thommy Siverman", + "Yi Zhao (Kforce, Inc)", + "Zackarias Gustavsson" + ] + }, + { + "title": "Quality Data Analysis & Engineering", + "names": [ + "Jeff MacDermot" + ] + }, + { + "title": "Quality Assessment Specialists", + "names": [ + "Artur Foxander", + "Carl-Johan Tornberg", + "James Marchant", + "Jana Prihodko", + "Kajsa Sima Falck", + "Marcela Castaneda", + "Mimmi Boman-Borjesson" + ] + }, + { + "title": "Software Test Engineers", + "names": [ + "Chris Youngs (Insight Global, Inc)", + "Jared Lesczynski (Experis)", + "Karol Szymański (Lionbridge)", + "Kinga Izdebska (Lionbridge)", + "Konrad Czaplewski (Lionbridge)", + "Marcin Morel (Lionbridge)", + "Mateusz Janiszewski (Lionbridge)", + "Robert Alvarez (Experis)", + "Tevis Campbell (Experis)" + ] + }, + { + "title": "Test Associates", + "names": [ + "Arkadiusz Grzanka (Lionbridge)", + "Damian Bartak (Lionbridge)", + "Daryna Kalashnova (Lionbridge)", + "Dominik Głowacki (Lionbridge)", + "Ermias Tesfaye (Lionbridge)", + "Evan Armstrong (Experis)", + "Heorhii Lystopad (Lionbridge)", + "Ignacy Kukliński (Lionbridge)", + "Jakub Kliś (Lionbridge)", + "John Castro Chico (Insight Global, Inc)", + "Kacper Lędzion (Lionbridge)", + "Kacper Pućka (Lionbridge)", + "Kacper Stalewski (Lionbridge)", + "Kamil Wiktorowski (Lionbridge)", + "Karol Mikusek (Lionbridge)", + "Karolina Malik (Lionbridge)", + "Korentin Delisle (Lionbridge)", + "Mikołaj Szadkowski (Lionbridge)", + "NIck Latino (Insight Global, Inc)", + "Paulina Prus (Lionbridge)", + "Rion Cox (Lionbridge)", + "Robert Thomas (Insight Global, Inc)", + "Sophie James (Lionbridge)", + "Teresa Stelmach (Lionbridge)", + "Zakery Haynes (Experis)" + ] + }, + { + "title": "Test Managers", + "names": [ + "Ian S. Nelson (Experis)", + "Marcus King (Experis)" + ] + }, + { + "title": "Team Leads", + "names": [ + "Kamil Kostrzewa (Lionbridge)", + "Zuzanna Gieszcz (Lionbridge)" + ] + }, + { + "title": "Test Lead", + "names": [ + "Alan Aclon (Insight Global, Inc)" + ] + }, + { + "title": "User Experience Design Directors", + "names": [ + "Stephen Whetstine", + "Tobias Ahlin" + ] + }, + { + "title": "User Experience Designers", + "names": [ + "Clory Luo (Formosa)", + "Connor Tompsett (CompuCom Systems, Inc)", + "Eric Alm", + "Gaby Salinas", + "Jin Shin", + "Jonathan Paton Gallina", + "Kailin Li (TEKsystems, Inc.)", + "Lily Ekman", + "Lucas Morales Sousa", + "Melissa Kay (Prieto)", + "Nirali Vadera (Ascendion, Inc)", + "Oscar Nilsson", + "Sabrina Cuevas-Pagoaga (Randstad)", + "Sam Paye (Aquent, LLC)", + "Sandra Bornemark", + "Sarah Mack (Digital Intelligence Systems, LLC)", + "Shaun Basil Mendonsa", + "William Hollowell" + ] + }, + { + "title": "User Experience Writer", + "names": [ + "Juan Buis" + ] + }, + { + "title": "User Experience Intern", + "names": [ + "Axel Grefberg" + ] + }, + { + "title": "User Research Lead", + "names": [ + "Jerome Hagen" + ] + }, + { + "title": "User Researchers", + "names": [ + "Melissa Boone", + "Olga Zielinska", + "Pablo Morales" + ] + }, + { + "title": "Head of Creator Marketplace", + "names": [ + "Aaron Buckley" + ] + }, + { + "title": "Business Director, Minecraft Game", + "names": [ + "Jesper Altren" + ] + }, + { + "title": "Directors of Business Management", + "names": [ + "Stephen McHugh" + ] + }, + { + "title": "Director of Business Planning", + "names": [ + "Adam Tratt" + ] + }, + { + "title": "Director of Business Development", + "names": [ + "Cherie D Lutz" + ] + }, + { + "title": "Project Director", + "names": [ + "Jakob Porsér" + ] + }, + { + "title": "Operations Managers", + "names": [ + "Anna Hamilton", + "Barbara Acevedo Visser (Lions and Tigers)", + "Carl Kyhlberg", + "Ellen Hahm", + "Gustav Roth", + "Kaya Hatcher", + "Mira Aboulhoson", + "Sarah Grimmond" + ] + }, + { + "title": "Business Development Managers", + "names": [ + "Ellen Deng (JeffreyM Consulting, LLC)", + "Jordan Comar (Digital Intelligence Systems, LLC)", + "Maru Zamora", + "Nick Gallagher (Digital Intelligence Systems, LLC)", + "Ryan Eng (Aerotek, Inc)" + ] + }, + { + "title": "Program Managers", + "names": [ + "Amador Abreu (Insight Global, Inc)", + "Aria Azizi", + "Brian Canning (Experis)", + "Clint Baggett (Experis)", + "Helene Aku Brown", + "James Pfeiffer (Experis)", + "Jonathan Hartung-Jenkins (my3Twelve, LLC)", + "Julie Olden", + "Kaiwen Li (Populus Group, LLC)", + "Liz Butowicz (Bluehawk LLC)", + "Maria Olekheyko", + "Mark Fredo (Aerotek, Inc)", + "Mary Elizabeth Pearson (Apex Systems, Inc)", + "May Qiang (my3Twelve, LLC)", + "Meenoo Rami", + "Natalie Haggin (Simplicity Consulting Inc.)", + "Phillip Wang (Digital Intelligence Systems, LLC)", + "Steven Hosey (Simplicity Consulting Inc.)", + "Stuart U (my3Twelve, LLC)", + "Tess Opincarne (Amaxra)", + "Timothy J Ross (Simplicity Consulting Inc.)", + "Todd Agnello (TEKsystems, Inc)", + "Tori Park (Cypress Human Capital)", + "Wendy Gorton" + ] + }, + { + "title": "Business Managers", + "names": [ + "Bill Wu", + "Claudine Ursino (Simplicity Consulting Inc.)", + "Dana Friesen (Insight Global, Inc)", + "Daniel Beasley", + "Emily Clock", + "Jennifer Cox (Aston Carter, Inc)", + "Leslie Tullis", + "Matthew Ortegon (Rylem)", + "Sarah Souza (Epitec Inc)", + "Vanessa Dagnino (Simplicity Consulting Inc.)" + ] + }, + { + "title": "Business Analysts", + "names": [ + "Alvin M Chin (Populus Group, LLC)", + "Keiko Ramer (Apex Systems, Inc)", + "Zheng Wang (Populus Group, LLC)" + ] + }, + { + "title": "Lead Project Manager", + "names": [ + "Vera Mirchev" + ] + }, + { + "title": "Intellectual Property Enforcement Leads", + "names": [ + "Mathias Andersson", + "Teresa Lee Rodewald" + ] + }, + { + "title": "Intellectual Property Enforcement Agents", + "names": [ + "Johan Hedlund", + "Marcus Forss", + "Matilda Åkerman", + "Sylvia Chen" + ] + }, + { + "title": "People Operations Director", + "names": [ + "Briana Roberts" + ] + }, + { + "title": "People Experience Manager", + "names": [ + "Maria Keisu Nolberg" + ] + }, + { + "title": "HR Directors", + "names": [ + "Dave Hill", + "Maja Samuelsson", + "Nia Parker" + ] + }, + { + "title": "Human Resources", + "names": [ + "Alexandra Ward", + "Anna Lyth", + "Aron Glauser", + "Charlie Bjurström", + "Emma Bergström", + "Jennie Sjöman", + "Jonas Bergelli", + "Katarina Starendal", + "Kristian Idehaag", + "Maria Sjöman", + "Marie Tolf", + "Milica Tesic Stojanovic", + "Petra Stenqvist", + "Richard Nelléus", + "Sasa Stamenkovic", + "Simon Taylor", + "Ulrika Karlsson", + "Ulrika Wörding", + "Veronica Camaj Ericson", + "Viktoria Petersson" + ] + }, + { + "title": "Talent Acquisition", + "names": [ + "Aimée Narfström", + "Elnaz Tajahmadi Tabrizi", + "Filip Hultin", + "Hanan Naamneh", + "Ida Utterström", + "Roza Kawa", + "Sofia Lindquist", + "Tove Oldebäck", + "Vidar Bjurström" + ] + }, + { + "title": "Office Managers", + "names": [ + "Alex Andersson", + "Charlotte Wredesjö", + "Jill Curran", + "Linn Hultman", + "Mikaela Prim", + "Siri Hoel" + ] + }, + { + "title": "Office Coordinators", + "names": [ + "Even Hadeghe", + "Malin Strand", + "Sandra Odmark" + ] + }, + { + "title": "Executive Business Administrators", + "names": [ + "Cathy Wickersham", + "Darla J Barrett", + "Judith L. Wheeler", + "Katy Hanson", + "Lisa Liu", + "Rachael Cox", + "Theresa Chin" + ] + }, + { + "title": "Business Administrator", + "names": [ + "Shae M. Flanigan (C2S Technologies, Inc)" + ] + }, + { + "title": "Administrative Support", + "names": [ + "Carol Stearns (Experis)", + "Paul Gradwohl (Experis)" + ] + }, + { + "title": "Front of House", + "names": [ + "Adam Blänning", + "Chaimae Truving", + "Eliza Lancelot", + "Felicia Björn Nordling" + ] + }, + { + "title": "IT Managers", + "names": [ + "Adam MacDowall" + ] + }, + { + "title": "IT", + "names": [ + "Alexandre Pretto Nunes", + "Anton Wu", + "Carl Johan Svärd", + "Cesar Sima Falck", + "Daniel Miller (Insight Global, Inc)", + "Derek Wilson (my3Twelve, LLC)", + "Dessie Andersson (Centric Professionals AB)", + "Eetu Närhi", + "Evelina Rollfelt", + "Fabian Norlin", + "Frida Karlsson", + "Henrik Lindgren", + "John Klervad", + "Morris Kellokoski", + "Natalia Filapek", + "Ondrej Magath", + "Przemyslaw Elwart", + "Rickard Randa Hedvall", + "Shoaib Hosseini", + "Stephanie De Leeouv Markov", + "Vanessa Butt", + "Yaser Mosavi" + ] + }, + { + "title": "Automation Support", + "names": [ + "Bill Erhard (Insight Global, Inc)", + "Gregory D Searing (WaferWire Cloud Technologies)", + "Johnny Cocks (Collabera, LLC)", + "Matthew Gustaff (Digital Intelligence Systems, LLC)", + "Sean Connolly (Insight Global, Inc)" + ] + }, + { + "title": "DevOps Engineer", + "names": [ + "Chris Ilson (Collabera, LLC)" + ] + }, + { + "title": "Data Engineering", + "names": [ + "Addy Deodikar (Design Laboratory, Inc)", + "Patrick Worthey" + ] + }, + { + "title": "Data and Analytics Lead", + "names": [ + "Warren Durrett" + ] + }, + { + "title": "Analytics Environment Engineering", + "names": [ + "Nitesh Kulkarni (Manpower Services Canada Limit)", + "Saif Adeeb (Ascendion, Inc)", + "Vini De Lima De Sousa (0965688 BC Ltd)" + ] + }, + { + "title": "Data Science", + "names": [ + "Abby Jaloway (National Business Innovations)", + "Akshaya Renganathan (KellyMitchell Group, LLC)", + "Anh Ying Lang (Design Laboratory, Inc)", + "Brynjólfur Erlingsson", + "Conor Maguire (KellyMitchell Group, LLC)", + "Cyrus Rustomji (KellyMitchell Group, LLC)", + "Daniel Camarena (KellyMitchell Group, LLC)", + "Darin LaSota (Design Laboratory, Inc)", + "David Heller (KellyMitchell Group, LLC)", + "Dusanka Poljak (Design Laboratory, Inc)", + "Emma Matilda Charlotte Kalzen", + "Erin Michet", + "Ethan Batson (Design Laboratory, Inc)", + "Forrest Wheeler (Insight Global, Inc)", + "Gil Darves (Design Laboratory, Inc)", + "Jake Kelly", + "Jari Williams", + "Jonathan Bush (KellyMitchell Group, LLC)", + "Jonathan Selenkow (Allegis Group Services, Inc)", + "Joseph Bushagour (KellyMitchell Group, LLC)", + "Julianne Toto (Kelly Management Services, Inc)", + "Krishan Deo (Allegis Global Solutions)", + "Marie-Claire Kore (Agility Partners, LLC)", + "Matilda Eriksson", + "Max Davidson", + "Megan Henry (KellyMitchell Group, LLC)", + "Melissa Alleyne", + "Michael Hernandez (Insight Global, Inc)", + "Murali Nagarajan (Design Laboratory, Inc)", + "Nick Martin (Design Laboratory, Inc)", + "Pawan Panaganti (Design Laboratory, Inc)", + "Ricardo Silva Oquendo (KellyMitchell Group, LLC)", + "Simona Pirani", + "Srini Viswanatham (Design Laboratory, Inc)", + "Tejasvini Deshpande (KellyMitchell Group, LLC)", + "Tim Ross (Simplicity Consulting Inc.)", + "Tong Shen (KellyMitchell Group, LLC)", + "Yuvaraj Duraisamy (Design Laboratory, Inc)" + ] + }, + { + "title": "Head of Player Operations", + "names": [ + "Aubrey Norris" + ] + }, + { + "title": "Player Support Leads", + "names": [ + "Mattias Jacob Victorin", + "Mattias Victorin" + ] + }, + { + "title": "Player Support Operations Manager", + "names": [ + "Melissa Kiss" + ] + }, + { + "title": "Player Support", + "names": [ + "Amelia Lindroth Henriksson", + "Ana Barata Martins", + "Andrea Jörgensen", + "Andreas Andersson", + "Andrew Lee (Apex Systems, Inc)", + "Angehlica Walling", + "Annika Tripke-Lund", + "Anton Albiin", + "Antonia Kousathana", + "Carl Johnsson", + "Cim Borg", + "Dan Coronel (Apex Systems, Inc)", + "Dante Stjernberg", + "David Carlsson", + "David Stuart Dahlgren", + "Dominick Folletti (TEKsystems, Inc)", + "Elin Frykholm", + "Eliza Hearsum", + "Ellie Ashrafi", + "Erik Nordberg", + "Fredrik Henriksson", + "Fredrik Sandström", + "Freja Fors", + "Henrik Davallius", + "Henry Shi", + "Isabell Ahron", + "Jeffrey Riendeau", + "Joe Liu", + "Jonny Hair", + "Kevin Vesterlund", + "Kyle McMurtry (TEKsystems, Inc.)", + "Mike Till", + "Nasim Derakhshan", + "Nicole Jansson", + "Nima Tolouifar", + "Patrik Södergren", + "Rabi Hadad", + "Robert Miskiewicz", + "Robin Cocks", + "Robin Thunström", + "Rui Ribero", + "Samuel Gonzalez (TEKsystems, Inc)", + "Sarah Mårtensson", + "Taylor Smith (Apex Systems, Inc)", + "Theodor Colbing", + "Valérie Beaubien", + "Viktor Persson" + ] + }, + { + "title": "Brand Director", + "names": [ + "Jonathan Symington" + ] + }, + { + "title": "Head of Creative Production", + "names": [ + "Katharina Hautz" + ] + }, + { + "title": "Lead Producer - Brand Experience", + "names": [ + "Karim Walldén" + ] + }, + { + "title": "Media Director", + "names": [ + "Hans Abrahamsson" + ] + }, + { + "title": "Chief Storyteller", + "names": [ + "Lydia Winters" + ] + }, + { + "title": "Head of Creative Communications", + "names": [ + "Thomas Wiborgh" + ] + }, + { + "title": "Director of Communications", + "names": [ + "Regan O'Leary" + ] + }, + { + "title": "Communications Managers", + "names": [ + "Adam Pannel (Assembly Media, Inc)", + "Christopher de Haan (Simplicity Consulting Inc)", + "Elias Arnehall", + "Hollis Wacker-Leja", + "Jane Billet", + "Jessica Xie", + "John Schork", + "Katie Guo (Assembly Media, Inc)", + "Rebecca Gordius" + ] + }, + { + "title": "Content Coordinators", + "names": [ + "Adam Martinsson", + "Andreas Thomasson", + "Sara Lempiäinen" + ] + }, + { + "title": "Communications Editors", + "names": [ + "Marsh Davies", + "Tom Stone" + ] + }, + { + "title": "Assembly Media, Inc", + "names": [ + "Alli Cohen", + "Christian Delgado", + "Erin Dwyer", + "Jessie Steinberg", + "Richard Chen", + "Vanessa Mora" + ] + }, + { + "title": "Creative Writers", + "names": [ + "Emily Richardson", + "Sofia Dankis" + ] + }, + { + "title": "Lead Web Developer", + "names": [ + "Mark Jawad" + ] + }, + { + "title": "Web Designers", + "names": [ + "Paul Madlon (Ten Gun Design, Inc)", + "Taylor Kasony (eXcell, a division of CompuCom)" + ] + }, + { + "title": "Social Media Leads", + "names": [ + "Alice Löfgren", + "Amelia Dale", + "Sara Reiner" + ] + }, + { + "title": "Social Media Managers", + "names": [ + "Aleksander Gilyadov (Aston Carter Inc)", + "Alex Fleck (Adecco)", + "Chad Oetken (Troy Consulting LLC)", + "David Ramos (Collabera, LLC)", + "Jeremy Chan (Aerotek, Inc)", + "Natascha Cox", + "RJ Lesterio (Ranstad)", + "Ross Keatley" + ] + }, + { + "title": "Community Managers", + "names": [ + "Cameron Thomas", + "DèJa Easter (Apex Systems, Inc)", + "Glory Robinson (Experis)", + "Helen Zbihlyj", + "Matt Martin", + "Nadine Ebri (Apex Systems, Inc)", + "Trella Rath (Corestaff)" + ] + }, + { + "title": "Content Manager", + "names": [ + "Niclas Fredriksson" + ] + }, + { + "title": "Publishing Editor", + "names": [ + "Jay Castello" + ] + }, + { + "title": "Head of Marketing", + "names": [ + "Jessica Freeman" + ] + }, + { + "title": "Marketing Managers", + "names": [ + "Ankita Rao", + "Ashley Davidson (Simplicity Consulting Inc.)", + "Bianca Ciotti", + "Cori Anne Montero", + "Danielle Ma", + "Delilah Liu", + "Didac Hormiga", + "Eva Stefanac", + "Gabi Ibarra (Simplicity Consulting Inc.)", + "Nathaniel Wipfler", + "Stephanie Gielarowski (Ascendion Inc)" + ] + }, + { + "title": "Head of Legal", + "names": [ + "Carl Brant", + "Christi Davisson" + ] + }, + { + "title": "Legal Counsel", + "names": [ + "Tricia Geyer" + ] + }, + { + "title": "Finance Managers", + "names": [ + "Evan Dowdell", + "Katarina Norlander" + ] + }, + { + "title": "Financial Accountants", + "names": [ + "Aleksandra Dragosavljevic", + "Camilla Brantefelt", + "Jelena Pejic", + "Karin Severinson", + "Kristina Ilic", + "Natalie Levinsson" + ] + }, + { + "title": "Financial Consultants", + "names": [ + "Stefan Lyrmark", + "Ulrika Kihl" + ] + } + ] + } + ] + }, + { + "section": "Studios Quality Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Quality Director", + "names": [ + "Tony Rado" + ] + }, + { + "title": "Quality Managers", + "names": [ + "Chris Henry", + "Rob Straavaldson", + "Tyler Moeller" + ] + }, + { + "title": "Quality Leads", + "names": [ + "Craig Marshall", + "Dan Pipinich", + "Hakim Ronaque", + "Jennifer Monaco", + "Michael McCormack", + "Rich Levy", + "Salim Jarrouge", + "Tony Harlich" + ] + }, + { + "title": "Quality Engineers", + "names": [ + "Akshata Trivedi", + "Ben Weber", + "Chelsi Hohnbaum", + "Fiona Belmont", + "Herve Iradukunda", + "Ryan Mayes" + ] + }, + { + "title": "Quality Analyst", + "names": [ + "Yi Zhao (Kforce)" + ] + }, + { + "title": "Program Managers", + "names": [ + "Justin Ice (Pivotal Consulting)", + "Misti Lommen", + "Norah Hogoboom (Insight Global, Inc)" + ] + }, + { + "title": "Software Engineers", + "names": [ + "Aaron Amlag", + "Dustin Randall", + "Jay Baxter", + "Moodie Ghaddar", + "Paula Yuan", + "Scott Lindberg" + ] + }, + { + "title": "Data Engineers", + "names": [ + "Christian Koguchi", + "Kai VanDrunen", + "Patrick Fraioli" + ] + }, + { + "title": "Team Leads", + "names": [ + "Anna Wróbel (Lionbridge)", + "Kamil Bazydło (Lionbridge)", + "Tomasz Bokotko (Lionbridge)", + "Wojciech Kujawa (Lionbridge)" + ] + }, + { + "title": "Test Leads", + "names": [ + "Barry Doyle (Insight Global, Inc)", + "Chris James (Insight Global, Inc)", + "Christopher Wilson (Experis)", + "Robert Green (Experis)" + ] + }, + { + "title": "Software Test Engineers", + "names": [ + "Agata Dzideczek (Lionbridge)", + "Antoine Brown (Experis)", + "Brendan McElroy (Insight Global, Inc)", + "Brian Lareau (Experis)", + "Brooke Chapman (Experis)", + "Cameron Harris (Experis)", + "Crystal Edwards (Insight Global, Inc)", + "Dan Parker (Insight Global, Inc)", + "Eric Saxon (Experis)", + "Eugeniusz Kosieradzki (Lionbridge)", + "Isaac Dudley (Insight Global, Inc)", + "Jack Ellis (Experis)", + "Jakub Kwiatkowski (Lionbridge)", + "James Lawrence (Experis)", + "Jessica Armstrong (Experis)", + "John Ehresmann (Experis)", + "Kaitlyn Grace (Experis)", + "Katarzyna Moskalewicz (Lionbridge)", + "Kevin Gittens (Experis)", + "Kyle Rennie (Experis)", + "Leon Langston (Insight Global, Inc.)", + "Maciej Łajszczak (Lionbridge)", + "Mariusz Gil (Lionbridge)", + "Mariusz Podgórski (Lionbridge)", + "Michał Cieślak (Lionbridge)", + "Michelle Elbert (Experis)", + "Miłosz Kahlan (Lionbridge)", + "Patryk Telus (Lionbridge)", + "Robert Cleveland (Experis)", + "Rochishni Kolli (Experis)", + "Samuel Tharp (Experis)", + "Sean Colbert (Experis)", + "Sean Dugan (Experis)", + "Tess E Krimchansky (Experis)", + "Traci Jenkins (Experis)", + "Zofia Lenarczyk (Lionbridge)" + ] + }, + { + "title": "Test Associates", + "names": [ + "Adam Krasieńko (Lionbridge)", + "Adam Prażmo (Lionbridge)", + "Adrianna Zalewska (Lionbridge)", + "Agata Bidelska (Lionbridge)", + "Alaric Trevers (Experis)", + "Aleksander Skiba (Lionbridge)", + "Alex Richardson (Lionbridge)", + "Andrzej Wojciechowski (Lionbridge)", + "Austin Keeling (Experis)", + "Bartłomiej Dziurżyński (Lionbridge)", + "Bartłomiej Figiel (Lionbridge)", + "Bartłomiej Mareczko (Lionbridge)", + "Bartosz Brzeziński (Lionbridge)", + "Bartosz Kuchta (Lionbridge)", + "Bartosz Szklarzyński (Lionbridge)", + "Bartosz Urbankowski (Lionbridge)", + "Brian Sears (Experis)", + "Cezary Kociński (Lionbridge)", + "Cezary Wojewoda (Lionbridge)", + "Damian Golik (Lionbridge)", + "Daniel Justyna (Lionbridge)", + "Daniel Wystyrk (Lionbridge)", + "Eliza Duda (Lionbridge)", + "Emmanuelle Rodrigues Nunes (Lionbridge)", + "Eryk Czerski (Lionbridge)", + "Eva Horvath (Lionbridge)", + "Filip Gwarda (Lionbridge)", + "Filip Muchin (Lionbridge)", + "Grzegorz Irek (Lionbridge)", + "Grzegorz Wilkołek (Lionbridge)", + "Jacek Petela (Lionbridge)", + "Jan Gąsiorowski (Lionbridge)", + "Jan Prejs (Lionbridge)", + "Jan Zozman (Lionbridge)", + "Jared Arbaugh (Experis)", + "Jocylyn Engstrom (Experis)", + "Jonathan Garcia (Experis)", + "Jonathon Ervin (Experis)", + "Jordan Leeper (Lionbridge)", + "Justin Jones (Lionbridge)", + "Justin Smick (Experis)", + "Kacper Kobyliński (Lionbridge)", + "Kacper Krupa (Lionbridge)", + "Kamil Konarski (Lionbridge)", + "Kamil Marut (Lionbridge)", + "Kamil Owczarczyk (Lionbridge)", + "Karol Kotowicz (Lionbridge)", + "Karol Sobotka (Lionbridge)", + "Karolina Otłowska (Lionbridge)", + "Katarzyna Jaworska (Lionbridge)", + "Katarzyna Smektalska (Lionbridge)", + "Konrad Meysztowicz-Wiśniewski (Lionbridge)", + "Krzysztof Jeżak (Lionbridge)", + "Krzysztof Połomski (Lionbridge)", + "Łukasz Gołąb (Lionbridge)", + "Łukasz Sajnóg (Lionbridge)", + "Łukasz Walczyński (Lionbridge)", + "Maciej Brzeziński (Lionbridge)", + "Maciej Kienig (Lionbridge)", + "Magdalena Ścisłowska (Lionbridge)", + "Magdalena Tomaszewska (Lionbridge)", + "Maksymilian Kałucki (Lionbridge)", + "Maksymilian Kowalski (Lionbridge)", + "Małgorzata Janiszewska (Lionbridge)", + "Marcin Papadopoulos-Gajda (Lionbridge)", + "Marcin Szałek (Lionbridge)", + "Marco Paparella (Lionbridge)", + "Marek Urbański (Lionbridge)", + "Maria Wypych (Lionbridge)", + "Marvin Melitante (Experis)", + "Mateusz Kaliszewski (Lionbridge)", + "Mateusz Majewski (Lionbridge)", + "Mateusz Miturski (Lionbridge)", + "Mateusz Tran Van (Lionbridge)", + "Melchior Lewandowski-Wołosz (Lionbridge)", + "Michał Antosiak (Lionbridge)", + "Michał Młynek (Lionbridge)", + "Michał Szewczyk (Lionbridge)", + "Michał Woś (Lionbridge)", + "Monika Elandt (Lionbridge)", + "Nijat Aghamali (Lionbridge)", + "Patrick Chigges (Experis)", + "Patryk Rosiński (Lionbridge)", + "Paweł Chruszczewski (Lionbridge)", + "Paweł Kumanowski (Lionbridge)", + "Paweł Neścior (Lionbridge)", + "Piotr Biernacki (Lionbridge)", + "Piotr Gryczan (Lionbridge)", + "Piotr Jurek (Lionbridge)", + "Piotr Kolendo (Lionbridge)", + "Piotr Łowin (Lionbridge)", + "Piotr Retel (Lionbridge)", + "Piotr Słomka (Lionbridge)", + "Piotr Zieliński (Lionbridge)", + "Przemysław Goch (Lionbridge)", + "Przemysław Malinowski (Lionbridge)", + "Przemysław Wróbel (Lionbridge)", + "Rafał Brzostowski (Lionbridge)", + "Rafał Pruszkowski (Lionbridge)", + "Rafał Sapała (Lionbridge)", + "Rajkumar Kulandaivelu (Lionbridge)", + "Robert Wypasek (Lionbridge)", + "Ryan Atwater (Experis)", + "Ryszard Kowalczyk (Lionbridge)", + "Sandra Meister (Lionbridge)", + "Sedona Storks (Lionbridge)", + "Šimon Kravár (Lionbridge)", + "Stanisław Dmowski (Lionbridge)", + "Stephanie Lara (Experis)", + "Szymon Mazurek (Lionbridge)", + "Szymon Okoń (Lionbridge)", + "Taylor Branim (Experis)", + "Tomasz Mirkiewicz (Lionbridge)", + "Tomasz Orlecki (Lionbridge)", + "Tomasz Selwat (Lionbridge)", + "Tomasz Sporczyk (Lionbridge)", + "Tomasz Zdrzalik (Lionbridge)", + "Tori Gasca (Experis)", + "Tyler Gladstone (Experis)", + "Tyler Riojas (Experis)", + "Weronika Smoleń (Lionbridge)", + "Wojciech Komada (Lionbridge)", + "Wojciech Nieckarz (Lionbridge)", + "Zuzanna Wielkopolan (Lionbridge)" + ] + }, + { + "title": "Studios Quality Special Thanks", + "names": [ + "Adrian Brown – Data Science Manager", + "Andrew Franklin – Outsourcing Manager", + "Chad Rankin – Client Account Director (Experis)", + "Dante Carrasco – Business Manager", + "David Boker – Director XGS Business Operations", + "Gavin Kennedy (Experis)", + "James Fry – Quality Director, Studios Quality UK", + "Jimmy Bischoff – Director of Quality, Studios Quality", + "Julie Loucks (Experis)", + "Kenna Gillooly – Executive Business Administrator", + "Lucas Rathburn (Experis)", + "Matthew Call – Software Engineering Manager", + "Zachary Bohnenkamp – Center of Excellence (Experis)" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Blackbird Interactive Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Technical Director", + "names": [ + "James Fairweather" + ] + }, + { + "title": "Programmers", + "names": [ + "Aaron Freytag", + "Andrew Yuennan", + "Anish Shenwai", + "Ben Jones", + "Bhavesh Gupta", + "Branko Bajcetic", + "Christina Oh", + "Christopher Whitman", + "Curtis Hodgins", + "Daniel Gold", + "Darren Grant", + "Duarte Maia", + "Dylan Reviczky", + "Elizabeth Pieters", + "Eric Dahl", + "Erick Tavares", + "Gupta Bhavesh", + "Hugo Burd", + "Jacky Cai", + "Jakob Trounce", + "Kevin Yu", + "Koki Pan", + "Riley Godard", + "Samuel Lapointe", + "Sandro Furini", + "Thomas Paterson", + "Umut Polat", + "Vlad Ryzhov", + "Youhan Guan", + "Zehao Lu" + ] + }, + { + "title": "Producers", + "names": [ + "Alex Sharp", + "David McKay", + "Kelsey Primar", + "Matt Kernachan", + "Paul Pera", + "Russell White" + ] + }, + { + "title": "Designers", + "names": [ + "Tyler Nilsson", + "Vidhi Shah" + ] + }, + { + "title": "UI Artist", + "names": [ + "Richelle Brunt" + ] + }, + { + "title": "UX Designer", + "names": [ + "Sam Flores" + ] + }, + { + "title": "Quality Assurance Director", + "names": [ + "Max McNiven" + ] + }, + { + "title": "Lead Quality Assurance Analysts", + "names": [ + "JP Canita", + "Ryan LeMesurier" + ] + }, + { + "title": "Quality Assurance Analysts", + "names": [ + "Jamie Cheung", + "Jonathan Lin", + "Kelsey Gottschlich", + "Richard Kim", + "Wes Trevor" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - CSI Interfusion Inc Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Software Engineers", + "names": [ + "Aidan Gao", + "Alan Fu", + "Albert Jin", + "Alex Chen", + "Alexey Qian", + "Alfred Wang", + "Arvin Zhang", + "Bob Wang", + "Dowen Zhu", + "Eric Jia", + "Fernly Li", + "Harris Zhou", + "Hong Chao Fang", + "Jana Rogers", + "Jason Zhang", + "Jeff Zhang", + "Jeremy Robinson", + "Johnny Guo Xiao", + "Kiren Li", + "Leon Wang", + "Martin Zhen", + "Michael Braley", + "Neo Yu", + "Robert Wang", + "Robin Lu" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Disbelief Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Producers", + "names": [ + "Grue Robinson", + "Robin Billadeau", + "Stacey Gray" + ] + }, + { + "title": "Associate Producer", + "names": [ + "Andrew Sharp" + ] + }, + { + "title": "Senior Programmer", + "names": [ + "Andrew Durnford" + ] + }, + { + "title": "Programmers", + "names": [ + "Caden Parker", + "Eric Nguyen", + "Kainin Tankersley", + "Luke Mayo", + "Tanner Willis", + "Yuhan Wu" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Red Lens Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "GM & Development Director", + "names": [ + "Kyle Walsh" + ] + }, + { + "title": "Dev Leads", + "names": [ + "Arend Danielek", + "Stephen Chiavelli" + ] + }, + { + "title": "Tech Leads", + "names": [ + "André Tremblay", + "Henry Lisowski III", + "Kelby Lawson", + "Nathan Carlson", + "Ryan Edgemon" + ] + }, + { + "title": "Production Director", + "names": [ + "Allie Murdock" + ] + }, + { + "title": "Producer", + "names": [ + "Hollie Brown" + ] + }, + { + "title": "Software Engineers", + "names": [ + "Alan Nelson", + "Alex Green", + "Alex Gregory", + "Anna Semenets", + "Christopher Kohnert", + "Dane Curbow", + "Dylan Washburne", + "Grant Wynn", + "Joshua Claeys", + "Lorenzo DeMaine", + "Ryan Davison", + "Ryota Dan", + "Sapphira Riza", + "Tim Royal", + "Tyler Perry", + "Zach Bowman", + "Zeke Lasater" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - SiProgs Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Software Engineers", + "names": [ + "Anton Mateasik", + "Martin Kusnier", + "Milos Bazelides", + "Vladimir Sisolak" + ] + }, + { + "title": "Software Test Engineers", + "names": [ + "Frantisek Beke", + "Marianna Sunova" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Skybox Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "", + "names": [ + "Adam Bryant", + "Adrian Smith", + "Alex MacKay", + "Alfonso Muñoz", + "Alina Varela", + "Amandeep Malhi", + "Amy Liu", + "Amy Zhao", + "Arta Seify", + "Ashlyn Gadow", + "Baktash Abdollah-Shamshir-saz", + "Blair Hitchens", + "Bren Lynne", + "Carsten Hooker", + "Casey White", + "Chander Siddarth", + "Chris Klassen", + "Chuan Shi Yu", + "Cody Clattenburg", + "Cole Pollock", + "Cyro Paulino da Costa Jr", + "Dan Wesley", + "Dave MacLean", + "David Getley", + "Dayna Cassidy", + "Dee Rueter", + "Diana Jutras", + "Felipe Mauricio", + "Gabriel J. Gonzalez", + "Gary Shaw", + "Gary Texmo", + "Ghafur Remtulla", + "Gordon Tisher", + "Graham Laverty", + "Graham Park", + "Guillermo Trejo Torres", + "Gursaanj Singh Bajaj", + "Gustav Louw", + "Hamza Khachan", + "Hiren Amin", + "Houman Gholami", + "Ilya Solnyshkin", + "Isaac Calon", + "Jacob Jensen", + "Jagger Nast", + "Jai Kristjan", + "Jake Megrian", + "Jake Roman-Barnes", + "Jason Allen", + "Jeffrey Chou", + "Jeffrey Yamasaki", + "Jesse Taylor", + "Jessica Muniz", + "Joel Stack", + "Jordan Pongracz", + "Jorge Amengol", + "Joseph Cameron", + "Josue Pacheco", + "Jun Luo", + "Justin Moon", + "Kelsey Zirk", + "Keven Nguyen", + "Kevin Hsu", + "Kris Morness", + "Kyra Yung", + "Leonardo Stark", + "Marc Faulise", + "Marcel Brake", + "Matheus Depra Gudergues", + "Matt Klassen", + "Mauricio A. P. Burdelis", + "Mitch Armstrong", + "Mitch Dawdy", + "Mitch Filmer", + "Mitch Lockhart", + "Oliver Cannon", + "Olivia Chung", + "Orhun Erkilic", + "Oscar Yang", + "Paul Baker", + "Pedro Kauti", + "Peter Martin", + "Peter Zhang", + "Piotr Wiacek", + "Pope Kim", + "Prithiraj Ghosh", + "Rex Bai", + "Rey Brassard", + "Richard Hawkes", + "Rick Huang", + "Rohit Moni", + "Ronald Ariel Kamanga", + "Russell Gillette", + "Sam Martens", + "Sean Siemens", + "Serge Lansiquot", + "Shaun Foley", + "Shiva Gupta", + "Sim Sahin", + "Simon Gleizes", + "Stefan Sarnev", + "Steven Wong", + "Supriya Singh", + "Thiago Braga", + "Tim Bruecker", + "Tim Hinds", + "Tina Dhaliwal", + "Tom Baird", + "Trevin Wong", + "Ty Lauriente", + "Tyler Da Costa", + "Vivian Ortenzi", + "William Sherif", + "Yang Zhao", + "Yen-Chun Wang", + "Yuri Fomenko", + "Zach Chan", + "Zike Wu" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Virtuosity Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Game Developers", + "names": [ + "Aishwarya Jayabal", + "Jagannathan Mannu", + "Janani Senrayaperumal", + "Maha Srinivasan", + "Packiyanath Sivathanu", + "Prabhu Venkatraman Iyer", + "Shagun Sharma Tamta", + "Shanmugam Sanjay", + "Sheena Mathew", + "Sriram Sreenivasan", + "Subramani Ramanathan", + "Sumit Kumar Suman", + "Sumith Kumar", + "Uma Senthil Raj", + "Vignesh Masilamani", + "Vivek Kumar" + ] + }, + { + "title": "Services Developers", + "names": [ + "Barani Dharan", + "Brogan Irwin", + "Ganesh Sethy", + "Jake Van Hyning", + "Keerthana Hariharan", + "Lenin Kumar", + "Mahesh Kumar Badam Venkata", + "Malliga Muthuraj", + "Nandha Arulanandam", + "Nathan VanHouten", + "Shanthi Kanchibhotla", + "Srinivasan Kandhallu Gnanamoorthy", + "Tanmay Kamath", + "Vasanth Kumar" + ] + }, + { + "title": "Web Developers", + "names": [ + "Aravindan Aarumugam", + "Arockia Stanly", + "Nazia Nazia", + "Rakshith Murthy", + "Sripriya Gunasekaran" + ] + }, + { + "title": "Producers", + "names": [ + "Chokkalingam Ramu Kuppaswamy", + "Swati S Thakar" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Sprung Studios Ltd Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Senior UX/UI Designer II", + "names": [ + "Rebecca Williams" + ] + }, + { + "title": "UI Engineer", + "names": [ + "Praneil Kamat" + ] + }, + { + "title": "IT Support", + "names": [ + "Alex Chai" + ] + } + ] + } + ] + } +] diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/texts/end.txt b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/texts/end.txt new file mode 100644 index 000000000..727752485 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/texts/end.txt @@ -0,0 +1,151 @@ +§3I see the player you mean. + +§2PLAYERNAME? + +§3Yes. Take care. It has reached a higher level now. It can read our thoughts. + +§2That doesn't matter. It thinks we are part of the game. + +§3I like this player. It played well. It did not give up. + +§2It is reading our thoughts as though they were words on a screen. + +§3That is how it chooses to imagine many things, when it is deep in the dream of a game. + +§2Words make a wonderful interface. Very flexible. And less terrifying than staring at the reality behind the screen. + +§3They used to hear voices. Before players could read. Back in the days when those who did not play called the players witches, and warlocks. And players dreamed they flew through the air, on sticks powered by demons. + +§2What did this player dream? + +§3This player dreamed of sunlight and trees. Of fire and water. It dreamed it created. And it dreamed it destroyed. It dreamed it hunted, and was hunted. It dreamed of shelter. + +§2Hah, the original interface. A million years old, and it still works. But what true structure did this player create, in the reality behind the screen? + +§3It worked, with a million others, to sculpt a true world in a fold of the §f§k§a§b§3, and created a §f§k§a§b§3 for §f§k§a§b§3, in the §f§k§a§b§3. + +§2It cannot read that thought. + +§3No. It has not yet achieved the highest level. That, it must achieve in the long dream of life, not the short dream of a game. + +§2Does it know that we love it? That the universe is kind? + +§3Sometimes, through the noise of its thoughts, it hears the universe, yes. + +§2But there are times it is sad, in the long dream. It creates worlds that have no summer, and it shivers under a black sun, and it takes its sad creation for reality. + +§3To cure it of sorrow would destroy it. The sorrow is part of its own private task. We cannot interfere. + +§2Sometimes when they are deep in dreams, I want to tell them, they are building true worlds in reality. Sometimes I want to tell them of their importance to the universe. Sometimes, when they have not made a true connection in a while, I want to help them to speak the word they fear. + +§3It reads our thoughts. + +§2Sometimes I do not care. Sometimes I wish to tell them, this world you take for truth is merely §f§k§a§b§2 and §f§k§a§b§2, I wish to tell them that they are §f§k§a§b§2 in the §f§k§a§b§2. They see so little of reality, in their long dream. + +§3And yet they play the game. + +§2But it would be so easy to tell them... + +§3Too strong for this dream. To tell them how to live is to prevent them living. + +§2I will not tell the player how to live. + +§3The player is growing restless. + +§2I will tell the player a story. + +§3But not the truth. + +§2No. A story that contains the truth safely, in a cage of words. Not the naked truth that can burn over any distance. + +§3Give it a body, again. + +§2Yes. Player... + +§3Use its name. + +§2PLAYERNAME. Player of games. + +§3Good. + +§2Take a breath, now. Take another. Feel air in your lungs. Let your limbs return. Yes, move your fingers. Have a body again, under gravity, in air. Respawn in the long dream. There you are. Your body touching the universe again at every point, as though you were separate things. As though we were separate things. + +§3Who are we? Once we were called the spirit of the mountain. Father sun, mother moon. Ancestral spirits, animal spirits. Jinn. Ghosts. The green man. Then gods, demons. Angels. Poltergeists. Aliens, extraterrestrials. Leptons, quarks. The words change. We do not change. + +§2We are the universe. We are everything you think isn't you. You are looking at us now, through your skin and your eyes. And why does the universe touch your skin, and throw light on you? To see you, player. To know you. And to be known. I shall tell you a story. + +§2Once upon a time, there was a player. + +§3The player was you, PLAYERNAME. + +§2Sometimes it thought itself human, on the thin crust of a spinning globe of molten rock. The ball of molten rock circled a ball of blazing gas that was three hundred and thirty thousand times more massive than it. They were so far apart that light took eight minutes to cross the gap. The light was information from a star, and it could burn your skin from a hundred and fifty million kilometres away. + +§2Sometimes the player dreamed it was a miner, on the surface of a world that was flat, and infinite. The sun was a square of white. The days were short; there was much to do; and death was a temporary inconvenience. + +§3Sometimes the player dreamed it was lost in a story. + +§2Sometimes the player dreamed it was other things, in other places. Sometimes these dreams were disturbing. Sometimes very beautiful indeed. Sometimes the player woke from one dream into another, then woke from that into a third. + +§3Sometimes the player dreamed it watched words on a screen. + +§2Let's go back. + +§2The atoms of the player were scattered in the grass, in the rivers, in the air, in the ground. A woman gathered the atoms; she drank and ate and inhaled; and the woman assembled the player, in her body. + +§2And the player awoke, from the warm, dark world of its mother's body, into the long dream. + +§2And the player was a new story, never told before, written in letters of DNA. And the player was a new program, never run before, generated by a sourcecode a billion years old. And the player was a new human, never alive before, made from nothing but milk and love. + +§3You are the player. The story. The program. The human. Made from nothing but milk and love. + +§2Let's go further back. + +§2The seven billion billion billion atoms of the player's body were created, long before this game, in the heart of a star. So the player, too, is information from a star. And the player moves through a story, which is a forest of information planted by a man called Julian, on a flat, infinite world created by a man called Markus, that exists inside a small, private world created by the player, who inhabits a universe created by... + +§3Shush. Sometimes the player created a small, private world that was soft and warm and simple. Sometimes hard, and cold, and complicated. Sometimes it built a model of the universe in its head; flecks of energy, moving through vast empty spaces. Sometimes it called those flecks "electrons" and "protons". + +§2Sometimes it called them "planets" and "stars". + +§2Sometimes it believed it was in a universe that was made of energy that was made of offs and ons; zeros and ones; lines of code. Sometimes it believed it was playing a game. Sometimes it believed it was reading words on a screen. + +§3You are the player, reading words... + +§2Shush... Sometimes the player read lines of code on a screen. Decoded them into words; decoded words into meaning; decoded meaning into feelings, emotions, theories, ideas, and the player started to breathe faster and deeper and realised it was alive, it was alive, those thousand deaths had not been real, the player was alive + +§3You. You. You are alive. + +§2and sometimes the player believed the universe had spoken to it through the sunlight that came through the shuffling leaves of the summer trees + +§3and sometimes the player believed the universe had spoken to it through the light that fell from the crisp night sky of winter, where a fleck of light in the corner of the player's eye might be a star a million times as massive as the sun, boiling its planets to plasma in order to be visible for a moment to the player, walking home at the far side of the universe, suddenly smelling food, almost at the familiar door, about to dream again + +§2and sometimes the player believed the universe had spoken to it through the zeros and ones, through the electricity of the world, through the scrolling words on a screen at the end of a dream + +§3and the universe said I love you + +§2and the universe said you have played the game well + +§3and the universe said everything you need is within you + +§2and the universe said you are stronger than you know + +§3and the universe said you are the daylight + +§2and the universe said you are the night + +§3and the universe said the darkness you fight is within you + +§2and the universe said the light you seek is within you + +§3and the universe said you are not alone + +§2and the universe said you are not separate from every other thing + +§3and the universe said you are the universe tasting itself, talking to itself, reading its own code + +§2and the universe said I love you because you are love. + +§3And the game was over and the player woke up from the dream. And the player began a new dream. And the player dreamed again, dreamed better. And the player was the universe. And the player was love. + +§3You are the player. + +§2Wake up. diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/texts/postcredits.txt b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/texts/postcredits.txt new file mode 100644 index 000000000..aa01cebdd --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/texts/postcredits.txt @@ -0,0 +1,6 @@ + + + + + +§f"Twenty years from now you will be more disappointed by the things that you didn't do than by the ones you did do. So throw off the bowlines. Sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover." §7- Unknown diff --git a/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/texts/splashes.txt b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/texts/splashes.txt new file mode 100644 index 000000000..69fdf6727 --- /dev/null +++ b/fabric-1.21.6-1.21.8/src/main/resources/assets/minecraft/texts/splashes.txt @@ -0,0 +1,450 @@ +As seen on TV! +Awesome! +100% pure! +May contain nuts! +More polygons! +Moderately attractive! +Limited edition! +Flashing letters! +It's here! +Best in class! +It's finished! +Kind of dragon free! +Excitement! +More than 500 sold! +One of a kind! +Heaps of hits on YouTube! +Indev! +Spiders everywhere! +Check it out! +Holy cow, man! +It's a game! +Made in Sweden! +Uses LWJGL! +Reticulating splines! +Minecraft! +Yaaay! +Singleplayer! +Keyboard compatible! +Ingots! +Exploding creepers! +That's no moon! +l33t! +Create! +Survive! +Dungeon! +Exclusive! +The bee's knees! +Closed source! +Classy! +Wow! +Not on steam! +Oh man! +Awesome community! +Pixels! +Teetsuuuuoooo! +Kaaneeeedaaaa! +Now with difficulty! +Enhanced! +90% bug free! +Pretty! +12 herbs and spices! +Fat free! +Absolutely no memes! +Free dental! +Ask your doctor! +Cloud computing! +Legal in Finland! +Hard to label! +Technically good! +Bringing home the bacon! +Indie! +GOTY! +Ceci n'est pas une title screen! +Euclidian! +Now in 3D! +Inspirational! +Herregud! +Complex cellular automata! +Yes, sir! +Played by cowboys! +Now on OpenGL 3.2 core profile! +Thousands of colors! +Try it! +Age of Wonders is better! +Try the mushroom stew! +Sensational! +Hot tamale, hot hot tamale! +Play him off, keyboard cat! +Guaranteed! +Macroscopic! +Bring it on! +Random splash! +Call your mother! +Monster infighting! +Loved by millions! +Ultimate edition! +Freaky! +You've got a brand new key! +Water proof! +Uninflammable! +Whoa, dude! +All inclusive! +Tell your friends! +NP is not in P! +Music by C418! +Livestreamed! +Haunted! +Polynomial! +Terrestrial! +All is full of love! +Full of stars! +Scientific! +Not as cool as Spock! +Collaborate and listen! +Never dig down! +Take frequent breaks! +Not linear! +Han shot first! +Nice to meet you! +Buckets of lava! +Ride the pig! +Larger than Earth! +sqrt(-1) love you! +Phobos anomaly! +Punching wood! +Falling off cliffs! +1% sugar! +150% hyperbole! +Synecdoche! +Let's danec! +Seecret Friday update! +Reference implementation! +Kiss the sky! +20 GOTO 10! +Verlet integration! +Peter Griffin! +Do not distribute! +Cogito ergo sum! +4815162342 lines of code! +A skeleton popped out! +The sum of its parts! +BTAF used to be good! +I miss ADOM! +umop-apisdn! +OICU812! +Bring me Ray Cokes! +Finger-licking! +Thematic! +Pneumatic! +Sublime! +Octagonal! +Une baguette! +Gargamel plays it! +Rita is the new top dog! +SWM forever! +Representing Edsbyn! +Matt Damon! +Supercalifragilisticexpialidocious! +Consummate V's! +Cow Tools! +Double buffered! +Fan fiction! +Flaxkikare! +Jason! Jason! Jason! +Hotter than the sun! +Internet enabled! +Autonomous! +Engage! +Fantasy! +DRR! DRR! DRR! +Kick it root down! +Regional resources! +Woo, facepunch! +Woo, somethingawful! +Woo, tigsource! +Woo, worldofminecraft! +Woo, reddit! +Woo, 2pp! +Google anlyticsed! +Now supports åäö! +Give us Gordon! +Tip your waiter! +Very fun! +12345 is a bad password! +Vote for net neutrality! +Lives in a pineapple under the sea! +MAP11 has two names! +Omnipotent! +Gasp! +...! +Bees, bees, bees, bees! +Jag känner en bot! +This text is hard to read if you play the game at the default resolution, but at 1080p it's fine! +Haha, LOL! +Hampsterdance! +Menger sponge! +idspispopd! +Eple (original edit)! +So fresh, so clean! +Slow acting portals! +Try the Nether! +Don't look directly at the bugs! +Oh, ok, Pigmen! +Finally with ladders! +Scary! +Play Minecraft, Watch Topgear, Get Pig! +Twittered about! +Jump up, jump up, and get down! +Joel is neat! +A riddle, wrapped in a mystery! +This parrot is no more! It has ceased to be! +Welcome to your Doom! +Stay a while, stay forever! +Stay a while and listen! +Treatment for your rash! +"Autological" is! +Information wants to be free! +"Almost never" is an interesting concept! +Lots of truthiness! +The creeper is a spy! +Turing complete! +It's groundbreaking! +Let our battle's begin! +The sky is the limit! +Jeb has amazing hair! +Ryan also has amazing hair! +Casual gaming! +Undefeated! +Kinda like Lemmings! +Follow the train, CJ! +Leveraging synergy! +This message will never appear on the splash screen, isn't that weird? +DungeonQuest is unfair! +90210! +Check out the far lands! +Tyrion would love it! +Also try VVVVVV! +Also try Super Meat Boy! +Also try Terraria! +Also try Mount And Blade! +Also try Project Zomboid! +Also try World of Goo! +Also try Limbo! +Also try Pixeljunk Shooter! +Also try Braid! +That's super! +Bread is pain! +Read more books! +Khaaaaaaaaan! +Less addictive than TV Tropes! +More addictive than lemonade! +Bigger than a bread box! +Millions of peaches! +Fnord! +This is my true form! +Don't bother with the clones! +Pumpkinhead! +Made by Jeb! +Has an ending! +Finally complete! +Feature packed! +Boots with the fur! +Stop, hammertime! +Testificates! +Conventional! +Homeomorphic to a 3-sphere! +Doesn't avoid double negatives! +Place ALL the blocks! +Does barrel rolls! +Meeting expectations! +PC gaming since 1873! +Ghoughpteighbteau tchoghs! +Déjà vu! +Déjà vu! +Got your nose! +Haley loves Elan! +Afraid of the big, black bat! +Doesn't use the U-word! +Child's play! +See you next Friday or so! +From the streets of Södermalm! +150 bpm for 400000 minutes! +Technologic! +Funk soul brother! +Pumpakungen! +日本ハロー! +한국 안녕하세요! +Helo Cymru! +Cześć Polsko! +你好中国! +Γεια σου Ελλάδα! +My life for Aiur! +Lennart lennart = new Lennart(); +I see your vocabulary has improved! +Who put it there? +You can't explain that! +if not ok then return end +§1C§2o§3l§4o§5r§6m§7a§8t§9i§ac +§kFUNKY LOL +Big Pointy Teeth! +Bekarton guards the gate! +Mmmph, mmph! +Don't feed avocados to parrots! +Swords for everyone! +Plz reply to my tweet! +.party()! +Take her pillow! +Put that cookie down! +Pretty scary! +I have a suggestion. +Now with extra hugs! +Java 16 + 1 + 4 = 21! +Woah. +HURNERJSGER? +What's up, Doc? +Now contains 32 random daily cats! +That's Numberwang! +pls rt +Do you want to join my server? +Put a little fence around it! +Throw a blanket over it! +One day, somewhere in the future, my work will be quoted! +Now with additional stuff! +Extra things! +Yay, puppies for everyone! +So sweet, like a nice bon bon! +Very influential in its circle! +Now With Multiplayer! +Rise from your grave! +Warning! A huge battleship "STEVE" is approaching fast! +Blue warrior shot the food! +Run, coward! I hunger! +Flavor with no seasoning! +Strange, but not a stranger! +Tougher than diamonds, rich like cream! +It swings, it jives! +Cruising streets for gold! +Take an eggbeater and beat it against a skillet! +Make me a table, a funky table! +Take the elevator to the mezzanine! +Stop being reasonable, this is the Internet! +/give @a hugs 64 +This is good for Realms. +Any computer is a laptop if you're brave enough! +Do it all, everything! +Where there is not light, there can spider! +GNU Terry Pratchett +More Digital! +doot doot +Falling with style! +There's no stopping the Trollmaso +Throw yourself at the ground and miss +Rule #1: it's never my fault +Replaced molten cheese with blood? +Absolutely fixed relatively broken coordinates +Boats FTW +Javalicious edition +Should not be played while driving +You're going too fast! +Don't feed chocolate to parrots! +The true meaning of covfefe +An illusion! What are you hiding? +Something's not quite right... +Thank you for the fish! +All rumors are true! +Truly gone fishing! +Rainbow turtle? +Something funny! +I need more context. +Ahhhhhh! +Don't worry, be happy! +Water bottle! +What's the question? +Plant a tree! +Go to the dentist! +What do you expect? +Look mum, I'm in a splash! +It came from space. +Awesome game design right there! +Ph1lza had a good run! +15 years of Mining and Crafting! +Ping the human! +In case it isn't obvious, foxes aren't players. +Buzzy Bees! +Minecraft Java Edition presents: Disgusting Bugs +Wash your hands! +Soap and water! +Support local businesses! +Stay home and play games! +Stay safe! +Stay strong! +Cough or sneeze into your elbow! +Don’t touch your face! +Support elderly relatives and friends! +Prepare, but don’t hoard! +Gamers unite – separately in your own homes! +Save the world – stay inside! +Shop for your elders! +Hang out with your friends online! +Honey, I grew the bees! +Find your claw! +Everybody do the Leif! +<3 Max & 99 & Ducky! +Bushy eyebrows! +Edit is a name! +From free range developers! +Music by Lena Raine! +Aww man! +#minecraftfarms +And my pickaxe! +Envision! Create! Share! +Fabulous graphics! +Also try Minecraft Dungeons! +Vanilla! +May contain traces of citrus! +Zoglin!? +Black lives matter! +Be anti-racist! +Learn about allyship! +Speak OUT against injustice and UP for equality! +Amplify and listen to BIPOC voices! +Educate your friends on anti-racism! +Support the BIPOC community and creators! +Stand up for equality in your community! +[this splash text is now available] +Contains simulated goats! +Home-made! +There's <=0.16.4", + "fabric": ">=0.128.2", + "minecraft": ["1.21.6", "1.21.7", "1.21.8" ] + }, + "suggests": { + "another-mod": "*" + } +} diff --git a/fabric-1.21.9-1.21.10/.gitignore b/fabric-1.21.9-1.21.10/.gitignore new file mode 100644 index 000000000..9a24f4706 --- /dev/null +++ b/fabric-1.21.9-1.21.10/.gitignore @@ -0,0 +1,3 @@ +/.gradle/ +/build/ +/bin \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/build.gradle b/fabric-1.21.9-1.21.10/build.gradle new file mode 100644 index 000000000..48570c05e --- /dev/null +++ b/fabric-1.21.9-1.21.10/build.gradle @@ -0,0 +1,72 @@ +plugins { + id 'fabric-loom' version '1.11-SNAPSHOT' +} + +project.archivesBaseName = "${parent.name}-fabric-1.21.9" +version = project.mod_version +group = project.maven_group + +eclipse { + project { + name = "${parent.name}-fabric-1.21.9" + } +} + +configurations { + shadow + implementation.extendsFrom(shadow) +} + +sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = JavaLanguageVersion.of(21) // Need this here so eclipse task generates correctly. + +repositories { + mavenCentral() + maven { url 'https://oss.sonatype.org/content/repositories/snapshots' } + maven { url 'https://cursemaven.com' } +} + +dependencies { + minecraft "com.mojang:minecraft:${project.minecraft_version}" + mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" + modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" + + modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" + + compileOnly "us.dynmap:DynmapCoreAPI:${parent.version}" + + shadow project(path: ":core", configuration: 'shadow') + + compileOnly 'net.luckperms:api:5.4' + compileOnly group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2' + modCompileOnly files("../libs/fabric-permissions-api-0.1.jar") +} + +processResources { + filesMatching('fabric.mod.json') { + expand "version": project.version + } +} + +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() +} + +jar { + from "LICENSE" + from { + configurations.shadow.collect { it.toString().contains("guava") ? null : it.isDirectory() ? it : zipTree(it) } + } +} + +remapJar { + archiveFileName = "${parent.name}-${parent.version}-fabric-1.21.9-1.21.10.jar" + destinationDirectory = file '../target' +} + +remapJar.doLast { + task -> + ant.checksum file: task.archivePath +} diff --git a/fabric-1.21.9-1.21.10/gradle.properties b/fabric-1.21.9-1.21.10/gradle.properties new file mode 100644 index 000000000..cb929d0d1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/gradle.properties @@ -0,0 +1,17 @@ +# Done to increase the memory available to gradle. +org.gradle.jvmargs=-Xmx1G +org.gradle.parallel=true + +# Fabric Properties +# check these on https://fabricmc.net/develop +minecraft_version=1.21.9 +yarn_mappings=1.21.9+build.1 +loader_version=0.17.2 + +# Mod Properties +mod_version = 1.0.0 +maven_group = com.example +archives_base_name = fabric-example-mod + +# Dependencies +fabric_version=0.134.0+1.21.9 diff --git a/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/ClientProxy.java b/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/ClientProxy.java new file mode 100644 index 000000000..4d68b75b6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/ClientProxy.java @@ -0,0 +1,6 @@ +package org.dynmapblockscan.fabric_1_21_9_1_21_10; + +public class ClientProxy extends Proxy { + public ClientProxy() { + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/DynmapBlockScanMod.java b/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/DynmapBlockScanMod.java new file mode 100644 index 000000000..6c7ad215e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/DynmapBlockScanMod.java @@ -0,0 +1,104 @@ +package org.dynmapblockscan.fabric_1_21_9_1_21_10; + +import net.fabricmc.api.EnvType; +import net.fabricmc.api.ModInitializer; +import net.fabricmc.loader.api.ModContainer; +import net.minecraft.server.MinecraftServer; +import net.fabricmc.fabric.api.event.lifecycle.v1.ServerLifecycleEvents; +import net.fabricmc.loader.api.FabricLoader; + +import java.io.File; +import java.util.Arrays; +import java.util.List; +import java.util.ArrayList; + +public class DynmapBlockScanMod implements ModInitializer +{ + public static DynmapBlockScanPlugin.OurLog logger = new DynmapBlockScanPlugin.OurLog(); + private static final ModContainer MOD_CONTAINER = FabricLoader.getInstance().getModContainer("dynmapblockscan") + .orElseThrow(() -> new RuntimeException("Failed to get mod container: dynmapblockscan")); + + // The instance of your mod that Forge uses. + public static DynmapBlockScanMod instance; + + // Says where the client and server 'proxy' code is loaded. + public static Proxy proxy = null; + + public static DynmapBlockScanPlugin plugin; + public static File jarfile; + + public DynmapBlockScanMod(){ + if(FabricLoader.getInstance().getEnvironmentType() == EnvType.CLIENT){ + proxy = new ClientProxy(); + }else{ + proxy = new Proxy(); + } + } + @Override + public void onInitialize(){ + instance = this; + + logger.info("setup"); + + jarfile = MOD_CONTAINER.getOrigin().getPaths().get(0).toFile(); + + ServerLifecycleEvents.SERVER_STARTING.register(this::onServerStarting); + ServerLifecycleEvents.SERVER_STARTED.register(this::onServerStarted); + ServerLifecycleEvents.SERVER_STOPPED.register(this::onServerStopped); + + // FileUtils.getOrCreateDirectory(FabricLoader.getInstance().getConfigDir().resolve("dynmapblockscan"), "dynmapblockscan"); + //ModLoadingContext.registerConfig("dynmapblockscan", ModConfig.Type.COMMON, SettingsConfig.SPEC, "dynmapblockscan/settings.toml"); + + } + + public static class SettingsConfig + { +// public static final ForgeConfigSpec.Builder BUILDER = new ForgeConfigSpec.Builder(); +// public static final ForgeConfigSpec SPEC; +// +// public static final ForgeConfigSpec.ConfigValue> excludeModules; +// public static final ForgeConfigSpec.ConfigValue> excludeBlockNames; + + + public static List excludedModules = Arrays.asList("minecraft"); // <--- Remove "minecraft" to generate vanilla block list + public static List excludedBlockNames = Arrays.asList(); + + static + { +// BUILDER.comment("DynmapBlockScan settings"); +// BUILDER.push("settings"); +// excludeModules = BUILDER.comment("Which modules to exclude").defineList("exclude_modules", Arrays.asList("minecraft"), entry -> true); +// excludeBlockNames = BUILDER.comment("Which block names to exclude").defineList("exclude_blocknames", Arrays.asList(), entry -> true); +// BUILDER.pop(); +// +// SPEC = BUILDER.build(); + } + } + + private MinecraftServer server; + + public void onServerStarting(MinecraftServer server_) { + server = server_; + if(plugin == null) + plugin = proxy.startServer(server); +// plugin.setDisabledModules((List) SettingsConfig.excludeModules.get()); +// plugin.setDisabledBlockNames((List) SettingsConfig.excludeBlockNames.get()); + plugin.setDisabledModules((List) SettingsConfig.excludedModules); + plugin.setDisabledBlockNames((List) SettingsConfig.excludedBlockNames); + plugin.serverStarting(); + } + + public void onServerStarted(MinecraftServer server_) { + plugin.serverStarted(); + } + + public void onServerStopped(MinecraftServer server_) { + proxy.stopServer(plugin); + plugin = null; + } + +// @NetworkCheckHandler +// public boolean netCheckHandler(Map mods, Side side) { +// return true; +// } +} diff --git a/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/DynmapBlockScanPlugin.java b/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/DynmapBlockScanPlugin.java new file mode 100644 index 000000000..22fc65955 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/DynmapBlockScanPlugin.java @@ -0,0 +1,283 @@ +package org.dynmapblockscan.fabric_1_21_9_1_21_10; + +import com.google.common.collect.ImmutableMap; +import net.fabricmc.fabric.api.resource.ResourceManagerHelper; +import net.fabricmc.loader.api.FabricLoader; +import net.fabricmc.loader.api.ModContainer; +import net.fabricmc.loader.api.metadata.ModOrigin; +import net.minecraft.block.MapColor; +import net.minecraft.registry.DefaultedRegistry; +import net.minecraft.registry.Registries; +import net.minecraft.registry.RegistryKey; +import net.minecraft.resource.ResourceManager; +import net.minecraft.resource.ResourceType; +import net.minecraft.server.MinecraftServer; +import net.minecraft.state.StateManager; +import net.minecraft.state.property.Property; +import net.minecraft.util.StringIdentifiable; +import net.minecraft.util.math.BlockPos; +import net.minecraft.world.EmptyBlockView; +import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; +import org.dynmapblockscan.core.AbstractBlockScanBase; +import org.dynmapblockscan.core.BlockScanLog; +import org.dynmapblockscan.core.BlockStateOverrides.BlockStateOverride; +import org.dynmapblockscan.core.blockstate.BSBlockState; +import org.dynmapblockscan.core.blockstate.VariantList; +import org.dynmapblockscan.core.model.BlockModel; +import org.dynmapblockscan.core.statehandlers.StateContainer.StateRec; +import org.dynmapblockscan.fabric_1_21_9_1_21_10.statehandlers.FabricStateContainer; + +import java.io.File; +import org.dynmapblockscan.core.PathElement; +import java.io.InputStream; +import java.nio.file.Path; +import java.util.*; + +public class DynmapBlockScanPlugin extends AbstractBlockScanBase +{ + private Map assetmap = new HashMap<>(); + public static DynmapBlockScanPlugin plugin; + public static FabricLoader flInst = FabricLoader.getInstance(); + + public DynmapBlockScanPlugin(MinecraftServer srv) + { + plugin = this; + logger = new OurLog(); + } + + public void buildAssetMap() { + assetmap.clear(); + Iterator mcl = flInst.getAllMods().stream().iterator(); + + while (mcl.hasNext()) { + ModContainer mc = mcl.next(); + String mid = mc.getMetadata().getId().toLowerCase(); + ModOrigin modOrigin = mc.getOrigin(); + if (modOrigin == null) continue; + + if (modOrigin.getKind() == ModOrigin.Kind.NESTED) continue; + List modPaths = modOrigin.getPaths(); + if (modPaths == null) continue; + File src = modPaths.get(0).toFile(); + // Process mod file + processModFile(mid, src); + } + } + + public void onEnable() { + } + public void onDisable() { + } + public void serverStarted() { + } + public void serverStarting() { + logger.info("buildAssetMap"); + buildAssetMap(); + logger.info("loadOverrideResources"); + // Load override resources + loadOverrideResources(); + logger.info("scan for overrides"); + // Scan other modules for block overrides + for (ModContainer mod : flInst.getAllMods()) { + + loadModuleOverrideResources(mod.getMetadata().getId()); + } + Map blockRecords = new LinkedHashMap(); + + logger.info("Start processing states"); + + // Now process models from block records + Map models = new LinkedHashMap(); + + DefaultedRegistry bsids = Registries.BLOCK; + Block baseb = null; + + Iterator iter = bsids.iterator(); + // Scan blocks and block states + while (iter.hasNext()) { + Block b = iter.next(); + if (b == baseb) { continue; } + baseb = b; + RegistryKey rl = Registries.BLOCK.getKey(b).orElse(null); + StateManager bsc = b.getStateManager(); + // See if any of the block states use MODEL + boolean uses_model = false; + boolean uses_nonmodel = false; + + for (BlockState bs : bsc.getStates()) { + switch (bs.getRenderType()) { + case MODEL: + uses_model = true; + break; + case INVISIBLE: + uses_nonmodel = true; + if (verboselogging) + logger.info(String.format("%s: Invisible block - nothing to render", rl)); + break; + // case ENTITYBLOCK_ANIMATED: + // uses_nonmodel = true; + // if (verboselogging) + // logger.info(String.format("%s: Animated block - needs to be handled specially", rl)); + // break; +// case LIQUID: +// uses_nonmodel = true; +// if (DynmapBlockScanMod.verboselogging) +// logger.info(String.format("%s: Liquid block - special handling", rl)); +// break; + } + } + // Not model block - nothing else to do yet + if (!uses_model) { + continue; + } + else if (uses_nonmodel) { + logger.warning(String.format("%s: Block mixes model and nonmodel state handling!", rl)); + } + // Generate property value map + Map> propMap = buildPropoertyMap(bsc); + // Try to find blockstate file + //Material mat = b.getDefaultState().getBlock().getM + MapColor matcol = b.getDefaultMapColor(); + BSBlockState blockstate = loadBlockState(rl.getValue().getNamespace(), rl.getValue().getPath(), overrides, propMap); + // Build block record + BlockRecord br = new BlockRecord(); + // Process blockstate + if (blockstate != null) { + br.renderProps = blockstate.getRenderProps(); + br.materialColorID = MaterialColorID.byID(matcol.id); + br.lightAttenuation = 15; + try { // Workaround for mods with broken block state logic... + br.lightAttenuation = b.getDefaultState().isSolidBlock(EmptyBlockView.INSTANCE, BlockPos.ORIGIN) ? 15 : (b.getDefaultState().isTransparent() ? 0 : 1); + } catch (Exception x) { + logger.warning(String.format("Exception while checking lighting data for block state: %s", b)); + logger.verboseinfo("Exception: " + x.toString()); + } + } + // Build generic block state container for block + br.sc = new FabricStateContainer(b, br.renderProps, propMap); + if (blockstate != null) { + BlockStateOverride ovr = overrides.getOverride(rl.getValue().getNamespace(), rl.getValue().getPath()); + br.varList = new LinkedHashMap>(); + // Loop through rendering states in state container + for (StateRec sr : br.sc.getValidStates()) { + Map prop = sr.getProperties(); + // If we've got key=value for block (multiple blocks in same state file) + if ((ovr != null) && (ovr.blockStateKey != null) && (ovr.blockStateValue != null)) { + prop = new HashMap(prop); + prop.put(ovr.blockStateKey, ovr.blockStateValue); + } + List vlist = blockstate.getMatchingVariants(prop, models); + br.varList.put(sr, vlist); + } + } + else { + br.varList = Collections.emptyMap(); + } + // Check for matching handler + blockRecords.put(rl.getValue().toString(), br); + } + + logger.info("Loading models...."); + loadModels(blockRecords, models); + logger.info("Variant models loaded"); + // Now, resolve all parent references - load additional models + resolveParentReferences(models); + logger.info("Parent models loaded and resolved"); + resolveAllElements(blockRecords, models); + logger.info("Elements generated"); + + publishDynmapModData(); + + assetmap = null; + } + + @Override + public InputStream openResource(String modid, String rname) { + if (modid.equals("minecraft")) modid = "dynmapblockscan"; // We supply resources (1.13.2 doesn't have assets in server jar) + String rname_lc = rname.toLowerCase(); + Object mod = flInst.getObjectShare().get(modid + ":" + rname_lc); + + ClassLoader cl = MinecraftServer.class.getClassLoader(); + if (mod != null) { + cl = mod.getClass().getClassLoader(); + } + if (cl != null) { + InputStream is = cl.getResourceAsStream(rname_lc); + if (is == null) { + is = cl.getResourceAsStream(rname); + } + return is; + } + return null; + } + + public Map> buildPropoertyMap(StateManager bsc) { + Map> renderProperties = new LinkedHashMap>(); + // Build table of render properties and valid values + for (Property p : bsc.getProperties()) { + String pn = p.getName(); + ArrayList pvals = new ArrayList(); + for (Comparable val : p.getValues()) { + if (val instanceof StringIdentifiable) { + pvals.add(((StringIdentifiable)val).asString()); + } + else { + pvals.add(val.toString()); + } + } + renderProperties.put(pn, pvals); + } + return renderProperties; + } + + // Build Map from properties in BlockState + public Map fromBlockState(BlockState bs) { + ImmutableMap.Builder bld = ImmutableMap.builder(); + for (Property x : bs.getProperties()) { + Object v = bs.get(x); + if (v instanceof StringIdentifiable) { + bld.put(x.getName(), ((StringIdentifiable)v).asString()); + } + else { + bld.put(x.getName(), v.toString()); + } + } + return bld.build(); + } + + public static class OurLog implements BlockScanLog { + Logger log; + public static final String DM = "[DynmapBlockScan] "; + OurLog() { + log = LogManager.getLogger("DynmapBlockScan"); + } + public void debug(String s) { + log.debug(DM + s); + } + public void info(String s) { + log.info(DM + s); + } + public void severe(Throwable t) { + log.fatal(t); + } + public void severe(String s) { + log.fatal(DM + s); + } + public void severe(String s, Throwable t) { + log.fatal(DM + s, t); + } + public void verboseinfo(String s) { + log.info(DM + s); + } + public void warning(String s) { + log.warn(DM + s); + } + public void warning(String s, Throwable t) { + log.warn(DM + s, t); + } + } +} + diff --git a/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/FileUtils.java b/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/FileUtils.java new file mode 100644 index 000000000..d11758e8a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/FileUtils.java @@ -0,0 +1,38 @@ +package org.dynmapblockscan.fabric_1_21_9_1_21_10; + +import java.io.IOException; +import java.nio.file.FileAlreadyExistsException; +import java.nio.file.Files; +import java.nio.file.Path; +import com.mojang.logging.LogUtils; +import org.slf4j.Logger; +import org.slf4j.Marker; +import org.slf4j.MarkerFactory; + +public class FileUtils { + private static final Logger LOGGER = LogUtils.getLogger(); + private static final Marker CORE = MarkerFactory.getMarker("CORE"); + public static Path getOrCreateDirectory(Path dirPath, String dirLabel) { + if (!Files.isDirectory(dirPath.getParent())) { + getOrCreateDirectory(dirPath.getParent(), "parent of "+dirLabel); + } + if (!Files.isDirectory(dirPath)) + { + LOGGER.debug(CORE, "Making {} directory : {}", dirLabel, dirPath); + try { + Files.createDirectory(dirPath); + } catch (IOException e) { + if (e instanceof FileAlreadyExistsException) { + LOGGER.error(CORE, "Failed to create {} directory - there is a file in the way", dirLabel); + } else { + LOGGER.error(CORE, "Problem with creating {} directory (Permissions?)", dirLabel, e); + } + throw new RuntimeException("Problem creating directory", e); + } + LOGGER.debug(CORE, "Created {} directory : {}", dirLabel, dirPath); + } else { + LOGGER.debug(CORE, "Found existing {} directory : {}", dirLabel, dirPath); + } + return dirPath; + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/Proxy.java b/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/Proxy.java new file mode 100644 index 000000000..7e4d2be99 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/Proxy.java @@ -0,0 +1,24 @@ +package org.dynmapblockscan.fabric_1_21_9_1_21_10; + +import net.minecraft.server.MinecraftServer; + +/** + * Server side proxy - methods for creating and cleaning up plugin + */ +public class Proxy +{ + public Proxy() + { + } + public DynmapBlockScanPlugin startServer(MinecraftServer srv) { + DynmapBlockScanPlugin plugin = DynmapBlockScanPlugin.plugin; + if (plugin == null) { + plugin = new DynmapBlockScanPlugin(srv); + plugin.onEnable(); + } + return plugin; + } + public void stopServer(DynmapBlockScanPlugin plugin) { + plugin.onDisable(); + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/Version.java b/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/Version.java new file mode 100644 index 000000000..56d462e89 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/Version.java @@ -0,0 +1,7 @@ +package org.dynmapblockscan.fabric_1_21_9_1_21_10; + +public class Version { + public static final String VER = "@VERSION@"; + public static final String BUILD_NUMBER = "@BUILD_NUMBER@"; +} + diff --git a/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/mixin/DynmapBlockScanMixin.java b/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/mixin/DynmapBlockScanMixin.java new file mode 100644 index 000000000..27bee532d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/mixin/DynmapBlockScanMixin.java @@ -0,0 +1,17 @@ +package org.dynmapblockscan.fabric_1_21_9_1_21_10.mixin; + +import net.minecraft.client.gui.screen.TitleScreen; + +import org.dynmapblockscan.fabric_1_21_9_1_21_10.DynmapBlockScanMod; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; + +@Mixin(TitleScreen.class) +public class DynmapBlockScanMixin { + @Inject(at = @At("HEAD"), method = "init()V") + private void init(CallbackInfo info) { + DynmapBlockScanMod.logger.info("This line is printed by an example mod mixin!"); + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/statehandlers/FabricStateContainer.java b/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/statehandlers/FabricStateContainer.java new file mode 100644 index 000000000..81a907bac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/java/org/dynmapblockscan/fabric_1_21_9_1_21_10/statehandlers/FabricStateContainer.java @@ -0,0 +1,93 @@ +package org.dynmapblockscan.fabric_1_21_9_1_21_10.statehandlers; + +import com.google.common.collect.ImmutableMap; +import net.minecraft.block.*; +import net.minecraft.state.property.Property; +import net.minecraft.util.StringIdentifiable; +import org.dynmapblockscan.core.statehandlers.StateContainer; + +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; + +public class FabricStateContainer extends StateContainer { + + public FabricStateContainer(Block blk, Set renderprops, Map> propMap) { + List bsl = blk.getStateManager().getStates(); + BlockState defstate = blk.getDefaultState(); + if (renderprops == null) { + renderprops = new HashSet(); + for (String pn : propMap.keySet()) { + renderprops.add(pn); + } + } + // Build table of render properties and valid values + for (String pn : propMap.keySet()) { + if (!renderprops.contains(pn)) { + continue; + } + this.renderProperties.put(pn, propMap.get(pn)); + } + + this.defStateIndex = 0; + int idx = 0; + for (BlockState bs : bsl) { + ImmutableMap.Builder bld = ImmutableMap.builder(); + for (Property ent : bs.getProperties()) { + String pn = ent.getName(); + if (renderprops.contains(pn)) { // If valid render property + Comparable v = bs.get(ent); + if (v instanceof StringIdentifiable) { + v = ((StringIdentifiable)v).asString(); + } + bld.put(pn, v.toString()); + } + } + StateRec sr = new StateRec(idx, bld.build()); + int prev_sr = records.indexOf(sr); + if (prev_sr < 0) { + if (bs.equals(defstate)) { + this.defStateIndex = records.size(); + } + records.add(sr); + } + else { + StateRec prev = records.get(prev_sr); + if (!prev.hasMeta(idx)) { + sr = new StateRec(prev, idx); + records.set(prev_sr, sr); + if (bs.equals(defstate)) { + this.defStateIndex = prev_sr; + } + } + } + idx++; + } + // Check for well-known block types + if (blk instanceof LeavesBlock) { + type = WellKnownBlockClasses.LEAVES; + } + else if (blk instanceof CropBlock) { + type = WellKnownBlockClasses.CROPS; + } + else if (blk instanceof FlowerBlock) { + type = WellKnownBlockClasses.FLOWER; + } + else if (blk instanceof TallPlantBlock) { + type = WellKnownBlockClasses.TALLGRASS; + } + else if (blk instanceof VineBlock) { + type = WellKnownBlockClasses.VINES; + } + else if (blk instanceof PlantBlock) { + type = WellKnownBlockClasses.BUSH; + } + else if (blk instanceof GrassBlock) { + type = WellKnownBlockClasses.GRASS; + } + else if (blk instanceof LightBlock) { + type = WellKnownBlockClasses.LIQUID; + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/.mcassetsroot b/fabric-1.21.9-1.21.10/src/main/resources/assets/.mcassetsroot new file mode 100644 index 000000000..e69de29bb diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/armor_trims.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/armor_trims.json new file mode 100644 index 000000000..26f3e9d2d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/armor_trims.json @@ -0,0 +1,64 @@ +{ + "sources": [ + { + "type": "minecraft:paletted_permutations", + "palette_key": "minecraft:trims/color_palettes/trim_palette", + "permutations": { + "amethyst": "minecraft:trims/color_palettes/amethyst", + "copper": "minecraft:trims/color_palettes/copper", + "copper_darker": "minecraft:trims/color_palettes/copper_darker", + "diamond": "minecraft:trims/color_palettes/diamond", + "diamond_darker": "minecraft:trims/color_palettes/diamond_darker", + "emerald": "minecraft:trims/color_palettes/emerald", + "gold": "minecraft:trims/color_palettes/gold", + "gold_darker": "minecraft:trims/color_palettes/gold_darker", + "iron": "minecraft:trims/color_palettes/iron", + "iron_darker": "minecraft:trims/color_palettes/iron_darker", + "lapis": "minecraft:trims/color_palettes/lapis", + "netherite": "minecraft:trims/color_palettes/netherite", + "netherite_darker": "minecraft:trims/color_palettes/netherite_darker", + "quartz": "minecraft:trims/color_palettes/quartz", + "redstone": "minecraft:trims/color_palettes/redstone", + "resin": "minecraft:trims/color_palettes/resin" + }, + "textures": [ + "minecraft:trims/entity/humanoid/sentry", + "minecraft:trims/entity/humanoid_leggings/sentry", + "minecraft:trims/entity/humanoid/dune", + "minecraft:trims/entity/humanoid_leggings/dune", + "minecraft:trims/entity/humanoid/coast", + "minecraft:trims/entity/humanoid_leggings/coast", + "minecraft:trims/entity/humanoid/wild", + "minecraft:trims/entity/humanoid_leggings/wild", + "minecraft:trims/entity/humanoid/ward", + "minecraft:trims/entity/humanoid_leggings/ward", + "minecraft:trims/entity/humanoid/eye", + "minecraft:trims/entity/humanoid_leggings/eye", + "minecraft:trims/entity/humanoid/vex", + "minecraft:trims/entity/humanoid_leggings/vex", + "minecraft:trims/entity/humanoid/tide", + "minecraft:trims/entity/humanoid_leggings/tide", + "minecraft:trims/entity/humanoid/snout", + "minecraft:trims/entity/humanoid_leggings/snout", + "minecraft:trims/entity/humanoid/rib", + "minecraft:trims/entity/humanoid_leggings/rib", + "minecraft:trims/entity/humanoid/spire", + "minecraft:trims/entity/humanoid_leggings/spire", + "minecraft:trims/entity/humanoid/wayfinder", + "minecraft:trims/entity/humanoid_leggings/wayfinder", + "minecraft:trims/entity/humanoid/shaper", + "minecraft:trims/entity/humanoid_leggings/shaper", + "minecraft:trims/entity/humanoid/silence", + "minecraft:trims/entity/humanoid_leggings/silence", + "minecraft:trims/entity/humanoid/raiser", + "minecraft:trims/entity/humanoid_leggings/raiser", + "minecraft:trims/entity/humanoid/host", + "minecraft:trims/entity/humanoid_leggings/host", + "minecraft:trims/entity/humanoid/flow", + "minecraft:trims/entity/humanoid_leggings/flow", + "minecraft:trims/entity/humanoid/bolt", + "minecraft:trims/entity/humanoid_leggings/bolt" + ] + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/banner_patterns.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/banner_patterns.json new file mode 100644 index 000000000..b683a9828 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/banner_patterns.json @@ -0,0 +1,13 @@ +{ + "sources": [ + { + "type": "minecraft:single", + "resource": "minecraft:entity/banner_base" + }, + { + "type": "minecraft:directory", + "prefix": "entity/banner/", + "source": "entity/banner" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/beds.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/beds.json new file mode 100644 index 000000000..d2e798a5e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/beds.json @@ -0,0 +1,9 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "entity/bed/", + "source": "entity/bed" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/blocks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/blocks.json new file mode 100644 index 000000000..d9881608f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/blocks.json @@ -0,0 +1,59 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "block/", + "source": "block" + }, + { + "type": "minecraft:directory", + "prefix": "item/", + "source": "item" + }, + { + "type": "minecraft:directory", + "prefix": "entity/conduit/", + "source": "entity/conduit" + }, + { + "type": "minecraft:single", + "resource": "minecraft:entity/bell/bell_body" + }, + { + "type": "minecraft:single", + "resource": "minecraft:entity/decorated_pot/decorated_pot_side" + }, + { + "type": "minecraft:single", + "resource": "minecraft:entity/enchanting_table_book" + }, + { + "type": "minecraft:paletted_permutations", + "palette_key": "minecraft:trims/color_palettes/trim_palette", + "permutations": { + "amethyst": "minecraft:trims/color_palettes/amethyst", + "copper": "minecraft:trims/color_palettes/copper", + "copper_darker": "minecraft:trims/color_palettes/copper_darker", + "diamond": "minecraft:trims/color_palettes/diamond", + "diamond_darker": "minecraft:trims/color_palettes/diamond_darker", + "emerald": "minecraft:trims/color_palettes/emerald", + "gold": "minecraft:trims/color_palettes/gold", + "gold_darker": "minecraft:trims/color_palettes/gold_darker", + "iron": "minecraft:trims/color_palettes/iron", + "iron_darker": "minecraft:trims/color_palettes/iron_darker", + "lapis": "minecraft:trims/color_palettes/lapis", + "netherite": "minecraft:trims/color_palettes/netherite", + "netherite_darker": "minecraft:trims/color_palettes/netherite_darker", + "quartz": "minecraft:trims/color_palettes/quartz", + "redstone": "minecraft:trims/color_palettes/redstone", + "resin": "minecraft:trims/color_palettes/resin" + }, + "textures": [ + "minecraft:trims/items/helmet_trim", + "minecraft:trims/items/chestplate_trim", + "minecraft:trims/items/leggings_trim", + "minecraft:trims/items/boots_trim" + ] + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/chests.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/chests.json new file mode 100644 index 000000000..81a68b1ca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/chests.json @@ -0,0 +1,9 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "entity/chest/", + "source": "entity/chest" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/decorated_pot.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/decorated_pot.json new file mode 100644 index 000000000..57356d985 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/decorated_pot.json @@ -0,0 +1,9 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "entity/decorated_pot/", + "source": "entity/decorated_pot" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/gui.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/gui.json new file mode 100644 index 000000000..1ad438f00 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/gui.json @@ -0,0 +1,14 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "", + "source": "gui/sprites" + }, + { + "type": "minecraft:directory", + "prefix": "mob_effect/", + "source": "mob_effect" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/map_decorations.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/map_decorations.json new file mode 100644 index 000000000..f5cf7910d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/map_decorations.json @@ -0,0 +1,9 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "", + "source": "map/decorations" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/mob_effects.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/mob_effects.json new file mode 100644 index 000000000..cb14804cd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/mob_effects.json @@ -0,0 +1,9 @@ +{ + "sources": [ + { + "type": "directory", + "source": "mob_effect", + "prefix": "" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/paintings.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/paintings.json new file mode 100644 index 000000000..1345d6d1e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/paintings.json @@ -0,0 +1,9 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "", + "source": "painting" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/particles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/particles.json new file mode 100644 index 000000000..18229aff0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/particles.json @@ -0,0 +1,9 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "", + "source": "particle" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/shield_patterns.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/shield_patterns.json new file mode 100644 index 000000000..77793ed1b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/shield_patterns.json @@ -0,0 +1,17 @@ +{ + "sources": [ + { + "type": "minecraft:single", + "resource": "minecraft:entity/shield_base" + }, + { + "type": "minecraft:single", + "resource": "minecraft:entity/shield_base_nopattern" + }, + { + "type": "minecraft:directory", + "prefix": "entity/shield/", + "source": "entity/shield" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/shulker_boxes.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/shulker_boxes.json new file mode 100644 index 000000000..d4ecef71e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/shulker_boxes.json @@ -0,0 +1,9 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "entity/shulker/", + "source": "entity/shulker" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/signs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/signs.json new file mode 100644 index 000000000..1f34aaa1a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/atlases/signs.json @@ -0,0 +1,9 @@ +{ + "sources": [ + { + "type": "minecraft:directory", + "prefix": "entity/signs/", + "source": "entity/signs" + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_button.json new file mode 100644 index 000000000..5b33b9926 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/acacia_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/acacia_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/acacia_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/acacia_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/acacia_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/acacia_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/acacia_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/acacia_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/acacia_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/acacia_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/acacia_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/acacia_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/acacia_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/acacia_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_door.json new file mode 100644 index 000000000..8ed15c35d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/acacia_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/acacia_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/acacia_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/acacia_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/acacia_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/acacia_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/acacia_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/acacia_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/acacia_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/acacia_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/acacia_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/acacia_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/acacia_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/acacia_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/acacia_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/acacia_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/acacia_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/acacia_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/acacia_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/acacia_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/acacia_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/acacia_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/acacia_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/acacia_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/acacia_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/acacia_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/acacia_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/acacia_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/acacia_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/acacia_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/acacia_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/acacia_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_fence.json new file mode 100644 index 000000000..179ca6ae0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/acacia_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/acacia_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/acacia_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/acacia_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/acacia_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_fence_gate.json new file mode 100644 index 000000000..39af376d2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/acacia_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/acacia_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/acacia_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/acacia_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/acacia_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/acacia_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/acacia_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/acacia_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/acacia_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/acacia_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/acacia_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/acacia_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/acacia_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/acacia_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/acacia_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/acacia_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_hanging_sign.json new file mode 100644 index 000000000..57024f8fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/acacia_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_leaves.json new file mode 100644 index 000000000..0d99aafa4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/acacia_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_log.json new file mode 100644 index 000000000..97c6b5020 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/acacia_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/acacia_log" + }, + "axis=z": { + "model": "minecraft:block/acacia_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_planks.json new file mode 100644 index 000000000..529c16091 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/acacia_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_pressure_plate.json new file mode 100644 index 000000000..6572988be --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/acacia_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/acacia_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_sapling.json new file mode 100644 index 000000000..8f2fec96c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/acacia_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_shelf.json new file mode 100644 index 000000000..b622ec8a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_shelf.json @@ -0,0 +1,402 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/acacia_shelf" + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf", + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf", + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf", + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_unpowered" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_unpowered", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_unpowered", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_unpowered", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_unconnected" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_unconnected", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_unconnected", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_unconnected", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_center" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_center", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_center", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_center", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/acacia_shelf_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_sign.json new file mode 100644 index 000000000..c663452f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/acacia_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_slab.json new file mode 100644 index 000000000..4816cdb8f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/acacia_slab" + }, + "type=double": { + "model": "minecraft:block/acacia_planks" + }, + "type=top": { + "model": "minecraft:block/acacia_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_stairs.json new file mode 100644 index 000000000..fb8b6e13f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/acacia_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/acacia_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/acacia_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/acacia_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/acacia_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/acacia_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/acacia_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/acacia_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/acacia_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/acacia_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/acacia_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/acacia_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/acacia_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/acacia_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_trapdoor.json new file mode 100644 index 000000000..3518fc7a4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/acacia_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/acacia_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/acacia_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/acacia_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/acacia_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/acacia_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/acacia_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/acacia_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/acacia_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/acacia_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/acacia_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/acacia_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/acacia_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/acacia_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/acacia_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/acacia_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_wall_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_wall_hanging_sign.json new file mode 100644 index 000000000..57024f8fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/acacia_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_wall_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_wall_sign.json new file mode 100644 index 000000000..c663452f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/acacia_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_wood.json new file mode 100644 index 000000000..f064d5c60 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/acacia_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/acacia_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/acacia_wood" + }, + "axis=z": { + "model": "minecraft:block/acacia_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/activator_rail.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/activator_rail.json new file mode 100644 index 000000000..5c5354b56 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/activator_rail.json @@ -0,0 +1,46 @@ +{ + "variants": { + "powered=false,shape=ascending_east": { + "model": "minecraft:block/activator_rail_raised_ne", + "y": 90 + }, + "powered=false,shape=ascending_north": { + "model": "minecraft:block/activator_rail_raised_ne" + }, + "powered=false,shape=ascending_south": { + "model": "minecraft:block/activator_rail_raised_sw" + }, + "powered=false,shape=ascending_west": { + "model": "minecraft:block/activator_rail_raised_sw", + "y": 90 + }, + "powered=false,shape=east_west": { + "model": "minecraft:block/activator_rail", + "y": 90 + }, + "powered=false,shape=north_south": { + "model": "minecraft:block/activator_rail" + }, + "powered=true,shape=ascending_east": { + "model": "minecraft:block/activator_rail_on_raised_ne", + "y": 90 + }, + "powered=true,shape=ascending_north": { + "model": "minecraft:block/activator_rail_on_raised_ne" + }, + "powered=true,shape=ascending_south": { + "model": "minecraft:block/activator_rail_on_raised_sw" + }, + "powered=true,shape=ascending_west": { + "model": "minecraft:block/activator_rail_on_raised_sw", + "y": 90 + }, + "powered=true,shape=east_west": { + "model": "minecraft:block/activator_rail_on", + "y": 90 + }, + "powered=true,shape=north_south": { + "model": "minecraft:block/activator_rail_on" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/air.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/air.json new file mode 100644 index 000000000..2c8f02f06 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/air.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/air" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/allium.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/allium.json new file mode 100644 index 000000000..6c0aa8355 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/allium.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/allium" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/amethyst_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/amethyst_block.json new file mode 100644 index 000000000..388d6a427 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/amethyst_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/amethyst_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/amethyst_cluster.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/amethyst_cluster.json new file mode 100644 index 000000000..09e6b985c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/amethyst_cluster.json @@ -0,0 +1,30 @@ +{ + "variants": { + "facing=down": { + "model": "minecraft:block/amethyst_cluster", + "x": 180 + }, + "facing=east": { + "model": "minecraft:block/amethyst_cluster", + "x": 90, + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/amethyst_cluster", + "x": 90 + }, + "facing=south": { + "model": "minecraft:block/amethyst_cluster", + "x": 90, + "y": 180 + }, + "facing=up": { + "model": "minecraft:block/amethyst_cluster" + }, + "facing=west": { + "model": "minecraft:block/amethyst_cluster", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/ancient_debris.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/ancient_debris.json new file mode 100644 index 000000000..dd6b05945 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/ancient_debris.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/ancient_debris" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/andesite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/andesite.json new file mode 100644 index 000000000..8248d30d6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/andesite.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/andesite" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/andesite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/andesite_slab.json new file mode 100644 index 000000000..9afe0305d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/andesite_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/andesite_slab" + }, + "type=double": { + "model": "minecraft:block/andesite" + }, + "type=top": { + "model": "minecraft:block/andesite_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/andesite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/andesite_stairs.json new file mode 100644 index 000000000..4a05cd555 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/andesite_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/andesite_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/andesite_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/andesite_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/andesite_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/andesite_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/andesite_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/andesite_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/andesite_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/andesite_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/andesite_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/andesite_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/andesite_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/andesite_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/andesite_wall.json new file mode 100644 index 000000000..ae8964117 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/andesite_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/andesite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/andesite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/andesite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/andesite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/andesite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/andesite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/andesite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/andesite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/andesite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/anvil.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/anvil.json new file mode 100644 index 000000000..16586bb37 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/anvil.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/anvil", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/anvil", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/anvil" + }, + "facing=west": { + "model": "minecraft:block/anvil", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/attached_melon_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/attached_melon_stem.json new file mode 100644 index 000000000..bc8c0345b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/attached_melon_stem.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/attached_melon_stem", + "y": 180 + }, + "facing=north": { + "model": "minecraft:block/attached_melon_stem", + "y": 90 + }, + "facing=south": { + "model": "minecraft:block/attached_melon_stem", + "y": 270 + }, + "facing=west": { + "model": "minecraft:block/attached_melon_stem" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/attached_pumpkin_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/attached_pumpkin_stem.json new file mode 100644 index 000000000..1324bcd82 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/attached_pumpkin_stem.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/attached_pumpkin_stem", + "y": 180 + }, + "facing=north": { + "model": "minecraft:block/attached_pumpkin_stem", + "y": 90 + }, + "facing=south": { + "model": "minecraft:block/attached_pumpkin_stem", + "y": 270 + }, + "facing=west": { + "model": "minecraft:block/attached_pumpkin_stem" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/azalea.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/azalea.json new file mode 100644 index 000000000..8fa18403b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/azalea.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/azalea" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/azalea_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/azalea_leaves.json new file mode 100644 index 000000000..091af72e8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/azalea_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/azalea_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/azure_bluet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/azure_bluet.json new file mode 100644 index 000000000..ddea50561 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/azure_bluet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/azure_bluet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo.json new file mode 100644 index 000000000..3f56d3314 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo.json @@ -0,0 +1,58 @@ +{ + "multipart": [ + { + "apply": [ + { + "model": "minecraft:block/bamboo1_age0" + }, + { + "model": "minecraft:block/bamboo2_age0" + }, + { + "model": "minecraft:block/bamboo3_age0" + }, + { + "model": "minecraft:block/bamboo4_age0" + } + ], + "when": { + "age": "0" + } + }, + { + "apply": [ + { + "model": "minecraft:block/bamboo1_age1" + }, + { + "model": "minecraft:block/bamboo2_age1" + }, + { + "model": "minecraft:block/bamboo3_age1" + }, + { + "model": "minecraft:block/bamboo4_age1" + } + ], + "when": { + "age": "1" + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_small_leaves" + }, + "when": { + "leaves": "small" + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_large_leaves" + }, + "when": { + "leaves": "large" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_block.json new file mode 100644 index 000000000..26021a566 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_block.json @@ -0,0 +1,13 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/bamboo_block_x" + }, + "axis=y": { + "model": "minecraft:block/bamboo_block_y" + }, + "axis=z": { + "model": "minecraft:block/bamboo_block_z" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_button.json new file mode 100644 index 000000000..c3918bcea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/bamboo_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/bamboo_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/bamboo_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/bamboo_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/bamboo_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/bamboo_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/bamboo_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/bamboo_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/bamboo_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/bamboo_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/bamboo_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/bamboo_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/bamboo_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/bamboo_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_door.json new file mode 100644 index 000000000..95afed111 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/bamboo_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/bamboo_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/bamboo_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/bamboo_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/bamboo_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/bamboo_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/bamboo_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/bamboo_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/bamboo_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/bamboo_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/bamboo_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/bamboo_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/bamboo_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/bamboo_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/bamboo_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/bamboo_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/bamboo_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/bamboo_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/bamboo_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/bamboo_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/bamboo_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/bamboo_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/bamboo_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/bamboo_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/bamboo_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/bamboo_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/bamboo_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/bamboo_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/bamboo_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/bamboo_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/bamboo_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/bamboo_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_fence.json new file mode 100644 index 000000000..fe47ca8fa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_fence.json @@ -0,0 +1,41 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/bamboo_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_fence_side_north" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_fence_side_east" + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_fence_side_south" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_fence_side_west" + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_fence_gate.json new file mode 100644 index 000000000..f989df6cb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_fence_gate.json @@ -0,0 +1,64 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/bamboo_fence_gate", + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/bamboo_fence_gate_open", + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/bamboo_fence_gate_wall", + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/bamboo_fence_gate_wall_open", + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/bamboo_fence_gate", + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/bamboo_fence_gate_open", + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/bamboo_fence_gate_wall", + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/bamboo_fence_gate_wall_open", + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/bamboo_fence_gate" + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/bamboo_fence_gate_open" + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/bamboo_fence_gate_wall" + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/bamboo_fence_gate_wall_open" + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/bamboo_fence_gate", + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/bamboo_fence_gate_open", + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/bamboo_fence_gate_wall", + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/bamboo_fence_gate_wall_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_hanging_sign.json new file mode 100644 index 000000000..281454077 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bamboo_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic.json new file mode 100644 index 000000000..c9b6ece45 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bamboo_mosaic" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic_slab.json new file mode 100644 index 000000000..1b743dfa9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/bamboo_mosaic_slab" + }, + "type=double": { + "model": "minecraft:block/bamboo_mosaic" + }, + "type=top": { + "model": "minecraft:block/bamboo_mosaic_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic_stairs.json new file mode 100644 index 000000000..79036430c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_mosaic_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/bamboo_mosaic_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/bamboo_mosaic_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/bamboo_mosaic_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/bamboo_mosaic_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/bamboo_mosaic_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/bamboo_mosaic_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/bamboo_mosaic_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/bamboo_mosaic_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/bamboo_mosaic_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_planks.json new file mode 100644 index 000000000..f4f47811c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bamboo_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_pressure_plate.json new file mode 100644 index 000000000..6d4c18a90 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/bamboo_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/bamboo_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_sapling.json new file mode 100644 index 000000000..b16a0c274 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bamboo_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_shelf.json new file mode 100644 index 000000000..c92ee3ed7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_shelf.json @@ -0,0 +1,402 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/bamboo_shelf" + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf", + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf", + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf", + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_unpowered" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_unpowered", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_unpowered", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_unpowered", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_unconnected" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_unconnected", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_unconnected", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_unconnected", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_center" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_center", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_center", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_center", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/bamboo_shelf_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_sign.json new file mode 100644 index 000000000..0648ee3c0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bamboo_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_slab.json new file mode 100644 index 000000000..0888e7718 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/bamboo_slab" + }, + "type=double": { + "model": "minecraft:block/bamboo_planks" + }, + "type=top": { + "model": "minecraft:block/bamboo_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_stairs.json new file mode 100644 index 000000000..649d2b703 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/bamboo_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/bamboo_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/bamboo_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/bamboo_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/bamboo_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/bamboo_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/bamboo_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/bamboo_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/bamboo_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/bamboo_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/bamboo_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/bamboo_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/bamboo_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/bamboo_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_trapdoor.json new file mode 100644 index 000000000..e1b5bd14d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/bamboo_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/bamboo_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/bamboo_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/bamboo_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/bamboo_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/bamboo_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/bamboo_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/bamboo_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/bamboo_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/bamboo_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/bamboo_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/bamboo_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/bamboo_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/bamboo_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/bamboo_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/bamboo_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_wall_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_wall_hanging_sign.json new file mode 100644 index 000000000..281454077 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bamboo_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_wall_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_wall_sign.json new file mode 100644 index 000000000..0648ee3c0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bamboo_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bamboo_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/barrel.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/barrel.json new file mode 100644 index 000000000..3ed4f4061 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/barrel.json @@ -0,0 +1,56 @@ +{ + "variants": { + "facing=down,open=false": { + "model": "minecraft:block/barrel", + "x": 180 + }, + "facing=down,open=true": { + "model": "minecraft:block/barrel_open", + "x": 180 + }, + "facing=east,open=false": { + "model": "minecraft:block/barrel", + "x": 90, + "y": 90 + }, + "facing=east,open=true": { + "model": "minecraft:block/barrel_open", + "x": 90, + "y": 90 + }, + "facing=north,open=false": { + "model": "minecraft:block/barrel", + "x": 90 + }, + "facing=north,open=true": { + "model": "minecraft:block/barrel_open", + "x": 90 + }, + "facing=south,open=false": { + "model": "minecraft:block/barrel", + "x": 90, + "y": 180 + }, + "facing=south,open=true": { + "model": "minecraft:block/barrel_open", + "x": 90, + "y": 180 + }, + "facing=up,open=false": { + "model": "minecraft:block/barrel" + }, + "facing=up,open=true": { + "model": "minecraft:block/barrel_open" + }, + "facing=west,open=false": { + "model": "minecraft:block/barrel", + "x": 90, + "y": 270 + }, + "facing=west,open=true": { + "model": "minecraft:block/barrel_open", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/barrier.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/barrier.json new file mode 100644 index 000000000..a8194d260 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/barrier.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/barrier" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/basalt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/basalt.json new file mode 100644 index 000000000..12bc2d6a9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/basalt.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/basalt", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/basalt" + }, + "axis=z": { + "model": "minecraft:block/basalt", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/beacon.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/beacon.json new file mode 100644 index 000000000..dc3a36b15 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/beacon.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/beacon" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bedrock.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bedrock.json new file mode 100644 index 000000000..cb107bd0c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bedrock.json @@ -0,0 +1,20 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/bedrock" + }, + { + "model": "minecraft:block/bedrock_mirrored" + }, + { + "model": "minecraft:block/bedrock", + "y": 180 + }, + { + "model": "minecraft:block/bedrock_mirrored", + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bee_nest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bee_nest.json new file mode 100644 index 000000000..d76bd0098 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bee_nest.json @@ -0,0 +1,94 @@ +{ + "variants": { + "facing=east,honey_level=0": { + "model": "minecraft:block/bee_nest_empty", + "y": 90 + }, + "facing=east,honey_level=1": { + "model": "minecraft:block/bee_nest_empty", + "y": 90 + }, + "facing=east,honey_level=2": { + "model": "minecraft:block/bee_nest_empty", + "y": 90 + }, + "facing=east,honey_level=3": { + "model": "minecraft:block/bee_nest_empty", + "y": 90 + }, + "facing=east,honey_level=4": { + "model": "minecraft:block/bee_nest_empty", + "y": 90 + }, + "facing=east,honey_level=5": { + "model": "minecraft:block/bee_nest_honey", + "y": 90 + }, + "facing=north,honey_level=0": { + "model": "minecraft:block/bee_nest_empty" + }, + "facing=north,honey_level=1": { + "model": "minecraft:block/bee_nest_empty" + }, + "facing=north,honey_level=2": { + "model": "minecraft:block/bee_nest_empty" + }, + "facing=north,honey_level=3": { + "model": "minecraft:block/bee_nest_empty" + }, + "facing=north,honey_level=4": { + "model": "minecraft:block/bee_nest_empty" + }, + "facing=north,honey_level=5": { + "model": "minecraft:block/bee_nest_honey" + }, + "facing=south,honey_level=0": { + "model": "minecraft:block/bee_nest_empty", + "y": 180 + }, + "facing=south,honey_level=1": { + "model": "minecraft:block/bee_nest_empty", + "y": 180 + }, + "facing=south,honey_level=2": { + "model": "minecraft:block/bee_nest_empty", + "y": 180 + }, + "facing=south,honey_level=3": { + "model": "minecraft:block/bee_nest_empty", + "y": 180 + }, + "facing=south,honey_level=4": { + "model": "minecraft:block/bee_nest_empty", + "y": 180 + }, + "facing=south,honey_level=5": { + "model": "minecraft:block/bee_nest_honey", + "y": 180 + }, + "facing=west,honey_level=0": { + "model": "minecraft:block/bee_nest_empty", + "y": 270 + }, + "facing=west,honey_level=1": { + "model": "minecraft:block/bee_nest_empty", + "y": 270 + }, + "facing=west,honey_level=2": { + "model": "minecraft:block/bee_nest_empty", + "y": 270 + }, + "facing=west,honey_level=3": { + "model": "minecraft:block/bee_nest_empty", + "y": 270 + }, + "facing=west,honey_level=4": { + "model": "minecraft:block/bee_nest_empty", + "y": 270 + }, + "facing=west,honey_level=5": { + "model": "minecraft:block/bee_nest_honey", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/beehive.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/beehive.json new file mode 100644 index 000000000..cebaa7776 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/beehive.json @@ -0,0 +1,94 @@ +{ + "variants": { + "facing=east,honey_level=0": { + "model": "minecraft:block/beehive_empty", + "y": 90 + }, + "facing=east,honey_level=1": { + "model": "minecraft:block/beehive_empty", + "y": 90 + }, + "facing=east,honey_level=2": { + "model": "minecraft:block/beehive_empty", + "y": 90 + }, + "facing=east,honey_level=3": { + "model": "minecraft:block/beehive_empty", + "y": 90 + }, + "facing=east,honey_level=4": { + "model": "minecraft:block/beehive_empty", + "y": 90 + }, + "facing=east,honey_level=5": { + "model": "minecraft:block/beehive_honey", + "y": 90 + }, + "facing=north,honey_level=0": { + "model": "minecraft:block/beehive_empty" + }, + "facing=north,honey_level=1": { + "model": "minecraft:block/beehive_empty" + }, + "facing=north,honey_level=2": { + "model": "minecraft:block/beehive_empty" + }, + "facing=north,honey_level=3": { + "model": "minecraft:block/beehive_empty" + }, + "facing=north,honey_level=4": { + "model": "minecraft:block/beehive_empty" + }, + "facing=north,honey_level=5": { + "model": "minecraft:block/beehive_honey" + }, + "facing=south,honey_level=0": { + "model": "minecraft:block/beehive_empty", + "y": 180 + }, + "facing=south,honey_level=1": { + "model": "minecraft:block/beehive_empty", + "y": 180 + }, + "facing=south,honey_level=2": { + "model": "minecraft:block/beehive_empty", + "y": 180 + }, + "facing=south,honey_level=3": { + "model": "minecraft:block/beehive_empty", + "y": 180 + }, + "facing=south,honey_level=4": { + "model": "minecraft:block/beehive_empty", + "y": 180 + }, + "facing=south,honey_level=5": { + "model": "minecraft:block/beehive_honey", + "y": 180 + }, + "facing=west,honey_level=0": { + "model": "minecraft:block/beehive_empty", + "y": 270 + }, + "facing=west,honey_level=1": { + "model": "minecraft:block/beehive_empty", + "y": 270 + }, + "facing=west,honey_level=2": { + "model": "minecraft:block/beehive_empty", + "y": 270 + }, + "facing=west,honey_level=3": { + "model": "minecraft:block/beehive_empty", + "y": 270 + }, + "facing=west,honey_level=4": { + "model": "minecraft:block/beehive_empty", + "y": 270 + }, + "facing=west,honey_level=5": { + "model": "minecraft:block/beehive_honey", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/beetroots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/beetroots.json new file mode 100644 index 000000000..98e30758a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/beetroots.json @@ -0,0 +1,16 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/beetroots_stage0" + }, + "age=1": { + "model": "minecraft:block/beetroots_stage1" + }, + "age=2": { + "model": "minecraft:block/beetroots_stage2" + }, + "age=3": { + "model": "minecraft:block/beetroots_stage3" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bell.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bell.json new file mode 100644 index 000000000..2af4b5dd2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bell.json @@ -0,0 +1,64 @@ +{ + "variants": { + "attachment=ceiling,facing=east": { + "model": "minecraft:block/bell_ceiling", + "y": 90 + }, + "attachment=ceiling,facing=north": { + "model": "minecraft:block/bell_ceiling" + }, + "attachment=ceiling,facing=south": { + "model": "minecraft:block/bell_ceiling", + "y": 180 + }, + "attachment=ceiling,facing=west": { + "model": "minecraft:block/bell_ceiling", + "y": 270 + }, + "attachment=double_wall,facing=east": { + "model": "minecraft:block/bell_between_walls" + }, + "attachment=double_wall,facing=north": { + "model": "minecraft:block/bell_between_walls", + "y": 270 + }, + "attachment=double_wall,facing=south": { + "model": "minecraft:block/bell_between_walls", + "y": 90 + }, + "attachment=double_wall,facing=west": { + "model": "minecraft:block/bell_between_walls", + "y": 180 + }, + "attachment=floor,facing=east": { + "model": "minecraft:block/bell_floor", + "y": 90 + }, + "attachment=floor,facing=north": { + "model": "minecraft:block/bell_floor" + }, + "attachment=floor,facing=south": { + "model": "minecraft:block/bell_floor", + "y": 180 + }, + "attachment=floor,facing=west": { + "model": "minecraft:block/bell_floor", + "y": 270 + }, + "attachment=single_wall,facing=east": { + "model": "minecraft:block/bell_wall" + }, + "attachment=single_wall,facing=north": { + "model": "minecraft:block/bell_wall", + "y": 270 + }, + "attachment=single_wall,facing=south": { + "model": "minecraft:block/bell_wall", + "y": 90 + }, + "attachment=single_wall,facing=west": { + "model": "minecraft:block/bell_wall", + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/big_dripleaf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/big_dripleaf.json new file mode 100644 index 000000000..06aefac01 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/big_dripleaf.json @@ -0,0 +1,64 @@ +{ + "variants": { + "facing=east,tilt=full": { + "model": "minecraft:block/big_dripleaf_full_tilt", + "y": 90 + }, + "facing=east,tilt=none": { + "model": "minecraft:block/big_dripleaf", + "y": 90 + }, + "facing=east,tilt=partial": { + "model": "minecraft:block/big_dripleaf_partial_tilt", + "y": 90 + }, + "facing=east,tilt=unstable": { + "model": "minecraft:block/big_dripleaf", + "y": 90 + }, + "facing=north,tilt=full": { + "model": "minecraft:block/big_dripleaf_full_tilt" + }, + "facing=north,tilt=none": { + "model": "minecraft:block/big_dripleaf" + }, + "facing=north,tilt=partial": { + "model": "minecraft:block/big_dripleaf_partial_tilt" + }, + "facing=north,tilt=unstable": { + "model": "minecraft:block/big_dripleaf" + }, + "facing=south,tilt=full": { + "model": "minecraft:block/big_dripleaf_full_tilt", + "y": 180 + }, + "facing=south,tilt=none": { + "model": "minecraft:block/big_dripleaf", + "y": 180 + }, + "facing=south,tilt=partial": { + "model": "minecraft:block/big_dripleaf_partial_tilt", + "y": 180 + }, + "facing=south,tilt=unstable": { + "model": "minecraft:block/big_dripleaf", + "y": 180 + }, + "facing=west,tilt=full": { + "model": "minecraft:block/big_dripleaf_full_tilt", + "y": 270 + }, + "facing=west,tilt=none": { + "model": "minecraft:block/big_dripleaf", + "y": 270 + }, + "facing=west,tilt=partial": { + "model": "minecraft:block/big_dripleaf_partial_tilt", + "y": 270 + }, + "facing=west,tilt=unstable": { + "model": "minecraft:block/big_dripleaf", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/big_dripleaf_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/big_dripleaf_stem.json new file mode 100644 index 000000000..919512083 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/big_dripleaf_stem.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/big_dripleaf_stem", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/big_dripleaf_stem" + }, + "facing=south": { + "model": "minecraft:block/big_dripleaf_stem", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/big_dripleaf_stem", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_button.json new file mode 100644 index 000000000..db0c5889d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/birch_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/birch_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/birch_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/birch_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/birch_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/birch_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/birch_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/birch_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/birch_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/birch_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/birch_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/birch_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/birch_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/birch_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_door.json new file mode 100644 index 000000000..9657be972 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/birch_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/birch_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/birch_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/birch_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/birch_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/birch_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/birch_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/birch_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/birch_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/birch_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/birch_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/birch_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/birch_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/birch_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/birch_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/birch_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/birch_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/birch_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/birch_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/birch_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/birch_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/birch_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/birch_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/birch_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/birch_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/birch_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/birch_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/birch_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/birch_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/birch_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/birch_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/birch_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_fence.json new file mode 100644 index 000000000..afd6e1d0e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/birch_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/birch_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/birch_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/birch_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/birch_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_fence_gate.json new file mode 100644 index 000000000..aca8f697b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/birch_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/birch_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/birch_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/birch_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/birch_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/birch_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/birch_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/birch_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/birch_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/birch_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/birch_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/birch_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/birch_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/birch_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/birch_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/birch_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_hanging_sign.json new file mode 100644 index 000000000..f5173003b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/birch_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_leaves.json new file mode 100644 index 000000000..45a5921d7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/birch_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_log.json new file mode 100644 index 000000000..24ba8da33 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/birch_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/birch_log" + }, + "axis=z": { + "model": "minecraft:block/birch_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_planks.json new file mode 100644 index 000000000..b5b2e8dcb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/birch_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_pressure_plate.json new file mode 100644 index 000000000..0f5fb7a4f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/birch_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/birch_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_sapling.json new file mode 100644 index 000000000..107370540 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/birch_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_shelf.json new file mode 100644 index 000000000..0c8642c4e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_shelf.json @@ -0,0 +1,402 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/birch_shelf" + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf", + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf", + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf", + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_unpowered" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_unpowered", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_unpowered", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_unpowered", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_unconnected" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_unconnected", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_unconnected", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_unconnected", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_center" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_center", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_center", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_center", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/birch_shelf_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_sign.json new file mode 100644 index 000000000..dec6f07d2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/birch_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_slab.json new file mode 100644 index 000000000..28e4f33d6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/birch_slab" + }, + "type=double": { + "model": "minecraft:block/birch_planks" + }, + "type=top": { + "model": "minecraft:block/birch_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_stairs.json new file mode 100644 index 000000000..1a7881d0c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/birch_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/birch_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/birch_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/birch_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/birch_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/birch_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/birch_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/birch_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/birch_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/birch_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/birch_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/birch_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/birch_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/birch_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_trapdoor.json new file mode 100644 index 000000000..a8bb88c0e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/birch_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/birch_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/birch_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/birch_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/birch_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/birch_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/birch_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/birch_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/birch_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/birch_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/birch_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/birch_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/birch_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/birch_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/birch_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/birch_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_wall_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_wall_hanging_sign.json new file mode 100644 index 000000000..f5173003b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/birch_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_wall_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_wall_sign.json new file mode 100644 index 000000000..dec6f07d2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/birch_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_wood.json new file mode 100644 index 000000000..4bda7ed35 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/birch_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/birch_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/birch_wood" + }, + "axis=z": { + "model": "minecraft:block/birch_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_candle.json new file mode 100644 index 000000000..3fcbe004e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/black_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/black_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/black_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/black_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/black_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/black_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/black_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/black_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_candle_cake.json new file mode 100644 index 000000000..f02ecb765 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/black_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/black_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_carpet.json new file mode 100644 index 000000000..043c7fc55 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/black_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_concrete.json new file mode 100644 index 000000000..797f0358e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/black_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_concrete_powder.json new file mode 100644 index 000000000..56a53d03a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/black_concrete_powder" + }, + { + "model": "minecraft:block/black_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/black_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/black_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_glazed_terracotta.json new file mode 100644 index 000000000..e20988dcd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/black_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/black_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/black_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/black_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_shulker_box.json new file mode 100644 index 000000000..289aec047 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/black_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_stained_glass.json new file mode 100644 index 000000000..728f216b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/black_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_stained_glass_pane.json new file mode 100644 index 000000000..655588da7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/black_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_terracotta.json new file mode 100644 index 000000000..7ae0ad870 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/black_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_wall_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_wool.json new file mode 100644 index 000000000..18b2cb6c7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/black_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/black_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blackstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blackstone.json new file mode 100644 index 000000000..5b6e6a417 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blackstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blackstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blackstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blackstone_slab.json new file mode 100644 index 000000000..41cada96e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blackstone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/blackstone_slab" + }, + "type=double": { + "model": "minecraft:block/blackstone" + }, + "type=top": { + "model": "minecraft:block/blackstone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blackstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blackstone_stairs.json new file mode 100644 index 000000000..f533ccb3b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blackstone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/blackstone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/blackstone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/blackstone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/blackstone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/blackstone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/blackstone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/blackstone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/blackstone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/blackstone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/blackstone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/blackstone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/blackstone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blackstone_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blackstone_wall.json new file mode 100644 index 000000000..537f206f0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blackstone_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/blackstone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/blackstone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/blackstone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/blackstone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/blackstone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/blackstone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/blackstone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/blackstone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/blackstone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blast_furnace.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blast_furnace.json new file mode 100644 index 000000000..63dbedd7b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blast_furnace.json @@ -0,0 +1,34 @@ +{ + "variants": { + "facing=east,lit=false": { + "model": "minecraft:block/blast_furnace", + "y": 90 + }, + "facing=east,lit=true": { + "model": "minecraft:block/blast_furnace_on", + "y": 90 + }, + "facing=north,lit=false": { + "model": "minecraft:block/blast_furnace" + }, + "facing=north,lit=true": { + "model": "minecraft:block/blast_furnace_on" + }, + "facing=south,lit=false": { + "model": "minecraft:block/blast_furnace", + "y": 180 + }, + "facing=south,lit=true": { + "model": "minecraft:block/blast_furnace_on", + "y": 180 + }, + "facing=west,lit=false": { + "model": "minecraft:block/blast_furnace", + "y": 270 + }, + "facing=west,lit=true": { + "model": "minecraft:block/blast_furnace_on", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_candle.json new file mode 100644 index 000000000..75e30d08b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/blue_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/blue_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/blue_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/blue_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/blue_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/blue_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/blue_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/blue_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_candle_cake.json new file mode 100644 index 000000000..869c55f19 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/blue_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/blue_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_carpet.json new file mode 100644 index 000000000..082b9f340 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_concrete.json new file mode 100644 index 000000000..7c63116c0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_concrete_powder.json new file mode 100644 index 000000000..92d2724af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/blue_concrete_powder" + }, + { + "model": "minecraft:block/blue_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/blue_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/blue_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_glazed_terracotta.json new file mode 100644 index 000000000..063c11c4a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/blue_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/blue_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/blue_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/blue_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_ice.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_ice.json new file mode 100644 index 000000000..79ce6ac46 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_ice.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_ice" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_orchid.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_orchid.json new file mode 100644 index 000000000..4cdb31497 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_orchid.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_orchid" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_shulker_box.json new file mode 100644 index 000000000..9f05ab962 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_stained_glass.json new file mode 100644 index 000000000..e495d0044 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_stained_glass_pane.json new file mode 100644 index 000000000..f86fce7ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/blue_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_terracotta.json new file mode 100644 index 000000000..972492b10 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_wall_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_wool.json new file mode 100644 index 000000000..1b65b8e61 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/blue_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/blue_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bone_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bone_block.json new file mode 100644 index 000000000..284e15b2d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bone_block.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/bone_block", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/bone_block" + }, + "axis=z": { + "model": "minecraft:block/bone_block", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bookshelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bookshelf.json new file mode 100644 index 000000000..a0198c081 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bookshelf.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bookshelf" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brain_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brain_coral.json new file mode 100644 index 000000000..7b1002965 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brain_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brain_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brain_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brain_coral_block.json new file mode 100644 index 000000000..2c133d41f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brain_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brain_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brain_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brain_coral_fan.json new file mode 100644 index 000000000..353ec6b54 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brain_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brain_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brain_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brain_coral_wall_fan.json new file mode 100644 index 000000000..76fa0a4ac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brain_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/brain_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/brain_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/brain_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/brain_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brewing_stand.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brewing_stand.json new file mode 100644 index 000000000..dfdffcd87 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brewing_stand.json @@ -0,0 +1,57 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/brewing_stand" + } + }, + { + "apply": { + "model": "minecraft:block/brewing_stand_bottle0" + }, + "when": { + "has_bottle_0": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brewing_stand_bottle1" + }, + "when": { + "has_bottle_1": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brewing_stand_bottle2" + }, + "when": { + "has_bottle_2": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brewing_stand_empty0" + }, + "when": { + "has_bottle_0": "false" + } + }, + { + "apply": { + "model": "minecraft:block/brewing_stand_empty1" + }, + "when": { + "has_bottle_1": "false" + } + }, + { + "apply": { + "model": "minecraft:block/brewing_stand_empty2" + }, + "when": { + "has_bottle_2": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brick_slab.json new file mode 100644 index 000000000..dc9f2cce2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/brick_slab" + }, + "type=double": { + "model": "minecraft:block/bricks" + }, + "type=top": { + "model": "minecraft:block/brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brick_stairs.json new file mode 100644 index 000000000..7e6738264 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brick_wall.json new file mode 100644 index 000000000..140062a5e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bricks.json new file mode 100644 index 000000000..7b54ff6ab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_candle.json new file mode 100644 index 000000000..66979471f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/brown_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/brown_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/brown_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/brown_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/brown_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/brown_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/brown_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/brown_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_candle_cake.json new file mode 100644 index 000000000..e92e80830 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/brown_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/brown_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_carpet.json new file mode 100644 index 000000000..7273224e5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brown_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_concrete.json new file mode 100644 index 000000000..6841a73c0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brown_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_concrete_powder.json new file mode 100644 index 000000000..49ef78378 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/brown_concrete_powder" + }, + { + "model": "minecraft:block/brown_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/brown_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/brown_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_glazed_terracotta.json new file mode 100644 index 000000000..d78b69541 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/brown_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/brown_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/brown_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/brown_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_mushroom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_mushroom.json new file mode 100644 index 000000000..9a2fb1c63 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_mushroom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brown_mushroom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_mushroom_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_mushroom_block.json new file mode 100644 index 000000000..9edb9370b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_mushroom_block.json @@ -0,0 +1,115 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/brown_mushroom_block" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_mushroom_block", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_mushroom_block", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_mushroom_block", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_mushroom_block", + "uvlock": true, + "x": 270 + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_mushroom_block", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 90 + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 180 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 270 + }, + "when": { + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "x": 270 + }, + "when": { + "up": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "x": 90 + }, + "when": { + "down": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_shulker_box.json new file mode 100644 index 000000000..c4f723bb3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brown_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_stained_glass.json new file mode 100644 index 000000000..723e232ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brown_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_stained_glass_pane.json new file mode 100644 index 000000000..17abeae4f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/brown_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_terracotta.json new file mode 100644 index 000000000..6a618f17d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brown_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_wall_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_wool.json new file mode 100644 index 000000000..4c378d5e6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/brown_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/brown_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bubble_column.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bubble_column.json new file mode 100644 index 000000000..99fd360b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bubble_column.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/water" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bubble_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bubble_coral.json new file mode 100644 index 000000000..3e068e64e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bubble_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bubble_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bubble_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bubble_coral_block.json new file mode 100644 index 000000000..4f6abebe4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bubble_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bubble_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bubble_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bubble_coral_fan.json new file mode 100644 index 000000000..e91a669fd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bubble_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bubble_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bubble_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bubble_coral_wall_fan.json new file mode 100644 index 000000000..5310027a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bubble_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/bubble_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/bubble_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/bubble_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/bubble_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/budding_amethyst.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/budding_amethyst.json new file mode 100644 index 000000000..a6e222b68 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/budding_amethyst.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/budding_amethyst" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bush.json new file mode 100644 index 000000000..55d8078c7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/bush.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bush" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cactus.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cactus.json new file mode 100644 index 000000000..c1623fbc4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cactus.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cactus" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cactus_flower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cactus_flower.json new file mode 100644 index 000000000..24f6f69b6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cactus_flower.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cactus_flower" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cake.json new file mode 100644 index 000000000..c905f1184 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cake.json @@ -0,0 +1,25 @@ +{ + "variants": { + "bites=0": { + "model": "minecraft:block/cake" + }, + "bites=1": { + "model": "minecraft:block/cake_slice1" + }, + "bites=2": { + "model": "minecraft:block/cake_slice2" + }, + "bites=3": { + "model": "minecraft:block/cake_slice3" + }, + "bites=4": { + "model": "minecraft:block/cake_slice4" + }, + "bites=5": { + "model": "minecraft:block/cake_slice5" + }, + "bites=6": { + "model": "minecraft:block/cake_slice6" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/calcite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/calcite.json new file mode 100644 index 000000000..c9ff836d2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/calcite.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/calcite" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/calibrated_sculk_sensor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/calibrated_sculk_sensor.json new file mode 100644 index 000000000..7f6197584 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/calibrated_sculk_sensor.json @@ -0,0 +1,49 @@ +{ + "variants": { + "facing=east,sculk_sensor_phase=active": { + "model": "minecraft:block/calibrated_sculk_sensor_active", + "y": 90 + }, + "facing=east,sculk_sensor_phase=cooldown": { + "model": "minecraft:block/calibrated_sculk_sensor_active", + "y": 90 + }, + "facing=east,sculk_sensor_phase=inactive": { + "model": "minecraft:block/calibrated_sculk_sensor_inactive", + "y": 90 + }, + "facing=north,sculk_sensor_phase=active": { + "model": "minecraft:block/calibrated_sculk_sensor_active" + }, + "facing=north,sculk_sensor_phase=cooldown": { + "model": "minecraft:block/calibrated_sculk_sensor_active" + }, + "facing=north,sculk_sensor_phase=inactive": { + "model": "minecraft:block/calibrated_sculk_sensor_inactive" + }, + "facing=south,sculk_sensor_phase=active": { + "model": "minecraft:block/calibrated_sculk_sensor_active", + "y": 180 + }, + "facing=south,sculk_sensor_phase=cooldown": { + "model": "minecraft:block/calibrated_sculk_sensor_active", + "y": 180 + }, + "facing=south,sculk_sensor_phase=inactive": { + "model": "minecraft:block/calibrated_sculk_sensor_inactive", + "y": 180 + }, + "facing=west,sculk_sensor_phase=active": { + "model": "minecraft:block/calibrated_sculk_sensor_active", + "y": 270 + }, + "facing=west,sculk_sensor_phase=cooldown": { + "model": "minecraft:block/calibrated_sculk_sensor_active", + "y": 270 + }, + "facing=west,sculk_sensor_phase=inactive": { + "model": "minecraft:block/calibrated_sculk_sensor_inactive", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/campfire.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/campfire.json new file mode 100644 index 000000000..d5751b857 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/campfire.json @@ -0,0 +1,34 @@ +{ + "variants": { + "facing=east,lit=false": { + "model": "minecraft:block/campfire_off", + "y": 270 + }, + "facing=east,lit=true": { + "model": "minecraft:block/campfire", + "y": 270 + }, + "facing=north,lit=false": { + "model": "minecraft:block/campfire_off", + "y": 180 + }, + "facing=north,lit=true": { + "model": "minecraft:block/campfire", + "y": 180 + }, + "facing=south,lit=false": { + "model": "minecraft:block/campfire_off" + }, + "facing=south,lit=true": { + "model": "minecraft:block/campfire" + }, + "facing=west,lit=false": { + "model": "minecraft:block/campfire_off", + "y": 90 + }, + "facing=west,lit=true": { + "model": "minecraft:block/campfire", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/candle.json new file mode 100644 index 000000000..9e8670343 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/candle_cake.json new file mode 100644 index 000000000..4e1e1181a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/candle_cake" + }, + "lit=true": { + "model": "minecraft:block/candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/carrots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/carrots.json new file mode 100644 index 000000000..8acf220f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/carrots.json @@ -0,0 +1,28 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/carrots_stage0" + }, + "age=1": { + "model": "minecraft:block/carrots_stage0" + }, + "age=2": { + "model": "minecraft:block/carrots_stage1" + }, + "age=3": { + "model": "minecraft:block/carrots_stage1" + }, + "age=4": { + "model": "minecraft:block/carrots_stage2" + }, + "age=5": { + "model": "minecraft:block/carrots_stage2" + }, + "age=6": { + "model": "minecraft:block/carrots_stage2" + }, + "age=7": { + "model": "minecraft:block/carrots_stage3" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cartography_table.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cartography_table.json new file mode 100644 index 000000000..6feb4018f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cartography_table.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cartography_table" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/carved_pumpkin.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/carved_pumpkin.json new file mode 100644 index 000000000..f98dc9f94 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/carved_pumpkin.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/carved_pumpkin", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/carved_pumpkin" + }, + "facing=south": { + "model": "minecraft:block/carved_pumpkin", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/carved_pumpkin", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cauldron.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cauldron.json new file mode 100644 index 000000000..9908cf5d4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cauldron.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cauldron" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cave_air.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cave_air.json new file mode 100644 index 000000000..2c8f02f06 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cave_air.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/air" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cave_vines.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cave_vines.json new file mode 100644 index 000000000..684555fff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cave_vines.json @@ -0,0 +1,10 @@ +{ + "variants": { + "berries=false": { + "model": "minecraft:block/cave_vines" + }, + "berries=true": { + "model": "minecraft:block/cave_vines_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cave_vines_plant.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cave_vines_plant.json new file mode 100644 index 000000000..a07870ef5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cave_vines_plant.json @@ -0,0 +1,10 @@ +{ + "variants": { + "berries=false": { + "model": "minecraft:block/cave_vines_plant" + }, + "berries=true": { + "model": "minecraft:block/cave_vines_plant_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chain.json new file mode 100644 index 000000000..9ae0f9648 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chain.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/chain", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/chain" + }, + "axis=z": { + "model": "minecraft:block/chain", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chain_command_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chain_command_block.json new file mode 100644 index 000000000..ede144292 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chain_command_block.json @@ -0,0 +1,50 @@ +{ + "variants": { + "conditional=false,facing=down": { + "model": "minecraft:block/chain_command_block", + "x": 90 + }, + "conditional=false,facing=east": { + "model": "minecraft:block/chain_command_block", + "y": 90 + }, + "conditional=false,facing=north": { + "model": "minecraft:block/chain_command_block" + }, + "conditional=false,facing=south": { + "model": "minecraft:block/chain_command_block", + "y": 180 + }, + "conditional=false,facing=up": { + "model": "minecraft:block/chain_command_block", + "x": 270 + }, + "conditional=false,facing=west": { + "model": "minecraft:block/chain_command_block", + "y": 270 + }, + "conditional=true,facing=down": { + "model": "minecraft:block/chain_command_block_conditional", + "x": 90 + }, + "conditional=true,facing=east": { + "model": "minecraft:block/chain_command_block_conditional", + "y": 90 + }, + "conditional=true,facing=north": { + "model": "minecraft:block/chain_command_block_conditional" + }, + "conditional=true,facing=south": { + "model": "minecraft:block/chain_command_block_conditional", + "y": 180 + }, + "conditional=true,facing=up": { + "model": "minecraft:block/chain_command_block_conditional", + "x": 270 + }, + "conditional=true,facing=west": { + "model": "minecraft:block/chain_command_block_conditional", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_button.json new file mode 100644 index 000000000..89686b633 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/cherry_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/cherry_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/cherry_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/cherry_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/cherry_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/cherry_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/cherry_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/cherry_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/cherry_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/cherry_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/cherry_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/cherry_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/cherry_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/cherry_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_door.json new file mode 100644 index 000000000..73fb6c3b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/cherry_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/cherry_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/cherry_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/cherry_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/cherry_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/cherry_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/cherry_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/cherry_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/cherry_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/cherry_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/cherry_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/cherry_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/cherry_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/cherry_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/cherry_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/cherry_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/cherry_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/cherry_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/cherry_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/cherry_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/cherry_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/cherry_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/cherry_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/cherry_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/cherry_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/cherry_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/cherry_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/cherry_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/cherry_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/cherry_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/cherry_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/cherry_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_fence.json new file mode 100644 index 000000000..a67bdd8e0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/cherry_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/cherry_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cherry_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cherry_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cherry_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_fence_gate.json new file mode 100644 index 000000000..e92e638cc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/cherry_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/cherry_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/cherry_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/cherry_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/cherry_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/cherry_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/cherry_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/cherry_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/cherry_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/cherry_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/cherry_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/cherry_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/cherry_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/cherry_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/cherry_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/cherry_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_hanging_sign.json new file mode 100644 index 000000000..f6cd312b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cherry_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_leaves.json new file mode 100644 index 000000000..de7a3c88f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cherry_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_log.json new file mode 100644 index 000000000..a35c0d9f8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_log.json @@ -0,0 +1,13 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/cherry_log_x" + }, + "axis=y": { + "model": "minecraft:block/cherry_log_y" + }, + "axis=z": { + "model": "minecraft:block/cherry_log_z" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_planks.json new file mode 100644 index 000000000..02915c932 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cherry_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_pressure_plate.json new file mode 100644 index 000000000..619b8c70e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/cherry_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/cherry_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_sapling.json new file mode 100644 index 000000000..cab2fb40e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cherry_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_shelf.json new file mode 100644 index 000000000..10cfe521b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_shelf.json @@ -0,0 +1,402 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/cherry_shelf" + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf", + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf", + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf", + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_unpowered" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_unpowered", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_unpowered", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_unpowered", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_unconnected" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_unconnected", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_unconnected", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_unconnected", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_center" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_center", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_center", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_center", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/cherry_shelf_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_sign.json new file mode 100644 index 000000000..e9f5111a0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cherry_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_slab.json new file mode 100644 index 000000000..3c192c1b5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/cherry_slab" + }, + "type=double": { + "model": "minecraft:block/cherry_planks" + }, + "type=top": { + "model": "minecraft:block/cherry_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_stairs.json new file mode 100644 index 000000000..0de5122b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/cherry_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/cherry_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/cherry_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/cherry_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/cherry_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/cherry_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/cherry_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/cherry_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/cherry_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/cherry_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/cherry_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/cherry_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/cherry_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/cherry_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_trapdoor.json new file mode 100644 index 000000000..90aac9610 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/cherry_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/cherry_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/cherry_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/cherry_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/cherry_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/cherry_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/cherry_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/cherry_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/cherry_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/cherry_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/cherry_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/cherry_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/cherry_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/cherry_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/cherry_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/cherry_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_wall_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_wall_hanging_sign.json new file mode 100644 index 000000000..f6cd312b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cherry_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_wall_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_wall_sign.json new file mode 100644 index 000000000..e9f5111a0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cherry_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_wood.json new file mode 100644 index 000000000..5c180b3f3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cherry_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/cherry_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/cherry_wood" + }, + "axis=z": { + "model": "minecraft:block/cherry_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chest.json new file mode 100644 index 000000000..f78fa579c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chest.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chest" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chipped_anvil.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chipped_anvil.json new file mode 100644 index 000000000..466eb4c7b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chipped_anvil.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/chipped_anvil", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/chipped_anvil", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/chipped_anvil" + }, + "facing=west": { + "model": "minecraft:block/chipped_anvil", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_bookshelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_bookshelf.json new file mode 100644 index 000000000..0c9b22b91 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_bookshelf.json @@ -0,0 +1,799 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf", + "uvlock": true + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_0_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_0_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_mid" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_1_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_mid" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_1_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_2_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_2_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_3_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_3_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_mid" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_4_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_mid" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_4_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_5_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "slot_5_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf", + "uvlock": true, + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_0_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_0_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_mid", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_1_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_mid", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_1_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_2_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_2_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_3_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_3_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_mid", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_4_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_mid", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_4_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_5_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "slot_5_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf", + "uvlock": true, + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_0_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_0_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_mid", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_1_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_mid", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_1_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_2_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_2_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_3_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_3_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_mid", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_4_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_mid", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_4_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_5_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "slot_5_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf", + "uvlock": true, + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_0_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_0_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_mid", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_1_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_mid", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_1_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_top_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_2_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_top_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_2_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_3_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_3_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_mid", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_4_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_mid", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_4_occupied": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_occupied_slot_bottom_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_5_occupied": "true" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/chiseled_bookshelf_empty_slot_bottom_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "slot_5_occupied": "false" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_copper.json new file mode 100644 index 000000000..6b2ccc853 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_deepslate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_deepslate.json new file mode 100644 index 000000000..e7edb5a66 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_deepslate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_deepslate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_nether_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_nether_bricks.json new file mode 100644 index 000000000..c2748322d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_nether_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_nether_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_polished_blackstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_polished_blackstone.json new file mode 100644 index 000000000..66a2f35f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_polished_blackstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_polished_blackstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_quartz_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_quartz_block.json new file mode 100644 index 000000000..2e9192c7c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_quartz_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_quartz_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_red_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_red_sandstone.json new file mode 100644 index 000000000..c1f7cc6e0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_red_sandstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_red_sandstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_resin_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_resin_bricks.json new file mode 100644 index 000000000..fd9c64542 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_resin_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_resin_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_sandstone.json new file mode 100644 index 000000000..7a5de5693 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_sandstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_sandstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_stone_bricks.json new file mode 100644 index 000000000..4034c11b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_tuff.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_tuff.json new file mode 100644 index 000000000..d4afccd7b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_tuff.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_tuff" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_tuff_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_tuff_bricks.json new file mode 100644 index 000000000..6c5654465 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chiseled_tuff_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_tuff_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chorus_flower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chorus_flower.json new file mode 100644 index 000000000..0bf058066 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chorus_flower.json @@ -0,0 +1,22 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/chorus_flower" + }, + "age=1": { + "model": "minecraft:block/chorus_flower" + }, + "age=2": { + "model": "minecraft:block/chorus_flower" + }, + "age=3": { + "model": "minecraft:block/chorus_flower" + }, + "age=4": { + "model": "minecraft:block/chorus_flower" + }, + "age=5": { + "model": "minecraft:block/chorus_flower_dead" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chorus_plant.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chorus_plant.json new file mode 100644 index 000000000..c84cff188 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/chorus_plant.json @@ -0,0 +1,222 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/chorus_plant_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/chorus_plant_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/chorus_plant_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/chorus_plant_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/chorus_plant_side", + "uvlock": true, + "x": 270 + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/chorus_plant_side", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "true" + } + }, + { + "apply": [ + { + "model": "minecraft:block/chorus_plant_noside", + "weight": 2 + }, + { + "model": "minecraft:block/chorus_plant_noside1" + }, + { + "model": "minecraft:block/chorus_plant_noside2" + }, + { + "model": "minecraft:block/chorus_plant_noside3" + } + ], + "when": { + "north": "false" + } + }, + { + "apply": [ + { + "model": "minecraft:block/chorus_plant_noside1", + "uvlock": true, + "y": 90 + }, + { + "model": "minecraft:block/chorus_plant_noside2", + "uvlock": true, + "y": 90 + }, + { + "model": "minecraft:block/chorus_plant_noside3", + "uvlock": true, + "y": 90 + }, + { + "model": "minecraft:block/chorus_plant_noside", + "uvlock": true, + "weight": 2, + "y": 90 + } + ], + "when": { + "east": "false" + } + }, + { + "apply": [ + { + "model": "minecraft:block/chorus_plant_noside2", + "uvlock": true, + "y": 180 + }, + { + "model": "minecraft:block/chorus_plant_noside3", + "uvlock": true, + "y": 180 + }, + { + "model": "minecraft:block/chorus_plant_noside", + "uvlock": true, + "weight": 2, + "y": 180 + }, + { + "model": "minecraft:block/chorus_plant_noside1", + "uvlock": true, + "y": 180 + } + ], + "when": { + "south": "false" + } + }, + { + "apply": [ + { + "model": "minecraft:block/chorus_plant_noside3", + "uvlock": true, + "y": 270 + }, + { + "model": "minecraft:block/chorus_plant_noside", + "uvlock": true, + "weight": 2, + "y": 270 + }, + { + "model": "minecraft:block/chorus_plant_noside1", + "uvlock": true, + "y": 270 + }, + { + "model": "minecraft:block/chorus_plant_noside2", + "uvlock": true, + "y": 270 + } + ], + "when": { + "west": "false" + } + }, + { + "apply": [ + { + "model": "minecraft:block/chorus_plant_noside", + "uvlock": true, + "weight": 2, + "x": 270 + }, + { + "model": "minecraft:block/chorus_plant_noside3", + "uvlock": true, + "x": 270 + }, + { + "model": "minecraft:block/chorus_plant_noside1", + "uvlock": true, + "x": 270 + }, + { + "model": "minecraft:block/chorus_plant_noside2", + "uvlock": true, + "x": 270 + } + ], + "when": { + "up": "false" + } + }, + { + "apply": [ + { + "model": "minecraft:block/chorus_plant_noside3", + "uvlock": true, + "x": 90 + }, + { + "model": "minecraft:block/chorus_plant_noside2", + "uvlock": true, + "x": 90 + }, + { + "model": "minecraft:block/chorus_plant_noside1", + "uvlock": true, + "x": 90 + }, + { + "model": "minecraft:block/chorus_plant_noside", + "uvlock": true, + "weight": 2, + "x": 90 + } + ], + "when": { + "down": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/clay.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/clay.json new file mode 100644 index 000000000..d22f313b4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/clay.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/clay" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/closed_eyeblossom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/closed_eyeblossom.json new file mode 100644 index 000000000..7a39dcf37 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/closed_eyeblossom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/closed_eyeblossom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/coal_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/coal_block.json new file mode 100644 index 000000000..266adaad6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/coal_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/coal_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/coal_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/coal_ore.json new file mode 100644 index 000000000..9fa7c00d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/coal_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/coal_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/coarse_dirt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/coarse_dirt.json new file mode 100644 index 000000000..1f87e5c17 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/coarse_dirt.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/coarse_dirt" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate.json new file mode 100644 index 000000000..d44144f1c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cobbled_deepslate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_slab.json new file mode 100644 index 000000000..65a49dcc8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/cobbled_deepslate_slab" + }, + "type=double": { + "model": "minecraft:block/cobbled_deepslate" + }, + "type=top": { + "model": "minecraft:block/cobbled_deepslate_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_stairs.json new file mode 100644 index 000000000..1c243b1d5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/cobbled_deepslate_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/cobbled_deepslate_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/cobbled_deepslate_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/cobbled_deepslate_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/cobbled_deepslate_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/cobbled_deepslate_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/cobbled_deepslate_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/cobbled_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/cobbled_deepslate_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_wall.json new file mode 100644 index 000000000..baa3cbb90 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobbled_deepslate_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/cobbled_deepslate_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobblestone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobblestone.json new file mode 100644 index 000000000..e94cf8820 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobblestone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cobblestone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobblestone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobblestone_slab.json new file mode 100644 index 000000000..8164d9edc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobblestone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/cobblestone_slab" + }, + "type=double": { + "model": "minecraft:block/cobblestone" + }, + "type=top": { + "model": "minecraft:block/cobblestone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobblestone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobblestone_stairs.json new file mode 100644 index 000000000..e018cb307 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobblestone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/cobblestone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/cobblestone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/cobblestone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/cobblestone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/cobblestone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/cobblestone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/cobblestone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/cobblestone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/cobblestone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/cobblestone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/cobblestone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/cobblestone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobblestone_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobblestone_wall.json new file mode 100644 index 000000000..ea2f67611 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobblestone_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobweb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobweb.json new file mode 100644 index 000000000..30a165e48 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cobweb.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cobweb" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cocoa.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cocoa.json new file mode 100644 index 000000000..d12aa4ecb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cocoa.json @@ -0,0 +1,49 @@ +{ + "variants": { + "age=0,facing=east": { + "model": "minecraft:block/cocoa_stage0", + "y": 270 + }, + "age=0,facing=north": { + "model": "minecraft:block/cocoa_stage0", + "y": 180 + }, + "age=0,facing=south": { + "model": "minecraft:block/cocoa_stage0" + }, + "age=0,facing=west": { + "model": "minecraft:block/cocoa_stage0", + "y": 90 + }, + "age=1,facing=east": { + "model": "minecraft:block/cocoa_stage1", + "y": 270 + }, + "age=1,facing=north": { + "model": "minecraft:block/cocoa_stage1", + "y": 180 + }, + "age=1,facing=south": { + "model": "minecraft:block/cocoa_stage1" + }, + "age=1,facing=west": { + "model": "minecraft:block/cocoa_stage1", + "y": 90 + }, + "age=2,facing=east": { + "model": "minecraft:block/cocoa_stage2", + "y": 270 + }, + "age=2,facing=north": { + "model": "minecraft:block/cocoa_stage2", + "y": 180 + }, + "age=2,facing=south": { + "model": "minecraft:block/cocoa_stage2" + }, + "age=2,facing=west": { + "model": "minecraft:block/cocoa_stage2", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/command_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/command_block.json new file mode 100644 index 000000000..dbda5cf3d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/command_block.json @@ -0,0 +1,50 @@ +{ + "variants": { + "conditional=false,facing=down": { + "model": "minecraft:block/command_block", + "x": 90 + }, + "conditional=false,facing=east": { + "model": "minecraft:block/command_block", + "y": 90 + }, + "conditional=false,facing=north": { + "model": "minecraft:block/command_block" + }, + "conditional=false,facing=south": { + "model": "minecraft:block/command_block", + "y": 180 + }, + "conditional=false,facing=up": { + "model": "minecraft:block/command_block", + "x": 270 + }, + "conditional=false,facing=west": { + "model": "minecraft:block/command_block", + "y": 270 + }, + "conditional=true,facing=down": { + "model": "minecraft:block/command_block_conditional", + "x": 90 + }, + "conditional=true,facing=east": { + "model": "minecraft:block/command_block_conditional", + "y": 90 + }, + "conditional=true,facing=north": { + "model": "minecraft:block/command_block_conditional" + }, + "conditional=true,facing=south": { + "model": "minecraft:block/command_block_conditional", + "y": 180 + }, + "conditional=true,facing=up": { + "model": "minecraft:block/command_block_conditional", + "x": 270 + }, + "conditional=true,facing=west": { + "model": "minecraft:block/command_block_conditional", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/comparator.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/comparator.json new file mode 100644 index 000000000..13f9f2146 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/comparator.json @@ -0,0 +1,64 @@ +{ + "variants": { + "facing=east,mode=compare,powered=false": { + "model": "minecraft:block/comparator", + "y": 270 + }, + "facing=east,mode=compare,powered=true": { + "model": "minecraft:block/comparator_on", + "y": 270 + }, + "facing=east,mode=subtract,powered=false": { + "model": "minecraft:block/comparator_subtract", + "y": 270 + }, + "facing=east,mode=subtract,powered=true": { + "model": "minecraft:block/comparator_on_subtract", + "y": 270 + }, + "facing=north,mode=compare,powered=false": { + "model": "minecraft:block/comparator", + "y": 180 + }, + "facing=north,mode=compare,powered=true": { + "model": "minecraft:block/comparator_on", + "y": 180 + }, + "facing=north,mode=subtract,powered=false": { + "model": "minecraft:block/comparator_subtract", + "y": 180 + }, + "facing=north,mode=subtract,powered=true": { + "model": "minecraft:block/comparator_on_subtract", + "y": 180 + }, + "facing=south,mode=compare,powered=false": { + "model": "minecraft:block/comparator" + }, + "facing=south,mode=compare,powered=true": { + "model": "minecraft:block/comparator_on" + }, + "facing=south,mode=subtract,powered=false": { + "model": "minecraft:block/comparator_subtract" + }, + "facing=south,mode=subtract,powered=true": { + "model": "minecraft:block/comparator_on_subtract" + }, + "facing=west,mode=compare,powered=false": { + "model": "minecraft:block/comparator", + "y": 90 + }, + "facing=west,mode=compare,powered=true": { + "model": "minecraft:block/comparator_on", + "y": 90 + }, + "facing=west,mode=subtract,powered=false": { + "model": "minecraft:block/comparator_subtract", + "y": 90 + }, + "facing=west,mode=subtract,powered=true": { + "model": "minecraft:block/comparator_on_subtract", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/composter.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/composter.json new file mode 100644 index 000000000..219eea9c2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/composter.json @@ -0,0 +1,73 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/composter" + } + }, + { + "apply": { + "model": "minecraft:block/composter_contents1" + }, + "when": { + "level": "1" + } + }, + { + "apply": { + "model": "minecraft:block/composter_contents2" + }, + "when": { + "level": "2" + } + }, + { + "apply": { + "model": "minecraft:block/composter_contents3" + }, + "when": { + "level": "3" + } + }, + { + "apply": { + "model": "minecraft:block/composter_contents4" + }, + "when": { + "level": "4" + } + }, + { + "apply": { + "model": "minecraft:block/composter_contents5" + }, + "when": { + "level": "5" + } + }, + { + "apply": { + "model": "minecraft:block/composter_contents6" + }, + "when": { + "level": "6" + } + }, + { + "apply": { + "model": "minecraft:block/composter_contents7" + }, + "when": { + "level": "7" + } + }, + { + "apply": { + "model": "minecraft:block/composter_contents_ready" + }, + "when": { + "level": "8" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/conduit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/conduit.json new file mode 100644 index 000000000..f6841bed2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/conduit.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/conduit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_bars.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_bars.json new file mode 100644 index 000000000..bb8a4c059 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_bars.json @@ -0,0 +1,100 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/copper_bars_post_ends" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_post" + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_cap" + }, + "when": { + "east": "false", + "north": "true", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_cap", + "y": 90 + }, + "when": { + "east": "true", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_cap_alt" + }, + "when": { + "east": "false", + "north": "false", + "south": "true", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_cap_alt", + "y": 90 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_block.json new file mode 100644 index 000000000..b440184df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/copper_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_bulb.json new file mode 100644 index 000000000..5929d9b4f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_bulb.json @@ -0,0 +1,16 @@ +{ + "variants": { + "lit=false,powered=false": { + "model": "minecraft:block/copper_bulb" + }, + "lit=false,powered=true": { + "model": "minecraft:block/copper_bulb_powered" + }, + "lit=true,powered=false": { + "model": "minecraft:block/copper_bulb_lit" + }, + "lit=true,powered=true": { + "model": "minecraft:block/copper_bulb_lit_powered" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_chain.json new file mode 100644 index 000000000..7ce1e4677 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_chain.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/copper_chain", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/copper_chain" + }, + "axis=z": { + "model": "minecraft:block/copper_chain", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_chest.json new file mode 100644 index 000000000..5b9827485 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_chest.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/copper_chest" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_door.json new file mode 100644 index 000000000..44dcbdef4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/copper_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/copper_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/copper_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/copper_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/copper_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/copper_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/copper_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/copper_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/copper_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/copper_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/copper_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/copper_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/copper_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/copper_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/copper_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/copper_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/copper_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/copper_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/copper_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/copper_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/copper_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/copper_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/copper_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/copper_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/copper_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/copper_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/copper_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/copper_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/copper_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/copper_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/copper_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/copper_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_golem_statue.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_golem_statue.json new file mode 100644 index 000000000..3542086be --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_golem_statue.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/copper_golem_statue" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_grate.json new file mode 100644 index 000000000..2f7bc9ec3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_grate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/copper_grate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_lantern.json new file mode 100644 index 000000000..c203499cc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_lantern.json @@ -0,0 +1,10 @@ +{ + "variants": { + "hanging=false": { + "model": "minecraft:block/copper_lantern" + }, + "hanging=true": { + "model": "minecraft:block/copper_lantern_hanging" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_ore.json new file mode 100644 index 000000000..c8cd05c44 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/copper_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_torch.json new file mode 100644 index 000000000..4dae59810 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_torch.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/copper_torch" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_trapdoor.json new file mode 100644 index 000000000..837c01b9e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/copper_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/copper_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/copper_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/copper_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/copper_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/copper_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/copper_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/copper_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/copper_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/copper_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_wall_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_wall_torch.json new file mode 100644 index 000000000..2287fc850 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/copper_wall_torch.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/copper_wall_torch" + }, + "facing=north": { + "model": "minecraft:block/copper_wall_torch", + "y": 270 + }, + "facing=south": { + "model": "minecraft:block/copper_wall_torch", + "y": 90 + }, + "facing=west": { + "model": "minecraft:block/copper_wall_torch", + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cornflower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cornflower.json new file mode 100644 index 000000000..2d787937c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cornflower.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cornflower" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cracked_deepslate_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cracked_deepslate_bricks.json new file mode 100644 index 000000000..008daf0da --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cracked_deepslate_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cracked_deepslate_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cracked_deepslate_tiles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cracked_deepslate_tiles.json new file mode 100644 index 000000000..99ddace6a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cracked_deepslate_tiles.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cracked_deepslate_tiles" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cracked_nether_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cracked_nether_bricks.json new file mode 100644 index 000000000..42f44bbaf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cracked_nether_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cracked_nether_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cracked_polished_blackstone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cracked_polished_blackstone_bricks.json new file mode 100644 index 000000000..2fe33ddc4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cracked_polished_blackstone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cracked_polished_blackstone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cracked_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cracked_stone_bricks.json new file mode 100644 index 000000000..6e194be2d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cracked_stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cracked_stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crafter.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crafter.json new file mode 100644 index 000000000..2de2b178a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crafter.json @@ -0,0 +1,216 @@ +{ + "variants": { + "crafting=false,orientation=down_east,triggered=false": { + "model": "minecraft:block/crafter", + "x": 90, + "y": 90 + }, + "crafting=false,orientation=down_east,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "x": 90, + "y": 90 + }, + "crafting=false,orientation=down_north,triggered=false": { + "model": "minecraft:block/crafter", + "x": 90 + }, + "crafting=false,orientation=down_north,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "x": 90 + }, + "crafting=false,orientation=down_south,triggered=false": { + "model": "minecraft:block/crafter", + "x": 90, + "y": 180 + }, + "crafting=false,orientation=down_south,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "x": 90, + "y": 180 + }, + "crafting=false,orientation=down_west,triggered=false": { + "model": "minecraft:block/crafter", + "x": 90, + "y": 270 + }, + "crafting=false,orientation=down_west,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "x": 90, + "y": 270 + }, + "crafting=false,orientation=east_up,triggered=false": { + "model": "minecraft:block/crafter", + "y": 90 + }, + "crafting=false,orientation=east_up,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "y": 90 + }, + "crafting=false,orientation=north_up,triggered=false": { + "model": "minecraft:block/crafter" + }, + "crafting=false,orientation=north_up,triggered=true": { + "model": "minecraft:block/crafter_triggered" + }, + "crafting=false,orientation=south_up,triggered=false": { + "model": "minecraft:block/crafter", + "y": 180 + }, + "crafting=false,orientation=south_up,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "y": 180 + }, + "crafting=false,orientation=up_east,triggered=false": { + "model": "minecraft:block/crafter", + "x": 270, + "y": 270 + }, + "crafting=false,orientation=up_east,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "x": 270, + "y": 270 + }, + "crafting=false,orientation=up_north,triggered=false": { + "model": "minecraft:block/crafter", + "x": 270, + "y": 180 + }, + "crafting=false,orientation=up_north,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "x": 270, + "y": 180 + }, + "crafting=false,orientation=up_south,triggered=false": { + "model": "minecraft:block/crafter", + "x": 270 + }, + "crafting=false,orientation=up_south,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "x": 270 + }, + "crafting=false,orientation=up_west,triggered=false": { + "model": "minecraft:block/crafter", + "x": 270, + "y": 90 + }, + "crafting=false,orientation=up_west,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "x": 270, + "y": 90 + }, + "crafting=false,orientation=west_up,triggered=false": { + "model": "minecraft:block/crafter", + "y": 270 + }, + "crafting=false,orientation=west_up,triggered=true": { + "model": "minecraft:block/crafter_triggered", + "y": 270 + }, + "crafting=true,orientation=down_east,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "x": 90, + "y": 90 + }, + "crafting=true,orientation=down_east,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "x": 90, + "y": 90 + }, + "crafting=true,orientation=down_north,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "x": 90 + }, + "crafting=true,orientation=down_north,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "x": 90 + }, + "crafting=true,orientation=down_south,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "x": 90, + "y": 180 + }, + "crafting=true,orientation=down_south,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "x": 90, + "y": 180 + }, + "crafting=true,orientation=down_west,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "x": 90, + "y": 270 + }, + "crafting=true,orientation=down_west,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "x": 90, + "y": 270 + }, + "crafting=true,orientation=east_up,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "y": 90 + }, + "crafting=true,orientation=east_up,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "y": 90 + }, + "crafting=true,orientation=north_up,triggered=false": { + "model": "minecraft:block/crafter_crafting" + }, + "crafting=true,orientation=north_up,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered" + }, + "crafting=true,orientation=south_up,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "y": 180 + }, + "crafting=true,orientation=south_up,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "y": 180 + }, + "crafting=true,orientation=up_east,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "x": 270, + "y": 270 + }, + "crafting=true,orientation=up_east,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "x": 270, + "y": 270 + }, + "crafting=true,orientation=up_north,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "x": 270, + "y": 180 + }, + "crafting=true,orientation=up_north,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "x": 270, + "y": 180 + }, + "crafting=true,orientation=up_south,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "x": 270 + }, + "crafting=true,orientation=up_south,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "x": 270 + }, + "crafting=true,orientation=up_west,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "x": 270, + "y": 90 + }, + "crafting=true,orientation=up_west,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "x": 270, + "y": 90 + }, + "crafting=true,orientation=west_up,triggered=false": { + "model": "minecraft:block/crafter_crafting", + "y": 270 + }, + "crafting=true,orientation=west_up,triggered=true": { + "model": "minecraft:block/crafter_crafting_triggered", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crafting_table.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crafting_table.json new file mode 100644 index 000000000..46adc7909 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crafting_table.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crafting_table" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/creaking_heart.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/creaking_heart.json new file mode 100644 index 000000000..116f6e503 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/creaking_heart.json @@ -0,0 +1,40 @@ +{ + "variants": { + "axis=x,creaking_heart_state=awake": { + "model": "minecraft:block/creaking_heart_awake_horizontal", + "x": 90, + "y": 90 + }, + "axis=x,creaking_heart_state=dormant": { + "model": "minecraft:block/creaking_heart_dormant_horizontal", + "x": 90, + "y": 90 + }, + "axis=x,creaking_heart_state=uprooted": { + "model": "minecraft:block/creaking_heart_horizontal", + "x": 90, + "y": 90 + }, + "axis=y,creaking_heart_state=awake": { + "model": "minecraft:block/creaking_heart_awake" + }, + "axis=y,creaking_heart_state=dormant": { + "model": "minecraft:block/creaking_heart_dormant" + }, + "axis=y,creaking_heart_state=uprooted": { + "model": "minecraft:block/creaking_heart" + }, + "axis=z,creaking_heart_state=awake": { + "model": "minecraft:block/creaking_heart_awake_horizontal", + "x": 90 + }, + "axis=z,creaking_heart_state=dormant": { + "model": "minecraft:block/creaking_heart_dormant_horizontal", + "x": 90 + }, + "axis=z,creaking_heart_state=uprooted": { + "model": "minecraft:block/creaking_heart_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/creeper_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/creeper_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/creeper_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/creeper_wall_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/creeper_wall_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/creeper_wall_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_button.json new file mode 100644 index 000000000..bccd1097e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/crimson_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/crimson_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/crimson_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/crimson_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/crimson_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/crimson_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/crimson_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/crimson_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/crimson_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/crimson_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/crimson_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/crimson_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/crimson_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/crimson_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_door.json new file mode 100644 index 000000000..4e60e7b95 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/crimson_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/crimson_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/crimson_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/crimson_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/crimson_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/crimson_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/crimson_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/crimson_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/crimson_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/crimson_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/crimson_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/crimson_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/crimson_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/crimson_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/crimson_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/crimson_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/crimson_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/crimson_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/crimson_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/crimson_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/crimson_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/crimson_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/crimson_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/crimson_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/crimson_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/crimson_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/crimson_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/crimson_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/crimson_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/crimson_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/crimson_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/crimson_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_fence.json new file mode 100644 index 000000000..8f5a27352 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/crimson_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/crimson_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/crimson_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/crimson_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/crimson_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_fence_gate.json new file mode 100644 index 000000000..f53ea9c29 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/crimson_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/crimson_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/crimson_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/crimson_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/crimson_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/crimson_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/crimson_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/crimson_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/crimson_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/crimson_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/crimson_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/crimson_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/crimson_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/crimson_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/crimson_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/crimson_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_fungus.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_fungus.json new file mode 100644 index 000000000..4ee39fd27 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_fungus.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crimson_fungus" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_hanging_sign.json new file mode 100644 index 000000000..2c48d46fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crimson_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_hyphae.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_hyphae.json new file mode 100644 index 000000000..115ed6357 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_hyphae.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/crimson_hyphae", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/crimson_hyphae" + }, + "axis=z": { + "model": "minecraft:block/crimson_hyphae", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_nylium.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_nylium.json new file mode 100644 index 000000000..e3ecaf600 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_nylium.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crimson_nylium" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_planks.json new file mode 100644 index 000000000..9cd4ff65c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crimson_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_pressure_plate.json new file mode 100644 index 000000000..7e7ab3d63 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/crimson_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/crimson_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_roots.json new file mode 100644 index 000000000..830d559a9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_roots.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crimson_roots" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_shelf.json new file mode 100644 index 000000000..33318312b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_shelf.json @@ -0,0 +1,402 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/crimson_shelf" + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf", + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf", + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf", + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_unpowered" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_unpowered", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_unpowered", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_unpowered", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_unconnected" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_unconnected", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_unconnected", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_unconnected", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_center" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_center", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_center", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_center", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/crimson_shelf_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_sign.json new file mode 100644 index 000000000..c2f40c97f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crimson_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_slab.json new file mode 100644 index 000000000..7f8f651d1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/crimson_slab" + }, + "type=double": { + "model": "minecraft:block/crimson_planks" + }, + "type=top": { + "model": "minecraft:block/crimson_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_stairs.json new file mode 100644 index 000000000..508f9dd28 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/crimson_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/crimson_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/crimson_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/crimson_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/crimson_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/crimson_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/crimson_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/crimson_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/crimson_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/crimson_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/crimson_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/crimson_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/crimson_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/crimson_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_stem.json new file mode 100644 index 000000000..81285b0ce --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_stem.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/crimson_stem", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/crimson_stem" + }, + "axis=z": { + "model": "minecraft:block/crimson_stem", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_trapdoor.json new file mode 100644 index 000000000..50f813608 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/crimson_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/crimson_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/crimson_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/crimson_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/crimson_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/crimson_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/crimson_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/crimson_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/crimson_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/crimson_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/crimson_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/crimson_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/crimson_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/crimson_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/crimson_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/crimson_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_wall_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_wall_hanging_sign.json new file mode 100644 index 000000000..2c48d46fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crimson_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_wall_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_wall_sign.json new file mode 100644 index 000000000..c2f40c97f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crimson_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crimson_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crying_obsidian.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crying_obsidian.json new file mode 100644 index 000000000..fd7ad59ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/crying_obsidian.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/crying_obsidian" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_copper.json new file mode 100644 index 000000000..2105f293c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cut_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_copper_slab.json new file mode 100644 index 000000000..31d149b52 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_copper_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/cut_copper_slab" + }, + "type=double": { + "model": "minecraft:block/cut_copper" + }, + "type=top": { + "model": "minecraft:block/cut_copper_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_copper_stairs.json new file mode 100644 index 000000000..95160aaf1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_copper_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/cut_copper_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_red_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_red_sandstone.json new file mode 100644 index 000000000..7ef05a720 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_red_sandstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cut_red_sandstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_red_sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_red_sandstone_slab.json new file mode 100644 index 000000000..0b7645aeb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_red_sandstone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/cut_red_sandstone_slab" + }, + "type=double": { + "model": "minecraft:block/cut_red_sandstone" + }, + "type=top": { + "model": "minecraft:block/cut_red_sandstone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_sandstone.json new file mode 100644 index 000000000..9bab8fc4d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_sandstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cut_sandstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_sandstone_slab.json new file mode 100644 index 000000000..5c8f0520d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cut_sandstone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/cut_sandstone_slab" + }, + "type=double": { + "model": "minecraft:block/cut_sandstone" + }, + "type=top": { + "model": "minecraft:block/cut_sandstone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_candle.json new file mode 100644 index 000000000..4e35ccd53 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/cyan_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/cyan_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/cyan_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/cyan_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/cyan_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/cyan_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/cyan_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/cyan_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_candle_cake.json new file mode 100644 index 000000000..348abcc2d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/cyan_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/cyan_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_carpet.json new file mode 100644 index 000000000..0b0212c56 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cyan_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_concrete.json new file mode 100644 index 000000000..32935a3bd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cyan_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_concrete_powder.json new file mode 100644 index 000000000..cf7085ebe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/cyan_concrete_powder" + }, + { + "model": "minecraft:block/cyan_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/cyan_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/cyan_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_glazed_terracotta.json new file mode 100644 index 000000000..26276ef3b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/cyan_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/cyan_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/cyan_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/cyan_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_shulker_box.json new file mode 100644 index 000000000..86214c0df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cyan_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_stained_glass.json new file mode 100644 index 000000000..6645a5736 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cyan_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_stained_glass_pane.json new file mode 100644 index 000000000..e1fddf7e1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/cyan_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_terracotta.json new file mode 100644 index 000000000..dca321fa0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cyan_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_wall_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_wool.json new file mode 100644 index 000000000..48b12b5ac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/cyan_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cyan_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/damaged_anvil.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/damaged_anvil.json new file mode 100644 index 000000000..cca2bca49 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/damaged_anvil.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/damaged_anvil", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/damaged_anvil", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/damaged_anvil" + }, + "facing=west": { + "model": "minecraft:block/damaged_anvil", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dandelion.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dandelion.json new file mode 100644 index 000000000..bf8a14b97 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dandelion.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dandelion" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_button.json new file mode 100644 index 000000000..fca360410 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/dark_oak_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/dark_oak_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/dark_oak_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/dark_oak_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/dark_oak_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/dark_oak_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/dark_oak_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/dark_oak_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/dark_oak_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/dark_oak_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/dark_oak_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/dark_oak_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/dark_oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_door.json new file mode 100644 index 000000000..aa45d8caa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/dark_oak_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/dark_oak_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/dark_oak_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/dark_oak_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/dark_oak_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/dark_oak_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/dark_oak_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/dark_oak_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/dark_oak_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/dark_oak_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/dark_oak_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/dark_oak_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/dark_oak_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/dark_oak_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/dark_oak_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/dark_oak_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/dark_oak_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/dark_oak_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/dark_oak_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/dark_oak_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/dark_oak_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/dark_oak_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/dark_oak_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/dark_oak_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/dark_oak_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/dark_oak_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/dark_oak_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/dark_oak_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/dark_oak_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/dark_oak_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/dark_oak_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/dark_oak_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_fence.json new file mode 100644 index 000000000..59bdf154a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/dark_oak_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_fence_gate.json new file mode 100644 index 000000000..3b6d547fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/dark_oak_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/dark_oak_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/dark_oak_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/dark_oak_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/dark_oak_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/dark_oak_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/dark_oak_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/dark_oak_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/dark_oak_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/dark_oak_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/dark_oak_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/dark_oak_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/dark_oak_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/dark_oak_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/dark_oak_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/dark_oak_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_hanging_sign.json new file mode 100644 index 000000000..e21ee9aac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dark_oak_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_leaves.json new file mode 100644 index 000000000..0b6f4f4d0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dark_oak_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_log.json new file mode 100644 index 000000000..ae91a1075 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/dark_oak_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/dark_oak_log" + }, + "axis=z": { + "model": "minecraft:block/dark_oak_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_planks.json new file mode 100644 index 000000000..47194b083 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dark_oak_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_pressure_plate.json new file mode 100644 index 000000000..7a3ce2afa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/dark_oak_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/dark_oak_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_sapling.json new file mode 100644 index 000000000..31435f372 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dark_oak_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_shelf.json new file mode 100644 index 000000000..48f5fbc3e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_shelf.json @@ -0,0 +1,402 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/dark_oak_shelf" + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf", + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf", + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf", + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_unpowered" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_unpowered", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_unpowered", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_unpowered", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_unconnected" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_unconnected", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_unconnected", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_unconnected", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_center" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_center", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_center", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_center", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/dark_oak_shelf_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_sign.json new file mode 100644 index 000000000..d3e8f533e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dark_oak_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_slab.json new file mode 100644 index 000000000..a99483a25 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/dark_oak_slab" + }, + "type=double": { + "model": "minecraft:block/dark_oak_planks" + }, + "type=top": { + "model": "minecraft:block/dark_oak_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_stairs.json new file mode 100644 index 000000000..4ab6e05df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/dark_oak_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/dark_oak_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/dark_oak_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/dark_oak_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/dark_oak_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/dark_oak_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/dark_oak_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/dark_oak_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/dark_oak_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/dark_oak_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/dark_oak_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/dark_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/dark_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/dark_oak_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_trapdoor.json new file mode 100644 index 000000000..87bb35c2e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/dark_oak_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/dark_oak_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/dark_oak_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/dark_oak_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/dark_oak_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/dark_oak_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/dark_oak_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/dark_oak_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/dark_oak_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/dark_oak_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/dark_oak_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/dark_oak_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/dark_oak_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/dark_oak_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/dark_oak_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/dark_oak_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_wall_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_wall_hanging_sign.json new file mode 100644 index 000000000..e21ee9aac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dark_oak_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_wall_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_wall_sign.json new file mode 100644 index 000000000..d3e8f533e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dark_oak_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_wood.json new file mode 100644 index 000000000..d45b617fd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_oak_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/dark_oak_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/dark_oak_wood" + }, + "axis=z": { + "model": "minecraft:block/dark_oak_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_prismarine.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_prismarine.json new file mode 100644 index 000000000..2f1ce7497 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_prismarine.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dark_prismarine" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_prismarine_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_prismarine_slab.json new file mode 100644 index 000000000..80a619490 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_prismarine_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/dark_prismarine_slab" + }, + "type=double": { + "model": "minecraft:block/dark_prismarine" + }, + "type=top": { + "model": "minecraft:block/dark_prismarine_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_prismarine_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_prismarine_stairs.json new file mode 100644 index 000000000..f53fdfcf4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dark_prismarine_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/dark_prismarine_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/dark_prismarine_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/dark_prismarine_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/dark_prismarine_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/dark_prismarine_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/dark_prismarine_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/dark_prismarine_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/dark_prismarine_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/dark_prismarine_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/dark_prismarine_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/dark_prismarine_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/dark_prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/dark_prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/dark_prismarine_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/daylight_detector.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/daylight_detector.json new file mode 100644 index 000000000..c6182ff91 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/daylight_detector.json @@ -0,0 +1,10 @@ +{ + "variants": { + "inverted=false": { + "model": "minecraft:block/daylight_detector" + }, + "inverted=true": { + "model": "minecraft:block/daylight_detector_inverted" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_brain_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_brain_coral.json new file mode 100644 index 000000000..736b2bd42 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_brain_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_brain_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_block.json new file mode 100644 index 000000000..550f6b06e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_brain_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_fan.json new file mode 100644 index 000000000..41c6e2a90 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_brain_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_wall_fan.json new file mode 100644 index 000000000..03c9d9762 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_brain_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/dead_brain_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/dead_brain_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/dead_brain_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/dead_brain_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral.json new file mode 100644 index 000000000..fac745e18 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_bubble_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_block.json new file mode 100644 index 000000000..ada5781b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_bubble_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_fan.json new file mode 100644 index 000000000..d55b06086 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_bubble_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_wall_fan.json new file mode 100644 index 000000000..727aea199 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_bubble_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/dead_bubble_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/dead_bubble_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/dead_bubble_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/dead_bubble_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_bush.json new file mode 100644 index 000000000..ed88d1090 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_bush.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_bush" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_fire_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_fire_coral.json new file mode 100644 index 000000000..65f7ee33b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_fire_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_fire_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_block.json new file mode 100644 index 000000000..4414956f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_fire_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_fan.json new file mode 100644 index 000000000..fb3c6feb4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_fire_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_wall_fan.json new file mode 100644 index 000000000..0fd52584d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_fire_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/dead_fire_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/dead_fire_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/dead_fire_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/dead_fire_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_horn_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_horn_coral.json new file mode 100644 index 000000000..f38ce336b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_horn_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_horn_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_block.json new file mode 100644 index 000000000..8666c0c6f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_horn_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_fan.json new file mode 100644 index 000000000..1f72003e6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_horn_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_wall_fan.json new file mode 100644 index 000000000..02928d6ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_horn_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/dead_horn_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/dead_horn_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/dead_horn_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/dead_horn_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_tube_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_tube_coral.json new file mode 100644 index 000000000..156c3f0ad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_tube_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_tube_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_block.json new file mode 100644 index 000000000..72d40552f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_tube_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_fan.json new file mode 100644 index 000000000..095e294be --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dead_tube_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_wall_fan.json new file mode 100644 index 000000000..0705e15de --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dead_tube_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/dead_tube_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/dead_tube_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/dead_tube_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/dead_tube_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/decorated_pot.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/decorated_pot.json new file mode 100644 index 000000000..2aa0faf7b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/decorated_pot.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/decorated_pot" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate.json new file mode 100644 index 000000000..dd197be8f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate.json @@ -0,0 +1,62 @@ +{ + "variants": { + "axis=x": [ + { + "model": "minecraft:block/deepslate", + "x": 90, + "y": 90 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "x": 90, + "y": 90 + }, + { + "model": "minecraft:block/deepslate", + "x": 90, + "y": 90 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "x": 90, + "y": 90 + } + ], + "axis=y": [ + { + "model": "minecraft:block/deepslate" + }, + { + "model": "minecraft:block/deepslate_mirrored" + }, + { + "model": "minecraft:block/deepslate", + "y": 180 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "y": 180 + } + ], + "axis=z": [ + { + "model": "minecraft:block/deepslate", + "x": 90 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "x": 90 + }, + { + "model": "minecraft:block/deepslate", + "x": 90, + "y": 180 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "x": 90, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_brick_slab.json new file mode 100644 index 000000000..1d1710382 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/deepslate_brick_slab" + }, + "type=double": { + "model": "minecraft:block/deepslate_bricks" + }, + "type=top": { + "model": "minecraft:block/deepslate_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_brick_stairs.json new file mode 100644 index 000000000..49dc5b394 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/deepslate_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/deepslate_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/deepslate_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/deepslate_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/deepslate_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/deepslate_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/deepslate_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/deepslate_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/deepslate_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/deepslate_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/deepslate_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/deepslate_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/deepslate_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/deepslate_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_brick_wall.json new file mode 100644 index 000000000..545dba089 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_bricks.json new file mode 100644 index 000000000..1884843cb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_coal_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_coal_ore.json new file mode 100644 index 000000000..8df18485c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_coal_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_coal_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_copper_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_copper_ore.json new file mode 100644 index 000000000..aa4aaa01e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_copper_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_copper_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_diamond_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_diamond_ore.json new file mode 100644 index 000000000..fa67e3fd7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_diamond_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_diamond_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_emerald_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_emerald_ore.json new file mode 100644 index 000000000..bf0b9264b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_emerald_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_emerald_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_gold_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_gold_ore.json new file mode 100644 index 000000000..f2077df60 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_gold_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_gold_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_iron_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_iron_ore.json new file mode 100644 index 000000000..62c79c11a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_iron_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_iron_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_lapis_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_lapis_ore.json new file mode 100644 index 000000000..60d27c9f9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_lapis_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_lapis_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_redstone_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_redstone_ore.json new file mode 100644 index 000000000..8767d7d9b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_redstone_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_redstone_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_tile_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_tile_slab.json new file mode 100644 index 000000000..60a8208f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/deepslate_tile_slab" + }, + "type=double": { + "model": "minecraft:block/deepslate_tiles" + }, + "type=top": { + "model": "minecraft:block/deepslate_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_tile_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_tile_stairs.json new file mode 100644 index 000000000..aefda363a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/deepslate_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/deepslate_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/deepslate_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/deepslate_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/deepslate_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/deepslate_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/deepslate_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/deepslate_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/deepslate_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/deepslate_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/deepslate_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/deepslate_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/deepslate_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/deepslate_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_tile_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_tile_wall.json new file mode 100644 index 000000000..e74929677 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/deepslate_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_tiles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_tiles.json new file mode 100644 index 000000000..2e9d4dce2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/deepslate_tiles.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/deepslate_tiles" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/detector_rail.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/detector_rail.json new file mode 100644 index 000000000..fff11cc0c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/detector_rail.json @@ -0,0 +1,46 @@ +{ + "variants": { + "powered=false,shape=ascending_east": { + "model": "minecraft:block/detector_rail_raised_ne", + "y": 90 + }, + "powered=false,shape=ascending_north": { + "model": "minecraft:block/detector_rail_raised_ne" + }, + "powered=false,shape=ascending_south": { + "model": "minecraft:block/detector_rail_raised_sw" + }, + "powered=false,shape=ascending_west": { + "model": "minecraft:block/detector_rail_raised_sw", + "y": 90 + }, + "powered=false,shape=east_west": { + "model": "minecraft:block/detector_rail", + "y": 90 + }, + "powered=false,shape=north_south": { + "model": "minecraft:block/detector_rail" + }, + "powered=true,shape=ascending_east": { + "model": "minecraft:block/detector_rail_on_raised_ne", + "y": 90 + }, + "powered=true,shape=ascending_north": { + "model": "minecraft:block/detector_rail_on_raised_ne" + }, + "powered=true,shape=ascending_south": { + "model": "minecraft:block/detector_rail_on_raised_sw" + }, + "powered=true,shape=ascending_west": { + "model": "minecraft:block/detector_rail_on_raised_sw", + "y": 90 + }, + "powered=true,shape=east_west": { + "model": "minecraft:block/detector_rail_on", + "y": 90 + }, + "powered=true,shape=north_south": { + "model": "minecraft:block/detector_rail_on" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diamond_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diamond_block.json new file mode 100644 index 000000000..5a5d8888f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diamond_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/diamond_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diamond_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diamond_ore.json new file mode 100644 index 000000000..fda884363 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diamond_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/diamond_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diorite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diorite.json new file mode 100644 index 000000000..6adf7b0af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diorite.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/diorite" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diorite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diorite_slab.json new file mode 100644 index 000000000..58e561101 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diorite_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/diorite_slab" + }, + "type=double": { + "model": "minecraft:block/diorite" + }, + "type=top": { + "model": "minecraft:block/diorite_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diorite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diorite_stairs.json new file mode 100644 index 000000000..7e446fa0b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diorite_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/diorite_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/diorite_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/diorite_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/diorite_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/diorite_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/diorite_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/diorite_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/diorite_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/diorite_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/diorite_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/diorite_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/diorite_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diorite_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diorite_wall.json new file mode 100644 index 000000000..d27287852 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/diorite_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/diorite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/diorite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/diorite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/diorite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/diorite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/diorite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/diorite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/diorite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/diorite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dirt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dirt.json new file mode 100644 index 000000000..875507fe3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dirt.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/dirt" + }, + { + "model": "minecraft:block/dirt", + "y": 90 + }, + { + "model": "minecraft:block/dirt", + "y": 180 + }, + { + "model": "minecraft:block/dirt", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dirt_path.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dirt_path.json new file mode 100644 index 000000000..3865928a3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dirt_path.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/dirt_path" + }, + { + "model": "minecraft:block/dirt_path", + "y": 90 + }, + { + "model": "minecraft:block/dirt_path", + "y": 180 + }, + { + "model": "minecraft:block/dirt_path", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dispenser.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dispenser.json new file mode 100644 index 000000000..aae90a81c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dispenser.json @@ -0,0 +1,26 @@ +{ + "variants": { + "facing=down": { + "model": "minecraft:block/dispenser_vertical", + "x": 180 + }, + "facing=east": { + "model": "minecraft:block/dispenser", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/dispenser" + }, + "facing=south": { + "model": "minecraft:block/dispenser", + "y": 180 + }, + "facing=up": { + "model": "minecraft:block/dispenser_vertical" + }, + "facing=west": { + "model": "minecraft:block/dispenser", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dragon_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dragon_egg.json new file mode 100644 index 000000000..9bb980f7d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dragon_egg.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dragon_egg" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dragon_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dragon_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dragon_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dragon_wall_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dragon_wall_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dragon_wall_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dried_ghast.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dried_ghast.json new file mode 100644 index 000000000..3d9e96113 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dried_ghast.json @@ -0,0 +1,64 @@ +{ + "variants": { + "facing=east,hydration=0": { + "model": "minecraft:block/dried_ghast_hydration_0", + "y": 90 + }, + "facing=east,hydration=1": { + "model": "minecraft:block/dried_ghast_hydration_1", + "y": 90 + }, + "facing=east,hydration=2": { + "model": "minecraft:block/dried_ghast_hydration_2", + "y": 90 + }, + "facing=east,hydration=3": { + "model": "minecraft:block/dried_ghast_hydration_3", + "y": 90 + }, + "facing=north,hydration=0": { + "model": "minecraft:block/dried_ghast_hydration_0" + }, + "facing=north,hydration=1": { + "model": "minecraft:block/dried_ghast_hydration_1" + }, + "facing=north,hydration=2": { + "model": "minecraft:block/dried_ghast_hydration_2" + }, + "facing=north,hydration=3": { + "model": "minecraft:block/dried_ghast_hydration_3" + }, + "facing=south,hydration=0": { + "model": "minecraft:block/dried_ghast_hydration_0", + "y": 180 + }, + "facing=south,hydration=1": { + "model": "minecraft:block/dried_ghast_hydration_1", + "y": 180 + }, + "facing=south,hydration=2": { + "model": "minecraft:block/dried_ghast_hydration_2", + "y": 180 + }, + "facing=south,hydration=3": { + "model": "minecraft:block/dried_ghast_hydration_3", + "y": 180 + }, + "facing=west,hydration=0": { + "model": "minecraft:block/dried_ghast_hydration_0", + "y": 270 + }, + "facing=west,hydration=1": { + "model": "minecraft:block/dried_ghast_hydration_1", + "y": 270 + }, + "facing=west,hydration=2": { + "model": "minecraft:block/dried_ghast_hydration_2", + "y": 270 + }, + "facing=west,hydration=3": { + "model": "minecraft:block/dried_ghast_hydration_3", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dried_kelp_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dried_kelp_block.json new file mode 100644 index 000000000..aa9d160b5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dried_kelp_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dried_kelp_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dripstone_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dripstone_block.json new file mode 100644 index 000000000..d3949ca4d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dripstone_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/dripstone_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dropper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dropper.json new file mode 100644 index 000000000..19b148300 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/dropper.json @@ -0,0 +1,26 @@ +{ + "variants": { + "facing=down": { + "model": "minecraft:block/dropper_vertical", + "x": 180 + }, + "facing=east": { + "model": "minecraft:block/dropper", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/dropper" + }, + "facing=south": { + "model": "minecraft:block/dropper", + "y": 180 + }, + "facing=up": { + "model": "minecraft:block/dropper_vertical" + }, + "facing=west": { + "model": "minecraft:block/dropper", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/emerald_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/emerald_block.json new file mode 100644 index 000000000..e159176d2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/emerald_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/emerald_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/emerald_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/emerald_ore.json new file mode 100644 index 000000000..ed6121a94 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/emerald_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/emerald_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/enchanting_table.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/enchanting_table.json new file mode 100644 index 000000000..85aeab36a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/enchanting_table.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/enchanting_table" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_gateway.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_gateway.json new file mode 100644 index 000000000..cc89ed7c2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_gateway.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/end_gateway" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_portal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_portal.json new file mode 100644 index 000000000..2b5f683e1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_portal.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/end_portal" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_portal_frame.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_portal_frame.json new file mode 100644 index 000000000..adcb19a14 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_portal_frame.json @@ -0,0 +1,34 @@ +{ + "variants": { + "eye=false,facing=east": { + "model": "minecraft:block/end_portal_frame", + "y": 270 + }, + "eye=false,facing=north": { + "model": "minecraft:block/end_portal_frame", + "y": 180 + }, + "eye=false,facing=south": { + "model": "minecraft:block/end_portal_frame" + }, + "eye=false,facing=west": { + "model": "minecraft:block/end_portal_frame", + "y": 90 + }, + "eye=true,facing=east": { + "model": "minecraft:block/end_portal_frame_filled", + "y": 270 + }, + "eye=true,facing=north": { + "model": "minecraft:block/end_portal_frame_filled", + "y": 180 + }, + "eye=true,facing=south": { + "model": "minecraft:block/end_portal_frame_filled" + }, + "eye=true,facing=west": { + "model": "minecraft:block/end_portal_frame_filled", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_rod.json new file mode 100644 index 000000000..0119a1a24 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_rod.json @@ -0,0 +1,30 @@ +{ + "variants": { + "facing=down": { + "model": "minecraft:block/end_rod", + "x": 180 + }, + "facing=east": { + "model": "minecraft:block/end_rod", + "x": 90, + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/end_rod", + "x": 90 + }, + "facing=south": { + "model": "minecraft:block/end_rod", + "x": 90, + "y": 180 + }, + "facing=up": { + "model": "minecraft:block/end_rod" + }, + "facing=west": { + "model": "minecraft:block/end_rod", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_stone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_stone.json new file mode 100644 index 000000000..e8e23c911 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_stone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/end_stone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_stone_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_stone_brick_slab.json new file mode 100644 index 000000000..08681cc5a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_stone_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/end_stone_brick_slab" + }, + "type=double": { + "model": "minecraft:block/end_stone_bricks" + }, + "type=top": { + "model": "minecraft:block/end_stone_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_stone_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_stone_brick_stairs.json new file mode 100644 index 000000000..96d2b2dd2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_stone_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/end_stone_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/end_stone_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/end_stone_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/end_stone_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/end_stone_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/end_stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/end_stone_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/end_stone_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/end_stone_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/end_stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/end_stone_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/end_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/end_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/end_stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_stone_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_stone_brick_wall.json new file mode 100644 index 000000000..b7a3ba8be --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_stone_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/end_stone_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_stone_bricks.json new file mode 100644 index 000000000..1cc0910a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/end_stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/end_stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/ender_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/ender_chest.json new file mode 100644 index 000000000..8656aed71 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/ender_chest.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/ender_chest" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_chiseled_copper.json new file mode 100644 index 000000000..3b87926a4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_chiseled_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper.json new file mode 100644 index 000000000..ed711e799 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_bars.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_bars.json new file mode 100644 index 000000000..073eb49f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_bars.json @@ -0,0 +1,100 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_post_ends" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_post" + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_cap" + }, + "when": { + "east": "false", + "north": "true", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_cap", + "y": 90 + }, + "when": { + "east": "true", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_cap_alt" + }, + "when": { + "east": "false", + "north": "false", + "south": "true", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_cap_alt", + "y": 90 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_bulb.json new file mode 100644 index 000000000..203fd0f56 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_bulb.json @@ -0,0 +1,16 @@ +{ + "variants": { + "lit=false,powered=false": { + "model": "minecraft:block/exposed_copper_bulb" + }, + "lit=false,powered=true": { + "model": "minecraft:block/exposed_copper_bulb_powered" + }, + "lit=true,powered=false": { + "model": "minecraft:block/exposed_copper_bulb_lit" + }, + "lit=true,powered=true": { + "model": "minecraft:block/exposed_copper_bulb_lit_powered" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_chain.json new file mode 100644 index 000000000..a12255475 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_chain.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/exposed_copper_chain", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/exposed_copper_chain" + }, + "axis=z": { + "model": "minecraft:block/exposed_copper_chain", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_chest.json new file mode 100644 index 000000000..e5660dd10 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_chest.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_copper_chest" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_door.json new file mode 100644 index 000000000..f4f304897 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_golem_statue.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_golem_statue.json new file mode 100644 index 000000000..5f532af5a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_golem_statue.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_copper_golem_statue" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_grate.json new file mode 100644 index 000000000..49a6446fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_grate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_copper_grate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_lantern.json new file mode 100644 index 000000000..f9db3c2d0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_lantern.json @@ -0,0 +1,10 @@ +{ + "variants": { + "hanging=false": { + "model": "minecraft:block/exposed_copper_lantern" + }, + "hanging=true": { + "model": "minecraft:block/exposed_copper_lantern_hanging" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_trapdoor.json new file mode 100644 index 000000000..e8734ba35 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_copper_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper.json new file mode 100644 index 000000000..3b465b0bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_cut_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper_slab.json new file mode 100644 index 000000000..81b09c734 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/exposed_cut_copper_slab" + }, + "type=double": { + "model": "minecraft:block/exposed_cut_copper" + }, + "type=top": { + "model": "minecraft:block/exposed_cut_copper_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper_stairs.json new file mode 100644 index 000000000..f9863f6c8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_cut_copper_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_lightning_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_lightning_rod.json new file mode 100644 index 000000000..1d675ca10 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/exposed_lightning_rod.json @@ -0,0 +1,56 @@ +{ + "variants": { + "facing=down,powered=false": { + "model": "minecraft:block/exposed_lightning_rod", + "x": 180 + }, + "facing=down,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 180 + }, + "facing=east,powered=false": { + "model": "minecraft:block/exposed_lightning_rod", + "x": 90, + "y": 90 + }, + "facing=east,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 90 + }, + "facing=north,powered=false": { + "model": "minecraft:block/exposed_lightning_rod", + "x": 90 + }, + "facing=north,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90 + }, + "facing=south,powered=false": { + "model": "minecraft:block/exposed_lightning_rod", + "x": 90, + "y": 180 + }, + "facing=south,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 180 + }, + "facing=up,powered=false": { + "model": "minecraft:block/exposed_lightning_rod" + }, + "facing=up,powered=true": { + "model": "minecraft:block/lightning_rod_on" + }, + "facing=west,powered=false": { + "model": "minecraft:block/exposed_lightning_rod", + "x": 90, + "y": 270 + }, + "facing=west,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/farmland.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/farmland.json new file mode 100644 index 000000000..93882d0c0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/farmland.json @@ -0,0 +1,28 @@ +{ + "variants": { + "moisture=0": { + "model": "minecraft:block/farmland" + }, + "moisture=1": { + "model": "minecraft:block/farmland" + }, + "moisture=2": { + "model": "minecraft:block/farmland" + }, + "moisture=3": { + "model": "minecraft:block/farmland" + }, + "moisture=4": { + "model": "minecraft:block/farmland" + }, + "moisture=5": { + "model": "minecraft:block/farmland" + }, + "moisture=6": { + "model": "minecraft:block/farmland" + }, + "moisture=7": { + "model": "minecraft:block/farmland_moist" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fern.json new file mode 100644 index 000000000..01cf1d349 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fern.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/fern" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fire.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fire.json new file mode 100644 index 000000000..835848751 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fire.json @@ -0,0 +1,172 @@ +{ + "multipart": [ + { + "apply": [ + { + "model": "minecraft:block/fire_floor0" + }, + { + "model": "minecraft:block/fire_floor1" + } + ], + "when": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": [ + { + "model": "minecraft:block/fire_side0" + }, + { + "model": "minecraft:block/fire_side1" + }, + { + "model": "minecraft:block/fire_side_alt0" + }, + { + "model": "minecraft:block/fire_side_alt1" + } + ], + "when": { + "OR": [ + { + "north": "true" + }, + { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + ] + } + }, + { + "apply": [ + { + "model": "minecraft:block/fire_side0", + "y": 90 + }, + { + "model": "minecraft:block/fire_side1", + "y": 90 + }, + { + "model": "minecraft:block/fire_side_alt0", + "y": 90 + }, + { + "model": "minecraft:block/fire_side_alt1", + "y": 90 + } + ], + "when": { + "OR": [ + { + "east": "true" + }, + { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + ] + } + }, + { + "apply": [ + { + "model": "minecraft:block/fire_side0", + "y": 180 + }, + { + "model": "minecraft:block/fire_side1", + "y": 180 + }, + { + "model": "minecraft:block/fire_side_alt0", + "y": 180 + }, + { + "model": "minecraft:block/fire_side_alt1", + "y": 180 + } + ], + "when": { + "OR": [ + { + "south": "true" + }, + { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + ] + } + }, + { + "apply": [ + { + "model": "minecraft:block/fire_side0", + "y": 270 + }, + { + "model": "minecraft:block/fire_side1", + "y": 270 + }, + { + "model": "minecraft:block/fire_side_alt0", + "y": 270 + }, + { + "model": "minecraft:block/fire_side_alt1", + "y": 270 + } + ], + "when": { + "OR": [ + { + "west": "true" + }, + { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + ] + } + }, + { + "apply": [ + { + "model": "minecraft:block/fire_up0" + }, + { + "model": "minecraft:block/fire_up1" + }, + { + "model": "minecraft:block/fire_up_alt0" + }, + { + "model": "minecraft:block/fire_up_alt1" + } + ], + "when": { + "up": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fire_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fire_coral.json new file mode 100644 index 000000000..a80bfadc0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fire_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/fire_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fire_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fire_coral_block.json new file mode 100644 index 000000000..a4f98fbde --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fire_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/fire_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fire_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fire_coral_fan.json new file mode 100644 index 000000000..d6579f899 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fire_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/fire_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fire_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fire_coral_wall_fan.json new file mode 100644 index 000000000..914933066 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fire_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/fire_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/fire_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/fire_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/fire_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/firefly_bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/firefly_bush.json new file mode 100644 index 000000000..373034532 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/firefly_bush.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/firefly_bush" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fletching_table.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fletching_table.json new file mode 100644 index 000000000..941b4fd96 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/fletching_table.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/fletching_table" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/flower_pot.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/flower_pot.json new file mode 100644 index 000000000..8a1ab93be --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/flower_pot.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/flower_pot" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/flowering_azalea.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/flowering_azalea.json new file mode 100644 index 000000000..daeb290c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/flowering_azalea.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/flowering_azalea" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/flowering_azalea_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/flowering_azalea_leaves.json new file mode 100644 index 000000000..9731fdb04 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/flowering_azalea_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/flowering_azalea_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/frogspawn.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/frogspawn.json new file mode 100644 index 000000000..bf103d4ab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/frogspawn.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/frogspawn" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/frosted_ice.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/frosted_ice.json new file mode 100644 index 000000000..f03b5bdcf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/frosted_ice.json @@ -0,0 +1,16 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/frosted_ice_0" + }, + "age=1": { + "model": "minecraft:block/frosted_ice_1" + }, + "age=2": { + "model": "minecraft:block/frosted_ice_2" + }, + "age=3": { + "model": "minecraft:block/frosted_ice_3" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/furnace.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/furnace.json new file mode 100644 index 000000000..9c31d91fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/furnace.json @@ -0,0 +1,34 @@ +{ + "variants": { + "facing=east,lit=false": { + "model": "minecraft:block/furnace", + "y": 90 + }, + "facing=east,lit=true": { + "model": "minecraft:block/furnace_on", + "y": 90 + }, + "facing=north,lit=false": { + "model": "minecraft:block/furnace" + }, + "facing=north,lit=true": { + "model": "minecraft:block/furnace_on" + }, + "facing=south,lit=false": { + "model": "minecraft:block/furnace", + "y": 180 + }, + "facing=south,lit=true": { + "model": "minecraft:block/furnace_on", + "y": 180 + }, + "facing=west,lit=false": { + "model": "minecraft:block/furnace", + "y": 270 + }, + "facing=west,lit=true": { + "model": "minecraft:block/furnace_on", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gilded_blackstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gilded_blackstone.json new file mode 100644 index 000000000..511f5825c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gilded_blackstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gilded_blackstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/glass.json new file mode 100644 index 000000000..5f6ec4d28 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/glass_pane.json new file mode 100644 index 000000000..d8f2900fd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/glow_item_frame.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/glow_item_frame.json new file mode 100644 index 000000000..f43a18719 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/glow_item_frame.json @@ -0,0 +1,6 @@ +{ + "variants": { + "map=false": { "model": "block/glow_item_frame" }, + "map=true": { "model": "block/glow_item_frame_map" } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/glow_lichen.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/glow_lichen.json new file mode 100644 index 000000000..b98b5e356 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/glow_lichen.json @@ -0,0 +1,150 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/glow_lichen" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen" + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "y": 90 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "y": 180 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "y": 270 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "x": 270 + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "x": 270 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "true" + } + }, + { + "apply": { + "model": "minecraft:block/glow_lichen", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/glowstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/glowstone.json new file mode 100644 index 000000000..c60860b8c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/glowstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/glowstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gold_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gold_block.json new file mode 100644 index 000000000..475eff025 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gold_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gold_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gold_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gold_ore.json new file mode 100644 index 000000000..183d06791 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gold_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gold_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/granite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/granite.json new file mode 100644 index 000000000..d11c34e1c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/granite.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/granite" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/granite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/granite_slab.json new file mode 100644 index 000000000..1d2d50b6f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/granite_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/granite_slab" + }, + "type=double": { + "model": "minecraft:block/granite" + }, + "type=top": { + "model": "minecraft:block/granite_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/granite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/granite_stairs.json new file mode 100644 index 000000000..e3585341b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/granite_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/granite_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/granite_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/granite_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/granite_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/granite_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/granite_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/granite_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/granite_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/granite_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/granite_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/granite_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/granite_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/granite_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/granite_wall.json new file mode 100644 index 000000000..91af5755d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/granite_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/granite_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/granite_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/granite_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/granite_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/granite_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/granite_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/granite_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/granite_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/granite_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/grass_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/grass_block.json new file mode 100644 index 000000000..ab4efdb13 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/grass_block.json @@ -0,0 +1,24 @@ +{ + "variants": { + "snowy=false": [ + { + "model": "minecraft:block/grass_block" + }, + { + "model": "minecraft:block/grass_block", + "y": 90 + }, + { + "model": "minecraft:block/grass_block", + "y": 180 + }, + { + "model": "minecraft:block/grass_block", + "y": 270 + } + ], + "snowy=true": { + "model": "minecraft:block/grass_block_snow" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gravel.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gravel.json new file mode 100644 index 000000000..7f0372347 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gravel.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gravel" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_candle.json new file mode 100644 index 000000000..640fdd7c3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/gray_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/gray_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/gray_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/gray_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/gray_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/gray_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/gray_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/gray_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_candle_cake.json new file mode 100644 index 000000000..f597b093d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/gray_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/gray_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_carpet.json new file mode 100644 index 000000000..05f0cc60d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gray_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_concrete.json new file mode 100644 index 000000000..95c74d4af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gray_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_concrete_powder.json new file mode 100644 index 000000000..1d83c5629 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/gray_concrete_powder" + }, + { + "model": "minecraft:block/gray_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/gray_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/gray_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_glazed_terracotta.json new file mode 100644 index 000000000..4315e7d76 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/gray_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/gray_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/gray_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/gray_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_shulker_box.json new file mode 100644 index 000000000..8dd3ead26 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gray_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_stained_glass.json new file mode 100644 index 000000000..d7d76b1a0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gray_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_stained_glass_pane.json new file mode 100644 index 000000000..a24e8b4b7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/gray_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_terracotta.json new file mode 100644 index 000000000..c605f3d05 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gray_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_wall_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_wool.json new file mode 100644 index 000000000..001779de7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/gray_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/gray_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_candle.json new file mode 100644 index 000000000..1e5ce65a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/green_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/green_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/green_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/green_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/green_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/green_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/green_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/green_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_candle_cake.json new file mode 100644 index 000000000..d01a78d90 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/green_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/green_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_carpet.json new file mode 100644 index 000000000..83ea2c2d6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/green_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_concrete.json new file mode 100644 index 000000000..3ac2d62c7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/green_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_concrete_powder.json new file mode 100644 index 000000000..ee2e37dcf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/green_concrete_powder" + }, + { + "model": "minecraft:block/green_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/green_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/green_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_glazed_terracotta.json new file mode 100644 index 000000000..4c991e2ec --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/green_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/green_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/green_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/green_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_shulker_box.json new file mode 100644 index 000000000..e8c32e0df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/green_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_stained_glass.json new file mode 100644 index 000000000..ca4fec406 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/green_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_stained_glass_pane.json new file mode 100644 index 000000000..d0c3779f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/green_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_terracotta.json new file mode 100644 index 000000000..3bf40d83e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/green_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_wall_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_wool.json new file mode 100644 index 000000000..895370355 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/green_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/green_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/grindstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/grindstone.json new file mode 100644 index 000000000..244481d0a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/grindstone.json @@ -0,0 +1,57 @@ +{ + "variants": { + "face=ceiling,facing=east": { + "model": "minecraft:block/grindstone", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north": { + "model": "minecraft:block/grindstone", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south": { + "model": "minecraft:block/grindstone", + "x": 180 + }, + "face=ceiling,facing=west": { + "model": "minecraft:block/grindstone", + "x": 180, + "y": 90 + }, + "face=floor,facing=east": { + "model": "minecraft:block/grindstone", + "y": 90 + }, + "face=floor,facing=north": { + "model": "minecraft:block/grindstone" + }, + "face=floor,facing=south": { + "model": "minecraft:block/grindstone", + "y": 180 + }, + "face=floor,facing=west": { + "model": "minecraft:block/grindstone", + "y": 270 + }, + "face=wall,facing=east": { + "model": "minecraft:block/grindstone", + "x": 90, + "y": 90 + }, + "face=wall,facing=north": { + "model": "minecraft:block/grindstone", + "x": 90 + }, + "face=wall,facing=south": { + "model": "minecraft:block/grindstone", + "x": 90, + "y": 180 + }, + "face=wall,facing=west": { + "model": "minecraft:block/grindstone", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/hanging_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/hanging_roots.json new file mode 100644 index 000000000..a6a155d0b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/hanging_roots.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/hanging_roots" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/hay_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/hay_block.json new file mode 100644 index 000000000..63467f1b3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/hay_block.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/hay_block_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/hay_block" + }, + "axis=z": { + "model": "minecraft:block/hay_block_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/heavy_core.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/heavy_core.json new file mode 100644 index 000000000..4ddafc634 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/heavy_core.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/heavy_core" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/heavy_weighted_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/heavy_weighted_pressure_plate.json new file mode 100644 index 000000000..3f2b8800a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/heavy_weighted_pressure_plate.json @@ -0,0 +1,52 @@ +{ + "variants": { + "power=0": { + "model": "minecraft:block/heavy_weighted_pressure_plate" + }, + "power=1": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=10": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=11": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=12": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=13": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=14": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=15": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=2": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=3": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=4": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=5": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=6": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=7": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=8": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + }, + "power=9": { + "model": "minecraft:block/heavy_weighted_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/honey_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/honey_block.json new file mode 100644 index 000000000..337f73f9e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/honey_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/honey_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/honeycomb_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/honeycomb_block.json new file mode 100644 index 000000000..b8a98bb35 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/honeycomb_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/honeycomb_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/hopper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/hopper.json new file mode 100644 index 000000000..be15ea37f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/hopper.json @@ -0,0 +1,22 @@ +{ + "variants": { + "facing=down": { + "model": "minecraft:block/hopper" + }, + "facing=east": { + "model": "minecraft:block/hopper_side", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/hopper_side" + }, + "facing=south": { + "model": "minecraft:block/hopper_side", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/hopper_side", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/horn_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/horn_coral.json new file mode 100644 index 000000000..c7665173d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/horn_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/horn_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/horn_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/horn_coral_block.json new file mode 100644 index 000000000..6f8f199f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/horn_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/horn_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/horn_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/horn_coral_fan.json new file mode 100644 index 000000000..99f085499 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/horn_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/horn_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/horn_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/horn_coral_wall_fan.json new file mode 100644 index 000000000..07d22ed04 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/horn_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/horn_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/horn_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/horn_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/horn_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/ice.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/ice.json new file mode 100644 index 000000000..0617dfc34 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/ice.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/ice" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_chiseled_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_chiseled_stone_bricks.json new file mode 100644 index 000000000..4034c11b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_chiseled_stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_cobblestone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_cobblestone.json new file mode 100644 index 000000000..e94cf8820 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_cobblestone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cobblestone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_cracked_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_cracked_stone_bricks.json new file mode 100644 index 000000000..6e194be2d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_cracked_stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cracked_stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_deepslate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_deepslate.json new file mode 100644 index 000000000..dd197be8f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_deepslate.json @@ -0,0 +1,62 @@ +{ + "variants": { + "axis=x": [ + { + "model": "minecraft:block/deepslate", + "x": 90, + "y": 90 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "x": 90, + "y": 90 + }, + { + "model": "minecraft:block/deepslate", + "x": 90, + "y": 90 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "x": 90, + "y": 90 + } + ], + "axis=y": [ + { + "model": "minecraft:block/deepslate" + }, + { + "model": "minecraft:block/deepslate_mirrored" + }, + { + "model": "minecraft:block/deepslate", + "y": 180 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "y": 180 + } + ], + "axis=z": [ + { + "model": "minecraft:block/deepslate", + "x": 90 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "x": 90 + }, + { + "model": "minecraft:block/deepslate", + "x": 90, + "y": 180 + }, + { + "model": "minecraft:block/deepslate_mirrored", + "x": 90, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_mossy_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_mossy_stone_bricks.json new file mode 100644 index 000000000..c17c4a7f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_mossy_stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mossy_stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_stone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_stone.json new file mode 100644 index 000000000..c150ec294 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_stone.json @@ -0,0 +1,20 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/stone" + }, + { + "model": "minecraft:block/stone_mirrored" + }, + { + "model": "minecraft:block/stone", + "y": 180 + }, + { + "model": "minecraft:block/stone_mirrored", + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_stone_bricks.json new file mode 100644 index 000000000..8a05daf03 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/infested_stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_bars.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_bars.json new file mode 100644 index 000000000..37dfb9912 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_bars.json @@ -0,0 +1,100 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/iron_bars_post_ends" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_post" + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_cap" + }, + "when": { + "east": "false", + "north": "true", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_cap", + "y": 90 + }, + "when": { + "east": "true", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_cap_alt" + }, + "when": { + "east": "false", + "north": "false", + "south": "true", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_cap_alt", + "y": 90 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/iron_bars_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_block.json new file mode 100644 index 000000000..5cad8c39f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/iron_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_chain.json new file mode 100644 index 000000000..0086e83d9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_chain.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/iron_chain", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/iron_chain" + }, + "axis=z": { + "model": "minecraft:block/iron_chain", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_door.json new file mode 100644 index 000000000..e4fbc9526 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/iron_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/iron_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/iron_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/iron_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/iron_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/iron_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/iron_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/iron_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/iron_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/iron_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/iron_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/iron_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/iron_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/iron_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/iron_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/iron_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/iron_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/iron_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/iron_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/iron_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/iron_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/iron_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/iron_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/iron_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/iron_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/iron_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/iron_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/iron_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/iron_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/iron_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/iron_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/iron_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_ore.json new file mode 100644 index 000000000..c514e64b9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/iron_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_trapdoor.json new file mode 100644 index 000000000..df0b2b3d4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/iron_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/iron_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/iron_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/iron_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/iron_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/iron_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/iron_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/iron_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/iron_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/iron_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/iron_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/iron_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/iron_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/iron_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/iron_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/iron_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/iron_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/item_frame.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/item_frame.json new file mode 100644 index 000000000..7b70ec00c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/item_frame.json @@ -0,0 +1,6 @@ +{ + "variants": { + "map=false": { "model": "block/item_frame" }, + "map=true": { "model": "block/item_frame_map" } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jack_o_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jack_o_lantern.json new file mode 100644 index 000000000..7454ebab3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jack_o_lantern.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/jack_o_lantern", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/jack_o_lantern" + }, + "facing=south": { + "model": "minecraft:block/jack_o_lantern", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/jack_o_lantern", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jigsaw.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jigsaw.json new file mode 100644 index 000000000..8f24d193d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jigsaw.json @@ -0,0 +1,57 @@ +{ + "variants": { + "orientation=down_east": { + "model": "minecraft:block/jigsaw", + "x": 90, + "y": 90 + }, + "orientation=down_north": { + "model": "minecraft:block/jigsaw", + "x": 90 + }, + "orientation=down_south": { + "model": "minecraft:block/jigsaw", + "x": 90, + "y": 180 + }, + "orientation=down_west": { + "model": "minecraft:block/jigsaw", + "x": 90, + "y": 270 + }, + "orientation=east_up": { + "model": "minecraft:block/jigsaw", + "y": 90 + }, + "orientation=north_up": { + "model": "minecraft:block/jigsaw" + }, + "orientation=south_up": { + "model": "minecraft:block/jigsaw", + "y": 180 + }, + "orientation=up_east": { + "model": "minecraft:block/jigsaw", + "x": 270, + "y": 270 + }, + "orientation=up_north": { + "model": "minecraft:block/jigsaw", + "x": 270, + "y": 180 + }, + "orientation=up_south": { + "model": "minecraft:block/jigsaw", + "x": 270 + }, + "orientation=up_west": { + "model": "minecraft:block/jigsaw", + "x": 270, + "y": 90 + }, + "orientation=west_up": { + "model": "minecraft:block/jigsaw", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jukebox.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jukebox.json new file mode 100644 index 000000000..7ee694c69 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jukebox.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/jukebox" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_button.json new file mode 100644 index 000000000..874add88e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/jungle_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/jungle_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/jungle_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/jungle_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/jungle_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/jungle_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/jungle_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/jungle_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/jungle_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/jungle_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/jungle_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/jungle_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/jungle_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/jungle_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_door.json new file mode 100644 index 000000000..f5878e6fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/jungle_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/jungle_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/jungle_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/jungle_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/jungle_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/jungle_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/jungle_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/jungle_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/jungle_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/jungle_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/jungle_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/jungle_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/jungle_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/jungle_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/jungle_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/jungle_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/jungle_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/jungle_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/jungle_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/jungle_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/jungle_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/jungle_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/jungle_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/jungle_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/jungle_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/jungle_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/jungle_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/jungle_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/jungle_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/jungle_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/jungle_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/jungle_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_fence.json new file mode 100644 index 000000000..7ed2c128e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/jungle_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/jungle_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/jungle_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/jungle_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/jungle_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_fence_gate.json new file mode 100644 index 000000000..37e51526e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/jungle_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/jungle_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/jungle_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/jungle_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/jungle_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/jungle_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/jungle_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/jungle_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/jungle_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/jungle_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/jungle_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/jungle_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/jungle_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/jungle_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/jungle_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/jungle_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_hanging_sign.json new file mode 100644 index 000000000..019498fd7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/jungle_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_leaves.json new file mode 100644 index 000000000..9bc23fe04 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/jungle_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_log.json new file mode 100644 index 000000000..ad109dd8e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/jungle_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/jungle_log" + }, + "axis=z": { + "model": "minecraft:block/jungle_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_planks.json new file mode 100644 index 000000000..e387c978d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/jungle_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_pressure_plate.json new file mode 100644 index 000000000..a32da0b88 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/jungle_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/jungle_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_sapling.json new file mode 100644 index 000000000..5e90752d0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/jungle_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_shelf.json new file mode 100644 index 000000000..4995490e7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_shelf.json @@ -0,0 +1,402 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/jungle_shelf" + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf", + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf", + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf", + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_unpowered" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_unpowered", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_unpowered", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_unpowered", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_unconnected" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_unconnected", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_unconnected", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_unconnected", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_center" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_center", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_center", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_center", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/jungle_shelf_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_sign.json new file mode 100644 index 000000000..883b18597 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/jungle_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_slab.json new file mode 100644 index 000000000..700e45f93 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/jungle_slab" + }, + "type=double": { + "model": "minecraft:block/jungle_planks" + }, + "type=top": { + "model": "minecraft:block/jungle_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_stairs.json new file mode 100644 index 000000000..df5cc2b2c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/jungle_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/jungle_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/jungle_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/jungle_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/jungle_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/jungle_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/jungle_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/jungle_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/jungle_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/jungle_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/jungle_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/jungle_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/jungle_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/jungle_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_trapdoor.json new file mode 100644 index 000000000..c858f7739 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/jungle_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/jungle_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/jungle_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/jungle_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/jungle_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/jungle_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/jungle_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/jungle_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/jungle_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/jungle_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/jungle_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/jungle_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/jungle_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/jungle_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/jungle_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/jungle_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_wall_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_wall_hanging_sign.json new file mode 100644 index 000000000..019498fd7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/jungle_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_wall_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_wall_sign.json new file mode 100644 index 000000000..883b18597 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/jungle_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_wood.json new file mode 100644 index 000000000..af9a353d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/jungle_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/jungle_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/jungle_wood" + }, + "axis=z": { + "model": "minecraft:block/jungle_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/kelp.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/kelp.json new file mode 100644 index 000000000..6654924af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/kelp.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/kelp" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/kelp_plant.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/kelp_plant.json new file mode 100644 index 000000000..f1d1539ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/kelp_plant.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/kelp_plant" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/ladder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/ladder.json new file mode 100644 index 000000000..972cc8029 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/ladder.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/ladder", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/ladder" + }, + "facing=south": { + "model": "minecraft:block/ladder", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/ladder", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lantern.json new file mode 100644 index 000000000..00cb4380c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lantern.json @@ -0,0 +1,10 @@ +{ + "variants": { + "hanging=false": { + "model": "minecraft:block/lantern" + }, + "hanging=true": { + "model": "minecraft:block/lantern_hanging" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lapis_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lapis_block.json new file mode 100644 index 000000000..ff91f2329 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lapis_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lapis_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lapis_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lapis_ore.json new file mode 100644 index 000000000..351713044 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lapis_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lapis_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/large_amethyst_bud.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/large_amethyst_bud.json new file mode 100644 index 000000000..c64c6a9f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/large_amethyst_bud.json @@ -0,0 +1,30 @@ +{ + "variants": { + "facing=down": { + "model": "minecraft:block/large_amethyst_bud", + "x": 180 + }, + "facing=east": { + "model": "minecraft:block/large_amethyst_bud", + "x": 90, + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/large_amethyst_bud", + "x": 90 + }, + "facing=south": { + "model": "minecraft:block/large_amethyst_bud", + "x": 90, + "y": 180 + }, + "facing=up": { + "model": "minecraft:block/large_amethyst_bud" + }, + "facing=west": { + "model": "minecraft:block/large_amethyst_bud", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/large_fern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/large_fern.json new file mode 100644 index 000000000..a92b142fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/large_fern.json @@ -0,0 +1,10 @@ +{ + "variants": { + "half=lower": { + "model": "minecraft:block/large_fern_bottom" + }, + "half=upper": { + "model": "minecraft:block/large_fern_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lava.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lava.json new file mode 100644 index 000000000..54087c252 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lava.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lava" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lava_cauldron.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lava_cauldron.json new file mode 100644 index 000000000..6ed31aab4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lava_cauldron.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lava_cauldron" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/leaf_litter.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/leaf_litter.json new file mode 100644 index 000000000..165771c19 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/leaf_litter.json @@ -0,0 +1,160 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/leaf_litter_1" + }, + "when": { + "facing": "north", + "segment_amount": "1" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_1", + "y": 90 + }, + "when": { + "facing": "east", + "segment_amount": "1" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_1", + "y": 180 + }, + "when": { + "facing": "south", + "segment_amount": "1" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_1", + "y": 270 + }, + "when": { + "facing": "west", + "segment_amount": "1" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_2" + }, + "when": { + "facing": "north", + "segment_amount": "2|3" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_2", + "y": 90 + }, + "when": { + "facing": "east", + "segment_amount": "2|3" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_2", + "y": 180 + }, + "when": { + "facing": "south", + "segment_amount": "2|3" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_2", + "y": 270 + }, + "when": { + "facing": "west", + "segment_amount": "2|3" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_3" + }, + "when": { + "facing": "north", + "segment_amount": "3" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_3", + "y": 90 + }, + "when": { + "facing": "east", + "segment_amount": "3" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_3", + "y": 180 + }, + "when": { + "facing": "south", + "segment_amount": "3" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_3", + "y": 270 + }, + "when": { + "facing": "west", + "segment_amount": "3" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_4" + }, + "when": { + "facing": "north", + "segment_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_4", + "y": 90 + }, + "when": { + "facing": "east", + "segment_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_4", + "y": 180 + }, + "when": { + "facing": "south", + "segment_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/leaf_litter_4", + "y": 270 + }, + "when": { + "facing": "west", + "segment_amount": "4" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lectern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lectern.json new file mode 100644 index 000000000..b6ec88be8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lectern.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/lectern", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/lectern" + }, + "facing=south": { + "model": "minecraft:block/lectern", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/lectern", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lever.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lever.json new file mode 100644 index 000000000..f5892ecab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lever.json @@ -0,0 +1,110 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/lever_on", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/lever", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/lever_on", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/lever", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/lever_on", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/lever", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/lever_on", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/lever", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/lever_on", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/lever", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/lever_on" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/lever" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/lever_on", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/lever", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/lever_on", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/lever", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/lever_on", + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/lever", + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/lever_on", + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/lever", + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/lever_on", + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/lever", + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/lever_on", + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/lever", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light.json new file mode 100644 index 000000000..c6fa88559 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light.json @@ -0,0 +1,52 @@ +{ + "variants": { + "level=0": { + "model": "minecraft:block/light_00" + }, + "level=1": { + "model": "minecraft:block/light_01" + }, + "level=10": { + "model": "minecraft:block/light_10" + }, + "level=11": { + "model": "minecraft:block/light_11" + }, + "level=12": { + "model": "minecraft:block/light_12" + }, + "level=13": { + "model": "minecraft:block/light_13" + }, + "level=14": { + "model": "minecraft:block/light_14" + }, + "level=15": { + "model": "minecraft:block/light_15" + }, + "level=2": { + "model": "minecraft:block/light_02" + }, + "level=3": { + "model": "minecraft:block/light_03" + }, + "level=4": { + "model": "minecraft:block/light_04" + }, + "level=5": { + "model": "minecraft:block/light_05" + }, + "level=6": { + "model": "minecraft:block/light_06" + }, + "level=7": { + "model": "minecraft:block/light_07" + }, + "level=8": { + "model": "minecraft:block/light_08" + }, + "level=9": { + "model": "minecraft:block/light_09" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_candle.json new file mode 100644 index 000000000..93995174e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/light_blue_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/light_blue_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/light_blue_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/light_blue_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/light_blue_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/light_blue_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/light_blue_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/light_blue_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_candle_cake.json new file mode 100644 index 000000000..669bb4e28 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/light_blue_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/light_blue_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_carpet.json new file mode 100644 index 000000000..5db104bc8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_blue_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_concrete.json new file mode 100644 index 000000000..b1869773e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_blue_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_concrete_powder.json new file mode 100644 index 000000000..b1a0f8662 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/light_blue_concrete_powder" + }, + { + "model": "minecraft:block/light_blue_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/light_blue_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/light_blue_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_glazed_terracotta.json new file mode 100644 index 000000000..04c566aa2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/light_blue_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/light_blue_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/light_blue_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/light_blue_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_shulker_box.json new file mode 100644 index 000000000..0d8702cef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_blue_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_stained_glass.json new file mode 100644 index 000000000..6570fbc59 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_blue_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_stained_glass_pane.json new file mode 100644 index 000000000..91092ccae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/light_blue_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_terracotta.json new file mode 100644 index 000000000..923dc3d41 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_blue_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_wall_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_wool.json new file mode 100644 index 000000000..0f808ef73 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_blue_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_blue_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_candle.json new file mode 100644 index 000000000..4d98f6c2c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/light_gray_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/light_gray_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/light_gray_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/light_gray_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/light_gray_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/light_gray_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/light_gray_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/light_gray_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_candle_cake.json new file mode 100644 index 000000000..87604a99b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/light_gray_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/light_gray_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_carpet.json new file mode 100644 index 000000000..2cd65422f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_gray_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_concrete.json new file mode 100644 index 000000000..7fcc76536 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_gray_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_concrete_powder.json new file mode 100644 index 000000000..71d06183b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/light_gray_concrete_powder" + }, + { + "model": "minecraft:block/light_gray_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/light_gray_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/light_gray_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_glazed_terracotta.json new file mode 100644 index 000000000..afaa7d77a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/light_gray_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/light_gray_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/light_gray_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/light_gray_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_shulker_box.json new file mode 100644 index 000000000..a04db2c92 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_gray_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_stained_glass.json new file mode 100644 index 000000000..b14a289d7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_gray_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_stained_glass_pane.json new file mode 100644 index 000000000..0c4c99ee6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/light_gray_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_terracotta.json new file mode 100644 index 000000000..d1fe850d9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_gray_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_wall_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_wool.json new file mode 100644 index 000000000..c26d7157c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_gray_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/light_gray_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_weighted_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_weighted_pressure_plate.json new file mode 100644 index 000000000..3495b4c58 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/light_weighted_pressure_plate.json @@ -0,0 +1,52 @@ +{ + "variants": { + "power=0": { + "model": "minecraft:block/light_weighted_pressure_plate" + }, + "power=1": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=10": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=11": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=12": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=13": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=14": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=15": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=2": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=3": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=4": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=5": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=6": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=7": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=8": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + }, + "power=9": { + "model": "minecraft:block/light_weighted_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lightning_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lightning_rod.json new file mode 100644 index 000000000..df0e7c466 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lightning_rod.json @@ -0,0 +1,56 @@ +{ + "variants": { + "facing=down,powered=false": { + "model": "minecraft:block/lightning_rod", + "x": 180 + }, + "facing=down,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 180 + }, + "facing=east,powered=false": { + "model": "minecraft:block/lightning_rod", + "x": 90, + "y": 90 + }, + "facing=east,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 90 + }, + "facing=north,powered=false": { + "model": "minecraft:block/lightning_rod", + "x": 90 + }, + "facing=north,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90 + }, + "facing=south,powered=false": { + "model": "minecraft:block/lightning_rod", + "x": 90, + "y": 180 + }, + "facing=south,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 180 + }, + "facing=up,powered=false": { + "model": "minecraft:block/lightning_rod" + }, + "facing=up,powered=true": { + "model": "minecraft:block/lightning_rod_on" + }, + "facing=west,powered=false": { + "model": "minecraft:block/lightning_rod", + "x": 90, + "y": 270 + }, + "facing=west,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lilac.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lilac.json new file mode 100644 index 000000000..5a29adb9e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lilac.json @@ -0,0 +1,10 @@ +{ + "variants": { + "half=lower": { + "model": "minecraft:block/lilac_bottom" + }, + "half=upper": { + "model": "minecraft:block/lilac_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lily_of_the_valley.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lily_of_the_valley.json new file mode 100644 index 000000000..5bc1e9384 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lily_of_the_valley.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lily_of_the_valley" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lily_pad.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lily_pad.json new file mode 100644 index 000000000..41cd85d1c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lily_pad.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/lily_pad" + }, + { + "model": "minecraft:block/lily_pad", + "y": 90 + }, + { + "model": "minecraft:block/lily_pad", + "y": 180 + }, + { + "model": "minecraft:block/lily_pad", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_candle.json new file mode 100644 index 000000000..373f7fb0d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/lime_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/lime_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/lime_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/lime_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/lime_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/lime_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/lime_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/lime_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_candle_cake.json new file mode 100644 index 000000000..6a650d6bd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/lime_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/lime_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_carpet.json new file mode 100644 index 000000000..970a8ac1c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lime_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_concrete.json new file mode 100644 index 000000000..af1b10b50 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lime_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_concrete_powder.json new file mode 100644 index 000000000..4f48ccf10 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/lime_concrete_powder" + }, + { + "model": "minecraft:block/lime_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/lime_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/lime_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_glazed_terracotta.json new file mode 100644 index 000000000..1bf117b77 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/lime_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/lime_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/lime_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/lime_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_shulker_box.json new file mode 100644 index 000000000..8f33bac61 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lime_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_stained_glass.json new file mode 100644 index 000000000..6916921a4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lime_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_stained_glass_pane.json new file mode 100644 index 000000000..499df0190 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/lime_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_terracotta.json new file mode 100644 index 000000000..c194305cb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lime_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_wall_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_wool.json new file mode 100644 index 000000000..d1524b5d6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lime_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lime_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lodestone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lodestone.json new file mode 100644 index 000000000..639e6848f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/lodestone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/lodestone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/loom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/loom.json new file mode 100644 index 000000000..0a8c5b691 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/loom.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/loom", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/loom" + }, + "facing=south": { + "model": "minecraft:block/loom", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/loom", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_candle.json new file mode 100644 index 000000000..732c2807c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/magenta_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/magenta_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/magenta_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/magenta_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/magenta_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/magenta_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/magenta_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/magenta_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_candle_cake.json new file mode 100644 index 000000000..1c994f6d1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/magenta_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/magenta_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_carpet.json new file mode 100644 index 000000000..3427fec70 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/magenta_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_concrete.json new file mode 100644 index 000000000..efa0ead93 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/magenta_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_concrete_powder.json new file mode 100644 index 000000000..37231b4f9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/magenta_concrete_powder" + }, + { + "model": "minecraft:block/magenta_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/magenta_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/magenta_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_glazed_terracotta.json new file mode 100644 index 000000000..bfb421a14 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/magenta_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/magenta_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/magenta_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/magenta_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_shulker_box.json new file mode 100644 index 000000000..e0d737fb2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/magenta_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_stained_glass.json new file mode 100644 index 000000000..2081e041b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/magenta_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_stained_glass_pane.json new file mode 100644 index 000000000..2c1e27648 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/magenta_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_terracotta.json new file mode 100644 index 000000000..30135ae51 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/magenta_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_wall_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_wool.json new file mode 100644 index 000000000..d8666f052 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magenta_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/magenta_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magma_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magma_block.json new file mode 100644 index 000000000..90e6478e8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/magma_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/magma_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_button.json new file mode 100644 index 000000000..1dc794676 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/mangrove_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/mangrove_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/mangrove_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/mangrove_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/mangrove_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/mangrove_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/mangrove_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/mangrove_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/mangrove_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/mangrove_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/mangrove_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/mangrove_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/mangrove_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/mangrove_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_door.json new file mode 100644 index 000000000..0314412d6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/mangrove_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/mangrove_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/mangrove_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/mangrove_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/mangrove_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/mangrove_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/mangrove_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/mangrove_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/mangrove_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/mangrove_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/mangrove_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/mangrove_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/mangrove_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/mangrove_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/mangrove_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/mangrove_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/mangrove_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/mangrove_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/mangrove_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/mangrove_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/mangrove_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/mangrove_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/mangrove_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/mangrove_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/mangrove_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/mangrove_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/mangrove_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/mangrove_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/mangrove_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/mangrove_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/mangrove_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/mangrove_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_fence.json new file mode 100644 index 000000000..110e6b760 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/mangrove_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_fence_gate.json new file mode 100644 index 000000000..c50e279cf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/mangrove_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/mangrove_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/mangrove_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/mangrove_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/mangrove_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/mangrove_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/mangrove_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/mangrove_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/mangrove_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/mangrove_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/mangrove_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/mangrove_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/mangrove_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/mangrove_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/mangrove_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/mangrove_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_hanging_sign.json new file mode 100644 index 000000000..c8442f053 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mangrove_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_leaves.json new file mode 100644 index 000000000..49ae2e02f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mangrove_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_log.json new file mode 100644 index 000000000..55ca8b938 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/mangrove_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/mangrove_log" + }, + "axis=z": { + "model": "minecraft:block/mangrove_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_planks.json new file mode 100644 index 000000000..9e7098e8f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mangrove_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_pressure_plate.json new file mode 100644 index 000000000..6415a38c9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/mangrove_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/mangrove_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_propagule.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_propagule.json new file mode 100644 index 000000000..970a8c4ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_propagule.json @@ -0,0 +1,34 @@ +{ + "variants": { + "age=0,hanging=false": { + "model": "minecraft:block/mangrove_propagule" + }, + "age=0,hanging=true": { + "model": "minecraft:block/mangrove_propagule_hanging_0" + }, + "age=1,hanging=false": { + "model": "minecraft:block/mangrove_propagule" + }, + "age=1,hanging=true": { + "model": "minecraft:block/mangrove_propagule_hanging_1" + }, + "age=2,hanging=false": { + "model": "minecraft:block/mangrove_propagule" + }, + "age=2,hanging=true": { + "model": "minecraft:block/mangrove_propagule_hanging_2" + }, + "age=3,hanging=false": { + "model": "minecraft:block/mangrove_propagule" + }, + "age=3,hanging=true": { + "model": "minecraft:block/mangrove_propagule_hanging_3" + }, + "age=4,hanging=false": { + "model": "minecraft:block/mangrove_propagule" + }, + "age=4,hanging=true": { + "model": "minecraft:block/mangrove_propagule_hanging_4" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_roots.json new file mode 100644 index 000000000..dd31808bc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_roots.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mangrove_roots" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_shelf.json new file mode 100644 index 000000000..424ea32d3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_shelf.json @@ -0,0 +1,402 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/mangrove_shelf" + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf", + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf", + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf", + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_unpowered" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_unpowered", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_unpowered", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_unpowered", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_unconnected" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_unconnected", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_unconnected", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_unconnected", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_center" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_center", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_center", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_center", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/mangrove_shelf_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_sign.json new file mode 100644 index 000000000..9559d65cc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mangrove_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_slab.json new file mode 100644 index 000000000..ec39777e0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/mangrove_slab" + }, + "type=double": { + "model": "minecraft:block/mangrove_planks" + }, + "type=top": { + "model": "minecraft:block/mangrove_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_stairs.json new file mode 100644 index 000000000..69e2425b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/mangrove_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/mangrove_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/mangrove_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/mangrove_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/mangrove_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/mangrove_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/mangrove_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/mangrove_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/mangrove_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/mangrove_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/mangrove_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/mangrove_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/mangrove_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/mangrove_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_trapdoor.json new file mode 100644 index 000000000..17c336a63 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/mangrove_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/mangrove_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/mangrove_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/mangrove_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/mangrove_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/mangrove_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/mangrove_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/mangrove_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/mangrove_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/mangrove_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/mangrove_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/mangrove_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/mangrove_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/mangrove_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/mangrove_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/mangrove_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_wall_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_wall_hanging_sign.json new file mode 100644 index 000000000..c8442f053 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mangrove_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_wall_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_wall_sign.json new file mode 100644 index 000000000..9559d65cc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mangrove_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_wood.json new file mode 100644 index 000000000..c517ddc9e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mangrove_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/mangrove_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/mangrove_wood" + }, + "axis=z": { + "model": "minecraft:block/mangrove_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/medium_amethyst_bud.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/medium_amethyst_bud.json new file mode 100644 index 000000000..2166b8626 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/medium_amethyst_bud.json @@ -0,0 +1,30 @@ +{ + "variants": { + "facing=down": { + "model": "minecraft:block/medium_amethyst_bud", + "x": 180 + }, + "facing=east": { + "model": "minecraft:block/medium_amethyst_bud", + "x": 90, + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/medium_amethyst_bud", + "x": 90 + }, + "facing=south": { + "model": "minecraft:block/medium_amethyst_bud", + "x": 90, + "y": 180 + }, + "facing=up": { + "model": "minecraft:block/medium_amethyst_bud" + }, + "facing=west": { + "model": "minecraft:block/medium_amethyst_bud", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/melon.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/melon.json new file mode 100644 index 000000000..93ce0cd42 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/melon.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/melon" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/melon_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/melon_stem.json new file mode 100644 index 000000000..89bcde3f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/melon_stem.json @@ -0,0 +1,28 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/melon_stem_stage0" + }, + "age=1": { + "model": "minecraft:block/melon_stem_stage1" + }, + "age=2": { + "model": "minecraft:block/melon_stem_stage2" + }, + "age=3": { + "model": "minecraft:block/melon_stem_stage3" + }, + "age=4": { + "model": "minecraft:block/melon_stem_stage4" + }, + "age=5": { + "model": "minecraft:block/melon_stem_stage5" + }, + "age=6": { + "model": "minecraft:block/melon_stem_stage6" + }, + "age=7": { + "model": "minecraft:block/melon_stem_stage7" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/moss_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/moss_block.json new file mode 100644 index 000000000..8c2eaa3a8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/moss_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/moss_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/moss_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/moss_carpet.json new file mode 100644 index 000000000..3b338b558 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/moss_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/moss_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone.json new file mode 100644 index 000000000..7467ed1d3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mossy_cobblestone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_slab.json new file mode 100644 index 000000000..51dfa2ca2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/mossy_cobblestone_slab" + }, + "type=double": { + "model": "minecraft:block/mossy_cobblestone" + }, + "type=top": { + "model": "minecraft:block/mossy_cobblestone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_stairs.json new file mode 100644 index 000000000..1e1bc448a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/mossy_cobblestone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/mossy_cobblestone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/mossy_cobblestone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/mossy_cobblestone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/mossy_cobblestone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/mossy_cobblestone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/mossy_cobblestone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/mossy_cobblestone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/mossy_cobblestone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_wall.json new file mode 100644 index 000000000..6edbd9afe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_cobblestone_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_cobblestone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_slab.json new file mode 100644 index 000000000..e8d96fc00 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/mossy_stone_brick_slab" + }, + "type=double": { + "model": "minecraft:block/mossy_stone_bricks" + }, + "type=top": { + "model": "minecraft:block/mossy_stone_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_stairs.json new file mode 100644 index 000000000..1a00d6715 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/mossy_stone_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/mossy_stone_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/mossy_stone_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/mossy_stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/mossy_stone_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/mossy_stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/mossy_stone_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/mossy_stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/mossy_stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_wall.json new file mode 100644 index 000000000..d5c2e06dd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_stone_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mossy_stone_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_stone_bricks.json new file mode 100644 index 000000000..c17c4a7f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mossy_stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mossy_stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/moving_piston.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/moving_piston.json new file mode 100644 index 000000000..aaa921ffa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/moving_piston.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/moving_piston" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mud.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mud.json new file mode 100644 index 000000000..d62b2f7a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mud.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mud" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mud_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mud_brick_slab.json new file mode 100644 index 000000000..f611448dc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mud_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/mud_brick_slab" + }, + "type=double": { + "model": "minecraft:block/mud_bricks" + }, + "type=top": { + "model": "minecraft:block/mud_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mud_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mud_brick_stairs.json new file mode 100644 index 000000000..a75a34900 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mud_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/mud_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/mud_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/mud_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/mud_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/mud_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/mud_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/mud_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/mud_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/mud_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/mud_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/mud_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/mud_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/mud_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/mud_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mud_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mud_brick_wall.json new file mode 100644 index 000000000..6a954ff05 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mud_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/mud_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mud_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mud_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mud_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mud_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/mud_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mud_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mud_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/mud_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mud_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mud_bricks.json new file mode 100644 index 000000000..57475ffd1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mud_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/mud_bricks_north_west_mirrored" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/muddy_mangrove_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/muddy_mangrove_roots.json new file mode 100644 index 000000000..8f96e0137 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/muddy_mangrove_roots.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/muddy_mangrove_roots", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/muddy_mangrove_roots" + }, + "axis=z": { + "model": "minecraft:block/muddy_mangrove_roots", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mushroom_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mushroom_stem.json new file mode 100644 index 000000000..f343a9b9d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mushroom_stem.json @@ -0,0 +1,115 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/mushroom_stem" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_stem", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_stem", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_stem", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_stem", + "uvlock": true, + "x": 270 + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_stem", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 90 + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 180 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 270 + }, + "when": { + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "x": 270 + }, + "when": { + "up": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "x": 90 + }, + "when": { + "down": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mycelium.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mycelium.json new file mode 100644 index 000000000..cdf6392d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/mycelium.json @@ -0,0 +1,24 @@ +{ + "variants": { + "snowy=false": [ + { + "model": "minecraft:block/mycelium" + }, + { + "model": "minecraft:block/mycelium", + "y": 90 + }, + { + "model": "minecraft:block/mycelium", + "y": 180 + }, + { + "model": "minecraft:block/mycelium", + "y": 270 + } + ], + "snowy=true": { + "model": "minecraft:block/grass_block_snow" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_brick_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_brick_fence.json new file mode 100644 index 000000000..124e21d6e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_brick_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/nether_brick_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_brick_slab.json new file mode 100644 index 000000000..e6e04975b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/nether_brick_slab" + }, + "type=double": { + "model": "minecraft:block/nether_bricks" + }, + "type=top": { + "model": "minecraft:block/nether_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_brick_stairs.json new file mode 100644 index 000000000..80c3796f3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/nether_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/nether_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/nether_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/nether_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/nether_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/nether_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/nether_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/nether_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/nether_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/nether_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/nether_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/nether_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_brick_wall.json new file mode 100644 index 000000000..65eccc401 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/nether_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/nether_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_bricks.json new file mode 100644 index 000000000..85622bf5a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/nether_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_gold_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_gold_ore.json new file mode 100644 index 000000000..75e62a37d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_gold_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/nether_gold_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_portal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_portal.json new file mode 100644 index 000000000..af9f386ae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_portal.json @@ -0,0 +1,10 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/nether_portal_ns" + }, + "axis=z": { + "model": "minecraft:block/nether_portal_ew" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_quartz_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_quartz_ore.json new file mode 100644 index 000000000..b473ab4f0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_quartz_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/nether_quartz_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_sprouts.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_sprouts.json new file mode 100644 index 000000000..445d10019 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_sprouts.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/nether_sprouts" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_wart.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_wart.json new file mode 100644 index 000000000..f956d12cd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_wart.json @@ -0,0 +1,16 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/nether_wart_stage0" + }, + "age=1": { + "model": "minecraft:block/nether_wart_stage1" + }, + "age=2": { + "model": "minecraft:block/nether_wart_stage1" + }, + "age=3": { + "model": "minecraft:block/nether_wart_stage2" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_wart_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_wart_block.json new file mode 100644 index 000000000..ea08ea130 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/nether_wart_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/nether_wart_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/netherite_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/netherite_block.json new file mode 100644 index 000000000..85f89e955 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/netherite_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/netherite_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/netherrack.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/netherrack.json new file mode 100644 index 000000000..aa1fad53d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/netherrack.json @@ -0,0 +1,78 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/netherrack" + }, + { + "model": "minecraft:block/netherrack", + "x": 90 + }, + { + "model": "minecraft:block/netherrack", + "x": 180 + }, + { + "model": "minecraft:block/netherrack", + "x": 270 + }, + { + "model": "minecraft:block/netherrack", + "y": 90 + }, + { + "model": "minecraft:block/netherrack", + "x": 90, + "y": 90 + }, + { + "model": "minecraft:block/netherrack", + "x": 180, + "y": 90 + }, + { + "model": "minecraft:block/netherrack", + "x": 270, + "y": 90 + }, + { + "model": "minecraft:block/netherrack", + "y": 180 + }, + { + "model": "minecraft:block/netherrack", + "x": 90, + "y": 180 + }, + { + "model": "minecraft:block/netherrack", + "x": 180, + "y": 180 + }, + { + "model": "minecraft:block/netherrack", + "x": 270, + "y": 180 + }, + { + "model": "minecraft:block/netherrack", + "y": 270 + }, + { + "model": "minecraft:block/netherrack", + "x": 90, + "y": 270 + }, + { + "model": "minecraft:block/netherrack", + "x": 180, + "y": 270 + }, + { + "model": "minecraft:block/netherrack", + "x": 270, + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/note_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/note_block.json new file mode 100644 index 000000000..651e64c51 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/note_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/note_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_button.json new file mode 100644 index 000000000..e21e090a9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/oak_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/oak_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/oak_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/oak_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/oak_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/oak_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/oak_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/oak_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/oak_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/oak_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/oak_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/oak_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/oak_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_door.json new file mode 100644 index 000000000..c739dec25 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oak_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oak_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oak_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oak_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oak_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oak_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oak_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oak_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oak_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oak_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oak_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oak_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oak_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oak_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oak_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oak_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oak_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oak_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oak_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oak_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oak_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oak_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oak_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oak_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oak_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oak_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oak_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oak_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oak_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oak_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oak_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oak_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_fence.json new file mode 100644 index 000000000..394851e18 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/oak_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/oak_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/oak_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/oak_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/oak_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_fence_gate.json new file mode 100644 index 000000000..872298ceb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/oak_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/oak_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/oak_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/oak_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/oak_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/oak_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/oak_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/oak_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/oak_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/oak_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/oak_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/oak_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/oak_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/oak_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/oak_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/oak_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_hanging_sign.json new file mode 100644 index 000000000..b2c43dc30 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oak_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_leaves.json new file mode 100644 index 000000000..8d60eedb4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oak_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_log.json new file mode 100644 index 000000000..9d3266ce0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/oak_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/oak_log" + }, + "axis=z": { + "model": "minecraft:block/oak_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_planks.json new file mode 100644 index 000000000..027809296 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oak_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_pressure_plate.json new file mode 100644 index 000000000..6ecbfbc5f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/oak_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/oak_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_sapling.json new file mode 100644 index 000000000..04d4cbe93 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oak_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_shelf.json new file mode 100644 index 000000000..404c90169 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_shelf.json @@ -0,0 +1,402 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/oak_shelf" + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf", + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf", + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf", + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_unpowered" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_unpowered", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_unpowered", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_unpowered", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_unconnected" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_unconnected", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_unconnected", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_unconnected", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_center" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_center", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_center", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_center", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/oak_shelf_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_sign.json new file mode 100644 index 000000000..b9f38f4f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oak_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_slab.json new file mode 100644 index 000000000..c503f74ca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/oak_slab" + }, + "type=double": { + "model": "minecraft:block/oak_planks" + }, + "type=top": { + "model": "minecraft:block/oak_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_stairs.json new file mode 100644 index 000000000..c20e7ef6c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/oak_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/oak_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/oak_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/oak_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/oak_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/oak_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/oak_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/oak_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/oak_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/oak_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/oak_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/oak_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_trapdoor.json new file mode 100644 index 000000000..168faf128 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/oak_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/oak_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/oak_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/oak_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/oak_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/oak_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/oak_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/oak_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/oak_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/oak_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/oak_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/oak_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/oak_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/oak_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/oak_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/oak_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_wall_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_wall_hanging_sign.json new file mode 100644 index 000000000..b2c43dc30 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oak_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_wall_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_wall_sign.json new file mode 100644 index 000000000..b9f38f4f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oak_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_wood.json new file mode 100644 index 000000000..1eb596b84 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oak_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/oak_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/oak_wood" + }, + "axis=z": { + "model": "minecraft:block/oak_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/observer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/observer.json new file mode 100644 index 000000000..6f54ba51b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/observer.json @@ -0,0 +1,50 @@ +{ + "variants": { + "facing=down,powered=false": { + "model": "minecraft:block/observer", + "x": 90 + }, + "facing=down,powered=true": { + "model": "minecraft:block/observer_on", + "x": 90 + }, + "facing=east,powered=false": { + "model": "minecraft:block/observer", + "y": 90 + }, + "facing=east,powered=true": { + "model": "minecraft:block/observer_on", + "y": 90 + }, + "facing=north,powered=false": { + "model": "minecraft:block/observer" + }, + "facing=north,powered=true": { + "model": "minecraft:block/observer_on" + }, + "facing=south,powered=false": { + "model": "minecraft:block/observer", + "y": 180 + }, + "facing=south,powered=true": { + "model": "minecraft:block/observer_on", + "y": 180 + }, + "facing=up,powered=false": { + "model": "minecraft:block/observer", + "x": 270 + }, + "facing=up,powered=true": { + "model": "minecraft:block/observer_on", + "x": 270 + }, + "facing=west,powered=false": { + "model": "minecraft:block/observer", + "y": 270 + }, + "facing=west,powered=true": { + "model": "minecraft:block/observer_on", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/obsidian.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/obsidian.json new file mode 100644 index 000000000..28d39dfdc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/obsidian.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/obsidian" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/ochre_froglight.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/ochre_froglight.json new file mode 100644 index 000000000..2a4f1aa70 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/ochre_froglight.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/ochre_froglight_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/ochre_froglight" + }, + "axis=z": { + "model": "minecraft:block/ochre_froglight_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/open_eyeblossom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/open_eyeblossom.json new file mode 100644 index 000000000..17dc8f759 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/open_eyeblossom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/open_eyeblossom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_candle.json new file mode 100644 index 000000000..203c65191 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/orange_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/orange_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/orange_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/orange_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/orange_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/orange_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/orange_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/orange_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_candle_cake.json new file mode 100644 index 000000000..1e65e8803 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/orange_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/orange_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_carpet.json new file mode 100644 index 000000000..37ac6ac4f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/orange_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_concrete.json new file mode 100644 index 000000000..e88cada06 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/orange_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_concrete_powder.json new file mode 100644 index 000000000..9637378d5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/orange_concrete_powder" + }, + { + "model": "minecraft:block/orange_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/orange_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/orange_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_glazed_terracotta.json new file mode 100644 index 000000000..abdb57a3b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/orange_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/orange_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/orange_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/orange_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_shulker_box.json new file mode 100644 index 000000000..0bc75690b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/orange_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_stained_glass.json new file mode 100644 index 000000000..93c651a54 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/orange_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_stained_glass_pane.json new file mode 100644 index 000000000..35df240f8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/orange_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_terracotta.json new file mode 100644 index 000000000..6d644c41f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/orange_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_tulip.json new file mode 100644 index 000000000..8aac68c8c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_tulip.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/orange_tulip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_wall_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_wool.json new file mode 100644 index 000000000..ae3fabee3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/orange_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/orange_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxeye_daisy.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxeye_daisy.json new file mode 100644 index 000000000..fa815c224 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxeye_daisy.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxeye_daisy" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_chiseled_copper.json new file mode 100644 index 000000000..ea362c155 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_chiseled_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper.json new file mode 100644 index 000000000..d7ce62512 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_bars.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_bars.json new file mode 100644 index 000000000..9aae498f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_bars.json @@ -0,0 +1,100 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_post_ends" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_post" + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_cap" + }, + "when": { + "east": "false", + "north": "true", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_cap", + "y": 90 + }, + "when": { + "east": "true", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_cap_alt" + }, + "when": { + "east": "false", + "north": "false", + "south": "true", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_cap_alt", + "y": 90 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_bulb.json new file mode 100644 index 000000000..1e58f046b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_bulb.json @@ -0,0 +1,16 @@ +{ + "variants": { + "lit=false,powered=false": { + "model": "minecraft:block/oxidized_copper_bulb" + }, + "lit=false,powered=true": { + "model": "minecraft:block/oxidized_copper_bulb_powered" + }, + "lit=true,powered=false": { + "model": "minecraft:block/oxidized_copper_bulb_lit" + }, + "lit=true,powered=true": { + "model": "minecraft:block/oxidized_copper_bulb_lit_powered" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_chain.json new file mode 100644 index 000000000..583c80d31 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_chain.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/oxidized_copper_chain", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/oxidized_copper_chain" + }, + "axis=z": { + "model": "minecraft:block/oxidized_copper_chain", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_chest.json new file mode 100644 index 000000000..7bd5acd27 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_chest.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_copper_chest" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_door.json new file mode 100644 index 000000000..2cb098048 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_golem_statue.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_golem_statue.json new file mode 100644 index 000000000..d07f9c043 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_golem_statue.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_copper_golem_statue" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_grate.json new file mode 100644 index 000000000..e8039a9a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_grate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_copper_grate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_lantern.json new file mode 100644 index 000000000..22bc9f99c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_lantern.json @@ -0,0 +1,10 @@ +{ + "variants": { + "hanging=false": { + "model": "minecraft:block/oxidized_copper_lantern" + }, + "hanging=true": { + "model": "minecraft:block/oxidized_copper_lantern_hanging" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_trapdoor.json new file mode 100644 index 000000000..c5ceb4cd7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_copper_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper.json new file mode 100644 index 000000000..58bf24a1c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_cut_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper_slab.json new file mode 100644 index 000000000..e91b8c962 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/oxidized_cut_copper_slab" + }, + "type=double": { + "model": "minecraft:block/oxidized_cut_copper" + }, + "type=top": { + "model": "minecraft:block/oxidized_cut_copper_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper_stairs.json new file mode 100644 index 000000000..5b79a1e8b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_cut_copper_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_lightning_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_lightning_rod.json new file mode 100644 index 000000000..b65b4145d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/oxidized_lightning_rod.json @@ -0,0 +1,56 @@ +{ + "variants": { + "facing=down,powered=false": { + "model": "minecraft:block/oxidized_lightning_rod", + "x": 180 + }, + "facing=down,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 180 + }, + "facing=east,powered=false": { + "model": "minecraft:block/oxidized_lightning_rod", + "x": 90, + "y": 90 + }, + "facing=east,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 90 + }, + "facing=north,powered=false": { + "model": "minecraft:block/oxidized_lightning_rod", + "x": 90 + }, + "facing=north,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90 + }, + "facing=south,powered=false": { + "model": "minecraft:block/oxidized_lightning_rod", + "x": 90, + "y": 180 + }, + "facing=south,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 180 + }, + "facing=up,powered=false": { + "model": "minecraft:block/oxidized_lightning_rod" + }, + "facing=up,powered=true": { + "model": "minecraft:block/lightning_rod_on" + }, + "facing=west,powered=false": { + "model": "minecraft:block/oxidized_lightning_rod", + "x": 90, + "y": 270 + }, + "facing=west,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/packed_ice.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/packed_ice.json new file mode 100644 index 000000000..b395c21e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/packed_ice.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/packed_ice" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/packed_mud.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/packed_mud.json new file mode 100644 index 000000000..6309d7d05 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/packed_mud.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/packed_mud" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_hanging_moss.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_hanging_moss.json new file mode 100644 index 000000000..932d09083 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_hanging_moss.json @@ -0,0 +1,10 @@ +{ + "variants": { + "tip=false": { + "model": "minecraft:block/pale_hanging_moss" + }, + "tip=true": { + "model": "minecraft:block/pale_hanging_moss_tip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_moss_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_moss_block.json new file mode 100644 index 000000000..046db23cd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_moss_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pale_moss_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_moss_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_moss_carpet.json new file mode 100644 index 000000000..1fd7b845e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_moss_carpet.json @@ -0,0 +1,154 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/pale_moss_carpet" + }, + "when": { + "bottom": "true" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet" + }, + "when": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_tall" + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_small" + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_tall" + }, + "when": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_small", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_small", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_small", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/pale_moss_carpet_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "none", + "west": "none" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_button.json new file mode 100644 index 000000000..9179ab893 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/pale_oak_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/pale_oak_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/pale_oak_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/pale_oak_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/pale_oak_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/pale_oak_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/pale_oak_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/pale_oak_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/pale_oak_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/pale_oak_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/pale_oak_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/pale_oak_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/pale_oak_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_door.json new file mode 100644 index 000000000..f642a7985 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/pale_oak_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/pale_oak_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/pale_oak_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/pale_oak_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/pale_oak_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/pale_oak_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/pale_oak_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/pale_oak_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/pale_oak_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/pale_oak_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/pale_oak_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/pale_oak_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/pale_oak_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/pale_oak_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/pale_oak_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/pale_oak_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/pale_oak_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/pale_oak_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/pale_oak_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/pale_oak_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/pale_oak_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/pale_oak_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/pale_oak_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/pale_oak_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/pale_oak_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/pale_oak_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/pale_oak_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/pale_oak_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/pale_oak_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/pale_oak_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/pale_oak_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/pale_oak_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_fence.json new file mode 100644 index 000000000..769609574 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/pale_oak_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_fence_gate.json new file mode 100644 index 000000000..dbdc769e0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/pale_oak_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/pale_oak_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/pale_oak_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/pale_oak_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/pale_oak_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/pale_oak_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/pale_oak_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/pale_oak_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/pale_oak_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/pale_oak_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/pale_oak_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/pale_oak_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/pale_oak_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/pale_oak_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/pale_oak_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/pale_oak_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_hanging_sign.json new file mode 100644 index 000000000..bde6debab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pale_oak_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_leaves.json new file mode 100644 index 000000000..8de6861a0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pale_oak_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_log.json new file mode 100644 index 000000000..9b2d759a3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/pale_oak_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/pale_oak_log" + }, + "axis=z": { + "model": "minecraft:block/pale_oak_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_planks.json new file mode 100644 index 000000000..b9fca1f32 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pale_oak_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_pressure_plate.json new file mode 100644 index 000000000..78576b302 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/pale_oak_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/pale_oak_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_sapling.json new file mode 100644 index 000000000..45c2673aa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pale_oak_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_shelf.json new file mode 100644 index 000000000..61f906685 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_shelf.json @@ -0,0 +1,402 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/pale_oak_shelf" + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf", + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf", + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf", + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_unpowered" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_unpowered", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_unpowered", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_unpowered", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_unconnected" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_unconnected", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_unconnected", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_unconnected", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_center" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_center", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_center", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_center", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/pale_oak_shelf_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_sign.json new file mode 100644 index 000000000..be6f9eb87 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pale_oak_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_slab.json new file mode 100644 index 000000000..91ad3cca7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/pale_oak_slab" + }, + "type=double": { + "model": "minecraft:block/pale_oak_planks" + }, + "type=top": { + "model": "minecraft:block/pale_oak_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_stairs.json new file mode 100644 index 000000000..a9124eaf7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/pale_oak_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/pale_oak_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/pale_oak_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/pale_oak_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/pale_oak_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/pale_oak_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/pale_oak_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/pale_oak_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/pale_oak_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/pale_oak_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/pale_oak_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/pale_oak_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/pale_oak_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/pale_oak_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_trapdoor.json new file mode 100644 index 000000000..41deeb52e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/pale_oak_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/pale_oak_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/pale_oak_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/pale_oak_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/pale_oak_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/pale_oak_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/pale_oak_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/pale_oak_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/pale_oak_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/pale_oak_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/pale_oak_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/pale_oak_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/pale_oak_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/pale_oak_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/pale_oak_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/pale_oak_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_wall_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_wall_hanging_sign.json new file mode 100644 index 000000000..bde6debab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pale_oak_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_wall_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_wall_sign.json new file mode 100644 index 000000000..be6f9eb87 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pale_oak_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_wood.json new file mode 100644 index 000000000..2a98bc055 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pale_oak_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/pale_oak_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/pale_oak_wood" + }, + "axis=z": { + "model": "minecraft:block/pale_oak_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pearlescent_froglight.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pearlescent_froglight.json new file mode 100644 index 000000000..ff6fa2678 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pearlescent_froglight.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/pearlescent_froglight_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/pearlescent_froglight" + }, + "axis=z": { + "model": "minecraft:block/pearlescent_froglight_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/peony.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/peony.json new file mode 100644 index 000000000..c97072d5d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/peony.json @@ -0,0 +1,10 @@ +{ + "variants": { + "half=lower": { + "model": "minecraft:block/peony_bottom" + }, + "half=upper": { + "model": "minecraft:block/peony_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/petrified_oak_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/petrified_oak_slab.json new file mode 100644 index 000000000..98db0a126 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/petrified_oak_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/petrified_oak_slab" + }, + "type=double": { + "model": "minecraft:block/oak_planks" + }, + "type=top": { + "model": "minecraft:block/petrified_oak_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/piglin_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/piglin_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/piglin_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/piglin_wall_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/piglin_wall_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/piglin_wall_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_candle.json new file mode 100644 index 000000000..fd63fea42 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/pink_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/pink_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/pink_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/pink_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/pink_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/pink_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/pink_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/pink_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_candle_cake.json new file mode 100644 index 000000000..5b9c8d565 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/pink_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/pink_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_carpet.json new file mode 100644 index 000000000..c9a49aed7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pink_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_concrete.json new file mode 100644 index 000000000..3beebd45d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pink_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_concrete_powder.json new file mode 100644 index 000000000..c6f09205c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/pink_concrete_powder" + }, + { + "model": "minecraft:block/pink_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/pink_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/pink_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_glazed_terracotta.json new file mode 100644 index 000000000..84e6c0c6f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/pink_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/pink_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/pink_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/pink_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_petals.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_petals.json new file mode 100644 index 000000000..8784501ec --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_petals.json @@ -0,0 +1,156 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/pink_petals_1" + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_1", + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_1", + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_1", + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_2" + }, + "when": { + "facing": "north", + "flower_amount": "2|3|4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_2", + "y": 90 + }, + "when": { + "facing": "east", + "flower_amount": "2|3|4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_2", + "y": 180 + }, + "when": { + "facing": "south", + "flower_amount": "2|3|4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_2", + "y": 270 + }, + "when": { + "facing": "west", + "flower_amount": "2|3|4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_3" + }, + "when": { + "facing": "north", + "flower_amount": "3|4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_3", + "y": 90 + }, + "when": { + "facing": "east", + "flower_amount": "3|4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_3", + "y": 180 + }, + "when": { + "facing": "south", + "flower_amount": "3|4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_3", + "y": 270 + }, + "when": { + "facing": "west", + "flower_amount": "3|4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_4" + }, + "when": { + "facing": "north", + "flower_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_4", + "y": 90 + }, + "when": { + "facing": "east", + "flower_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_4", + "y": 180 + }, + "when": { + "facing": "south", + "flower_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/pink_petals_4", + "y": 270 + }, + "when": { + "facing": "west", + "flower_amount": "4" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_shulker_box.json new file mode 100644 index 000000000..3f336dcf3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pink_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_stained_glass.json new file mode 100644 index 000000000..3adb5ca2a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pink_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_stained_glass_pane.json new file mode 100644 index 000000000..4b9b92419 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/pink_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_terracotta.json new file mode 100644 index 000000000..b9dbe910c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pink_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_tulip.json new file mode 100644 index 000000000..038823fb4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_tulip.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pink_tulip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_wall_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_wool.json new file mode 100644 index 000000000..d7096f632 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pink_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pink_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/piston.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/piston.json new file mode 100644 index 000000000..0ee3b9124 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/piston.json @@ -0,0 +1,50 @@ +{ + "variants": { + "extended=false,facing=down": { + "model": "minecraft:block/piston", + "x": 90 + }, + "extended=false,facing=east": { + "model": "minecraft:block/piston", + "y": 90 + }, + "extended=false,facing=north": { + "model": "minecraft:block/piston" + }, + "extended=false,facing=south": { + "model": "minecraft:block/piston", + "y": 180 + }, + "extended=false,facing=up": { + "model": "minecraft:block/piston", + "x": 270 + }, + "extended=false,facing=west": { + "model": "minecraft:block/piston", + "y": 270 + }, + "extended=true,facing=down": { + "model": "minecraft:block/piston_base", + "x": 90 + }, + "extended=true,facing=east": { + "model": "minecraft:block/piston_base", + "y": 90 + }, + "extended=true,facing=north": { + "model": "minecraft:block/piston_base" + }, + "extended=true,facing=south": { + "model": "minecraft:block/piston_base", + "y": 180 + }, + "extended=true,facing=up": { + "model": "minecraft:block/piston_base", + "x": 270 + }, + "extended=true,facing=west": { + "model": "minecraft:block/piston_base", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/piston_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/piston_head.json new file mode 100644 index 000000000..b1a803521 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/piston_head.json @@ -0,0 +1,96 @@ +{ + "variants": { + "facing=down,short=false,type=normal": { + "model": "minecraft:block/piston_head", + "x": 90 + }, + "facing=down,short=false,type=sticky": { + "model": "minecraft:block/piston_head_sticky", + "x": 90 + }, + "facing=down,short=true,type=normal": { + "model": "minecraft:block/piston_head_short", + "x": 90 + }, + "facing=down,short=true,type=sticky": { + "model": "minecraft:block/piston_head_short_sticky", + "x": 90 + }, + "facing=east,short=false,type=normal": { + "model": "minecraft:block/piston_head", + "y": 90 + }, + "facing=east,short=false,type=sticky": { + "model": "minecraft:block/piston_head_sticky", + "y": 90 + }, + "facing=east,short=true,type=normal": { + "model": "minecraft:block/piston_head_short", + "y": 90 + }, + "facing=east,short=true,type=sticky": { + "model": "minecraft:block/piston_head_short_sticky", + "y": 90 + }, + "facing=north,short=false,type=normal": { + "model": "minecraft:block/piston_head" + }, + "facing=north,short=false,type=sticky": { + "model": "minecraft:block/piston_head_sticky" + }, + "facing=north,short=true,type=normal": { + "model": "minecraft:block/piston_head_short" + }, + "facing=north,short=true,type=sticky": { + "model": "minecraft:block/piston_head_short_sticky" + }, + "facing=south,short=false,type=normal": { + "model": "minecraft:block/piston_head", + "y": 180 + }, + "facing=south,short=false,type=sticky": { + "model": "minecraft:block/piston_head_sticky", + "y": 180 + }, + "facing=south,short=true,type=normal": { + "model": "minecraft:block/piston_head_short", + "y": 180 + }, + "facing=south,short=true,type=sticky": { + "model": "minecraft:block/piston_head_short_sticky", + "y": 180 + }, + "facing=up,short=false,type=normal": { + "model": "minecraft:block/piston_head", + "x": 270 + }, + "facing=up,short=false,type=sticky": { + "model": "minecraft:block/piston_head_sticky", + "x": 270 + }, + "facing=up,short=true,type=normal": { + "model": "minecraft:block/piston_head_short", + "x": 270 + }, + "facing=up,short=true,type=sticky": { + "model": "minecraft:block/piston_head_short_sticky", + "x": 270 + }, + "facing=west,short=false,type=normal": { + "model": "minecraft:block/piston_head", + "y": 270 + }, + "facing=west,short=false,type=sticky": { + "model": "minecraft:block/piston_head_sticky", + "y": 270 + }, + "facing=west,short=true,type=normal": { + "model": "minecraft:block/piston_head_short", + "y": 270 + }, + "facing=west,short=true,type=sticky": { + "model": "minecraft:block/piston_head_short_sticky", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pitcher_crop.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pitcher_crop.json new file mode 100644 index 000000000..375502da1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pitcher_crop.json @@ -0,0 +1,34 @@ +{ + "variants": { + "age=0,half=lower": { + "model": "minecraft:block/pitcher_crop_bottom_stage_0" + }, + "age=0,half=upper": { + "model": "minecraft:block/pitcher_crop_top_stage_0" + }, + "age=1,half=lower": { + "model": "minecraft:block/pitcher_crop_bottom_stage_1" + }, + "age=1,half=upper": { + "model": "minecraft:block/pitcher_crop_top_stage_1" + }, + "age=2,half=lower": { + "model": "minecraft:block/pitcher_crop_bottom_stage_2" + }, + "age=2,half=upper": { + "model": "minecraft:block/pitcher_crop_top_stage_2" + }, + "age=3,half=lower": { + "model": "minecraft:block/pitcher_crop_bottom_stage_3" + }, + "age=3,half=upper": { + "model": "minecraft:block/pitcher_crop_top_stage_3" + }, + "age=4,half=lower": { + "model": "minecraft:block/pitcher_crop_bottom_stage_4" + }, + "age=4,half=upper": { + "model": "minecraft:block/pitcher_crop_top_stage_4" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pitcher_plant.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pitcher_plant.json new file mode 100644 index 000000000..fdf53d561 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pitcher_plant.json @@ -0,0 +1,10 @@ +{ + "variants": { + "half=lower": { + "model": "minecraft:block/pitcher_plant_bottom" + }, + "half=upper": { + "model": "minecraft:block/pitcher_plant_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/player_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/player_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/player_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/player_wall_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/player_wall_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/player_wall_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/podzol.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/podzol.json new file mode 100644 index 000000000..03e40a712 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/podzol.json @@ -0,0 +1,24 @@ +{ + "variants": { + "snowy=false": [ + { + "model": "minecraft:block/podzol" + }, + { + "model": "minecraft:block/podzol", + "y": 90 + }, + { + "model": "minecraft:block/podzol", + "y": 180 + }, + { + "model": "minecraft:block/podzol", + "y": 270 + } + ], + "snowy=true": { + "model": "minecraft:block/grass_block_snow" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pointed_dripstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pointed_dripstone.json new file mode 100644 index 000000000..c6c46aa35 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pointed_dripstone.json @@ -0,0 +1,34 @@ +{ + "variants": { + "thickness=base,vertical_direction=down": { + "model": "minecraft:block/pointed_dripstone_down_base" + }, + "thickness=base,vertical_direction=up": { + "model": "minecraft:block/pointed_dripstone_up_base" + }, + "thickness=frustum,vertical_direction=down": { + "model": "minecraft:block/pointed_dripstone_down_frustum" + }, + "thickness=frustum,vertical_direction=up": { + "model": "minecraft:block/pointed_dripstone_up_frustum" + }, + "thickness=middle,vertical_direction=down": { + "model": "minecraft:block/pointed_dripstone_down_middle" + }, + "thickness=middle,vertical_direction=up": { + "model": "minecraft:block/pointed_dripstone_up_middle" + }, + "thickness=tip,vertical_direction=down": { + "model": "minecraft:block/pointed_dripstone_down_tip" + }, + "thickness=tip,vertical_direction=up": { + "model": "minecraft:block/pointed_dripstone_up_tip" + }, + "thickness=tip_merge,vertical_direction=down": { + "model": "minecraft:block/pointed_dripstone_down_tip_merge" + }, + "thickness=tip_merge,vertical_direction=up": { + "model": "minecraft:block/pointed_dripstone_up_tip_merge" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_andesite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_andesite.json new file mode 100644 index 000000000..5bb5391e9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_andesite.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/polished_andesite" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_andesite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_andesite_slab.json new file mode 100644 index 000000000..e5ce87a7b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_andesite_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/polished_andesite_slab" + }, + "type=double": { + "model": "minecraft:block/polished_andesite" + }, + "type=top": { + "model": "minecraft:block/polished_andesite_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_andesite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_andesite_stairs.json new file mode 100644 index 000000000..bd0808275 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_andesite_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_andesite_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_andesite_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/polished_andesite_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/polished_andesite_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/polished_andesite_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/polished_andesite_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_andesite_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_andesite_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/polished_andesite_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/polished_andesite_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/polished_andesite_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/polished_andesite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/polished_andesite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/polished_andesite_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_basalt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_basalt.json new file mode 100644 index 000000000..5ee6cefe9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_basalt.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/polished_basalt", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/polished_basalt" + }, + "axis=z": { + "model": "minecraft:block/polished_basalt", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone.json new file mode 100644 index 000000000..e133b2760 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/polished_blackstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_slab.json new file mode 100644 index 000000000..759b5a73b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/polished_blackstone_brick_slab" + }, + "type=double": { + "model": "minecraft:block/polished_blackstone_bricks" + }, + "type=top": { + "model": "minecraft:block/polished_blackstone_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_stairs.json new file mode 100644 index 000000000..54829daba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/polished_blackstone_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/polished_blackstone_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/polished_blackstone_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/polished_blackstone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/polished_blackstone_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/polished_blackstone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/polished_blackstone_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/polished_blackstone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_wall.json new file mode 100644 index 000000000..2ec1a2539 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_bricks.json new file mode 100644 index 000000000..2a1cabca8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/polished_blackstone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_button.json new file mode 100644 index 000000000..7d4f337cb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/polished_blackstone_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/polished_blackstone_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/polished_blackstone_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_pressure_plate.json new file mode 100644 index 000000000..f8f5cb144 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/polished_blackstone_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/polished_blackstone_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_slab.json new file mode 100644 index 000000000..1cfda0ddf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/polished_blackstone_slab" + }, + "type=double": { + "model": "minecraft:block/polished_blackstone" + }, + "type=top": { + "model": "minecraft:block/polished_blackstone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_stairs.json new file mode 100644 index 000000000..09a9ae372 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/polished_blackstone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/polished_blackstone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/polished_blackstone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/polished_blackstone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/polished_blackstone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/polished_blackstone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/polished_blackstone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/polished_blackstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/polished_blackstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/polished_blackstone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_wall.json new file mode 100644 index 000000000..f666cd7d5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_blackstone_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_blackstone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_deepslate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_deepslate.json new file mode 100644 index 000000000..5ad405570 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_deepslate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/polished_deepslate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_deepslate_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_deepslate_slab.json new file mode 100644 index 000000000..5bf01dc32 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_deepslate_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/polished_deepslate_slab" + }, + "type=double": { + "model": "minecraft:block/polished_deepslate" + }, + "type=top": { + "model": "minecraft:block/polished_deepslate_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_deepslate_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_deepslate_stairs.json new file mode 100644 index 000000000..1fa36d22e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_deepslate_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_deepslate_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_deepslate_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/polished_deepslate_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/polished_deepslate_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/polished_deepslate_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/polished_deepslate_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_deepslate_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_deepslate_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/polished_deepslate_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/polished_deepslate_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/polished_deepslate_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/polished_deepslate_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/polished_deepslate_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/polished_deepslate_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_deepslate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_deepslate_wall.json new file mode 100644 index 000000000..06afb23ad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_deepslate_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_deepslate_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_diorite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_diorite.json new file mode 100644 index 000000000..ea96c5177 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_diorite.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/polished_diorite" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_diorite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_diorite_slab.json new file mode 100644 index 000000000..f35423362 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_diorite_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/polished_diorite_slab" + }, + "type=double": { + "model": "minecraft:block/polished_diorite" + }, + "type=top": { + "model": "minecraft:block/polished_diorite_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_diorite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_diorite_stairs.json new file mode 100644 index 000000000..cdbc415ca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_diorite_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_diorite_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_diorite_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/polished_diorite_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/polished_diorite_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/polished_diorite_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/polished_diorite_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_diorite_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_diorite_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/polished_diorite_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/polished_diorite_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/polished_diorite_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/polished_diorite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/polished_diorite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/polished_diorite_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_granite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_granite.json new file mode 100644 index 000000000..bad818afd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_granite.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/polished_granite" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_granite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_granite_slab.json new file mode 100644 index 000000000..e1ec01cdd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_granite_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/polished_granite_slab" + }, + "type=double": { + "model": "minecraft:block/polished_granite" + }, + "type=top": { + "model": "minecraft:block/polished_granite_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_granite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_granite_stairs.json new file mode 100644 index 000000000..f64b99a51 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_granite_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_granite_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_granite_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/polished_granite_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/polished_granite_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/polished_granite_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/polished_granite_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_granite_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_granite_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/polished_granite_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/polished_granite_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/polished_granite_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/polished_granite_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/polished_granite_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/polished_granite_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_tuff.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_tuff.json new file mode 100644 index 000000000..dbb2b296c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_tuff.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/polished_tuff" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_tuff_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_tuff_slab.json new file mode 100644 index 000000000..25581fea5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_tuff_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/polished_tuff_slab" + }, + "type=double": { + "model": "minecraft:block/polished_tuff" + }, + "type=top": { + "model": "minecraft:block/polished_tuff_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_tuff_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_tuff_stairs.json new file mode 100644 index 000000000..ea1928905 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_tuff_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_tuff_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_tuff_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/polished_tuff_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/polished_tuff_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/polished_tuff_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/polished_tuff_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_tuff_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_tuff_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/polished_tuff_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/polished_tuff_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/polished_tuff_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/polished_tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/polished_tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/polished_tuff_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_tuff_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_tuff_wall.json new file mode 100644 index 000000000..44350ac9e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/polished_tuff_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/polished_tuff_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/poppy.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/poppy.json new file mode 100644 index 000000000..870cb7d28 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/poppy.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/poppy" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potatoes.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potatoes.json new file mode 100644 index 000000000..85b439e73 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potatoes.json @@ -0,0 +1,28 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/potatoes_stage0" + }, + "age=1": { + "model": "minecraft:block/potatoes_stage0" + }, + "age=2": { + "model": "minecraft:block/potatoes_stage1" + }, + "age=3": { + "model": "minecraft:block/potatoes_stage1" + }, + "age=4": { + "model": "minecraft:block/potatoes_stage2" + }, + "age=5": { + "model": "minecraft:block/potatoes_stage2" + }, + "age=6": { + "model": "minecraft:block/potatoes_stage2" + }, + "age=7": { + "model": "minecraft:block/potatoes_stage3" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_acacia_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_acacia_sapling.json new file mode 100644 index 000000000..03a983a42 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_acacia_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_acacia_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_allium.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_allium.json new file mode 100644 index 000000000..07d8e7833 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_allium.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_allium" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_azalea_bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_azalea_bush.json new file mode 100644 index 000000000..73a68cb25 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_azalea_bush.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_azalea_bush" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_azure_bluet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_azure_bluet.json new file mode 100644 index 000000000..80c7a52f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_azure_bluet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_azure_bluet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_bamboo.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_bamboo.json new file mode 100644 index 000000000..7d10ed3ef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_bamboo.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_bamboo" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_birch_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_birch_sapling.json new file mode 100644 index 000000000..98b48ea51 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_birch_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_birch_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_blue_orchid.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_blue_orchid.json new file mode 100644 index 000000000..48da368ff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_blue_orchid.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_blue_orchid" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_brown_mushroom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_brown_mushroom.json new file mode 100644 index 000000000..b1a024736 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_brown_mushroom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_brown_mushroom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_cactus.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_cactus.json new file mode 100644 index 000000000..04758daee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_cactus.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_cactus" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_cherry_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_cherry_sapling.json new file mode 100644 index 000000000..d92678f94 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_cherry_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_cherry_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_closed_eyeblossom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_closed_eyeblossom.json new file mode 100644 index 000000000..6f55d460e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_closed_eyeblossom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_closed_eyeblossom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_cornflower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_cornflower.json new file mode 100644 index 000000000..29b268567 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_cornflower.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_cornflower" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_crimson_fungus.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_crimson_fungus.json new file mode 100644 index 000000000..d697c8e19 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_crimson_fungus.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_crimson_fungus" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_crimson_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_crimson_roots.json new file mode 100644 index 000000000..b2707ca05 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_crimson_roots.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_crimson_roots" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_dandelion.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_dandelion.json new file mode 100644 index 000000000..36227401d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_dandelion.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_dandelion" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_dark_oak_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_dark_oak_sapling.json new file mode 100644 index 000000000..f532b1eca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_dark_oak_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_dark_oak_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_dead_bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_dead_bush.json new file mode 100644 index 000000000..52d9462fa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_dead_bush.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_dead_bush" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_fern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_fern.json new file mode 100644 index 000000000..ee886f3c3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_fern.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_fern" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_flowering_azalea_bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_flowering_azalea_bush.json new file mode 100644 index 000000000..c9216f715 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_flowering_azalea_bush.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_flowering_azalea_bush" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_jungle_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_jungle_sapling.json new file mode 100644 index 000000000..928947b32 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_jungle_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_jungle_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_lily_of_the_valley.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_lily_of_the_valley.json new file mode 100644 index 000000000..14e7942a7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_lily_of_the_valley.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_lily_of_the_valley" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_mangrove_propagule.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_mangrove_propagule.json new file mode 100644 index 000000000..7da19aa19 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_mangrove_propagule.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_mangrove_propagule" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_oak_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_oak_sapling.json new file mode 100644 index 000000000..e77b75bf8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_oak_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_oak_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_open_eyeblossom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_open_eyeblossom.json new file mode 100644 index 000000000..e5b6b9b7a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_open_eyeblossom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_open_eyeblossom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_orange_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_orange_tulip.json new file mode 100644 index 000000000..978f35d04 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_orange_tulip.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_orange_tulip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_oxeye_daisy.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_oxeye_daisy.json new file mode 100644 index 000000000..7fc330ae9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_oxeye_daisy.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_oxeye_daisy" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_pale_oak_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_pale_oak_sapling.json new file mode 100644 index 000000000..5d1731dc9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_pale_oak_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_pale_oak_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_pink_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_pink_tulip.json new file mode 100644 index 000000000..159cc4b20 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_pink_tulip.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_pink_tulip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_poppy.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_poppy.json new file mode 100644 index 000000000..f16aee08b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_poppy.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_poppy" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_red_mushroom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_red_mushroom.json new file mode 100644 index 000000000..451f88db6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_red_mushroom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_red_mushroom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_red_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_red_tulip.json new file mode 100644 index 000000000..fec6840d0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_red_tulip.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_red_tulip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_spruce_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_spruce_sapling.json new file mode 100644 index 000000000..224d5a9f8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_spruce_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_spruce_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_torchflower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_torchflower.json new file mode 100644 index 000000000..dd981b972 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_torchflower.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_torchflower" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_warped_fungus.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_warped_fungus.json new file mode 100644 index 000000000..3f127a341 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_warped_fungus.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_warped_fungus" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_warped_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_warped_roots.json new file mode 100644 index 000000000..f141ee94b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_warped_roots.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_warped_roots" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_white_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_white_tulip.json new file mode 100644 index 000000000..823ca9473 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_white_tulip.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_white_tulip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_wither_rose.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_wither_rose.json new file mode 100644 index 000000000..d12f6aa11 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/potted_wither_rose.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/potted_wither_rose" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/powder_snow.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/powder_snow.json new file mode 100644 index 000000000..98be27af7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/powder_snow.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/powder_snow" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/powder_snow_cauldron.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/powder_snow_cauldron.json new file mode 100644 index 000000000..f6e94684c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/powder_snow_cauldron.json @@ -0,0 +1,13 @@ +{ + "variants": { + "level=1": { + "model": "minecraft:block/powder_snow_cauldron_level1" + }, + "level=2": { + "model": "minecraft:block/powder_snow_cauldron_level2" + }, + "level=3": { + "model": "minecraft:block/powder_snow_cauldron_full" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/powered_rail.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/powered_rail.json new file mode 100644 index 000000000..a20a06fc3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/powered_rail.json @@ -0,0 +1,46 @@ +{ + "variants": { + "powered=false,shape=ascending_east": { + "model": "minecraft:block/powered_rail_raised_ne", + "y": 90 + }, + "powered=false,shape=ascending_north": { + "model": "minecraft:block/powered_rail_raised_ne" + }, + "powered=false,shape=ascending_south": { + "model": "minecraft:block/powered_rail_raised_sw" + }, + "powered=false,shape=ascending_west": { + "model": "minecraft:block/powered_rail_raised_sw", + "y": 90 + }, + "powered=false,shape=east_west": { + "model": "minecraft:block/powered_rail", + "y": 90 + }, + "powered=false,shape=north_south": { + "model": "minecraft:block/powered_rail" + }, + "powered=true,shape=ascending_east": { + "model": "minecraft:block/powered_rail_on_raised_ne", + "y": 90 + }, + "powered=true,shape=ascending_north": { + "model": "minecraft:block/powered_rail_on_raised_ne" + }, + "powered=true,shape=ascending_south": { + "model": "minecraft:block/powered_rail_on_raised_sw" + }, + "powered=true,shape=ascending_west": { + "model": "minecraft:block/powered_rail_on_raised_sw", + "y": 90 + }, + "powered=true,shape=east_west": { + "model": "minecraft:block/powered_rail_on", + "y": 90 + }, + "powered=true,shape=north_south": { + "model": "minecraft:block/powered_rail_on" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine.json new file mode 100644 index 000000000..b24d70343 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/prismarine" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_brick_slab.json new file mode 100644 index 000000000..3e151d0f9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/prismarine_brick_slab" + }, + "type=double": { + "model": "minecraft:block/prismarine_bricks" + }, + "type=top": { + "model": "minecraft:block/prismarine_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_brick_stairs.json new file mode 100644 index 000000000..013765ce6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/prismarine_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/prismarine_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/prismarine_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/prismarine_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/prismarine_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/prismarine_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/prismarine_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/prismarine_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/prismarine_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/prismarine_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/prismarine_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/prismarine_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/prismarine_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/prismarine_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_bricks.json new file mode 100644 index 000000000..db6a49ca8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/prismarine_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_slab.json new file mode 100644 index 000000000..3ac550906 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/prismarine_slab" + }, + "type=double": { + "model": "minecraft:block/prismarine" + }, + "type=top": { + "model": "minecraft:block/prismarine_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_stairs.json new file mode 100644 index 000000000..64bfd2a39 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/prismarine_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/prismarine_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/prismarine_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/prismarine_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/prismarine_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/prismarine_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/prismarine_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/prismarine_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/prismarine_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/prismarine_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/prismarine_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/prismarine_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/prismarine_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/prismarine_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_wall.json new file mode 100644 index 000000000..67f259274 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/prismarine_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/prismarine_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/prismarine_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/prismarine_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/prismarine_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/prismarine_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/prismarine_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/prismarine_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/prismarine_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/prismarine_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pumpkin.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pumpkin.json new file mode 100644 index 000000000..b64dee3dd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pumpkin.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/pumpkin" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pumpkin_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pumpkin_stem.json new file mode 100644 index 000000000..536ed1180 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/pumpkin_stem.json @@ -0,0 +1,28 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/pumpkin_stem_stage0" + }, + "age=1": { + "model": "minecraft:block/pumpkin_stem_stage1" + }, + "age=2": { + "model": "minecraft:block/pumpkin_stem_stage2" + }, + "age=3": { + "model": "minecraft:block/pumpkin_stem_stage3" + }, + "age=4": { + "model": "minecraft:block/pumpkin_stem_stage4" + }, + "age=5": { + "model": "minecraft:block/pumpkin_stem_stage5" + }, + "age=6": { + "model": "minecraft:block/pumpkin_stem_stage6" + }, + "age=7": { + "model": "minecraft:block/pumpkin_stem_stage7" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_candle.json new file mode 100644 index 000000000..b6200c02a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/purple_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/purple_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/purple_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/purple_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/purple_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/purple_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/purple_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/purple_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_candle_cake.json new file mode 100644 index 000000000..69002bd59 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/purple_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/purple_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_carpet.json new file mode 100644 index 000000000..94bd741ad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/purple_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_concrete.json new file mode 100644 index 000000000..06ecc28a5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/purple_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_concrete_powder.json new file mode 100644 index 000000000..23291b955 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/purple_concrete_powder" + }, + { + "model": "minecraft:block/purple_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/purple_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/purple_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_glazed_terracotta.json new file mode 100644 index 000000000..9f70fd4f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/purple_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/purple_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/purple_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/purple_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_shulker_box.json new file mode 100644 index 000000000..880e3163a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/purple_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_stained_glass.json new file mode 100644 index 000000000..02662b508 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/purple_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_stained_glass_pane.json new file mode 100644 index 000000000..dfec43a55 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/purple_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_terracotta.json new file mode 100644 index 000000000..b500566d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/purple_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_wall_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_wool.json new file mode 100644 index 000000000..a14ba55d5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purple_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/purple_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purpur_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purpur_block.json new file mode 100644 index 000000000..0bd34f34c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purpur_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/purpur_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purpur_pillar.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purpur_pillar.json new file mode 100644 index 000000000..65046d71a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purpur_pillar.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/purpur_pillar_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/purpur_pillar" + }, + "axis=z": { + "model": "minecraft:block/purpur_pillar_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purpur_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purpur_slab.json new file mode 100644 index 000000000..b4b9fb43b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purpur_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/purpur_slab" + }, + "type=double": { + "model": "minecraft:block/purpur_block" + }, + "type=top": { + "model": "minecraft:block/purpur_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purpur_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purpur_stairs.json new file mode 100644 index 000000000..407a9945f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/purpur_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/purpur_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/purpur_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/purpur_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/purpur_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/purpur_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/purpur_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/purpur_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/purpur_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/purpur_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/purpur_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/purpur_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/purpur_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/purpur_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/purpur_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/quartz_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/quartz_block.json new file mode 100644 index 000000000..6dcfecf9f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/quartz_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/quartz_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/quartz_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/quartz_bricks.json new file mode 100644 index 000000000..24827d45f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/quartz_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/quartz_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/quartz_pillar.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/quartz_pillar.json new file mode 100644 index 000000000..260cca79e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/quartz_pillar.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/quartz_pillar_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/quartz_pillar" + }, + "axis=z": { + "model": "minecraft:block/quartz_pillar_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/quartz_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/quartz_slab.json new file mode 100644 index 000000000..6d2ae81b7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/quartz_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/quartz_slab" + }, + "type=double": { + "model": "minecraft:block/quartz_block" + }, + "type=top": { + "model": "minecraft:block/quartz_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/quartz_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/quartz_stairs.json new file mode 100644 index 000000000..a024448f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/quartz_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/quartz_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/quartz_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/quartz_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/quartz_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/quartz_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/quartz_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/quartz_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/quartz_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/quartz_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/quartz_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/quartz_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/quartz_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/rail.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/rail.json new file mode 100644 index 000000000..4b1e4d04e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/rail.json @@ -0,0 +1,40 @@ +{ + "variants": { + "shape=ascending_east": { + "model": "minecraft:block/rail_raised_ne", + "y": 90 + }, + "shape=ascending_north": { + "model": "minecraft:block/rail_raised_ne" + }, + "shape=ascending_south": { + "model": "minecraft:block/rail_raised_sw" + }, + "shape=ascending_west": { + "model": "minecraft:block/rail_raised_sw", + "y": 90 + }, + "shape=east_west": { + "model": "minecraft:block/rail", + "y": 90 + }, + "shape=north_east": { + "model": "minecraft:block/rail_corner", + "y": 270 + }, + "shape=north_south": { + "model": "minecraft:block/rail" + }, + "shape=north_west": { + "model": "minecraft:block/rail_corner", + "y": 180 + }, + "shape=south_east": { + "model": "minecraft:block/rail_corner" + }, + "shape=south_west": { + "model": "minecraft:block/rail_corner", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/raw_copper_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/raw_copper_block.json new file mode 100644 index 000000000..852b44523 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/raw_copper_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/raw_copper_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/raw_gold_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/raw_gold_block.json new file mode 100644 index 000000000..65d04cc27 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/raw_gold_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/raw_gold_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/raw_iron_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/raw_iron_block.json new file mode 100644 index 000000000..91478da29 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/raw_iron_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/raw_iron_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_candle.json new file mode 100644 index 000000000..6c8520dec --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/red_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/red_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/red_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/red_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/red_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/red_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/red_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/red_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_candle_cake.json new file mode 100644 index 000000000..d0ceeefdc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/red_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/red_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_carpet.json new file mode 100644 index 000000000..78866a8df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_concrete.json new file mode 100644 index 000000000..ef1aedb05 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_concrete_powder.json new file mode 100644 index 000000000..98e8099c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/red_concrete_powder" + }, + { + "model": "minecraft:block/red_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/red_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/red_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_glazed_terracotta.json new file mode 100644 index 000000000..920d1648e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/red_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/red_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/red_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/red_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_mushroom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_mushroom.json new file mode 100644 index 000000000..9bb1dff20 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_mushroom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_mushroom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_mushroom_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_mushroom_block.json new file mode 100644 index 000000000..2312116f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_mushroom_block.json @@ -0,0 +1,115 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/red_mushroom_block" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_mushroom_block", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_mushroom_block", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_mushroom_block", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_mushroom_block", + "uvlock": true, + "x": 270 + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_mushroom_block", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "true" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 90 + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 180 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "y": 270 + }, + "when": { + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "x": 270 + }, + "when": { + "up": "false" + } + }, + { + "apply": { + "model": "minecraft:block/mushroom_block_inside", + "x": 90 + }, + "when": { + "down": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_nether_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_nether_brick_slab.json new file mode 100644 index 000000000..492c8f2f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_nether_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/red_nether_brick_slab" + }, + "type=double": { + "model": "minecraft:block/red_nether_bricks" + }, + "type=top": { + "model": "minecraft:block/red_nether_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_nether_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_nether_brick_stairs.json new file mode 100644 index 000000000..f3cec794d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_nether_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/red_nether_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/red_nether_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/red_nether_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/red_nether_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/red_nether_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/red_nether_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/red_nether_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/red_nether_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/red_nether_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/red_nether_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/red_nether_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/red_nether_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/red_nether_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/red_nether_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_nether_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_nether_brick_wall.json new file mode 100644 index 000000000..f2f8a35bb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_nether_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/red_nether_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_nether_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_nether_bricks.json new file mode 100644 index 000000000..75d6b4dcd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_nether_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_nether_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_sand.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_sand.json new file mode 100644 index 000000000..083533ba7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_sand.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/red_sand" + }, + { + "model": "minecraft:block/red_sand", + "y": 90 + }, + { + "model": "minecraft:block/red_sand", + "y": 180 + }, + { + "model": "minecraft:block/red_sand", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_sandstone.json new file mode 100644 index 000000000..9f10b9608 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_sandstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_sandstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_sandstone_slab.json new file mode 100644 index 000000000..e8fcb59dc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_sandstone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/red_sandstone_slab" + }, + "type=double": { + "model": "minecraft:block/red_sandstone" + }, + "type=top": { + "model": "minecraft:block/red_sandstone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_sandstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_sandstone_stairs.json new file mode 100644 index 000000000..d457e088c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_sandstone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/red_sandstone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/red_sandstone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/red_sandstone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/red_sandstone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/red_sandstone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/red_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/red_sandstone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/red_sandstone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/red_sandstone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/red_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/red_sandstone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/red_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_sandstone_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_sandstone_wall.json new file mode 100644 index 000000000..91a72c896 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_sandstone_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/red_sandstone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_shulker_box.json new file mode 100644 index 000000000..ce5bcc98d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_stained_glass.json new file mode 100644 index 000000000..7e6ffba8a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_stained_glass_pane.json new file mode 100644 index 000000000..2bd8883a0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/red_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_terracotta.json new file mode 100644 index 000000000..78ac3ae6f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_tulip.json new file mode 100644 index 000000000..a2afbe183 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_tulip.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_tulip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_wall_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_wool.json new file mode 100644 index 000000000..d756ff397 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/red_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/red_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_block.json new file mode 100644 index 000000000..b0ff253e8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/redstone_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_lamp.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_lamp.json new file mode 100644 index 000000000..bbd9d9355 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_lamp.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/redstone_lamp" + }, + "lit=true": { + "model": "minecraft:block/redstone_lamp_on" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_ore.json new file mode 100644 index 000000000..cc4e3fa06 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/redstone_ore" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_torch.json new file mode 100644 index 000000000..6c765135e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_torch.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/redstone_torch_off" + }, + "lit=true": { + "model": "minecraft:block/redstone_torch" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_wall_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_wall_torch.json new file mode 100644 index 000000000..de19925cb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_wall_torch.json @@ -0,0 +1,34 @@ +{ + "variants": { + "facing=east,lit=false": { + "model": "minecraft:block/redstone_wall_torch_off" + }, + "facing=east,lit=true": { + "model": "minecraft:block/redstone_wall_torch" + }, + "facing=north,lit=false": { + "model": "minecraft:block/redstone_wall_torch_off", + "y": 270 + }, + "facing=north,lit=true": { + "model": "minecraft:block/redstone_wall_torch", + "y": 270 + }, + "facing=south,lit=false": { + "model": "minecraft:block/redstone_wall_torch_off", + "y": 90 + }, + "facing=south,lit=true": { + "model": "minecraft:block/redstone_wall_torch", + "y": 90 + }, + "facing=west,lit=false": { + "model": "minecraft:block/redstone_wall_torch_off", + "y": 180 + }, + "facing=west,lit=true": { + "model": "minecraft:block/redstone_wall_torch", + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_wire.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_wire.json new file mode 100644 index 000000000..2617c53af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/redstone_wire.json @@ -0,0 +1,104 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/redstone_dust_dot" + }, + "when": { + "OR": [ + { + "east": "none", + "north": "none", + "south": "none", + "west": "none" + }, + { + "east": "side|up", + "north": "side|up" + }, + { + "east": "side|up", + "south": "side|up" + }, + { + "south": "side|up", + "west": "side|up" + }, + { + "north": "side|up", + "west": "side|up" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/redstone_dust_side0" + }, + "when": { + "north": "side|up" + } + }, + { + "apply": { + "model": "minecraft:block/redstone_dust_side_alt0" + }, + "when": { + "south": "side|up" + } + }, + { + "apply": { + "model": "minecraft:block/redstone_dust_side_alt1", + "y": 270 + }, + "when": { + "east": "side|up" + } + }, + { + "apply": { + "model": "minecraft:block/redstone_dust_side1", + "y": 270 + }, + "when": { + "west": "side|up" + } + }, + { + "apply": { + "model": "minecraft:block/redstone_dust_up" + }, + "when": { + "north": "up" + } + }, + { + "apply": { + "model": "minecraft:block/redstone_dust_up", + "y": 90 + }, + "when": { + "east": "up" + } + }, + { + "apply": { + "model": "minecraft:block/redstone_dust_up", + "y": 180 + }, + "when": { + "south": "up" + } + }, + { + "apply": { + "model": "minecraft:block/redstone_dust_up", + "y": 270 + }, + "when": { + "west": "up" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/reinforced_deepslate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/reinforced_deepslate.json new file mode 100644 index 000000000..6c196af12 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/reinforced_deepslate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/reinforced_deepslate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/repeater.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/repeater.json new file mode 100644 index 000000000..4e0ab9ce6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/repeater.json @@ -0,0 +1,244 @@ +{ + "variants": { + "delay=1,facing=east,locked=false,powered=false": { + "model": "minecraft:block/repeater_1tick", + "y": 270 + }, + "delay=1,facing=east,locked=false,powered=true": { + "model": "minecraft:block/repeater_1tick_on", + "y": 270 + }, + "delay=1,facing=east,locked=true,powered=false": { + "model": "minecraft:block/repeater_1tick_locked", + "y": 270 + }, + "delay=1,facing=east,locked=true,powered=true": { + "model": "minecraft:block/repeater_1tick_on_locked", + "y": 270 + }, + "delay=1,facing=north,locked=false,powered=false": { + "model": "minecraft:block/repeater_1tick", + "y": 180 + }, + "delay=1,facing=north,locked=false,powered=true": { + "model": "minecraft:block/repeater_1tick_on", + "y": 180 + }, + "delay=1,facing=north,locked=true,powered=false": { + "model": "minecraft:block/repeater_1tick_locked", + "y": 180 + }, + "delay=1,facing=north,locked=true,powered=true": { + "model": "minecraft:block/repeater_1tick_on_locked", + "y": 180 + }, + "delay=1,facing=south,locked=false,powered=false": { + "model": "minecraft:block/repeater_1tick" + }, + "delay=1,facing=south,locked=false,powered=true": { + "model": "minecraft:block/repeater_1tick_on" + }, + "delay=1,facing=south,locked=true,powered=false": { + "model": "minecraft:block/repeater_1tick_locked" + }, + "delay=1,facing=south,locked=true,powered=true": { + "model": "minecraft:block/repeater_1tick_on_locked" + }, + "delay=1,facing=west,locked=false,powered=false": { + "model": "minecraft:block/repeater_1tick", + "y": 90 + }, + "delay=1,facing=west,locked=false,powered=true": { + "model": "minecraft:block/repeater_1tick_on", + "y": 90 + }, + "delay=1,facing=west,locked=true,powered=false": { + "model": "minecraft:block/repeater_1tick_locked", + "y": 90 + }, + "delay=1,facing=west,locked=true,powered=true": { + "model": "minecraft:block/repeater_1tick_on_locked", + "y": 90 + }, + "delay=2,facing=east,locked=false,powered=false": { + "model": "minecraft:block/repeater_2tick", + "y": 270 + }, + "delay=2,facing=east,locked=false,powered=true": { + "model": "minecraft:block/repeater_2tick_on", + "y": 270 + }, + "delay=2,facing=east,locked=true,powered=false": { + "model": "minecraft:block/repeater_2tick_locked", + "y": 270 + }, + "delay=2,facing=east,locked=true,powered=true": { + "model": "minecraft:block/repeater_2tick_on_locked", + "y": 270 + }, + "delay=2,facing=north,locked=false,powered=false": { + "model": "minecraft:block/repeater_2tick", + "y": 180 + }, + "delay=2,facing=north,locked=false,powered=true": { + "model": "minecraft:block/repeater_2tick_on", + "y": 180 + }, + "delay=2,facing=north,locked=true,powered=false": { + "model": "minecraft:block/repeater_2tick_locked", + "y": 180 + }, + "delay=2,facing=north,locked=true,powered=true": { + "model": "minecraft:block/repeater_2tick_on_locked", + "y": 180 + }, + "delay=2,facing=south,locked=false,powered=false": { + "model": "minecraft:block/repeater_2tick" + }, + "delay=2,facing=south,locked=false,powered=true": { + "model": "minecraft:block/repeater_2tick_on" + }, + "delay=2,facing=south,locked=true,powered=false": { + "model": "minecraft:block/repeater_2tick_locked" + }, + "delay=2,facing=south,locked=true,powered=true": { + "model": "minecraft:block/repeater_2tick_on_locked" + }, + "delay=2,facing=west,locked=false,powered=false": { + "model": "minecraft:block/repeater_2tick", + "y": 90 + }, + "delay=2,facing=west,locked=false,powered=true": { + "model": "minecraft:block/repeater_2tick_on", + "y": 90 + }, + "delay=2,facing=west,locked=true,powered=false": { + "model": "minecraft:block/repeater_2tick_locked", + "y": 90 + }, + "delay=2,facing=west,locked=true,powered=true": { + "model": "minecraft:block/repeater_2tick_on_locked", + "y": 90 + }, + "delay=3,facing=east,locked=false,powered=false": { + "model": "minecraft:block/repeater_3tick", + "y": 270 + }, + "delay=3,facing=east,locked=false,powered=true": { + "model": "minecraft:block/repeater_3tick_on", + "y": 270 + }, + "delay=3,facing=east,locked=true,powered=false": { + "model": "minecraft:block/repeater_3tick_locked", + "y": 270 + }, + "delay=3,facing=east,locked=true,powered=true": { + "model": "minecraft:block/repeater_3tick_on_locked", + "y": 270 + }, + "delay=3,facing=north,locked=false,powered=false": { + "model": "minecraft:block/repeater_3tick", + "y": 180 + }, + "delay=3,facing=north,locked=false,powered=true": { + "model": "minecraft:block/repeater_3tick_on", + "y": 180 + }, + "delay=3,facing=north,locked=true,powered=false": { + "model": "minecraft:block/repeater_3tick_locked", + "y": 180 + }, + "delay=3,facing=north,locked=true,powered=true": { + "model": "minecraft:block/repeater_3tick_on_locked", + "y": 180 + }, + "delay=3,facing=south,locked=false,powered=false": { + "model": "minecraft:block/repeater_3tick" + }, + "delay=3,facing=south,locked=false,powered=true": { + "model": "minecraft:block/repeater_3tick_on" + }, + "delay=3,facing=south,locked=true,powered=false": { + "model": "minecraft:block/repeater_3tick_locked" + }, + "delay=3,facing=south,locked=true,powered=true": { + "model": "minecraft:block/repeater_3tick_on_locked" + }, + "delay=3,facing=west,locked=false,powered=false": { + "model": "minecraft:block/repeater_3tick", + "y": 90 + }, + "delay=3,facing=west,locked=false,powered=true": { + "model": "minecraft:block/repeater_3tick_on", + "y": 90 + }, + "delay=3,facing=west,locked=true,powered=false": { + "model": "minecraft:block/repeater_3tick_locked", + "y": 90 + }, + "delay=3,facing=west,locked=true,powered=true": { + "model": "minecraft:block/repeater_3tick_on_locked", + "y": 90 + }, + "delay=4,facing=east,locked=false,powered=false": { + "model": "minecraft:block/repeater_4tick", + "y": 270 + }, + "delay=4,facing=east,locked=false,powered=true": { + "model": "minecraft:block/repeater_4tick_on", + "y": 270 + }, + "delay=4,facing=east,locked=true,powered=false": { + "model": "minecraft:block/repeater_4tick_locked", + "y": 270 + }, + "delay=4,facing=east,locked=true,powered=true": { + "model": "minecraft:block/repeater_4tick_on_locked", + "y": 270 + }, + "delay=4,facing=north,locked=false,powered=false": { + "model": "minecraft:block/repeater_4tick", + "y": 180 + }, + "delay=4,facing=north,locked=false,powered=true": { + "model": "minecraft:block/repeater_4tick_on", + "y": 180 + }, + "delay=4,facing=north,locked=true,powered=false": { + "model": "minecraft:block/repeater_4tick_locked", + "y": 180 + }, + "delay=4,facing=north,locked=true,powered=true": { + "model": "minecraft:block/repeater_4tick_on_locked", + "y": 180 + }, + "delay=4,facing=south,locked=false,powered=false": { + "model": "minecraft:block/repeater_4tick" + }, + "delay=4,facing=south,locked=false,powered=true": { + "model": "minecraft:block/repeater_4tick_on" + }, + "delay=4,facing=south,locked=true,powered=false": { + "model": "minecraft:block/repeater_4tick_locked" + }, + "delay=4,facing=south,locked=true,powered=true": { + "model": "minecraft:block/repeater_4tick_on_locked" + }, + "delay=4,facing=west,locked=false,powered=false": { + "model": "minecraft:block/repeater_4tick", + "y": 90 + }, + "delay=4,facing=west,locked=false,powered=true": { + "model": "minecraft:block/repeater_4tick_on", + "y": 90 + }, + "delay=4,facing=west,locked=true,powered=false": { + "model": "minecraft:block/repeater_4tick_locked", + "y": 90 + }, + "delay=4,facing=west,locked=true,powered=true": { + "model": "minecraft:block/repeater_4tick_on_locked", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/repeating_command_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/repeating_command_block.json new file mode 100644 index 000000000..2e6ccead9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/repeating_command_block.json @@ -0,0 +1,50 @@ +{ + "variants": { + "conditional=false,facing=down": { + "model": "minecraft:block/repeating_command_block", + "x": 90 + }, + "conditional=false,facing=east": { + "model": "minecraft:block/repeating_command_block", + "y": 90 + }, + "conditional=false,facing=north": { + "model": "minecraft:block/repeating_command_block" + }, + "conditional=false,facing=south": { + "model": "minecraft:block/repeating_command_block", + "y": 180 + }, + "conditional=false,facing=up": { + "model": "minecraft:block/repeating_command_block", + "x": 270 + }, + "conditional=false,facing=west": { + "model": "minecraft:block/repeating_command_block", + "y": 270 + }, + "conditional=true,facing=down": { + "model": "minecraft:block/repeating_command_block_conditional", + "x": 90 + }, + "conditional=true,facing=east": { + "model": "minecraft:block/repeating_command_block_conditional", + "y": 90 + }, + "conditional=true,facing=north": { + "model": "minecraft:block/repeating_command_block_conditional" + }, + "conditional=true,facing=south": { + "model": "minecraft:block/repeating_command_block_conditional", + "y": 180 + }, + "conditional=true,facing=up": { + "model": "minecraft:block/repeating_command_block_conditional", + "x": 270 + }, + "conditional=true,facing=west": { + "model": "minecraft:block/repeating_command_block_conditional", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_block.json new file mode 100644 index 000000000..58a8cbabc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/resin_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_brick_slab.json new file mode 100644 index 000000000..432eaa28f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/resin_brick_slab" + }, + "type=double": { + "model": "minecraft:block/resin_bricks" + }, + "type=top": { + "model": "minecraft:block/resin_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_brick_stairs.json new file mode 100644 index 000000000..638f42eef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/resin_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/resin_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/resin_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/resin_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/resin_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/resin_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/resin_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/resin_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/resin_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/resin_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/resin_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/resin_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/resin_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/resin_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_brick_wall.json new file mode 100644 index 000000000..6c0576861 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/resin_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/resin_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/resin_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/resin_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/resin_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/resin_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/resin_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/resin_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/resin_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_bricks.json new file mode 100644 index 000000000..b09851a88 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/resin_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_clump.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_clump.json new file mode 100644 index 000000000..5e9fe5690 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/resin_clump.json @@ -0,0 +1,150 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/resin_clump" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump" + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "y": 90 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "y": 180 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "y": 270 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "x": 270 + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "x": 270 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "true" + } + }, + { + "apply": { + "model": "minecraft:block/resin_clump", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/respawn_anchor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/respawn_anchor.json new file mode 100644 index 000000000..fdf950ad4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/respawn_anchor.json @@ -0,0 +1,19 @@ +{ + "variants": { + "charges=0": { + "model": "minecraft:block/respawn_anchor_0" + }, + "charges=1": { + "model": "minecraft:block/respawn_anchor_1" + }, + "charges=2": { + "model": "minecraft:block/respawn_anchor_2" + }, + "charges=3": { + "model": "minecraft:block/respawn_anchor_3" + }, + "charges=4": { + "model": "minecraft:block/respawn_anchor_4" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/rooted_dirt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/rooted_dirt.json new file mode 100644 index 000000000..9361904fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/rooted_dirt.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/rooted_dirt" + }, + { + "model": "minecraft:block/rooted_dirt", + "y": 90 + }, + { + "model": "minecraft:block/rooted_dirt", + "y": 180 + }, + { + "model": "minecraft:block/rooted_dirt", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/rose_bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/rose_bush.json new file mode 100644 index 000000000..5eaa364cb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/rose_bush.json @@ -0,0 +1,10 @@ +{ + "variants": { + "half=lower": { + "model": "minecraft:block/rose_bush_bottom" + }, + "half=upper": { + "model": "minecraft:block/rose_bush_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sand.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sand.json new file mode 100644 index 000000000..3341c41d7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sand.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/sand" + }, + { + "model": "minecraft:block/sand", + "y": 90 + }, + { + "model": "minecraft:block/sand", + "y": 180 + }, + { + "model": "minecraft:block/sand", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sandstone.json new file mode 100644 index 000000000..a3c0d7091 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sandstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/sandstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sandstone_slab.json new file mode 100644 index 000000000..0fabec371 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sandstone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/sandstone_slab" + }, + "type=double": { + "model": "minecraft:block/sandstone" + }, + "type=top": { + "model": "minecraft:block/sandstone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sandstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sandstone_stairs.json new file mode 100644 index 000000000..e69e48fd0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sandstone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/sandstone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/sandstone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/sandstone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/sandstone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/sandstone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/sandstone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/sandstone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/sandstone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/sandstone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sandstone_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sandstone_wall.json new file mode 100644 index 000000000..a5e1ed390 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sandstone_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/sandstone_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/sandstone_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/sandstone_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/sandstone_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/sandstone_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/sandstone_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/sandstone_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/sandstone_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/sandstone_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/scaffolding.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/scaffolding.json new file mode 100644 index 000000000..aca5b491d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/scaffolding.json @@ -0,0 +1,10 @@ +{ + "variants": { + "bottom=false": { + "model": "minecraft:block/scaffolding_stable" + }, + "bottom=true": { + "model": "minecraft:block/scaffolding_unstable" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sculk.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sculk.json new file mode 100644 index 000000000..ba3d6643c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sculk.json @@ -0,0 +1,20 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/sculk" + }, + { + "model": "minecraft:block/sculk_mirrored" + }, + { + "model": "minecraft:block/sculk", + "y": 180 + }, + { + "model": "minecraft:block/sculk_mirrored", + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sculk_catalyst.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sculk_catalyst.json new file mode 100644 index 000000000..589af9907 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sculk_catalyst.json @@ -0,0 +1,10 @@ +{ + "variants": { + "bloom=false": { + "model": "minecraft:block/sculk_catalyst" + }, + "bloom=true": { + "model": "minecraft:block/sculk_catalyst_bloom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sculk_sensor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sculk_sensor.json new file mode 100644 index 000000000..690cb8fba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sculk_sensor.json @@ -0,0 +1,13 @@ +{ + "variants": { + "sculk_sensor_phase=active": { + "model": "minecraft:block/sculk_sensor_active" + }, + "sculk_sensor_phase=cooldown": { + "model": "minecraft:block/sculk_sensor_active" + }, + "sculk_sensor_phase=inactive": { + "model": "minecraft:block/sculk_sensor_inactive" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sculk_shrieker.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sculk_shrieker.json new file mode 100644 index 000000000..f445bc8ff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sculk_shrieker.json @@ -0,0 +1,10 @@ +{ + "variants": { + "can_summon=false": { + "model": "minecraft:block/sculk_shrieker" + }, + "can_summon=true": { + "model": "minecraft:block/sculk_shrieker_can_summon" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sculk_vein.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sculk_vein.json new file mode 100644 index 000000000..557643db8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sculk_vein.json @@ -0,0 +1,150 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/sculk_vein" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein" + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "y": 90 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "y": 180 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "y": 270 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "x": 270 + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "x": 270 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "true" + } + }, + { + "apply": { + "model": "minecraft:block/sculk_vein", + "uvlock": true, + "x": 90 + }, + "when": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sea_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sea_lantern.json new file mode 100644 index 000000000..d1231f288 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sea_lantern.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/sea_lantern" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sea_pickle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sea_pickle.json new file mode 100644 index 000000000..89861754e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sea_pickle.json @@ -0,0 +1,140 @@ +{ + "variants": { + "pickles=1,waterlogged=false": [ + { + "model": "minecraft:block/dead_sea_pickle" + }, + { + "model": "minecraft:block/dead_sea_pickle", + "y": 90 + }, + { + "model": "minecraft:block/dead_sea_pickle", + "y": 180 + }, + { + "model": "minecraft:block/dead_sea_pickle", + "y": 270 + } + ], + "pickles=1,waterlogged=true": [ + { + "model": "minecraft:block/sea_pickle" + }, + { + "model": "minecraft:block/sea_pickle", + "y": 90 + }, + { + "model": "minecraft:block/sea_pickle", + "y": 180 + }, + { + "model": "minecraft:block/sea_pickle", + "y": 270 + } + ], + "pickles=2,waterlogged=false": [ + { + "model": "minecraft:block/two_dead_sea_pickles" + }, + { + "model": "minecraft:block/two_dead_sea_pickles", + "y": 90 + }, + { + "model": "minecraft:block/two_dead_sea_pickles", + "y": 180 + }, + { + "model": "minecraft:block/two_dead_sea_pickles", + "y": 270 + } + ], + "pickles=2,waterlogged=true": [ + { + "model": "minecraft:block/two_sea_pickles" + }, + { + "model": "minecraft:block/two_sea_pickles", + "y": 90 + }, + { + "model": "minecraft:block/two_sea_pickles", + "y": 180 + }, + { + "model": "minecraft:block/two_sea_pickles", + "y": 270 + } + ], + "pickles=3,waterlogged=false": [ + { + "model": "minecraft:block/three_dead_sea_pickles" + }, + { + "model": "minecraft:block/three_dead_sea_pickles", + "y": 90 + }, + { + "model": "minecraft:block/three_dead_sea_pickles", + "y": 180 + }, + { + "model": "minecraft:block/three_dead_sea_pickles", + "y": 270 + } + ], + "pickles=3,waterlogged=true": [ + { + "model": "minecraft:block/three_sea_pickles" + }, + { + "model": "minecraft:block/three_sea_pickles", + "y": 90 + }, + { + "model": "minecraft:block/three_sea_pickles", + "y": 180 + }, + { + "model": "minecraft:block/three_sea_pickles", + "y": 270 + } + ], + "pickles=4,waterlogged=false": [ + { + "model": "minecraft:block/four_dead_sea_pickles" + }, + { + "model": "minecraft:block/four_dead_sea_pickles", + "y": 90 + }, + { + "model": "minecraft:block/four_dead_sea_pickles", + "y": 180 + }, + { + "model": "minecraft:block/four_dead_sea_pickles", + "y": 270 + } + ], + "pickles=4,waterlogged=true": [ + { + "model": "minecraft:block/four_sea_pickles" + }, + { + "model": "minecraft:block/four_sea_pickles", + "y": 90 + }, + { + "model": "minecraft:block/four_sea_pickles", + "y": 180 + }, + { + "model": "minecraft:block/four_sea_pickles", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/seagrass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/seagrass.json new file mode 100644 index 000000000..045c721e9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/seagrass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/seagrass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/short_dry_grass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/short_dry_grass.json new file mode 100644 index 000000000..e13569e8e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/short_dry_grass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/short_dry_grass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/short_grass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/short_grass.json new file mode 100644 index 000000000..d065ca080 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/short_grass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/short_grass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/shroomlight.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/shroomlight.json new file mode 100644 index 000000000..300f41e80 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/shroomlight.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/shroomlight" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/shulker_box.json new file mode 100644 index 000000000..7248d53ea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/skeleton_skull.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/skeleton_skull.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/skeleton_skull.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/skeleton_wall_skull.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/skeleton_wall_skull.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/skeleton_wall_skull.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/slime_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/slime_block.json new file mode 100644 index 000000000..b7f071be0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/slime_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/slime_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/small_amethyst_bud.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/small_amethyst_bud.json new file mode 100644 index 000000000..aac83ed37 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/small_amethyst_bud.json @@ -0,0 +1,30 @@ +{ + "variants": { + "facing=down": { + "model": "minecraft:block/small_amethyst_bud", + "x": 180 + }, + "facing=east": { + "model": "minecraft:block/small_amethyst_bud", + "x": 90, + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/small_amethyst_bud", + "x": 90 + }, + "facing=south": { + "model": "minecraft:block/small_amethyst_bud", + "x": 90, + "y": 180 + }, + "facing=up": { + "model": "minecraft:block/small_amethyst_bud" + }, + "facing=west": { + "model": "minecraft:block/small_amethyst_bud", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/small_dripleaf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/small_dripleaf.json new file mode 100644 index 000000000..aa5410e27 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/small_dripleaf.json @@ -0,0 +1,34 @@ +{ + "variants": { + "facing=east,half=lower": { + "model": "minecraft:block/small_dripleaf_bottom", + "y": 90 + }, + "facing=east,half=upper": { + "model": "minecraft:block/small_dripleaf_top", + "y": 90 + }, + "facing=north,half=lower": { + "model": "minecraft:block/small_dripleaf_bottom" + }, + "facing=north,half=upper": { + "model": "minecraft:block/small_dripleaf_top" + }, + "facing=south,half=lower": { + "model": "minecraft:block/small_dripleaf_bottom", + "y": 180 + }, + "facing=south,half=upper": { + "model": "minecraft:block/small_dripleaf_top", + "y": 180 + }, + "facing=west,half=lower": { + "model": "minecraft:block/small_dripleaf_bottom", + "y": 270 + }, + "facing=west,half=upper": { + "model": "minecraft:block/small_dripleaf_top", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smithing_table.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smithing_table.json new file mode 100644 index 000000000..627ae9085 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smithing_table.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/smithing_table" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smoker.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smoker.json new file mode 100644 index 000000000..f0a0fc9ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smoker.json @@ -0,0 +1,34 @@ +{ + "variants": { + "facing=east,lit=false": { + "model": "minecraft:block/smoker", + "y": 90 + }, + "facing=east,lit=true": { + "model": "minecraft:block/smoker_on", + "y": 90 + }, + "facing=north,lit=false": { + "model": "minecraft:block/smoker" + }, + "facing=north,lit=true": { + "model": "minecraft:block/smoker_on" + }, + "facing=south,lit=false": { + "model": "minecraft:block/smoker", + "y": 180 + }, + "facing=south,lit=true": { + "model": "minecraft:block/smoker_on", + "y": 180 + }, + "facing=west,lit=false": { + "model": "minecraft:block/smoker", + "y": 270 + }, + "facing=west,lit=true": { + "model": "minecraft:block/smoker_on", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_basalt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_basalt.json new file mode 100644 index 000000000..6145eb017 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_basalt.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/smooth_basalt" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_quartz.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_quartz.json new file mode 100644 index 000000000..790912d3b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_quartz.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/smooth_quartz" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_quartz_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_quartz_slab.json new file mode 100644 index 000000000..7741145d5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_quartz_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/smooth_quartz_slab" + }, + "type=double": { + "model": "minecraft:block/smooth_quartz" + }, + "type=top": { + "model": "minecraft:block/smooth_quartz_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_quartz_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_quartz_stairs.json new file mode 100644 index 000000000..fb53ef188 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_quartz_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_quartz_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_quartz_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_quartz_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/smooth_quartz_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_quartz_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/smooth_quartz_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_quartz_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_quartz_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_quartz_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/smooth_quartz_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_quartz_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_quartz_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_quartz_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/smooth_quartz_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone.json new file mode 100644 index 000000000..5f441b0f1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/smooth_red_sandstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone_slab.json new file mode 100644 index 000000000..49aa61b08 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/smooth_red_sandstone_slab" + }, + "type=double": { + "model": "minecraft:block/smooth_red_sandstone" + }, + "type=top": { + "model": "minecraft:block/smooth_red_sandstone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone_stairs.json new file mode 100644 index 000000000..826979429 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_red_sandstone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_red_sandstone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/smooth_red_sandstone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_red_sandstone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/smooth_red_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_red_sandstone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/smooth_red_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_red_sandstone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_red_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/smooth_red_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_sandstone.json new file mode 100644 index 000000000..fdc28aa98 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_sandstone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/smooth_sandstone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_sandstone_slab.json new file mode 100644 index 000000000..988733beb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_sandstone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/smooth_sandstone_slab" + }, + "type=double": { + "model": "minecraft:block/smooth_sandstone" + }, + "type=top": { + "model": "minecraft:block/smooth_sandstone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_sandstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_sandstone_stairs.json new file mode 100644 index 000000000..79be22a3e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_sandstone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_sandstone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_sandstone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_sandstone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/smooth_sandstone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_sandstone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/smooth_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_sandstone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_sandstone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_sandstone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/smooth_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/smooth_sandstone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/smooth_sandstone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/smooth_sandstone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/smooth_sandstone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_stone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_stone.json new file mode 100644 index 000000000..a2fb9bfee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_stone.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/smooth_stone" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_stone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_stone_slab.json new file mode 100644 index 000000000..9150d6799 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/smooth_stone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/smooth_stone_slab" + }, + "type=double": { + "model": "minecraft:block/smooth_stone_slab_double" + }, + "type=top": { + "model": "minecraft:block/smooth_stone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sniffer_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sniffer_egg.json new file mode 100644 index 000000000..733fd44e4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sniffer_egg.json @@ -0,0 +1,13 @@ +{ + "variants": { + "hatch=0": { + "model": "minecraft:block/sniffer_egg_not_cracked" + }, + "hatch=1": { + "model": "minecraft:block/sniffer_egg_slightly_cracked" + }, + "hatch=2": { + "model": "minecraft:block/sniffer_egg_very_cracked" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/snow.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/snow.json new file mode 100644 index 000000000..a82cad936 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/snow.json @@ -0,0 +1,28 @@ +{ + "variants": { + "layers=1": { + "model": "minecraft:block/snow_height2" + }, + "layers=2": { + "model": "minecraft:block/snow_height4" + }, + "layers=3": { + "model": "minecraft:block/snow_height6" + }, + "layers=4": { + "model": "minecraft:block/snow_height8" + }, + "layers=5": { + "model": "minecraft:block/snow_height10" + }, + "layers=6": { + "model": "minecraft:block/snow_height12" + }, + "layers=7": { + "model": "minecraft:block/snow_height14" + }, + "layers=8": { + "model": "minecraft:block/snow_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/snow_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/snow_block.json new file mode 100644 index 000000000..eac197319 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/snow_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/snow_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_campfire.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_campfire.json new file mode 100644 index 000000000..9052d211e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_campfire.json @@ -0,0 +1,34 @@ +{ + "variants": { + "facing=east,lit=false": { + "model": "minecraft:block/campfire_off", + "y": 270 + }, + "facing=east,lit=true": { + "model": "minecraft:block/soul_campfire", + "y": 270 + }, + "facing=north,lit=false": { + "model": "minecraft:block/campfire_off", + "y": 180 + }, + "facing=north,lit=true": { + "model": "minecraft:block/soul_campfire", + "y": 180 + }, + "facing=south,lit=false": { + "model": "minecraft:block/campfire_off" + }, + "facing=south,lit=true": { + "model": "minecraft:block/soul_campfire" + }, + "facing=west,lit=false": { + "model": "minecraft:block/campfire_off", + "y": 90 + }, + "facing=west,lit=true": { + "model": "minecraft:block/soul_campfire", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_fire.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_fire.json new file mode 100644 index 000000000..bd637a775 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_fire.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": [ + { + "model": "minecraft:block/soul_fire_floor0" + }, + { + "model": "minecraft:block/soul_fire_floor1" + } + ] + }, + { + "apply": [ + { + "model": "minecraft:block/soul_fire_side0" + }, + { + "model": "minecraft:block/soul_fire_side1" + }, + { + "model": "minecraft:block/soul_fire_side_alt0" + }, + { + "model": "minecraft:block/soul_fire_side_alt1" + } + ] + }, + { + "apply": [ + { + "model": "minecraft:block/soul_fire_side0", + "y": 90 + }, + { + "model": "minecraft:block/soul_fire_side1", + "y": 90 + }, + { + "model": "minecraft:block/soul_fire_side_alt0", + "y": 90 + }, + { + "model": "minecraft:block/soul_fire_side_alt1", + "y": 90 + } + ] + }, + { + "apply": [ + { + "model": "minecraft:block/soul_fire_side0", + "y": 180 + }, + { + "model": "minecraft:block/soul_fire_side1", + "y": 180 + }, + { + "model": "minecraft:block/soul_fire_side_alt0", + "y": 180 + }, + { + "model": "minecraft:block/soul_fire_side_alt1", + "y": 180 + } + ] + }, + { + "apply": [ + { + "model": "minecraft:block/soul_fire_side0", + "y": 270 + }, + { + "model": "minecraft:block/soul_fire_side1", + "y": 270 + }, + { + "model": "minecraft:block/soul_fire_side_alt0", + "y": 270 + }, + { + "model": "minecraft:block/soul_fire_side_alt1", + "y": 270 + } + ] + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_lantern.json new file mode 100644 index 000000000..295698d63 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_lantern.json @@ -0,0 +1,10 @@ +{ + "variants": { + "hanging=false": { + "model": "minecraft:block/soul_lantern" + }, + "hanging=true": { + "model": "minecraft:block/soul_lantern_hanging" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_sand.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_sand.json new file mode 100644 index 000000000..e28fd5eac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_sand.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/soul_sand" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_soil.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_soil.json new file mode 100644 index 000000000..df0da5f8c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_soil.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/soul_soil" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_torch.json new file mode 100644 index 000000000..be81df743 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_torch.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/soul_torch" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_wall_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_wall_torch.json new file mode 100644 index 000000000..653ffef84 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/soul_wall_torch.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/soul_wall_torch" + }, + "facing=north": { + "model": "minecraft:block/soul_wall_torch", + "y": 270 + }, + "facing=south": { + "model": "minecraft:block/soul_wall_torch", + "y": 90 + }, + "facing=west": { + "model": "minecraft:block/soul_wall_torch", + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spawner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spawner.json new file mode 100644 index 000000000..9f2f1a052 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spawner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spawner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sponge.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sponge.json new file mode 100644 index 000000000..136e393a8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sponge.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/sponge" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spore_blossom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spore_blossom.json new file mode 100644 index 000000000..0dd005af5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spore_blossom.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spore_blossom" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_button.json new file mode 100644 index 000000000..9edf5144f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/spruce_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/spruce_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/spruce_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/spruce_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/spruce_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/spruce_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/spruce_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/spruce_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/spruce_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/spruce_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/spruce_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/spruce_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/spruce_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/spruce_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_door.json new file mode 100644 index 000000000..b40806373 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/spruce_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/spruce_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/spruce_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/spruce_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/spruce_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/spruce_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/spruce_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/spruce_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/spruce_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/spruce_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/spruce_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/spruce_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/spruce_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/spruce_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/spruce_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/spruce_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/spruce_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/spruce_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/spruce_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/spruce_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/spruce_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/spruce_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/spruce_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/spruce_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/spruce_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/spruce_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/spruce_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/spruce_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/spruce_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/spruce_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/spruce_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/spruce_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_fence.json new file mode 100644 index 000000000..203048fb1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/spruce_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/spruce_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/spruce_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/spruce_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/spruce_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_fence_gate.json new file mode 100644 index 000000000..a622cdd9a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/spruce_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/spruce_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/spruce_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/spruce_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/spruce_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/spruce_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/spruce_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/spruce_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/spruce_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/spruce_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/spruce_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/spruce_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/spruce_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/spruce_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/spruce_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/spruce_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_hanging_sign.json new file mode 100644 index 000000000..d9674b627 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spruce_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_leaves.json new file mode 100644 index 000000000..c823b6c70 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spruce_leaves" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_log.json new file mode 100644 index 000000000..126396ff1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/spruce_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/spruce_log" + }, + "axis=z": { + "model": "minecraft:block/spruce_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_planks.json new file mode 100644 index 000000000..3299e4be2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spruce_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_pressure_plate.json new file mode 100644 index 000000000..9fef636c3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/spruce_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/spruce_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_sapling.json new file mode 100644 index 000000000..acecf89b6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spruce_sapling" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_shelf.json new file mode 100644 index 000000000..c01c12722 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_shelf.json @@ -0,0 +1,402 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/spruce_shelf" + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf", + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf", + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf", + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_unpowered" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_unpowered", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_unpowered", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_unpowered", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_unconnected" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_unconnected", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_unconnected", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_unconnected", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_center" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_center", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_center", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_center", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/spruce_shelf_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_sign.json new file mode 100644 index 000000000..ca0883455 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spruce_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_slab.json new file mode 100644 index 000000000..c06bc123d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/spruce_slab" + }, + "type=double": { + "model": "minecraft:block/spruce_planks" + }, + "type=top": { + "model": "minecraft:block/spruce_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_stairs.json new file mode 100644 index 000000000..412698f92 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/spruce_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/spruce_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/spruce_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/spruce_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/spruce_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/spruce_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/spruce_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/spruce_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/spruce_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/spruce_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/spruce_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/spruce_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/spruce_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/spruce_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_trapdoor.json new file mode 100644 index 000000000..4b494ff1c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/spruce_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/spruce_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/spruce_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/spruce_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/spruce_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/spruce_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/spruce_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/spruce_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/spruce_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/spruce_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/spruce_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/spruce_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/spruce_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/spruce_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/spruce_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/spruce_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_wall_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_wall_hanging_sign.json new file mode 100644 index 000000000..d9674b627 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spruce_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_wall_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_wall_sign.json new file mode 100644 index 000000000..ca0883455 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/spruce_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_wood.json new file mode 100644 index 000000000..19a9ffb25 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/spruce_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/spruce_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/spruce_wood" + }, + "axis=z": { + "model": "minecraft:block/spruce_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sticky_piston.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sticky_piston.json new file mode 100644 index 000000000..ecd7db037 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sticky_piston.json @@ -0,0 +1,50 @@ +{ + "variants": { + "extended=false,facing=down": { + "model": "minecraft:block/sticky_piston", + "x": 90 + }, + "extended=false,facing=east": { + "model": "minecraft:block/sticky_piston", + "y": 90 + }, + "extended=false,facing=north": { + "model": "minecraft:block/sticky_piston" + }, + "extended=false,facing=south": { + "model": "minecraft:block/sticky_piston", + "y": 180 + }, + "extended=false,facing=up": { + "model": "minecraft:block/sticky_piston", + "x": 270 + }, + "extended=false,facing=west": { + "model": "minecraft:block/sticky_piston", + "y": 270 + }, + "extended=true,facing=down": { + "model": "minecraft:block/piston_base", + "x": 90 + }, + "extended=true,facing=east": { + "model": "minecraft:block/piston_base", + "y": 90 + }, + "extended=true,facing=north": { + "model": "minecraft:block/piston_base" + }, + "extended=true,facing=south": { + "model": "minecraft:block/piston_base", + "y": 180 + }, + "extended=true,facing=up": { + "model": "minecraft:block/piston_base", + "x": 270 + }, + "extended=true,facing=west": { + "model": "minecraft:block/piston_base", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone.json new file mode 100644 index 000000000..c150ec294 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone.json @@ -0,0 +1,20 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/stone" + }, + { + "model": "minecraft:block/stone_mirrored" + }, + { + "model": "minecraft:block/stone", + "y": 180 + }, + { + "model": "minecraft:block/stone_mirrored", + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_brick_slab.json new file mode 100644 index 000000000..bfa864b9a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/stone_brick_slab" + }, + "type=double": { + "model": "minecraft:block/stone_bricks" + }, + "type=top": { + "model": "minecraft:block/stone_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_brick_stairs.json new file mode 100644 index 000000000..1ee811278 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/stone_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/stone_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/stone_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/stone_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/stone_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/stone_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/stone_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/stone_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/stone_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/stone_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/stone_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/stone_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_brick_wall.json new file mode 100644 index 000000000..fc86800b4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/stone_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/stone_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/stone_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/stone_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/stone_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/stone_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/stone_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/stone_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/stone_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_bricks.json new file mode 100644 index 000000000..8a05daf03 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/stone_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_button.json new file mode 100644 index 000000000..0fb70d990 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/stone_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/stone_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/stone_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/stone_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/stone_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/stone_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/stone_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/stone_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/stone_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/stone_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/stone_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/stone_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/stone_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/stone_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_pressure_plate.json new file mode 100644 index 000000000..5be1b5ab3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/stone_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/stone_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_slab.json new file mode 100644 index 000000000..f37785eca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/stone_slab" + }, + "type=double": { + "model": "minecraft:block/stone" + }, + "type=top": { + "model": "minecraft:block/stone_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_stairs.json new file mode 100644 index 000000000..ac18bfdfd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stone_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/stone_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/stone_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/stone_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/stone_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/stone_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/stone_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/stone_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/stone_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/stone_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/stone_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/stone_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/stone_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/stone_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/stone_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stonecutter.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stonecutter.json new file mode 100644 index 000000000..c50b85fc7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stonecutter.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/stonecutter", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/stonecutter" + }, + "facing=south": { + "model": "minecraft:block/stonecutter", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/stonecutter", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_acacia_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_acacia_log.json new file mode 100644 index 000000000..53a60c9d4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_acacia_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_acacia_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_acacia_log" + }, + "axis=z": { + "model": "minecraft:block/stripped_acacia_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_acacia_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_acacia_wood.json new file mode 100644 index 000000000..dd8d1f23d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_acacia_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_acacia_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_acacia_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_acacia_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_bamboo_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_bamboo_block.json new file mode 100644 index 000000000..796aa933f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_bamboo_block.json @@ -0,0 +1,13 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_bamboo_block_x" + }, + "axis=y": { + "model": "minecraft:block/stripped_bamboo_block_y" + }, + "axis=z": { + "model": "minecraft:block/stripped_bamboo_block_z" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_birch_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_birch_log.json new file mode 100644 index 000000000..df57a5269 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_birch_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_birch_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_birch_log" + }, + "axis=z": { + "model": "minecraft:block/stripped_birch_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_birch_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_birch_wood.json new file mode 100644 index 000000000..6527d5dfd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_birch_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_birch_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_birch_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_birch_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_cherry_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_cherry_log.json new file mode 100644 index 000000000..977bb1b50 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_cherry_log.json @@ -0,0 +1,13 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_cherry_log_x" + }, + "axis=y": { + "model": "minecraft:block/stripped_cherry_log_y" + }, + "axis=z": { + "model": "minecraft:block/stripped_cherry_log_z" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_cherry_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_cherry_wood.json new file mode 100644 index 000000000..5a8305486 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_cherry_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_cherry_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_cherry_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_cherry_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_crimson_hyphae.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_crimson_hyphae.json new file mode 100644 index 000000000..3a04cefa9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_crimson_hyphae.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_crimson_hyphae", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_crimson_hyphae" + }, + "axis=z": { + "model": "minecraft:block/stripped_crimson_hyphae", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_crimson_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_crimson_stem.json new file mode 100644 index 000000000..b04d30be8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_crimson_stem.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_crimson_stem", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_crimson_stem" + }, + "axis=z": { + "model": "minecraft:block/stripped_crimson_stem", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_dark_oak_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_dark_oak_log.json new file mode 100644 index 000000000..49d1824a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_dark_oak_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_dark_oak_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_dark_oak_log" + }, + "axis=z": { + "model": "minecraft:block/stripped_dark_oak_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_dark_oak_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_dark_oak_wood.json new file mode 100644 index 000000000..4bcfd1ead --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_dark_oak_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_dark_oak_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_dark_oak_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_dark_oak_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_jungle_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_jungle_log.json new file mode 100644 index 000000000..b826bf8e4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_jungle_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_jungle_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_jungle_log" + }, + "axis=z": { + "model": "minecraft:block/stripped_jungle_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_jungle_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_jungle_wood.json new file mode 100644 index 000000000..c20987613 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_jungle_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_jungle_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_jungle_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_jungle_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_mangrove_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_mangrove_log.json new file mode 100644 index 000000000..a9a610d44 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_mangrove_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_mangrove_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_mangrove_log" + }, + "axis=z": { + "model": "minecraft:block/stripped_mangrove_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_mangrove_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_mangrove_wood.json new file mode 100644 index 000000000..53a18bd2c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_mangrove_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_mangrove_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_mangrove_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_mangrove_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_oak_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_oak_log.json new file mode 100644 index 000000000..b4a149bcc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_oak_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_oak_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_oak_log" + }, + "axis=z": { + "model": "minecraft:block/stripped_oak_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_oak_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_oak_wood.json new file mode 100644 index 000000000..a8098d7c9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_oak_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_oak_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_oak_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_oak_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_pale_oak_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_pale_oak_log.json new file mode 100644 index 000000000..c49669e0a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_pale_oak_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_pale_oak_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_pale_oak_log" + }, + "axis=z": { + "model": "minecraft:block/stripped_pale_oak_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_pale_oak_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_pale_oak_wood.json new file mode 100644 index 000000000..07b79a1e9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_pale_oak_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_pale_oak_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_pale_oak_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_pale_oak_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_spruce_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_spruce_log.json new file mode 100644 index 000000000..060308fb7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_spruce_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_spruce_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_spruce_log" + }, + "axis=z": { + "model": "minecraft:block/stripped_spruce_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_spruce_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_spruce_wood.json new file mode 100644 index 000000000..9473be646 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_spruce_wood.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_spruce_wood", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_spruce_wood" + }, + "axis=z": { + "model": "minecraft:block/stripped_spruce_wood", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_warped_hyphae.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_warped_hyphae.json new file mode 100644 index 000000000..66fd7e362 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_warped_hyphae.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_warped_hyphae", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_warped_hyphae" + }, + "axis=z": { + "model": "minecraft:block/stripped_warped_hyphae", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_warped_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_warped_stem.json new file mode 100644 index 000000000..2e3fcc425 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/stripped_warped_stem.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/stripped_warped_stem", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/stripped_warped_stem" + }, + "axis=z": { + "model": "minecraft:block/stripped_warped_stem", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/structure_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/structure_block.json new file mode 100644 index 000000000..8a4c5b4b9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/structure_block.json @@ -0,0 +1,16 @@ +{ + "variants": { + "mode=corner": { + "model": "minecraft:block/structure_block_corner" + }, + "mode=data": { + "model": "minecraft:block/structure_block_data" + }, + "mode=load": { + "model": "minecraft:block/structure_block_load" + }, + "mode=save": { + "model": "minecraft:block/structure_block_save" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/structure_void.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/structure_void.json new file mode 100644 index 000000000..50c9d574a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/structure_void.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/structure_void" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sugar_cane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sugar_cane.json new file mode 100644 index 000000000..3eb914427 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sugar_cane.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/sugar_cane" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sunflower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sunflower.json new file mode 100644 index 000000000..18297b4bb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sunflower.json @@ -0,0 +1,10 @@ +{ + "variants": { + "half=lower": { + "model": "minecraft:block/sunflower_bottom" + }, + "half=upper": { + "model": "minecraft:block/sunflower_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/suspicious_gravel.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/suspicious_gravel.json new file mode 100644 index 000000000..a773ba951 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/suspicious_gravel.json @@ -0,0 +1,16 @@ +{ + "variants": { + "dusted=0": { + "model": "minecraft:block/suspicious_gravel_0" + }, + "dusted=1": { + "model": "minecraft:block/suspicious_gravel_1" + }, + "dusted=2": { + "model": "minecraft:block/suspicious_gravel_2" + }, + "dusted=3": { + "model": "minecraft:block/suspicious_gravel_3" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/suspicious_sand.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/suspicious_sand.json new file mode 100644 index 000000000..7e75a322e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/suspicious_sand.json @@ -0,0 +1,16 @@ +{ + "variants": { + "dusted=0": { + "model": "minecraft:block/suspicious_sand_0" + }, + "dusted=1": { + "model": "minecraft:block/suspicious_sand_1" + }, + "dusted=2": { + "model": "minecraft:block/suspicious_sand_2" + }, + "dusted=3": { + "model": "minecraft:block/suspicious_sand_3" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sweet_berry_bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sweet_berry_bush.json new file mode 100644 index 000000000..131d7a70f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/sweet_berry_bush.json @@ -0,0 +1,16 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/sweet_berry_bush_stage0" + }, + "age=1": { + "model": "minecraft:block/sweet_berry_bush_stage1" + }, + "age=2": { + "model": "minecraft:block/sweet_berry_bush_stage2" + }, + "age=3": { + "model": "minecraft:block/sweet_berry_bush_stage3" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tall_dry_grass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tall_dry_grass.json new file mode 100644 index 000000000..3fa499834 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tall_dry_grass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/tall_dry_grass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tall_grass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tall_grass.json new file mode 100644 index 000000000..b014f0ba4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tall_grass.json @@ -0,0 +1,10 @@ +{ + "variants": { + "half=lower": { + "model": "minecraft:block/tall_grass_bottom" + }, + "half=upper": { + "model": "minecraft:block/tall_grass_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tall_seagrass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tall_seagrass.json new file mode 100644 index 000000000..c20e9a295 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tall_seagrass.json @@ -0,0 +1,10 @@ +{ + "variants": { + "half=lower": { + "model": "minecraft:block/tall_seagrass_bottom" + }, + "half=upper": { + "model": "minecraft:block/tall_seagrass_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/target.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/target.json new file mode 100644 index 000000000..7077459d0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/target.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/target" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/terracotta.json new file mode 100644 index 000000000..985d001a5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/test_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/test_block.json new file mode 100644 index 000000000..45bed9fc4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/test_block.json @@ -0,0 +1,16 @@ +{ + "variants": { + "mode=accept": { + "model": "minecraft:block/test_block_accept" + }, + "mode=fail": { + "model": "minecraft:block/test_block_fail" + }, + "mode=log": { + "model": "minecraft:block/test_block_log" + }, + "mode=start": { + "model": "minecraft:block/test_block_start" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/test_instance_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/test_instance_block.json new file mode 100644 index 000000000..213ba079e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/test_instance_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/test_instance_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tinted_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tinted_glass.json new file mode 100644 index 000000000..c9f85f1a8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tinted_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/tinted_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tnt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tnt.json new file mode 100644 index 000000000..a806a7de6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tnt.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/tnt" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/torch.json new file mode 100644 index 000000000..7d14911ac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/torch.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/torch" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/torchflower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/torchflower.json new file mode 100644 index 000000000..ae774f10a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/torchflower.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/torchflower" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/torchflower_crop.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/torchflower_crop.json new file mode 100644 index 000000000..0c13d8fb1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/torchflower_crop.json @@ -0,0 +1,10 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/torchflower_crop_stage0" + }, + "age=1": { + "model": "minecraft:block/torchflower_crop_stage1" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/trapped_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/trapped_chest.json new file mode 100644 index 000000000..fd8d40b19 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/trapped_chest.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/trapped_chest" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/trial_spawner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/trial_spawner.json new file mode 100644 index 000000000..f28215a93 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/trial_spawner.json @@ -0,0 +1,40 @@ +{ + "variants": { + "ominous=false,trial_spawner_state=active": { + "model": "minecraft:block/trial_spawner_active" + }, + "ominous=false,trial_spawner_state=cooldown": { + "model": "minecraft:block/trial_spawner" + }, + "ominous=false,trial_spawner_state=ejecting_reward": { + "model": "minecraft:block/trial_spawner_ejecting_reward" + }, + "ominous=false,trial_spawner_state=inactive": { + "model": "minecraft:block/trial_spawner" + }, + "ominous=false,trial_spawner_state=waiting_for_players": { + "model": "minecraft:block/trial_spawner_active" + }, + "ominous=false,trial_spawner_state=waiting_for_reward_ejection": { + "model": "minecraft:block/trial_spawner_active" + }, + "ominous=true,trial_spawner_state=active": { + "model": "minecraft:block/trial_spawner_active_ominous" + }, + "ominous=true,trial_spawner_state=cooldown": { + "model": "minecraft:block/trial_spawner_inactive_ominous" + }, + "ominous=true,trial_spawner_state=ejecting_reward": { + "model": "minecraft:block/trial_spawner_ejecting_reward_ominous" + }, + "ominous=true,trial_spawner_state=inactive": { + "model": "minecraft:block/trial_spawner_inactive_ominous" + }, + "ominous=true,trial_spawner_state=waiting_for_players": { + "model": "minecraft:block/trial_spawner_active_ominous" + }, + "ominous=true,trial_spawner_state=waiting_for_reward_ejection": { + "model": "minecraft:block/trial_spawner_active_ominous" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tripwire.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tripwire.json new file mode 100644 index 000000000..db2aed53f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tripwire.json @@ -0,0 +1,120 @@ +{ + "variants": { + "attached=false,east=false,north=false,south=false,west=false": { + "model": "minecraft:block/tripwire_ns" + }, + "attached=false,east=false,north=false,south=false,west=true": { + "model": "minecraft:block/tripwire_n", + "y": 270 + }, + "attached=false,east=false,north=false,south=true,west=false": { + "model": "minecraft:block/tripwire_n", + "y": 180 + }, + "attached=false,east=false,north=false,south=true,west=true": { + "model": "minecraft:block/tripwire_ne", + "y": 180 + }, + "attached=false,east=false,north=true,south=false,west=false": { + "model": "minecraft:block/tripwire_n" + }, + "attached=false,east=false,north=true,south=false,west=true": { + "model": "minecraft:block/tripwire_ne", + "y": 270 + }, + "attached=false,east=false,north=true,south=true,west=false": { + "model": "minecraft:block/tripwire_ns" + }, + "attached=false,east=false,north=true,south=true,west=true": { + "model": "minecraft:block/tripwire_nse", + "y": 180 + }, + "attached=false,east=true,north=false,south=false,west=false": { + "model": "minecraft:block/tripwire_n", + "y": 90 + }, + "attached=false,east=true,north=false,south=false,west=true": { + "model": "minecraft:block/tripwire_ns", + "y": 90 + }, + "attached=false,east=true,north=false,south=true,west=false": { + "model": "minecraft:block/tripwire_ne", + "y": 90 + }, + "attached=false,east=true,north=false,south=true,west=true": { + "model": "minecraft:block/tripwire_nse", + "y": 90 + }, + "attached=false,east=true,north=true,south=false,west=false": { + "model": "minecraft:block/tripwire_ne" + }, + "attached=false,east=true,north=true,south=false,west=true": { + "model": "minecraft:block/tripwire_nse", + "y": 270 + }, + "attached=false,east=true,north=true,south=true,west=false": { + "model": "minecraft:block/tripwire_nse" + }, + "attached=false,east=true,north=true,south=true,west=true": { + "model": "minecraft:block/tripwire_nsew" + }, + "attached=true,east=false,north=false,south=false,west=false": { + "model": "minecraft:block/tripwire_attached_ns" + }, + "attached=true,east=false,north=false,south=false,west=true": { + "model": "minecraft:block/tripwire_attached_n", + "y": 270 + }, + "attached=true,east=false,north=false,south=true,west=false": { + "model": "minecraft:block/tripwire_attached_n", + "y": 180 + }, + "attached=true,east=false,north=false,south=true,west=true": { + "model": "minecraft:block/tripwire_attached_ne", + "y": 180 + }, + "attached=true,east=false,north=true,south=false,west=false": { + "model": "minecraft:block/tripwire_attached_n" + }, + "attached=true,east=false,north=true,south=false,west=true": { + "model": "minecraft:block/tripwire_attached_ne", + "y": 270 + }, + "attached=true,east=false,north=true,south=true,west=false": { + "model": "minecraft:block/tripwire_attached_ns" + }, + "attached=true,east=false,north=true,south=true,west=true": { + "model": "minecraft:block/tripwire_attached_nse", + "y": 180 + }, + "attached=true,east=true,north=false,south=false,west=false": { + "model": "minecraft:block/tripwire_attached_n", + "y": 90 + }, + "attached=true,east=true,north=false,south=false,west=true": { + "model": "minecraft:block/tripwire_attached_ns", + "y": 90 + }, + "attached=true,east=true,north=false,south=true,west=false": { + "model": "minecraft:block/tripwire_attached_ne", + "y": 90 + }, + "attached=true,east=true,north=false,south=true,west=true": { + "model": "minecraft:block/tripwire_attached_nse", + "y": 90 + }, + "attached=true,east=true,north=true,south=false,west=false": { + "model": "minecraft:block/tripwire_attached_ne" + }, + "attached=true,east=true,north=true,south=false,west=true": { + "model": "minecraft:block/tripwire_attached_nse", + "y": 270 + }, + "attached=true,east=true,north=true,south=true,west=false": { + "model": "minecraft:block/tripwire_attached_nse" + }, + "attached=true,east=true,north=true,south=true,west=true": { + "model": "minecraft:block/tripwire_attached_nsew" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tripwire_hook.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tripwire_hook.json new file mode 100644 index 000000000..67389727f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tripwire_hook.json @@ -0,0 +1,64 @@ +{ + "variants": { + "attached=false,facing=east,powered=false": { + "model": "minecraft:block/tripwire_hook", + "y": 90 + }, + "attached=false,facing=east,powered=true": { + "model": "minecraft:block/tripwire_hook_on", + "y": 90 + }, + "attached=false,facing=north,powered=false": { + "model": "minecraft:block/tripwire_hook" + }, + "attached=false,facing=north,powered=true": { + "model": "minecraft:block/tripwire_hook_on" + }, + "attached=false,facing=south,powered=false": { + "model": "minecraft:block/tripwire_hook", + "y": 180 + }, + "attached=false,facing=south,powered=true": { + "model": "minecraft:block/tripwire_hook_on", + "y": 180 + }, + "attached=false,facing=west,powered=false": { + "model": "minecraft:block/tripwire_hook", + "y": 270 + }, + "attached=false,facing=west,powered=true": { + "model": "minecraft:block/tripwire_hook_on", + "y": 270 + }, + "attached=true,facing=east,powered=false": { + "model": "minecraft:block/tripwire_hook_attached", + "y": 90 + }, + "attached=true,facing=east,powered=true": { + "model": "minecraft:block/tripwire_hook_attached_on", + "y": 90 + }, + "attached=true,facing=north,powered=false": { + "model": "minecraft:block/tripwire_hook_attached" + }, + "attached=true,facing=north,powered=true": { + "model": "minecraft:block/tripwire_hook_attached_on" + }, + "attached=true,facing=south,powered=false": { + "model": "minecraft:block/tripwire_hook_attached", + "y": 180 + }, + "attached=true,facing=south,powered=true": { + "model": "minecraft:block/tripwire_hook_attached_on", + "y": 180 + }, + "attached=true,facing=west,powered=false": { + "model": "minecraft:block/tripwire_hook_attached", + "y": 270 + }, + "attached=true,facing=west,powered=true": { + "model": "minecraft:block/tripwire_hook_attached_on", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tube_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tube_coral.json new file mode 100644 index 000000000..89f376277 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tube_coral.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/tube_coral" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tube_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tube_coral_block.json new file mode 100644 index 000000000..68894a85a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tube_coral_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/tube_coral_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tube_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tube_coral_fan.json new file mode 100644 index 000000000..518de272b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tube_coral_fan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/tube_coral_fan" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tube_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tube_coral_wall_fan.json new file mode 100644 index 000000000..31a626a13 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tube_coral_wall_fan.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/tube_coral_wall_fan", + "y": 90 + }, + "facing=north": { + "model": "minecraft:block/tube_coral_wall_fan" + }, + "facing=south": { + "model": "minecraft:block/tube_coral_wall_fan", + "y": 180 + }, + "facing=west": { + "model": "minecraft:block/tube_coral_wall_fan", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff.json new file mode 100644 index 000000000..eff0d2004 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/tuff" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_brick_slab.json new file mode 100644 index 000000000..e434866ab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_brick_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/tuff_brick_slab" + }, + "type=double": { + "model": "minecraft:block/tuff_bricks" + }, + "type=top": { + "model": "minecraft:block/tuff_brick_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_brick_stairs.json new file mode 100644 index 000000000..f97344379 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_brick_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/tuff_brick_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/tuff_brick_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/tuff_brick_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/tuff_brick_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/tuff_brick_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/tuff_brick_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/tuff_brick_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/tuff_brick_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/tuff_brick_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/tuff_brick_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/tuff_brick_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/tuff_brick_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/tuff_brick_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/tuff_brick_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_brick_wall.json new file mode 100644 index 000000000..e82f5f6fd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_bricks.json new file mode 100644 index 000000000..72b99e0c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_bricks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/tuff_bricks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_slab.json new file mode 100644 index 000000000..f77d48aae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/tuff_slab" + }, + "type=double": { + "model": "minecraft:block/tuff" + }, + "type=top": { + "model": "minecraft:block/tuff_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_stairs.json new file mode 100644 index 000000000..d2175ab52 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/tuff_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/tuff_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/tuff_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/tuff_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/tuff_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/tuff_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/tuff_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/tuff_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/tuff_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/tuff_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/tuff_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/tuff_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/tuff_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/tuff_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_wall.json new file mode 100644 index 000000000..fba231a62 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/tuff_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/tuff_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "minecraft:block/tuff_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/turtle_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/turtle_egg.json new file mode 100644 index 000000000..ac5157d6c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/turtle_egg.json @@ -0,0 +1,208 @@ +{ + "variants": { + "eggs=1,hatch=0": [ + { + "model": "minecraft:block/turtle_egg" + }, + { + "model": "minecraft:block/turtle_egg", + "y": 90 + }, + { + "model": "minecraft:block/turtle_egg", + "y": 180 + }, + { + "model": "minecraft:block/turtle_egg", + "y": 270 + } + ], + "eggs=1,hatch=1": [ + { + "model": "minecraft:block/slightly_cracked_turtle_egg" + }, + { + "model": "minecraft:block/slightly_cracked_turtle_egg", + "y": 90 + }, + { + "model": "minecraft:block/slightly_cracked_turtle_egg", + "y": 180 + }, + { + "model": "minecraft:block/slightly_cracked_turtle_egg", + "y": 270 + } + ], + "eggs=1,hatch=2": [ + { + "model": "minecraft:block/very_cracked_turtle_egg" + }, + { + "model": "minecraft:block/very_cracked_turtle_egg", + "y": 90 + }, + { + "model": "minecraft:block/very_cracked_turtle_egg", + "y": 180 + }, + { + "model": "minecraft:block/very_cracked_turtle_egg", + "y": 270 + } + ], + "eggs=2,hatch=0": [ + { + "model": "minecraft:block/two_turtle_eggs" + }, + { + "model": "minecraft:block/two_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/two_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/two_turtle_eggs", + "y": 270 + } + ], + "eggs=2,hatch=1": [ + { + "model": "minecraft:block/two_slightly_cracked_turtle_eggs" + }, + { + "model": "minecraft:block/two_slightly_cracked_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/two_slightly_cracked_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/two_slightly_cracked_turtle_eggs", + "y": 270 + } + ], + "eggs=2,hatch=2": [ + { + "model": "minecraft:block/two_very_cracked_turtle_eggs" + }, + { + "model": "minecraft:block/two_very_cracked_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/two_very_cracked_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/two_very_cracked_turtle_eggs", + "y": 270 + } + ], + "eggs=3,hatch=0": [ + { + "model": "minecraft:block/three_turtle_eggs" + }, + { + "model": "minecraft:block/three_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/three_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/three_turtle_eggs", + "y": 270 + } + ], + "eggs=3,hatch=1": [ + { + "model": "minecraft:block/three_slightly_cracked_turtle_eggs" + }, + { + "model": "minecraft:block/three_slightly_cracked_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/three_slightly_cracked_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/three_slightly_cracked_turtle_eggs", + "y": 270 + } + ], + "eggs=3,hatch=2": [ + { + "model": "minecraft:block/three_very_cracked_turtle_eggs" + }, + { + "model": "minecraft:block/three_very_cracked_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/three_very_cracked_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/three_very_cracked_turtle_eggs", + "y": 270 + } + ], + "eggs=4,hatch=0": [ + { + "model": "minecraft:block/four_turtle_eggs" + }, + { + "model": "minecraft:block/four_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/four_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/four_turtle_eggs", + "y": 270 + } + ], + "eggs=4,hatch=1": [ + { + "model": "minecraft:block/four_slightly_cracked_turtle_eggs" + }, + { + "model": "minecraft:block/four_slightly_cracked_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/four_slightly_cracked_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/four_slightly_cracked_turtle_eggs", + "y": 270 + } + ], + "eggs=4,hatch=2": [ + { + "model": "minecraft:block/four_very_cracked_turtle_eggs" + }, + { + "model": "minecraft:block/four_very_cracked_turtle_eggs", + "y": 90 + }, + { + "model": "minecraft:block/four_very_cracked_turtle_eggs", + "y": 180 + }, + { + "model": "minecraft:block/four_very_cracked_turtle_eggs", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/twisting_vines.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/twisting_vines.json new file mode 100644 index 000000000..baef54f88 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/twisting_vines.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/twisting_vines" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/twisting_vines_plant.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/twisting_vines_plant.json new file mode 100644 index 000000000..83020268b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/twisting_vines_plant.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/twisting_vines_plant" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/vault.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/vault.json new file mode 100644 index 000000000..ae4ad7669 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/vault.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,ominous=false,vault_state=active": { + "model": "minecraft:block/vault_active", + "y": 90 + }, + "facing=east,ominous=false,vault_state=ejecting": { + "model": "minecraft:block/vault_ejecting_reward", + "y": 90 + }, + "facing=east,ominous=false,vault_state=inactive": { + "model": "minecraft:block/vault", + "y": 90 + }, + "facing=east,ominous=false,vault_state=unlocking": { + "model": "minecraft:block/vault_unlocking", + "y": 90 + }, + "facing=east,ominous=true,vault_state=active": { + "model": "minecraft:block/vault_active_ominous", + "y": 90 + }, + "facing=east,ominous=true,vault_state=ejecting": { + "model": "minecraft:block/vault_ejecting_reward_ominous", + "y": 90 + }, + "facing=east,ominous=true,vault_state=inactive": { + "model": "minecraft:block/vault_ominous", + "y": 90 + }, + "facing=east,ominous=true,vault_state=unlocking": { + "model": "minecraft:block/vault_unlocking_ominous", + "y": 90 + }, + "facing=north,ominous=false,vault_state=active": { + "model": "minecraft:block/vault_active" + }, + "facing=north,ominous=false,vault_state=ejecting": { + "model": "minecraft:block/vault_ejecting_reward" + }, + "facing=north,ominous=false,vault_state=inactive": { + "model": "minecraft:block/vault" + }, + "facing=north,ominous=false,vault_state=unlocking": { + "model": "minecraft:block/vault_unlocking" + }, + "facing=north,ominous=true,vault_state=active": { + "model": "minecraft:block/vault_active_ominous" + }, + "facing=north,ominous=true,vault_state=ejecting": { + "model": "minecraft:block/vault_ejecting_reward_ominous" + }, + "facing=north,ominous=true,vault_state=inactive": { + "model": "minecraft:block/vault_ominous" + }, + "facing=north,ominous=true,vault_state=unlocking": { + "model": "minecraft:block/vault_unlocking_ominous" + }, + "facing=south,ominous=false,vault_state=active": { + "model": "minecraft:block/vault_active", + "y": 180 + }, + "facing=south,ominous=false,vault_state=ejecting": { + "model": "minecraft:block/vault_ejecting_reward", + "y": 180 + }, + "facing=south,ominous=false,vault_state=inactive": { + "model": "minecraft:block/vault", + "y": 180 + }, + "facing=south,ominous=false,vault_state=unlocking": { + "model": "minecraft:block/vault_unlocking", + "y": 180 + }, + "facing=south,ominous=true,vault_state=active": { + "model": "minecraft:block/vault_active_ominous", + "y": 180 + }, + "facing=south,ominous=true,vault_state=ejecting": { + "model": "minecraft:block/vault_ejecting_reward_ominous", + "y": 180 + }, + "facing=south,ominous=true,vault_state=inactive": { + "model": "minecraft:block/vault_ominous", + "y": 180 + }, + "facing=south,ominous=true,vault_state=unlocking": { + "model": "minecraft:block/vault_unlocking_ominous", + "y": 180 + }, + "facing=west,ominous=false,vault_state=active": { + "model": "minecraft:block/vault_active", + "y": 270 + }, + "facing=west,ominous=false,vault_state=ejecting": { + "model": "minecraft:block/vault_ejecting_reward", + "y": 270 + }, + "facing=west,ominous=false,vault_state=inactive": { + "model": "minecraft:block/vault", + "y": 270 + }, + "facing=west,ominous=false,vault_state=unlocking": { + "model": "minecraft:block/vault_unlocking", + "y": 270 + }, + "facing=west,ominous=true,vault_state=active": { + "model": "minecraft:block/vault_active_ominous", + "y": 270 + }, + "facing=west,ominous=true,vault_state=ejecting": { + "model": "minecraft:block/vault_ejecting_reward_ominous", + "y": 270 + }, + "facing=west,ominous=true,vault_state=inactive": { + "model": "minecraft:block/vault_ominous", + "y": 270 + }, + "facing=west,ominous=true,vault_state=unlocking": { + "model": "minecraft:block/vault_unlocking_ominous", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/verdant_froglight.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/verdant_froglight.json new file mode 100644 index 000000000..496c19c18 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/verdant_froglight.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/verdant_froglight_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/verdant_froglight" + }, + "axis=z": { + "model": "minecraft:block/verdant_froglight_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/vine.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/vine.json new file mode 100644 index 000000000..66222182c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/vine.json @@ -0,0 +1,120 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/vine" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/vine" + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/vine", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/vine", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/vine", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/vine", + "uvlock": true, + "y": 180 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/vine", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/vine", + "uvlock": true, + "y": 270 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/vine", + "uvlock": true, + "x": 270 + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "minecraft:block/vine", + "uvlock": true, + "x": 270 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/void_air.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/void_air.json new file mode 100644 index 000000000..2c8f02f06 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/void_air.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/air" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wall_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wall_torch.json new file mode 100644 index 000000000..7314344ca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wall_torch.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/wall_torch" + }, + "facing=north": { + "model": "minecraft:block/wall_torch", + "y": 270 + }, + "facing=south": { + "model": "minecraft:block/wall_torch", + "y": 90 + }, + "facing=west": { + "model": "minecraft:block/wall_torch", + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_button.json new file mode 100644 index 000000000..7f0a2e67e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_button.json @@ -0,0 +1,118 @@ +{ + "variants": { + "face=ceiling,facing=east,powered=false": { + "model": "minecraft:block/warped_button", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=east,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "x": 180, + "y": 270 + }, + "face=ceiling,facing=north,powered=false": { + "model": "minecraft:block/warped_button", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=north,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "x": 180, + "y": 180 + }, + "face=ceiling,facing=south,powered=false": { + "model": "minecraft:block/warped_button", + "x": 180 + }, + "face=ceiling,facing=south,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "x": 180 + }, + "face=ceiling,facing=west,powered=false": { + "model": "minecraft:block/warped_button", + "x": 180, + "y": 90 + }, + "face=ceiling,facing=west,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "x": 180, + "y": 90 + }, + "face=floor,facing=east,powered=false": { + "model": "minecraft:block/warped_button", + "y": 90 + }, + "face=floor,facing=east,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "y": 90 + }, + "face=floor,facing=north,powered=false": { + "model": "minecraft:block/warped_button" + }, + "face=floor,facing=north,powered=true": { + "model": "minecraft:block/warped_button_pressed" + }, + "face=floor,facing=south,powered=false": { + "model": "minecraft:block/warped_button", + "y": 180 + }, + "face=floor,facing=south,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "y": 180 + }, + "face=floor,facing=west,powered=false": { + "model": "minecraft:block/warped_button", + "y": 270 + }, + "face=floor,facing=west,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "y": 270 + }, + "face=wall,facing=east,powered=false": { + "model": "minecraft:block/warped_button", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=east,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "uvlock": true, + "x": 90, + "y": 90 + }, + "face=wall,facing=north,powered=false": { + "model": "minecraft:block/warped_button", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=north,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "uvlock": true, + "x": 90 + }, + "face=wall,facing=south,powered=false": { + "model": "minecraft:block/warped_button", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=south,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "uvlock": true, + "x": 90, + "y": 180 + }, + "face=wall,facing=west,powered=false": { + "model": "minecraft:block/warped_button", + "uvlock": true, + "x": 90, + "y": 270 + }, + "face=wall,facing=west,powered=true": { + "model": "minecraft:block/warped_button_pressed", + "uvlock": true, + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_door.json new file mode 100644 index 000000000..0870eaa45 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/warped_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/warped_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/warped_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/warped_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/warped_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/warped_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/warped_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/warped_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/warped_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/warped_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/warped_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/warped_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/warped_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/warped_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/warped_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/warped_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/warped_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/warped_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/warped_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/warped_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/warped_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/warped_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/warped_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/warped_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/warped_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/warped_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/warped_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/warped_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/warped_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/warped_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/warped_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/warped_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_fence.json new file mode 100644 index 000000000..964b26f8b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/warped_fence_post" + } + }, + { + "apply": { + "model": "minecraft:block/warped_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/warped_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/warped_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/warped_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_fence_gate.json new file mode 100644 index 000000000..2688cc955 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "minecraft:block/warped_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "minecraft:block/warped_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "minecraft:block/warped_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "minecraft:block/warped_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "minecraft:block/warped_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "minecraft:block/warped_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "minecraft:block/warped_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "minecraft:block/warped_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "minecraft:block/warped_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "minecraft:block/warped_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "minecraft:block/warped_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "minecraft:block/warped_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "minecraft:block/warped_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "minecraft:block/warped_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "minecraft:block/warped_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "minecraft:block/warped_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_fungus.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_fungus.json new file mode 100644 index 000000000..49ebfb005 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_fungus.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_fungus" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_hanging_sign.json new file mode 100644 index 000000000..512f8e6c5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_hyphae.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_hyphae.json new file mode 100644 index 000000000..a96fcb852 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_hyphae.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/warped_hyphae", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/warped_hyphae" + }, + "axis=z": { + "model": "minecraft:block/warped_hyphae", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_nylium.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_nylium.json new file mode 100644 index 000000000..f9f4ca89e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_nylium.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_nylium" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_planks.json new file mode 100644 index 000000000..e2d95a728 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_planks" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_pressure_plate.json new file mode 100644 index 000000000..9c3d2d39d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_pressure_plate.json @@ -0,0 +1,10 @@ +{ + "variants": { + "powered=false": { + "model": "minecraft:block/warped_pressure_plate" + }, + "powered=true": { + "model": "minecraft:block/warped_pressure_plate_down" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_roots.json new file mode 100644 index 000000000..7e575051c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_roots.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_roots" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_shelf.json new file mode 100644 index 000000000..725183241 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_shelf.json @@ -0,0 +1,402 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/warped_shelf" + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf", + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf", + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf", + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_unpowered" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_unpowered", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_unpowered", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_unpowered", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "false" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_unconnected" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_unconnected", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_unconnected", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_unconnected", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "unconnected" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_left" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_left", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_left", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_left", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "left" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_center" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_center", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_center", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_center", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "center" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_right" + }, + "when": { + "AND": [ + { + "facing": "north" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_right", + "y": 90 + }, + "when": { + "AND": [ + { + "facing": "east" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_right", + "y": 180 + }, + "when": { + "AND": [ + { + "facing": "south" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + }, + { + "apply": { + "model": "minecraft:block/warped_shelf_right", + "y": 270 + }, + "when": { + "AND": [ + { + "facing": "west" + }, + { + "powered": "true" + }, + { + "side_chain": "right" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_sign.json new file mode 100644 index 000000000..73befe6b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_slab.json new file mode 100644 index 000000000..012d24708 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/warped_slab" + }, + "type=double": { + "model": "minecraft:block/warped_planks" + }, + "type=top": { + "model": "minecraft:block/warped_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_stairs.json new file mode 100644 index 000000000..a94c42ec9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/warped_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/warped_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/warped_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/warped_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/warped_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/warped_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/warped_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/warped_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/warped_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/warped_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/warped_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/warped_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/warped_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/warped_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_stem.json new file mode 100644 index 000000000..5726b9a45 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_stem.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/warped_stem", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/warped_stem" + }, + "axis=z": { + "model": "minecraft:block/warped_stem", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_trapdoor.json new file mode 100644 index 000000000..16d8a5ee1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_trapdoor.json @@ -0,0 +1,68 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/warped_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/warped_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/warped_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/warped_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/warped_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/warped_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/warped_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/warped_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/warped_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/warped_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/warped_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/warped_trapdoor_open", + "x": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/warped_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/warped_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/warped_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/warped_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_wall_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_wall_hanging_sign.json new file mode 100644 index 000000000..512f8e6c5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_wall_hanging_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_hanging_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_wall_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_wall_sign.json new file mode 100644 index 000000000..73befe6b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_wall_sign.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_sign" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_wart_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_wart_block.json new file mode 100644 index 000000000..6ebede614 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/warped_wart_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/warped_wart_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/water.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/water.json new file mode 100644 index 000000000..99fd360b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/water.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/water" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/water_cauldron.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/water_cauldron.json new file mode 100644 index 000000000..130d7b6b9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/water_cauldron.json @@ -0,0 +1,13 @@ +{ + "variants": { + "level=1": { + "model": "minecraft:block/water_cauldron_level1" + }, + "level=2": { + "model": "minecraft:block/water_cauldron_level2" + }, + "level=3": { + "model": "minecraft:block/water_cauldron_full" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_chiseled_copper.json new file mode 100644 index 000000000..6b2ccc853 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_chiseled_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/chiseled_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_bars.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_bars.json new file mode 100644 index 000000000..bb8a4c059 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_bars.json @@ -0,0 +1,100 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/copper_bars_post_ends" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_post" + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_cap" + }, + "when": { + "east": "false", + "north": "true", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_cap", + "y": 90 + }, + "when": { + "east": "true", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_cap_alt" + }, + "when": { + "east": "false", + "north": "false", + "south": "true", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_cap_alt", + "y": 90 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/copper_bars_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_block.json new file mode 100644 index 000000000..b440184df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/copper_block" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_bulb.json new file mode 100644 index 000000000..5929d9b4f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_bulb.json @@ -0,0 +1,16 @@ +{ + "variants": { + "lit=false,powered=false": { + "model": "minecraft:block/copper_bulb" + }, + "lit=false,powered=true": { + "model": "minecraft:block/copper_bulb_powered" + }, + "lit=true,powered=false": { + "model": "minecraft:block/copper_bulb_lit" + }, + "lit=true,powered=true": { + "model": "minecraft:block/copper_bulb_lit_powered" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_chain.json new file mode 100644 index 000000000..7ce1e4677 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_chain.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/copper_chain", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/copper_chain" + }, + "axis=z": { + "model": "minecraft:block/copper_chain", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_chest.json new file mode 100644 index 000000000..5b9827485 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_chest.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/copper_chest" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_door.json new file mode 100644 index 000000000..44dcbdef4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/copper_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/copper_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/copper_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/copper_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/copper_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/copper_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/copper_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/copper_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/copper_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/copper_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/copper_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/copper_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/copper_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/copper_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/copper_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/copper_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/copper_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/copper_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/copper_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/copper_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/copper_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/copper_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/copper_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/copper_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/copper_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/copper_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/copper_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/copper_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/copper_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/copper_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/copper_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/copper_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_golem_statue.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_golem_statue.json new file mode 100644 index 000000000..3542086be --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_golem_statue.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/copper_golem_statue" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_grate.json new file mode 100644 index 000000000..2f7bc9ec3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_grate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/copper_grate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_lantern.json new file mode 100644 index 000000000..c203499cc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_lantern.json @@ -0,0 +1,10 @@ +{ + "variants": { + "hanging=false": { + "model": "minecraft:block/copper_lantern" + }, + "hanging=true": { + "model": "minecraft:block/copper_lantern_hanging" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_trapdoor.json new file mode 100644 index 000000000..837c01b9e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_copper_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/copper_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/copper_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/copper_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/copper_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/copper_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/copper_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/copper_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/copper_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/copper_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/copper_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/copper_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper.json new file mode 100644 index 000000000..2105f293c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/cut_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper_slab.json new file mode 100644 index 000000000..31d149b52 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/cut_copper_slab" + }, + "type=double": { + "model": "minecraft:block/cut_copper" + }, + "type=top": { + "model": "minecraft:block/cut_copper_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper_stairs.json new file mode 100644 index 000000000..95160aaf1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_cut_copper_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/cut_copper_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_chiseled_copper.json new file mode 100644 index 000000000..3b87926a4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_chiseled_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper.json new file mode 100644 index 000000000..ed711e799 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_bars.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_bars.json new file mode 100644 index 000000000..073eb49f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_bars.json @@ -0,0 +1,100 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_post_ends" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_post" + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_cap" + }, + "when": { + "east": "false", + "north": "true", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_cap", + "y": 90 + }, + "when": { + "east": "true", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_cap_alt" + }, + "when": { + "east": "false", + "north": "false", + "south": "true", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_cap_alt", + "y": 90 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/exposed_copper_bars_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_bulb.json new file mode 100644 index 000000000..203fd0f56 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_bulb.json @@ -0,0 +1,16 @@ +{ + "variants": { + "lit=false,powered=false": { + "model": "minecraft:block/exposed_copper_bulb" + }, + "lit=false,powered=true": { + "model": "minecraft:block/exposed_copper_bulb_powered" + }, + "lit=true,powered=false": { + "model": "minecraft:block/exposed_copper_bulb_lit" + }, + "lit=true,powered=true": { + "model": "minecraft:block/exposed_copper_bulb_lit_powered" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_chain.json new file mode 100644 index 000000000..a12255475 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_chain.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/exposed_copper_chain", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/exposed_copper_chain" + }, + "axis=z": { + "model": "minecraft:block/exposed_copper_chain", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_chest.json new file mode 100644 index 000000000..e5660dd10 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_chest.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_copper_chest" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_door.json new file mode 100644 index 000000000..f4f304897 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/exposed_copper_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/exposed_copper_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/exposed_copper_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/exposed_copper_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_golem_statue.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_golem_statue.json new file mode 100644 index 000000000..5f532af5a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_golem_statue.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_copper_golem_statue" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_grate.json new file mode 100644 index 000000000..49a6446fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_grate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_copper_grate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_lantern.json new file mode 100644 index 000000000..f9db3c2d0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_lantern.json @@ -0,0 +1,10 @@ +{ + "variants": { + "hanging=false": { + "model": "minecraft:block/exposed_copper_lantern" + }, + "hanging=true": { + "model": "minecraft:block/exposed_copper_lantern_hanging" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_trapdoor.json new file mode 100644 index 000000000..e8734ba35 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_copper_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/exposed_copper_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/exposed_copper_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper.json new file mode 100644 index 000000000..3b465b0bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/exposed_cut_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper_slab.json new file mode 100644 index 000000000..81b09c734 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/exposed_cut_copper_slab" + }, + "type=double": { + "model": "minecraft:block/exposed_cut_copper" + }, + "type=top": { + "model": "minecraft:block/exposed_cut_copper_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper_stairs.json new file mode 100644 index 000000000..f9863f6c8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_cut_copper_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/exposed_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/exposed_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_lightning_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_lightning_rod.json new file mode 100644 index 000000000..1d675ca10 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_exposed_lightning_rod.json @@ -0,0 +1,56 @@ +{ + "variants": { + "facing=down,powered=false": { + "model": "minecraft:block/exposed_lightning_rod", + "x": 180 + }, + "facing=down,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 180 + }, + "facing=east,powered=false": { + "model": "minecraft:block/exposed_lightning_rod", + "x": 90, + "y": 90 + }, + "facing=east,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 90 + }, + "facing=north,powered=false": { + "model": "minecraft:block/exposed_lightning_rod", + "x": 90 + }, + "facing=north,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90 + }, + "facing=south,powered=false": { + "model": "minecraft:block/exposed_lightning_rod", + "x": 90, + "y": 180 + }, + "facing=south,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 180 + }, + "facing=up,powered=false": { + "model": "minecraft:block/exposed_lightning_rod" + }, + "facing=up,powered=true": { + "model": "minecraft:block/lightning_rod_on" + }, + "facing=west,powered=false": { + "model": "minecraft:block/exposed_lightning_rod", + "x": 90, + "y": 270 + }, + "facing=west,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_lightning_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_lightning_rod.json new file mode 100644 index 000000000..df0e7c466 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_lightning_rod.json @@ -0,0 +1,56 @@ +{ + "variants": { + "facing=down,powered=false": { + "model": "minecraft:block/lightning_rod", + "x": 180 + }, + "facing=down,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 180 + }, + "facing=east,powered=false": { + "model": "minecraft:block/lightning_rod", + "x": 90, + "y": 90 + }, + "facing=east,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 90 + }, + "facing=north,powered=false": { + "model": "minecraft:block/lightning_rod", + "x": 90 + }, + "facing=north,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90 + }, + "facing=south,powered=false": { + "model": "minecraft:block/lightning_rod", + "x": 90, + "y": 180 + }, + "facing=south,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 180 + }, + "facing=up,powered=false": { + "model": "minecraft:block/lightning_rod" + }, + "facing=up,powered=true": { + "model": "minecraft:block/lightning_rod_on" + }, + "facing=west,powered=false": { + "model": "minecraft:block/lightning_rod", + "x": 90, + "y": 270 + }, + "facing=west,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_chiseled_copper.json new file mode 100644 index 000000000..ea362c155 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_chiseled_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper.json new file mode 100644 index 000000000..d7ce62512 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_bars.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_bars.json new file mode 100644 index 000000000..9aae498f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_bars.json @@ -0,0 +1,100 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_post_ends" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_post" + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_cap" + }, + "when": { + "east": "false", + "north": "true", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_cap", + "y": 90 + }, + "when": { + "east": "true", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_cap_alt" + }, + "when": { + "east": "false", + "north": "false", + "south": "true", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_cap_alt", + "y": 90 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/oxidized_copper_bars_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_bulb.json new file mode 100644 index 000000000..1e58f046b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_bulb.json @@ -0,0 +1,16 @@ +{ + "variants": { + "lit=false,powered=false": { + "model": "minecraft:block/oxidized_copper_bulb" + }, + "lit=false,powered=true": { + "model": "minecraft:block/oxidized_copper_bulb_powered" + }, + "lit=true,powered=false": { + "model": "minecraft:block/oxidized_copper_bulb_lit" + }, + "lit=true,powered=true": { + "model": "minecraft:block/oxidized_copper_bulb_lit_powered" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_chain.json new file mode 100644 index 000000000..583c80d31 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_chain.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/oxidized_copper_chain", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/oxidized_copper_chain" + }, + "axis=z": { + "model": "minecraft:block/oxidized_copper_chain", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_chest.json new file mode 100644 index 000000000..7bd5acd27 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_chest.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_copper_chest" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_door.json new file mode 100644 index 000000000..2cb098048 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/oxidized_copper_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/oxidized_copper_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_golem_statue.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_golem_statue.json new file mode 100644 index 000000000..d07f9c043 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_golem_statue.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_copper_golem_statue" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_grate.json new file mode 100644 index 000000000..e8039a9a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_grate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_copper_grate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_lantern.json new file mode 100644 index 000000000..22bc9f99c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_lantern.json @@ -0,0 +1,10 @@ +{ + "variants": { + "hanging=false": { + "model": "minecraft:block/oxidized_copper_lantern" + }, + "hanging=true": { + "model": "minecraft:block/oxidized_copper_lantern_hanging" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_trapdoor.json new file mode 100644 index 000000000..c5ceb4cd7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_copper_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/oxidized_copper_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/oxidized_copper_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper.json new file mode 100644 index 000000000..58bf24a1c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/oxidized_cut_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper_slab.json new file mode 100644 index 000000000..e91b8c962 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/oxidized_cut_copper_slab" + }, + "type=double": { + "model": "minecraft:block/oxidized_cut_copper" + }, + "type=top": { + "model": "minecraft:block/oxidized_cut_copper_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper_stairs.json new file mode 100644 index 000000000..5b79a1e8b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_cut_copper_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/oxidized_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/oxidized_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_lightning_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_lightning_rod.json new file mode 100644 index 000000000..b65b4145d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_oxidized_lightning_rod.json @@ -0,0 +1,56 @@ +{ + "variants": { + "facing=down,powered=false": { + "model": "minecraft:block/oxidized_lightning_rod", + "x": 180 + }, + "facing=down,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 180 + }, + "facing=east,powered=false": { + "model": "minecraft:block/oxidized_lightning_rod", + "x": 90, + "y": 90 + }, + "facing=east,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 90 + }, + "facing=north,powered=false": { + "model": "minecraft:block/oxidized_lightning_rod", + "x": 90 + }, + "facing=north,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90 + }, + "facing=south,powered=false": { + "model": "minecraft:block/oxidized_lightning_rod", + "x": 90, + "y": 180 + }, + "facing=south,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 180 + }, + "facing=up,powered=false": { + "model": "minecraft:block/oxidized_lightning_rod" + }, + "facing=up,powered=true": { + "model": "minecraft:block/lightning_rod_on" + }, + "facing=west,powered=false": { + "model": "minecraft:block/oxidized_lightning_rod", + "x": 90, + "y": 270 + }, + "facing=west,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_chiseled_copper.json new file mode 100644 index 000000000..473fa8cba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_chiseled_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper.json new file mode 100644 index 000000000..a1be23f64 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_bars.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_bars.json new file mode 100644 index 000000000..36faa039e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_bars.json @@ -0,0 +1,100 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_post_ends" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_post" + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_cap" + }, + "when": { + "east": "false", + "north": "true", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_cap", + "y": 90 + }, + "when": { + "east": "true", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_cap_alt" + }, + "when": { + "east": "false", + "north": "false", + "south": "true", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_cap_alt", + "y": 90 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_bulb.json new file mode 100644 index 000000000..9a5a6847f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_bulb.json @@ -0,0 +1,16 @@ +{ + "variants": { + "lit=false,powered=false": { + "model": "minecraft:block/weathered_copper_bulb" + }, + "lit=false,powered=true": { + "model": "minecraft:block/weathered_copper_bulb_powered" + }, + "lit=true,powered=false": { + "model": "minecraft:block/weathered_copper_bulb_lit" + }, + "lit=true,powered=true": { + "model": "minecraft:block/weathered_copper_bulb_lit_powered" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_chain.json new file mode 100644 index 000000000..770c99d70 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_chain.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/weathered_copper_chain", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/weathered_copper_chain" + }, + "axis=z": { + "model": "minecraft:block/weathered_copper_chain", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_chest.json new file mode 100644 index 000000000..97eb65ee3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_chest.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_copper_chest" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_door.json new file mode 100644 index 000000000..168213cd4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_golem_statue.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_golem_statue.json new file mode 100644 index 000000000..baa4a5e5e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_golem_statue.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_copper_golem_statue" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_grate.json new file mode 100644 index 000000000..cb7e161ef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_grate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_copper_grate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_lantern.json new file mode 100644 index 000000000..5419baf69 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_lantern.json @@ -0,0 +1,10 @@ +{ + "variants": { + "hanging=false": { + "model": "minecraft:block/weathered_copper_lantern" + }, + "hanging=true": { + "model": "minecraft:block/weathered_copper_lantern_hanging" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_trapdoor.json new file mode 100644 index 000000000..3143d484a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_copper_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper.json new file mode 100644 index 000000000..397060505 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_cut_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper_slab.json new file mode 100644 index 000000000..d13942edd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/weathered_cut_copper_slab" + }, + "type=double": { + "model": "minecraft:block/weathered_cut_copper" + }, + "type=top": { + "model": "minecraft:block/weathered_cut_copper_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper_stairs.json new file mode 100644 index 000000000..aff6eadd9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_cut_copper_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_lightning_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_lightning_rod.json new file mode 100644 index 000000000..d31856fed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/waxed_weathered_lightning_rod.json @@ -0,0 +1,56 @@ +{ + "variants": { + "facing=down,powered=false": { + "model": "minecraft:block/weathered_lightning_rod", + "x": 180 + }, + "facing=down,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 180 + }, + "facing=east,powered=false": { + "model": "minecraft:block/weathered_lightning_rod", + "x": 90, + "y": 90 + }, + "facing=east,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 90 + }, + "facing=north,powered=false": { + "model": "minecraft:block/weathered_lightning_rod", + "x": 90 + }, + "facing=north,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90 + }, + "facing=south,powered=false": { + "model": "minecraft:block/weathered_lightning_rod", + "x": 90, + "y": 180 + }, + "facing=south,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 180 + }, + "facing=up,powered=false": { + "model": "minecraft:block/weathered_lightning_rod" + }, + "facing=up,powered=true": { + "model": "minecraft:block/lightning_rod_on" + }, + "facing=west,powered=false": { + "model": "minecraft:block/weathered_lightning_rod", + "x": 90, + "y": 270 + }, + "facing=west,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_chiseled_copper.json new file mode 100644 index 000000000..473fa8cba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_chiseled_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper.json new file mode 100644 index 000000000..a1be23f64 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_bars.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_bars.json new file mode 100644 index 000000000..36faa039e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_bars.json @@ -0,0 +1,100 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_post_ends" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_post" + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_cap" + }, + "when": { + "east": "false", + "north": "true", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_cap", + "y": 90 + }, + "when": { + "east": "true", + "north": "false", + "south": "false", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_cap_alt" + }, + "when": { + "east": "false", + "north": "false", + "south": "true", + "west": "false" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_cap_alt", + "y": 90 + }, + "when": { + "east": "false", + "north": "false", + "south": "false", + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/weathered_copper_bars_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_bulb.json new file mode 100644 index 000000000..9a5a6847f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_bulb.json @@ -0,0 +1,16 @@ +{ + "variants": { + "lit=false,powered=false": { + "model": "minecraft:block/weathered_copper_bulb" + }, + "lit=false,powered=true": { + "model": "minecraft:block/weathered_copper_bulb_powered" + }, + "lit=true,powered=false": { + "model": "minecraft:block/weathered_copper_bulb_lit" + }, + "lit=true,powered=true": { + "model": "minecraft:block/weathered_copper_bulb_lit_powered" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_chain.json new file mode 100644 index 000000000..770c99d70 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_chain.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "minecraft:block/weathered_copper_chain", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "minecraft:block/weathered_copper_chain" + }, + "axis=z": { + "model": "minecraft:block/weathered_copper_chain", + "x": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_chest.json new file mode 100644 index 000000000..97eb65ee3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_chest.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_copper_chest" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_door.json new file mode 100644 index 000000000..168213cd4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "minecraft:block/weathered_copper_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "minecraft:block/weathered_copper_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "minecraft:block/weathered_copper_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "minecraft:block/weathered_copper_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_golem_statue.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_golem_statue.json new file mode 100644 index 000000000..baa4a5e5e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_golem_statue.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_copper_golem_statue" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_grate.json new file mode 100644 index 000000000..cb7e161ef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_grate.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_copper_grate" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_lantern.json new file mode 100644 index 000000000..5419baf69 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_lantern.json @@ -0,0 +1,10 @@ +{ + "variants": { + "hanging=false": { + "model": "minecraft:block/weathered_copper_lantern" + }, + "hanging=true": { + "model": "minecraft:block/weathered_copper_lantern_hanging" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_trapdoor.json new file mode 100644 index 000000000..3143d484a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_copper_trapdoor.json @@ -0,0 +1,58 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + }, + "facing=east,half=bottom,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_top" + }, + "facing=east,half=top,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 90 + }, + "facing=north,half=bottom,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open" + }, + "facing=south,half=bottom,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + }, + "facing=south,half=bottom,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_top" + }, + "facing=south,half=top,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 180 + }, + "facing=west,half=bottom,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_bottom" + }, + "facing=west,half=bottom,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "minecraft:block/weathered_copper_trapdoor_top" + }, + "facing=west,half=top,open=true": { + "model": "minecraft:block/weathered_copper_trapdoor_open", + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper.json new file mode 100644 index 000000000..397060505 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weathered_cut_copper" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper_slab.json new file mode 100644 index 000000000..d13942edd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "minecraft:block/weathered_cut_copper_slab" + }, + "type=double": { + "model": "minecraft:block/weathered_cut_copper" + }, + "type=top": { + "model": "minecraft:block/weathered_cut_copper_slab_top" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper_stairs.json new file mode 100644 index 000000000..aff6eadd9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_cut_copper_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "minecraft:block/weathered_cut_copper_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "minecraft:block/weathered_cut_copper_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_lightning_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_lightning_rod.json new file mode 100644 index 000000000..d31856fed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weathered_lightning_rod.json @@ -0,0 +1,56 @@ +{ + "variants": { + "facing=down,powered=false": { + "model": "minecraft:block/weathered_lightning_rod", + "x": 180 + }, + "facing=down,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 180 + }, + "facing=east,powered=false": { + "model": "minecraft:block/weathered_lightning_rod", + "x": 90, + "y": 90 + }, + "facing=east,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 90 + }, + "facing=north,powered=false": { + "model": "minecraft:block/weathered_lightning_rod", + "x": 90 + }, + "facing=north,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90 + }, + "facing=south,powered=false": { + "model": "minecraft:block/weathered_lightning_rod", + "x": 90, + "y": 180 + }, + "facing=south,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 180 + }, + "facing=up,powered=false": { + "model": "minecraft:block/weathered_lightning_rod" + }, + "facing=up,powered=true": { + "model": "minecraft:block/lightning_rod_on" + }, + "facing=west,powered=false": { + "model": "minecraft:block/weathered_lightning_rod", + "x": 90, + "y": 270 + }, + "facing=west,powered=true": { + "model": "minecraft:block/lightning_rod_on", + "x": 90, + "y": 270 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weeping_vines.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weeping_vines.json new file mode 100644 index 000000000..cbcbec387 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weeping_vines.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weeping_vines" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weeping_vines_plant.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weeping_vines_plant.json new file mode 100644 index 000000000..ff13a3d4b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/weeping_vines_plant.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/weeping_vines_plant" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wet_sponge.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wet_sponge.json new file mode 100644 index 000000000..2a448bf72 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wet_sponge.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/wet_sponge" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wheat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wheat.json new file mode 100644 index 000000000..79f427397 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wheat.json @@ -0,0 +1,28 @@ +{ + "variants": { + "age=0": { + "model": "minecraft:block/wheat_stage0" + }, + "age=1": { + "model": "minecraft:block/wheat_stage1" + }, + "age=2": { + "model": "minecraft:block/wheat_stage2" + }, + "age=3": { + "model": "minecraft:block/wheat_stage3" + }, + "age=4": { + "model": "minecraft:block/wheat_stage4" + }, + "age=5": { + "model": "minecraft:block/wheat_stage5" + }, + "age=6": { + "model": "minecraft:block/wheat_stage6" + }, + "age=7": { + "model": "minecraft:block/wheat_stage7" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_candle.json new file mode 100644 index 000000000..a42b36c9a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/white_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/white_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/white_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/white_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/white_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/white_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/white_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/white_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_candle_cake.json new file mode 100644 index 000000000..e50830a6b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/white_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/white_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_carpet.json new file mode 100644 index 000000000..afde63818 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/white_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_concrete.json new file mode 100644 index 000000000..5ce10cd26 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/white_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_concrete_powder.json new file mode 100644 index 000000000..66cfe5e10 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/white_concrete_powder" + }, + { + "model": "minecraft:block/white_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/white_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/white_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_glazed_terracotta.json new file mode 100644 index 000000000..8c64ce09f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/white_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/white_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/white_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/white_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_shulker_box.json new file mode 100644 index 000000000..36973a4db --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/white_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_stained_glass.json new file mode 100644 index 000000000..2fc6c58c9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/white_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_stained_glass_pane.json new file mode 100644 index 000000000..247883a67 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/white_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_terracotta.json new file mode 100644 index 000000000..184ea8087 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/white_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_tulip.json new file mode 100644 index 000000000..a5d01edbe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_tulip.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/white_tulip" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_wall_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_wool.json new file mode 100644 index 000000000..3c23fc093 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/white_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/white_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wildflowers.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wildflowers.json new file mode 100644 index 000000000..3a2829ef2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wildflowers.json @@ -0,0 +1,156 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/wildflowers_1" + }, + "when": { + "facing": "north" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_1", + "y": 90 + }, + "when": { + "facing": "east" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_1", + "y": 180 + }, + "when": { + "facing": "south" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_1", + "y": 270 + }, + "when": { + "facing": "west" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_2" + }, + "when": { + "facing": "north", + "flower_amount": "2|3|4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_2", + "y": 90 + }, + "when": { + "facing": "east", + "flower_amount": "2|3|4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_2", + "y": 180 + }, + "when": { + "facing": "south", + "flower_amount": "2|3|4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_2", + "y": 270 + }, + "when": { + "facing": "west", + "flower_amount": "2|3|4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_3" + }, + "when": { + "facing": "north", + "flower_amount": "3|4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_3", + "y": 90 + }, + "when": { + "facing": "east", + "flower_amount": "3|4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_3", + "y": 180 + }, + "when": { + "facing": "south", + "flower_amount": "3|4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_3", + "y": 270 + }, + "when": { + "facing": "west", + "flower_amount": "3|4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_4" + }, + "when": { + "facing": "north", + "flower_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_4", + "y": 90 + }, + "when": { + "facing": "east", + "flower_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_4", + "y": 180 + }, + "when": { + "facing": "south", + "flower_amount": "4" + } + }, + { + "apply": { + "model": "minecraft:block/wildflowers_4", + "y": 270 + }, + "when": { + "facing": "west", + "flower_amount": "4" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wither_rose.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wither_rose.json new file mode 100644 index 000000000..f0175194a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wither_rose.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/wither_rose" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wither_skeleton_skull.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wither_skeleton_skull.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wither_skeleton_skull.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wither_skeleton_wall_skull.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wither_skeleton_wall_skull.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/wither_skeleton_wall_skull.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_bed.json new file mode 100644 index 000000000..6577c90a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_candle.json new file mode 100644 index 000000000..afe85e3c8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_candle.json @@ -0,0 +1,28 @@ +{ + "variants": { + "candles=1,lit=false": { + "model": "minecraft:block/yellow_candle_one_candle" + }, + "candles=1,lit=true": { + "model": "minecraft:block/yellow_candle_one_candle_lit" + }, + "candles=2,lit=false": { + "model": "minecraft:block/yellow_candle_two_candles" + }, + "candles=2,lit=true": { + "model": "minecraft:block/yellow_candle_two_candles_lit" + }, + "candles=3,lit=false": { + "model": "minecraft:block/yellow_candle_three_candles" + }, + "candles=3,lit=true": { + "model": "minecraft:block/yellow_candle_three_candles_lit" + }, + "candles=4,lit=false": { + "model": "minecraft:block/yellow_candle_four_candles" + }, + "candles=4,lit=true": { + "model": "minecraft:block/yellow_candle_four_candles_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_candle_cake.json new file mode 100644 index 000000000..c0e90bf14 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_candle_cake.json @@ -0,0 +1,10 @@ +{ + "variants": { + "lit=false": { + "model": "minecraft:block/yellow_candle_cake" + }, + "lit=true": { + "model": "minecraft:block/yellow_candle_cake_lit" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_carpet.json new file mode 100644 index 000000000..3586a2774 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/yellow_carpet" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_concrete.json new file mode 100644 index 000000000..92ca5a202 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_concrete.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/yellow_concrete" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_concrete_powder.json new file mode 100644 index 000000000..7b103da42 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "minecraft:block/yellow_concrete_powder" + }, + { + "model": "minecraft:block/yellow_concrete_powder", + "y": 90 + }, + { + "model": "minecraft:block/yellow_concrete_powder", + "y": 180 + }, + { + "model": "minecraft:block/yellow_concrete_powder", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_glazed_terracotta.json new file mode 100644 index 000000000..d4f7be2c3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_glazed_terracotta.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "minecraft:block/yellow_glazed_terracotta", + "y": 270 + }, + "facing=north": { + "model": "minecraft:block/yellow_glazed_terracotta", + "y": 180 + }, + "facing=south": { + "model": "minecraft:block/yellow_glazed_terracotta" + }, + "facing=west": { + "model": "minecraft:block/yellow_glazed_terracotta", + "y": 90 + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_shulker_box.json new file mode 100644 index 000000000..c2b02b98e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/yellow_shulker_box" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_stained_glass.json new file mode 100644 index 000000000..fdf0757ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_stained_glass.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/yellow_stained_glass" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_stained_glass_pane.json new file mode 100644 index 000000000..24cbfa52e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_stained_glass_pane.json @@ -0,0 +1,77 @@ +{ + "multipart": [ + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_post" + } + }, + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_side" + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_side", + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_side_alt" + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_side_alt", + "y": 90 + }, + "when": { + "west": "true" + } + }, + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_noside" + }, + "when": { + "north": "false" + } + }, + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_noside_alt" + }, + "when": { + "east": "false" + } + }, + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_noside_alt", + "y": 90 + }, + "when": { + "south": "false" + } + }, + { + "apply": { + "model": "minecraft:block/yellow_stained_glass_pane_noside", + "y": 270 + }, + "when": { + "west": "false" + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_terracotta.json new file mode 100644 index 000000000..4a2aca6bd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_terracotta.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/yellow_terracotta" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_wall_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_wall_banner.json new file mode 100644 index 000000000..f5e2c87f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_wall_banner.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/banner" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_wool.json new file mode 100644 index 000000000..1392ae513 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/yellow_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/yellow_wool" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/zombie_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/zombie_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/zombie_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/zombie_wall_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/zombie_wall_head.json new file mode 100644 index 000000000..3951e3eea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/blockstates/zombie_wall_head.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/alt.json new file mode 100644 index 000000000..0c7f8f38f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/alt.json @@ -0,0 +1,31 @@ +{ + "providers": [ + { + "type": "reference", + "id": "minecraft:include/space" + }, + { + "type": "bitmap", + "file": "minecraft:font/ascii_sga.png", + "ascent": 7, + "chars": [ + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0041\u0042\u0043\u0044\u0045\u0046\u0047\u0048\u0049\u004A\u004B\u004C\u004D\u004E\u004F", + "\u0050\u0051\u0052\u0053\u0054\u0055\u0056\u0057\u0058\u0059\u005A\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0061\u0062\u0063\u0064\u0065\u0066\u0067\u0068\u0069\u006A\u006B\u006C\u006D\u006E\u006F", + "\u0070\u0071\u0072\u0073\u0074\u0075\u0076\u0077\u0078\u0079\u007A\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + ] + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/default.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/default.json new file mode 100644 index 000000000..02db6465d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/default.json @@ -0,0 +1,19 @@ +{ + "providers": [ + { + "type": "reference", + "id": "minecraft:include/space" + }, + { + "type": "reference", + "id": "minecraft:include/default", + "filter": { + "uniform": false + } + }, + { + "type": "reference", + "id": "minecraft:include/unifont" + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/illageralt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/illageralt.json new file mode 100644 index 000000000..a2db2cd8d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/illageralt.json @@ -0,0 +1,20 @@ +{ + "providers": [ + { + "type": "reference", + "id": "minecraft:include/space" + }, + { + "type": "bitmap", + "file": "minecraft:font/asciillager.png", + "ascent": 7, + "chars": [ + "\u0021\u002C\u002D\u002E\u0030\u0031\u0032\u0033\u0034\u0035\u0036\u0037\u0038\u0039\u003F\u0061", + "\u0062\u0063\u0064\u0065\u0066\u0067\u0068\u0069\u006A\u006B\u006C\u006D\u006E\u006F\u0070\u0071", + "\u0072\u0073\u0074\u0075\u0076\u0077\u0078\u0079\u007A\u0041\u0042\u0043\u0044\u0045\u0046\u0047", + "\u0048\u0049\u004A\u004B\u004C\u004D\u004E\u004F\u0050\u0051\u0052\u0053\u0054\u0055\u0056\u0057", + "\u0058\u0059\u005A\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + ] + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/include/default.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/include/default.json new file mode 100644 index 000000000..65c200eb1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/include/default.json @@ -0,0 +1,184 @@ +{ + "providers": [ + { + "type": "bitmap", + "file": "minecraft:font/nonlatin_european.png", + "ascent": 7, + "chars": [ + "\u00a1\u2030\u00ad\u00b7\u20b4\u2260\u00bf\u00d7\u00d8\u00de\u04bb\u00f0\u00f8\u00fe\u0391\u0392", + "\u0393\u0394\u0395\u0396\u0397\u0398\u0399\u039a\u039b\u039c\u039d\u039e\u039f\u03a0\u03a1\u03a3", + "\u03a4\u03a5\u03a6\u03a7\u03a8\u03a9\u03b1\u03b2\u03b3\u03b4\u03b5\u03b6\u03b7\u03b8\u03b9\u03ba", + "\u03bb\u03bc\u03bd\u03be\u03bf\u03c0\u03c1\u03c2\u03c3\u03c4\u03c5\u03c6\u03c7\u03c8\u03c9\u0402", + "\u0405\u0406\u0408\u0409\u040a\u040b\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u041a", + "\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a", + "\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u043a\u043b", + "\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b", + "\u044c\u044d\u044e\u044f\u0454\u0455\u0456\u0458\u0459\u045a\u2013\u2014\u2018\u2019\u201c\u201d", + "\u201e\u2026\u204a\u2190\u2191\u2192\u2193\u21c4\uff0b\u018f\u0259\u025b\u026a\u04ae\u04af\u04e8", + "\u04e9\u02bb\u02cc\u037e\u0138\u1e9e\u00df\u20bd\u20ac\u0462\u0463\u0474\u0475\u04c0\u0472\u0473", + "\u2070\u00b9\u00b3\u2074\u2075\u2076\u2077\u2078\u2079\u207a\u207b\u207c\u207d\u207e\u2071\u2122", + "\u0294\u0295\u29c8\u2694\u2620\u049a\u049b\u0492\u0493\u04b0\u04b1\u04d8\u04d9\u0496\u0497\u04a2", + "\u04a3\u04ba\u05d0\u05d1\u05d2\u05d3\u05d4\u05d5\u05d6\u05d7\u05d8\u05d9\u05db\u05dc\u05de\u05dd", + "\u05e0\u05df\u05e1\u05e2\u05e4\u05e3\u05e6\u05e5\u05e7\u05e8\u00a2\u00a4\u00a5\u00a9\u00ae\u00b5", + "\u00b6\u00bc\u00bd\u00be\u0387\u2010\u201a\u2020\u2021\u2022\u2031\u2032\u2033\u2034\u2035\u2036", + "\u2037\u2039\u203a\u203b\u203c\u203d\u2042\u2048\u2049\u204b\u204e\u204f\u2051\u2052\u2057\u2117", + "\u2212\u2213\u221e\u2600\u2601\u2608\u0404\u2632\u2635\u263d\u2640\u2642\u26a5\u2660\u2663\u2665", + "\u2666\u2669\u266a\u266b\u266c\u266d\u266e\u266f\u2680\u2681\u2682\u2683\u2684\u2685\u02ac\u26a1", + "\u26cf\u2714\u2744\u274c\u2764\u2b50\u2e18\u2e2e\u2e35\u2e38\u2e41\u2e4b\u295d\u1614\u0190\u07c8", + "\u03db\u3125\u2c6f\u15fa\u0186\u15e1\u018e\u2132\u2141\ua7b0\ua780\u0500\ua779\u1d1a\u27d8\u2229", + "\u0245\u2144\u0250\u0254\u01dd\u025f\u1d77\u0265\u1d09\u027e\u029e\ua781\u026f\u0279\u0287\u028c", + "\u028d\u028e\u0531\u0532\u0533\u0534\u0536\u0537\u0539\u053a\u053b\u053c\u053d\u053e\u053f\u0540", + "\u0541\u0542\u0543\u0544\u0545\u0546\u0547\u0548\u0549\u054b\u054c\u054d\u054e\u054f\u0550\u0551", + "\u0552\u0553\u0554\u0555\u0556\u0559\u0561\u0562\u0563\u0564\u0565\u0566\u0567\u0568\u0569\u056a", + "\u056b\u056c\u056d\u056e\u056f\u0570\u0571\u0572\u0573\u0574\u0575\u0576\u0577\u0578\u0579\u057a", + "\u057b\u057c\u057d\u057e\u057f\u0580\u0581\u0582\u0583\u0584\u0585\u0586\u0587\u05e9\u05ea\u0538", + "\u055a\u055b\u055c\u055d\u055e\u055f\u0560\u0588\u058f\u00af\u017f\u01b7\u0292\u01f7\u01bf\u021c", + "\u021d\u0224\u0225\u02d9\ua75a\ua75b\u2011\u214b\u23cf\u23e9\u23ea\u23ed\u23ee\u23ef\u23f4\u23f5", + "\u23f6\u23f7\u23f8\u23f9\u23fa\u23fb\u23fc\u23fd\u2b58\u25b2\u25b6\u25bc\u25c0\u25cf\u25e6\u25d8", + "\u2693\u26e8\u0132\u0133\u01c9\ua728\ua729\ua739\ua73b\ufb00\ufb01\ufb02\ufb03\ufb05\ufffd\u0535", + "\u054a\u16a0\u16a2\u16a3\u16a4\u16a5\u16a6\u16a7\u16a8\u16a9\u16aa\u16ab\u16ac\u16ad\u16ae\u16af", + "\u16b0\u16b1\u16b2\u16b3\u16b4\u16b6\u16b7\u16b8\u16b9\u16ba\u16bb\u16bc\u16bd\u16be\u16bf\u16c0", + "\u16c1\u16c2\u16c3\u16c4\u16c5\u16c6\u16c7\u16c8\u16c9\u16ca\u16cb\u16cc\u16cd\u16ce\u16cf\u16d0", + "\u16d1\u16d2\u16d3\u16d4\u16d5\u16d6\u16d7\u16d8\u16d9\u16da\u16db\u16dc\u16dd\u16de\u16df\u16e0", + "\u16e1\u16e2\u16e3\u16e4\u16e5\u16e6\u16e7\u16e8\u16e9\u16ea\u16eb\u16ec\u16ed\u16ee\u16ef\u16f0", + "\u16f1\u16f2\u16f3\u16f4\u16f5\u16f6\u16f7\u16f8\u263a\u263b\u00a6\u2639\u05da\u05f3\u05f4\u05f0", + "\u05f1\u05f2\u05be\u05c3\u05c6\u00b4\u00a8\u1d00\u0299\u1d04\u1d05\u1d07\ua730\u0262\u029c\u1d0a", + "\u1d0b\u029f\u1d0d\u0274\u1d0f\u1d18\ua7af\u0280\ua731\u1d1b\u1d1c\u1d20\u1d21\u028f\u1d22\u00a7", + "\u0271\u0273\u0272\u0288\u0256\u0261\u02a1\u0255\u0291\u0278\u029d\u02a2\u027b\u0281\u0266\u028b", + "\u0270\u026c\u026e\u0298\u01c0\u01c3\u01c2\u01c1\u0253\u0257\u1d91\u0284\u0260\u029b\u0267\u026b", + "\u0268\u0289\u028a\u0258\u0275\u0264\u025c\u025e\u0251\u0252\u025a\u025d\u0181\u0189\u0191\u01a9", + "\u01b2\u10a0\u10a1\u10a2\u10a3\u10a4\u10a5\u10a6\u10a7\u10a8\u10a9\u10aa\u10ab\u10ac\u10ad\u10ae", + "\u10af\u10b0\u10b1\u10b2\u10b3\u10b4\u10b5\u10b6\u10b7\u10b8\u10b9\u10ba\u10bb\u10bc\u10bd\u10be", + "\u10bf\u10c0\u10c1\u10c2\u10c3\u10c4\u10c5\u10c7\u10cd\u10d0\u10d1\u10d2\u10d3\u10d4\u10d5\u10d6", + "\u10d7\u10d8\u10d9\u10da\u10db\u10dc\u10dd\u10de\u10df\u10e0\u10e1\u10e2\u10e3\u10e4\u10e5\u10e6", + "\u10e7\u10e8\u10e9\u10ea\u10eb\u10ec\u10ed\u10ee\u10ef\u10f0\u10f1\u10f2\u10f3\u10f4\u10f5\u10f6", + "\u10f7\u10f8\u10f9\u10fa\u10fb\u10fc\u10fd\u10fe\u10ff\ufb4a\ufb2b\ufb4e\ufb44\ufb3b\ufb1f\ufb1d", + "\ufb4b\ufb35\ufb4c\ufb31\ua727\ua726\u027a\u2c71\u02a0\u0297\u0296\u026d\u0277\u027f\u0285\u0286", + "\u0293\u029a\u20aa\u20be\u058a\u2d00\u2d01\u2d02\u2d03\u2d04\u2d05\u2d06\u2d21\u2d07\u2d08\u2d09", + "\u2d0a\u2d0b\u2d0c\u2d22\u2d0d\u2d0e\u2d0f\u2d10\u2d11\u2d12\u2d23\u2d13\u2d14\u2d15\u2d16\u2d17", + "\u2d18\u2d19\u2d1a\u2d1b\u2d1c\u2d1d\u2d1e\u2d24\u2d1f\u2d20\u2d25\u215b\u215c\u215d\u215e\u2153", + "\u2154\u2709\u2602\u2614\u2604\u26c4\u2603\u231b\u231a\u2690\u270e\u2763\u2664\u2667\u2661\u2662", + "\u26c8\u2630\u2631\u2633\u2634\u2636\u2637\u2194\u21d2\u21cf\u21d4\u21f5\u2200\u2203\u2204\u2209", + "\u220b\u220c\u2282\u2283\u2284\u2285\u2227\u2228\u22bb\u22bc\u22bd\u2225\u2262\u22c6\u2211\u22a4", + "\u22a5\u22a2\u22a8\u2254\u2201\u2234\u2235\u221b\u221c\u2202\u22c3\u2286\u2287\u25a1\u25b3\u25b7", + "\u25bd\u25c1\u25c6\u25c7\u25cb\u25ce\u2606\u2605\u2718\u2080\u2081\u2082\u2083\u2084\u2085\u2086", + "\u2087\u2088\u2089\u208a\u208b\u208c\u208d\u208e\u222b\u222e\u221d\u2300\u2302\u2318\u3012\u027c", + "\u0184\u0185\u1e9f\u023d\u019a\u019b\u0220\u019e\u019f\u01a7\u01a8\u01aa\u01b8\u01b9\u01bb\u01bc", + "\u01bd\u01be\u0221\u0234\u0235\u0236\u023a\u2c65\u023b\u023c\u0246\u0247\u023e\u2c66\u0241\u0242", + "\u0243\u0244\u0248\u0249\u024a\u024b\u024c\u024d\u024e\u024f\u1e9c\u1e9d\u1efc\u1efd\u1efe\u1eff", + "\ua7a8\ua7a9\ud800\udf30\ud800\udf31\ud800\udf32\ud800\udf33\ud800\udf34\ud800\udf35\ud800\udf36\ud800\udf37\ud800\udf38\ud800\udf39\ud800\udf3a\ud800\udf3b\ud800\udf3c\ud800\udf3d", + "\ud800\udf3e\ud800\udf3f\ud800\udf40\ud800\udf41\ud800\udf42\ud800\udf43\ud800\udf44\ud800\udf45\ud800\udf46\ud800\udf47\ud800\udf48\ud800\udf49\ud800\udf4a\ud83c\udf27\ud83d\udd25\ud83c\udf0a", + "\u2150\u2151\u2155\u2156\u2157\u2159\u215a\u215f\u2189\ud83d\udde1\ud83c\udff9\ud83e\ude93\ud83d\udd31\ud83c\udfa3\ud83e\uddea\u2697", + "\u2bea\u2beb\u2c6d\ud83d\udee1\u2702\ud83c\udf56\ud83e\udea3\ud83d\udd14\u23f3\u2691\u20a0\u20a1\u20a2\u20a3\u20a4\u20a5", + "\u20a6\u20a9\u20ab\u20ad\u20ae\u20b0\u20b1\u20b2\u20b3\u20b5\u20b6\u20b7\u20b8\u20b9\u20ba\u20bb", + "\u20bc\u20bf\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/accented.png", + "height": 12, + "ascent": 10, + "chars": [ + "\u00c0\u00c1\u00c2\u00c3\u00c4\u00c5\u00c6\u00c7\u00c8\u00c9\u00ca\u00cb\u00cc\u00cd\u00ce\u00cf", + "\u00d0\u00d1\u00d2\u00d3\u00d4\u00d5\u00d6\u00d9\u00da\u00db\u00dc\u00dd\u00e0\u00e1\u00e2\u00e3", + "\u00e4\u00e5\u00e6\u00e7\u00ec\u00ed\u00ee\u00ef\u00f1\u00f2\u00f3\u00f4\u00f5\u00f6\u00f9\u00fa", + "\u00fb\u00fc\u00fd\u00ff\u0100\u0101\u0102\u0103\u0104\u0105\u0106\u0107\u0108\u0109\u010a\u010b", + "\u010c\u010d\u010e\u010f\u0110\u0111\u0112\u0113\u0114\u0115\u0116\u0117\u0118\u0119\u011a\u011b", + "\u011c\u011d\u1e20\u1e21\u011e\u011f\u0120\u0121\u0122\u0123\u0124\u0125\u0126\u0127\u0128\u0129", + "\u012a\u012b\u012c\u012d\u012e\u012f\u0130\u0131\u0134\u0135\u0136\u0137\u0139\u013a\u013b\u013c", + "\u013d\u013e\u013f\u0140\u0141\u0142\u0143\u0144\u0145\u0146\u0147\u0148\u014a\u014b\u014c\u014d", + "\u014e\u014f\u0150\u0151\u0152\u0153\u0154\u0155\u0156\u0157\u0158\u0159\u015a\u015b\u015c\u015d", + "\u015e\u015f\u0160\u0161\u0162\u0163\u0164\u0165\u0166\u0167\u0168\u0169\u016a\u016b\u016c\u016d", + "\u016e\u016f\u0170\u0171\u0172\u0173\u0174\u0175\u0176\u0177\u0178\u0179\u017a\u017b\u017c\u017d", + "\u017e\u01fc\u01fd\u01fe\u01ff\u0218\u0219\u021a\u021b\u0386\u0388\u0389\u038a\u038c\u038e\u038f", + "\u0390\u03aa\u03ab\u03ac\u03ad\u03ae\u03af\u03b0\u03ca\u03cb\u03cc\u03cd\u03ce\u0400\u0401\u0403", + "\u0407\u040c\u040d\u040e\u0419\u0439\u0450\u0451\u0452\u0453\u0457\u045b\u045c\u045d\u045e\u045f", + "\u0490\u0491\u1e02\u1e03\u1e0a\u1e0b\u1e1e\u1e1f\u1e22\u1e23\u1e30\u1e31\u1e40\u1e41\u1e56\u1e57", + "\u1e60\u1e61\u1e6a\u1e6b\u1e80\u1e81\u1e82\u1e83\u1e84\u1e85\u1ef2\u1ef3\u00e8\u00e9\u00ea\u00eb", + "\u0149\u01e7\u01eb\u040f\u1e0d\u1e25\u1e5b\u1e6d\u1e92\u1eca\u1ecb\u1ecc\u1ecd\u1ee4\u1ee5\u2116", + "\u0207\u0194\u0263\u0283\u2047\u01f1\u01f2\u01f3\u01c4\u01c5\u01c6\u01c7\u01c8\u01ca\u01cb\u01cc", + "\u2139\u1d6b\ua732\ua733\ua734\ua735\ua736\ua737\ua738\ua73a\ua73c\ua73d\ua74e\ua74f\ua760\ua761", + "\ufb04\ufb06\u16a1\u16b5\u01a0\u01a1\u01af\u01b0\u1eae\u1eaf\u1ea4\u1ea5\u1ebe\u1ebf\u1ed1\u1eda", + "\u1edb\u1ee8\u1ee9\u1eb0\u1eb1\u1ea6\u1ea7\u1ec0\u1ec1\u1ed3\u1edc\u1edd\u1eea\u1eeb\u1ea2\u1ea3", + "\u1eb2\u1eb3\u1ea8\u1ea9\u1eba\u1ebb\u1ed5\u1ede\u1ec2\u1ec3\u1ec8\u1ec9\u1ece\u1ecf\u1ed4\u1edf", + "\u1ee6\u1ee7\u1eec\u1eed\u1ef6\u1ef7\u1ea0\u1ea1\u1eb6\u1eb7\u1eac\u1ead\u1eb8\u1eb9\u1ec6\u1ec7", + "\u1ed8\u1ed9\u1ee2\u1ee3\u1ef0\u1ef1\u1ef4\u1ef5\u1ed0\u0195\u1eaa\u1eab\u1ed6\u1ed7\u1eef\u261e", + "\u261c\u262e\u1eb4\u1eb5\u1ebc\u1ebd\u1ec4\u1ec5\u1ed2\u1ee0\u1ee1\u1eee\u1ef8\u1ef9\u0498\u0499", + "\u04a0\u04a1\u04aa\u04ab\u01f6\u26a0\u24ea\u2460\u2461\u2462\u2463\u2464\u2465\u2466\u2467\u2468", + "\u2469\u246a\u246b\u246c\u246d\u246e\u246f\u2470\u2471\u2472\u2473\u24b6\u24b7\u24b8\u24b9\u24ba", + "\u24bb\u24bc\u24bd\u24be\u24bf\u24c0\u24c1\u24c2\u24c3\u24c4\u24c5\u24c6\u24c7\u24c8\u24c9\u24ca", + "\u24cb\u24cc\u24cd\u24ce\u24cf\u24d0\u24d1\u24d2\u24d3\u24d4\u24d5\u24d6\u24d7\u24d8\u24d9\u24da", + "\u24db\u24dc\u24dd\u24de\u24df\u24e0\u24e1\u24e2\u24e3\u24e4\u24e5\u24e6\u24e7\u24e8\u24e9\u0327", + "\u0282\u0290\u0276\u01cd\u01ce\u01de\u01df\u01fa\u01fb\u0202\u0203\u0226\u0227\u01e0\u01e1\u1e00", + "\u1e01\u0200\u0201\u1e06\u1e07\u1e04\u1e05\u1d6c\u1e08\u1e09\u1e10\u1e11\u1e12\u1e13\u1e0e\u1e0f", + "\u1e0c\u1d6d\u1e14\u1e15\u1e16\u1e17\u1e18\u1e19\u1e1c\u1e1d\u0228\u0229\u1e1a\u1e1b\u0204\u0205", + "\u0206\u1d6e\u01f4\u01f5\u01e6\u1e26\u1e27\u1e28\u1e29\u1e2a\u1e2b\u021e\u021f\u1e24\u1e96\u1e2e", + "\u1e2f\u020a\u020b\u01cf\u01d0\u0208\u0209\u1e2c\u1e2d\u01f0\u0237\u01e8\u01e9\u1e32\u1e33\u1e34", + "\u1e35\u1e3a\u1e3b\u1e3c\u1e3d\u1e36\u1e37\u1e38\u1e39\u2c62\u1e3e\u1e3f\u1e42\u1e43\u1d6f\u1e44", + "\u1e45\u1e46\u1e47\u1e4a\u1e4b\u01f8\u01f9\u1e48\u1e49\u1d70\u01ec\u01ed\u022c\u022d\u1e4c\u1e4d", + "\u1e4e\u1e4f\u1e50\u1e51\u1e52\u1e53\u020e\u020f\u022a\u022b\u01d1\u01d2\u022e\u022f\u0230\u0231", + "\u020c\u020d\u01ea\u1e54\u1e55\u1d71\u0212\u0213\u1e58\u1e59\u1e5c\u1e5d\u1e5e\u1e5f\u0210\u0211", + "\u1e5a\u1d73\u1d72\u1e64\u1e65\u1e66\u1e67\u1e62\u1e63\u1e68\u1e69\u1d74\u1e70\u1e71\u1e6e\u1e6f", + "\u1e6c\u1e97\u1d75\u1e72\u1e73\u1e76\u1e77\u1e78\u1e79\u1e7a\u1e7b\u01d3\u01d4\u01d5\u01d6\u01d7", + "\u01d8\u01d9\u01da\u01db\u01dc\u1e74\u1e75\u0214\u0215\u0216\u1e7e\u1e7f\u1e7c\u1e7d\u1e86\u1e87", + "\u1e88\u1e89\u1e98\u1e8c\u1e8d\u1e8a\u1e8b\u0232\u0233\u1e8e\u1e8f\u1e99\u1e94\u1e95\u1e90\u1e91", + "\u1e93\u1d76\u01ee\u01ef\u1e9b\ua73e\ua73f\u01e2\u01e3\u1d7a\u1efb\u1d02\u1d14\uab63\u0238\u02a3", + "\u02a5\u02a4\u02a9\u02aa\u02ab\u0239\u02a8\u02a6\u02a7\uab50\uab51\u20a7\u1efa\ufb2e\ufb2f\u0180", + "\u0182\u0183\u0187\u0188\u018a\u018b\u018c\u0193\u01e4\u01e5\u0197\u0196\u0269\u0198\u0199\u019d", + "\u01a4\u01a5\u027d\u01a6\u01ac\u01ad\u01ab\u01ae\u0217\u01b1\u019c\u01b3\u01b4\u01b5\u01b6\u01a2", + "\u01a3\u0222\u0223\u02ad\u02ae\u02af\ufb14\ufb15\ufb17\ufb16\ufb13\u04d0\u04d1\u04d2\u04d3\u04f6", + "\u04f7\u0494\u0495\u04d6\u04d7\u04bc\u04bd\u04be\u04bf\u04da\u04db\u04dc\u04dd\u04c1\u04c2\u04de", + "\u04df\u04e2\u04e3\u04e4\u04e5\u04e6\u04e7\u04ea\u04eb\u04f0\u04f1\u04ee\u04ef\u04f2\u04f3\u04f4", + "\u04f5\u04f8\u04f9\u04ec\u04ed\u0476\u0477\u04d4\u04fa\u0502\ua682\ua680\ua688\u052a\u052c\ua684", + "\u0504\u0510\u04e0\u0506\u048a\u04c3\u049e\u049c\u051e\u051a\u04c5\u052e\u0512\u0520\u0508\u0514", + "\u04cd\u04c9\u0528\u04c7\u04a4\u0522\u050a\u04a8\u0524\u04a6\u048e\u0516\u050c\ua690\u04ac\ua68a", + "\ua68c\u050e\u04b2\u04fc\u04fe\u0526\ua694\u04b4\ua68e\u04b6\u04cb\u04b8\ua692\ua696\ua686\u048c", + "\u0518\u051c\u04d5\u04fb\u0503\ua683\ua681\ua689\u052b\u052d\ua685\u0505\u0511\u04e1\u0507\u048b", + "\u04c4\u049f\u049d\u051f\u051b\u04c6\u052f\u0513\u0521\u0509\u0515\u04ce\u04ca\u0529\u04c8\u04a5", + "\u0523\u050b\u04a9\u0525\u04a7\u048f\u0517\u050d\ua691\u04ad\ua68b\ua68d\u050f\u04b3\u04fd\u04ff", + "\u0527\ua695\u04b5\ua68f\u04b7\u04cc\u04b9\ua693\ua697\ua687\u048d\u0519\u051d\u1f08\u1f00\u1f09", + "\u1f01\u1f0a\u1f02\u1f0b\u1f03\u1f0c\u1f04\u1f0d\u1f05\u1f0e\u1f06\u1f0f\u1f07\u1fba\u1f70\u1fb8", + "\u1fb0\u1fb9\u1fb1\u1fbb\u1f71\u1f88\u1f80\u1f89\u1f81\u1f8a\u1f82\u1f8b\u1f83\u1f8c\u1f84\u1f8d", + "\u1f85\u1f8e\u1f86\u1f8f\u1f87\u1fbc\u1fb4\u1fb6\u1fb7\u1fb2\u1fb3\u1f18\u1f10\u1f19\u1f11\u1f1a", + "\u1f12\u1f1b\u1f13\u1f1c\u1f14\u1f1d\u1f15\u1fc8\u1fc9\u1f72\u1f73\u1f28\u1f20\u1fca\u1f74\u1f29", + "\u1f21\u1f2a\u1f22\u1f2b\u1f23\u1f2c\u1f24\u1f2d\u1f25\u1f2e\u1f26\u1f2f\u1f27\u1f98\u1f90\u1f99", + "\u1f91\u1f9a\u1f92\u1f9b\u1f93\u1f9c\u1f94\u1f9d\u1f95\u1f9e\u1f96\u1f9f\u1f97\u1fcb\u1f75\u1fcc", + "\u1fc3\u1fc2\u1fc4\u1fc6\u1fc7\u1fda\u1f76\u1fdb\u1f77\u1f38\u1f30\u1f39\u1f31\u1f3a\u1f32\u1f3b", + "\u1f33\u1f3c\u1f34\u1f3d\u1f35\u1f3e\u1f36\u1f3f\u1f37\u1fd8\u1fd0\u1fd9\u1fd1\u1fd2\u1fd3\u1fd6", + "\u1fd7\u1ff8\u1f78\u1ff9\u1f79\u1f48\u1f40\u1f49\u1f41\u1f4a\u1f42\u1f4b\u1f43\u1f4c\u1f44\u1f4d", + "\u1f45\u1fec\u1fe4\u1fe5\u1fea\u1f7a\u1feb\u1f7b\u1f59\u1f51\u1f5b\u1f53\u1f5d\u1f55\u1f5f\u1f57", + "\u1fe8\u1fe0\u1fe9\u1fe1\u03d3\u03d4\u1fe2\u1fe3\u1fe7\u1f50\u1f52\u1f54\u1fe6\u1f56\u1ffa\u1f7c", + "\u1ffb\u1f7d\u1f68\u1f60\u1f69\u1f61\u1f6a\u1f62\u1f6b\u1f63\u1f6c\u1f64\u1f6d\u1f65\u1f6e\u1f66", + "\u1f6f\u1f67\u1fa8\u1fa0\u1fa9\u1fa1\u1faa\u1fa2\u1fab\u1fa3\u1fac\u1fa4\u1fad\u1fa5\u1fae\u1fa6", + "\u1faf\u1fa7\u1ffc\u1ff3\u1ff2\u1ff4\u1ff6\u1ff7\u262f\u2610\u2611\u2612\u018d\u01ba\u2c7e\u023f", + "\u2c7f\u0240\u1d80\ua7c4\ua794\u1d81\u1d82\u1d83\ua795\u1d84\u1d85\u1d86\u1d87\u1d88\u1d89\u1d8a", + "\u1d8b\u1d8c\u1d8d\ua7c6\u1d8e\u1d8f\u1d90\u1d92\u1d93\u1d94\u1d95\u1d96\u1d97\u1d98\u1d99\u1d9a", + "\u1e9a\u2152\u2158\u20a8\u20af\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + ] + }, + { + "type": "bitmap", + "file": "minecraft:font/ascii.png", + "ascent": 7, + "chars": [ + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0020\u0021\u0022\u0023\u0024\u0025\u0026\u0027\u0028\u0029\u002a\u002b\u002c\u002d\u002e\u002f", + "\u0030\u0031\u0032\u0033\u0034\u0035\u0036\u0037\u0038\u0039\u003a\u003b\u003c\u003d\u003e\u003f", + "\u0040\u0041\u0042\u0043\u0044\u0045\u0046\u0047\u0048\u0049\u004a\u004b\u004c\u004d\u004e\u004f", + "\u0050\u0051\u0052\u0053\u0054\u0055\u0056\u0057\u0058\u0059\u005a\u005b\u005c\u005d\u005e\u005f", + "\u0060\u0061\u0062\u0063\u0064\u0065\u0066\u0067\u0068\u0069\u006a\u006b\u006c\u006d\u006e\u006f", + "\u0070\u0071\u0072\u0073\u0074\u0075\u0076\u0077\u0078\u0079\u007a\u007b\u007c\u007d\u007e\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00a3\u0000\u0000\u0192", + "\u0000\u0000\u0000\u0000\u0000\u0000\u00aa\u00ba\u0000\u0000\u00ac\u0000\u0000\u0000\u00ab\u00bb", + "\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510", + "\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567", + "\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580", + "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u2205\u2208\u0000", + "\u2261\u00b1\u2265\u2264\u2320\u2321\u00f7\u2248\u00b0\u2219\u0000\u221a\u207f\u00b2\u25a0\u0000" + ] + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/include/space.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/include/space.json new file mode 100644 index 000000000..788cbf18e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/include/space.json @@ -0,0 +1,11 @@ +{ + "providers": [ + { + "type": "space", + "advances": { + " ": 4, + "\u200c": 0 + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/include/unifont.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/include/unifont.json new file mode 100644 index 000000000..3d4f26711 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/include/unifont.json @@ -0,0 +1,4 @@ +{ + "providers": [ + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/uniform.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/uniform.json new file mode 100644 index 000000000..27e9e36bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/font/uniform.json @@ -0,0 +1,12 @@ +{ + "providers": [ + { + "type": "reference", + "id": "minecraft:include/space" + }, + { + "type": "reference", + "id": "minecraft:include/unifont" + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/gen.py b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/gen.py new file mode 100644 index 000000000..59c8e141e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/gen.py @@ -0,0 +1,517 @@ +"""_summary_ + +Create a python script that will scan a given minecraft assets folder + +GOAL of the script: create textures_1.txt et and models_1.txt files for Dynmap containing pacthes and textures/models definitions based on +the content of a given minecraft assets folder. + +Step 1: +Scan in the given minecrtaft/assets folder all files in minecraft\textures\block + +for each file found will check if a json file with the same name exists in minecraft\models\block +if so, will parse the json file to find the texture definition +Exemple: (for oak_shelf.png will check if oak_shelf.json exists in models/block) +{ + "parent": "minecraft:block/template_shelf_body", + "textures": { + "all": "minecraft:block/oak_shelf", + "particle": "minecraft:block/stripped_oak_log" + } +} He has a parent, so will check if template_shelf_body.json exists in models/block +if so, will parse the json file to find the texture definition + +Goal is to have in textures_1.txt file: + only block, or texture definitions that are not part of an item model + Exemple: + block:id=jungle_fence,patch0-2=0:jungle_planks,transparency=TRANSPARENT + block:id=%pale_oak_trapdoor,state=facing:north/half:top/open:true,patch0=0:pale_oak_trapdoor,transparency=SEMITRANSPARENT,stdrot=true + block:id=%pale_oak_trapdoor,state=facing:north/half:top/open:false,patch0=0:pale_oak_trapdoor,transparency=SEMITRANSPARENT,stdrot=true + block:id=%pale_oak_trapdoor,state=facing:north/half:bottom/open:true,patch0=0:pale_oak_trapdoor,transparency=SEMITRANSPARENT,stdrot=true + block:id=%pale_oak_trapdoor,state=facing:north/half:bottom/open:false,patch0=0:pale_oak_trapdoor,transparency=SEMITRANSPARENT,stdrot=true + block:id=%pale_oak_trapdoor,state=facing:south/half:top/open:true,patch0=0:pale_oak_trapdoor,transparency=SEMITRANSPARENT,stdrot=true + block:id=%pale_oak_trapdoor,state=facing:south/half:top/open:false,patch0=0:pale_oak_trapdoor,transparency=SEMITRANSPARENT,stdrot=true + block:id=%pale_oak_trapdoor,state=facing:south/half:bottom/open:true,patch0=0:pale_oak_trapdoor,transparency=SEMITRANSPARENT,stdrot=true + block:id=%pale_oak_trapdoor,state=facing:south/half:bottom/open:false,patch0=0:pale_oak_trapdoor,transparency=SEMITRANSPARENT,stdrot=true + block:id=%pale_oak_trapdoor,state=facing:west/half:top/open:true,patch0=0:pale_oak_trapdoor,transparency=SEMITRANSPARENT,stdrot=true + block:id=%pale_oak_trapdoor,state=facing:west/half:top/open:false,patch0=0:pale_oak_trapdoor,transparency=SEMITRANSPARENT,stdrot=true + texture:id=dirt_path_top + texture:id=dirt_path_side + texture:id=deepslate + texture:id=deepslate_top + texture:id=deepslate_gold_ore + texture:id=deepslate_iron_ore + texture:id=deepslate_coal_ore + texture:id=deepslate_lapis_ore + texture:id=deepslate_diamond_ore + texture:id=deepslate_redstone_ore + +In models_1.txt file: + Multiple definition types can be used: + modellist,boxblock,patchblock, customblock (avoid using cutomblock as much as possible, beceause we need to define a class for it) + + Exemple: + customblock:id=cobbled_deepslate_stairs,id=deepslate_brick_stairs,id=deepslate_tile_stairs,id=polished_deepslate_stairs,id=cut_copper_stairs,id=oxidized_cut_copper_stairs,id=exposed_cut_copper_stairs,id=weathered_cut_copper_stairs,,id=waxed_cut_copper_stairs,id=waxed_oxidized_cut_copper_stairs,id=waxed_exposed_cut_copper_stairs,id=waxed_weathered_cut_copper_stairs,class=org.dynmap.hdmap.renderer.StairStateRenderer + boxblock:id=moss_carpet,ymax=0.0625 + patchblock:id=cave_vines,id=cave_vines_plant,id=hanging_roots,patch0=VertX1Z0ToX0Z1,patch1=VertX1Z0ToX0Z1@90 + modellist:id=%candle,state=candles:1/lit:true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:w/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/14.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000/0.000000/45.000000/0.000000/8.000000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000 + modellist:id=%candle,state=candles:1/lit:false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:w/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/14.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000/0.000000/45.000000/0.000000/8.000000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000 + modellist:id=%candle,state=candles:2/lit:true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:w/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/13.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000/0.000000/45.000000/0.000000/6.000000/5.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000/0.000000/-45.000000/0.000000/6.000000/5.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:w/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/14.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000/0.000000/45.000000/0.000000/10.000000/6.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000/0.000000/-45.000000/0.000000/10.000000/6.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000 + modellist:id=%candle,state=candles:2/lit:false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:w/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/13.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000/0.000000/45.000000/0.000000/6.000000/5.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000/0.000000/-45.000000/0.000000/6.000000/5.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:w/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/14.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000/0.000000/45.000000/0.000000/10.000000/6.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000/0.000000/-45.000000/0.000000/10.000000/6.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000 + modellist:id=%candle,state=candles:3/lit:true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:w/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/11.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000/0.000000/45.000000/0.000000/8.000000/3.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/3.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:w/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/13.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000/0.000000/45.000000/0.000000/6.000000/5.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000/0.000000/-45.000000/0.000000/6.000000/5.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:w/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/14.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000/0.000000/45.000000/0.000000/9.000000/6.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000/0.000000/-45.000000/0.000000/9.000000/6.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000 + modellist:id=%candle,state=candles:3/lit:false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:w/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/11.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000/0.000000/45.000000/0.000000/8.000000/3.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000/0.000000/-45.000000/0.000000/8.000000/3.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:w/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/13.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000/0.000000/45.000000/0.000000/6.000000/5.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000/0.000000/-45.000000/0.000000/6.000000/5.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:w/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/14.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000/0.000000/45.000000/0.000000/9.000000/6.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000/0.000000/-45.000000/0.000000/9.000000/6.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000 + modellist:id=%candle,state=candles:4/lit:true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:w/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/11.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000/0.000000/45.000000/0.000000/7.000000/3.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000/0.000000/-45.000000/0.000000/7.000000/3.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:w/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/13.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000/0.000000/45.000000/0.000000/10.000000/5.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000/0.000000/-45.000000/0.000000/10.000000/5.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:w/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/13.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000/0.000000/45.000000/0.000000/6.000000/5.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000/0.000000/-45.000000/0.000000/6.000000/5.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:w/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/14.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000/0.000000/45.000000/0.000000/9.000000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000/0.000000/-45.000000/0.000000/9.000000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000 + modellist:id=%candle,state=candles:4/lit:false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:w/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/11.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000/0.000000/45.000000/0.000000/7.000000/3.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000/0.000000/-45.000000/0.000000/7.000000/3.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:w/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/13.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000/0.000000/45.000000/0.000000/10.000000/5.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000/0.000000/-45.000000/0.000000/10.000000/5.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:w/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/13.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000/0.000000/45.000000/0.000000/6.000000/5.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000/0.000000/-45.000000/0.000000/6.000000/5.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:w/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:u/0/0.000000/6.000000/2.000000/8.000000:s/0/0.000000/8.000000/2.000000/14.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000/0.000000/45.000000/0.000000/9.000000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000/0.000000/-45.000000/0.000000/9.000000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000 + +All exemple shows what would be the content of a models file using this script. +""" +import json +import os +from pathlib import Path +from typing import Dict, List, Set, Tuple, Optional + +class MinecraftToDynmapConverter: + def __init__(self, assets_path: str, version: str = "1.21.9"): + self.assets_path = Path(assets_path) + self.version = version + self.blockstates_path = self.assets_path / "minecraft" / "blockstates" + self.models_path = self.assets_path / "minecraft" / "models" / "block" + self.textures_path = self.assets_path / "minecraft" / "textures" / "block" + + self.texture_lines: List[str] = [] + self.block_lines: List[str] = [] + self.modellist_lines: List[str] = [] + + self.processed_textures: Set[str] = set() + self.processed_blocks: Set[str] = set() + + def scan_and_generate(self, output_dir: str = "."): + """Scanne les assets et génère les fichiers Dynmap""" + print(f"Scanning assets in: {self.assets_path}") + + if not self.textures_path.exists(): + print(f"Error: Textures path not found: {self.textures_path}") + return + + # Étape 1: Scanner toutes les textures de block + texture_files = sorted(self.textures_path.glob("*.png")) + print(f"Found {len(texture_files)} texture files") + + for texture_file in texture_files: + texture_name = texture_file.stem + self.process_texture(texture_name) + + # Étape 2: Scanner tous les blockstates + if self.blockstates_path.exists(): + blockstate_files = sorted(self.blockstates_path.glob("*.json")) + print(f"Found {len(blockstate_files)} blockstate files") + + for blockstate_file in blockstate_files: + block_id = blockstate_file.stem + print(f"Processing blockstate: {block_id}") + + try: + self.process_blockstate(block_id, blockstate_file) + except Exception as e: + print(f" Error processing {block_id}: {e}") + + # Écrire les fichiers de sortie + self.write_output_files(output_dir) + print(f"\nGeneration complete!") + print(f" Texture definitions: {len(self.texture_lines)}") + print(f" Block definitions: {len(self.block_lines)}") + print(f" Modellist definitions: {len(self.modellist_lines)}") + + def process_texture(self, texture_name: str): + """Traite une texture et vérifie s'il y a un modèle correspondant""" + if texture_name in self.processed_textures: + return + + model_file = self.models_path / f"{texture_name}.json" + + # Si un modèle existe, on ne crée pas de définition texture simple + # car il sera traité via les blockstates + if not model_file.exists(): + # Texture simple sans modèle + self.texture_lines.append(f"texture:id={texture_name}") + self.processed_textures.add(texture_name) + + def process_blockstate(self, block_id: str, blockstate_file: Path): + """Traite un fichier blockstate""" + with open(blockstate_file, 'r', encoding='utf-8') as f: + blockstate_data = json.load(f) + + # Gérer les différents formats de blockstate + if "variants" in blockstate_data: + self.process_variants(block_id, blockstate_data["variants"]) + elif "multipart" in blockstate_data: + self.process_multipart(block_id, blockstate_data["multipart"]) + + def process_variants(self, block_id: str, variants: Dict): + """Traite les blockstates avec variants""" + for variant_key, variant_data in variants.items(): + if isinstance(variant_data, list): + variant_data = variant_data[0] + + model_name = variant_data.get("model", "").replace("minecraft:block/", "") + if not model_name: + continue + + # Extraire les rotations + x_rot = variant_data.get("x", 0) + y_rot = variant_data.get("y", 0) + + # Charger le modèle complet + model_data = self.load_model_with_inheritance(model_name) + + if model_data: + # Déterminer le type de définition à générer + self.generate_definition(block_id, variant_key, model_data, x_rot, y_rot) + + def process_multipart(self, block_id: str, multipart: List): + """Traite les blockstates avec multipart""" + for part in multipart: + when_conditions = part.get("when", {}) + apply_data = part.get("apply", {}) + + if isinstance(apply_data, list): + apply_data = apply_data[0] + + model_name = apply_data.get("model", "").replace("minecraft:block/", "") + if not model_name: + continue + + x_rot = apply_data.get("x", 0) + y_rot = apply_data.get("y", 0) + + model_data = self.load_model_with_inheritance(model_name) + + if model_data: + state_str = self.format_multipart_conditions(when_conditions) + self.generate_definition(block_id, state_str, model_data, x_rot, y_rot) + + def generate_definition(self, block_id: str, state: str, model_data: Dict, x_rot: int, y_rot: int): + """Génère la définition appropriée (block ou modellist)""" + elements = model_data.get("elements", []) + + if not elements: + # Pas d'éléments, peut-être un modèle parent simple + return + + # Récupérer les textures + textures = self.resolve_all_texture_references(model_data.get("textures", {})) + main_texture = self.get_main_texture(textures) + + if main_texture: + self.processed_textures.add(main_texture) + + # Déterminer le type de block + block_type = self.determine_block_type(block_id, elements) + + state_str = self.format_state(state) + transparency = self.determine_transparency(block_id) + + if block_type == "simple" and not state_str: + # Block simple sans état + key = f"{block_id}" + if key not in self.processed_blocks: + self.block_lines.append( + f"block:id={block_id},patch0=0:{main_texture},transparency={transparency}" + ) + self.processed_blocks.add(key) + + elif block_type == "simple": + # Block avec états mais géométrie simple + key = f"{block_id}:{state_str}" + if key not in self.processed_blocks: + self.block_lines.append( + f"block:id=%{block_id},state={state_str},patch0=0:{main_texture},transparency={transparency},stdrot=true" + ) + self.processed_blocks.add(key) + + else: + # Block complexe nécessitant modellist + boxes = self.parse_model_to_boxes(elements, textures, x_rot, y_rot) + if boxes: + modellist = self.generate_modellist(block_id, state_str, boxes) + if modellist: + self.modellist_lines.append(modellist) + + def determine_block_type(self, block_id: str, elements: List[Dict]) -> str: + """Détermine si un block est simple ou nécessite modellist""" + # Si un seul élément qui est un cube complet, c'est simple + if len(elements) == 1: + elem = elements[0] + from_pos = elem.get("from", [0, 0, 0]) + to_pos = elem.get("to", [16, 16, 16]) + + if from_pos == [0, 0, 0] and to_pos == [16, 16, 16]: + return "simple" + + # Sinon, nécessite modellist + return "complex" + + def parse_model_to_boxes(self, elements: List[Dict], textures: Dict[str, str], + x_rot: int, y_rot: int) -> List[Dict]: + """Parse les éléments en boxes pour modellist""" + boxes = [] + + for element in elements: + from_pos = element.get("from", [0, 0, 0]) + to_pos = element.get("to", [16, 16, 16]) + faces = element.get("faces", {}) + rotation = element.get("rotation") + + box = { + "from": from_pos, + "to": to_pos, + "faces": {}, + "rotation": None + } + + # Rotation de l'élément + if rotation: + origin = rotation.get("origin", [8, 8, 8]) + axis = rotation.get("axis", "y") + angle = rotation.get("angle", 0) + box["element_rotation"] = f"{angle}/{axis}/{origin[0]}/{origin[1]}/{origin[2]}" + + # Rotation du blockstate + if x_rot != 0 or y_rot != 0: + box["rotation"] = f"R/{x_rot}/{y_rot}/0" + + # Parser les faces + face_map = {"north": "n", "south": "s", "east": "e", "west": "w", "up": "u", "down": "d"} + + for face_name, face_data in faces.items(): + if not face_data: + continue + + uv = face_data.get("uv", [0, 0, 16, 16]) + texture_ref = face_data.get("texture", "#all") + + # Résoudre la texture + if texture_ref.startswith("#"): + tex_key = texture_ref[1:] + tex_name = textures.get(tex_key, "") + else: + tex_name = texture_ref.replace("minecraft:block/", "").replace("minecraft:", "") + + if tex_name: + dynmap_face = face_map.get(face_name, face_name[0]) + box["faces"][dynmap_face] = {"uv": uv} + + boxes.append(box) + + return boxes + + def generate_modellist(self, block_id: str, state: str, boxes: List[Dict]) -> str: + """Génère une ligne modellist""" + if not boxes: + return "" + + state_part = f",state={state}" if state else "" + + box_parts = [] + for box in boxes: + from_pos = box["from"] + to_pos = box["to"] + + box_str = f"{from_pos[0]:.6f}/{from_pos[1]:.6f}/{from_pos[2]:.6f}:{to_pos[0]:.6f}/{to_pos[1]:.6f}/{to_pos[2]:.6f}" + + # Ajouter les faces dans l'ordre: n, d, w, e, s, u + face_strs = [] + for face in ["n", "d", "w", "e", "s", "u"]: + if face in box["faces"]: + uv = box["faces"][face]["uv"] + face_str = f"{face}/0/{uv[0]:.6f}/{uv[1]:.6f}/{uv[2]:.6f}/{uv[3]:.6f}" + face_strs.append(face_str) + + if face_strs: + box_str += ":" + ":".join(face_strs) + + # Ajouter rotation si présente + if box.get("rotation"): + box_str += ":" + box["rotation"] + elif box.get("element_rotation"): + box_str += "/" + box["element_rotation"] + + box_parts.append(f"box={box_str}") + + if not box_parts: + return "" + + return f"[{self.version}-]modellist:id=%{block_id}{state_part},{','.join(box_parts)}" + + def load_model_with_inheritance(self, model_name: str, depth: int = 0) -> Optional[Dict]: + """Charge un modèle avec résolution de l'héritage""" + if depth > 10: + return None + + model_file = self.models_path / f"{model_name}.json" + if not model_file.exists(): + return None + + try: + with open(model_file, 'r', encoding='utf-8') as f: + model_data = json.load(f) + + parent = model_data.get("parent", "") + if parent: + parent_name = parent.replace("minecraft:block/", "").replace("minecraft:", "").replace("block/", "") + parent_data = self.load_model_with_inheritance(parent_name, depth + 1) + + if parent_data: + return self.merge_model_data(parent_data, model_data) + + return model_data + except Exception as e: + print(f" Warning: Could not load model {model_name}: {e}") + return None + + def merge_model_data(self, parent: Dict, child: Dict) -> Dict: + """Fusionne parent et enfant""" + merged = parent.copy() + + if "textures" in parent: + merged["textures"] = parent["textures"].copy() + if "textures" in child: + if "textures" not in merged: + merged["textures"] = {} + merged["textures"].update(child["textures"]) + + if "elements" in child: + merged["elements"] = child["elements"] + elif "elements" in parent: + merged["elements"] = parent["elements"] + + for key in child: + if key not in ["textures", "elements", "parent"]: + merged[key] = child[key] + + return merged + + def resolve_all_texture_references(self, texture_refs: Dict, depth: int = 0) -> Dict[str, str]: + """Résout toutes les références de textures""" + if depth > 10: + return texture_refs + + resolved = {} + needs_resolution = False + + for key, value in texture_refs.items(): + if isinstance(value, str): + if value.startswith("#"): + ref_key = value[1:] + if ref_key in texture_refs and not texture_refs[ref_key].startswith("#"): + resolved[key] = texture_refs[ref_key] + elif ref_key in texture_refs: + resolved[key] = texture_refs[ref_key] + needs_resolution = True + else: + resolved[key] = value + else: + clean_value = value.replace("minecraft:block/", "").replace("minecraft:", "") + resolved[key] = clean_value + + if needs_resolution: + return self.resolve_all_texture_references(resolved, depth + 1) + + return resolved + + def get_main_texture(self, textures: Dict[str, str]) -> str: + """Récupère la texture principale""" + for key in ["all", "texture", "particle"]: + if key in textures: + return textures[key] + + if textures: + return list(textures.values())[0] + + return "" + + def format_state(self, variant_key: str) -> str: + """Formate l'état""" + if variant_key == "" or variant_key == "normal": + return "" + return variant_key.replace(",", "/") + + def format_multipart_conditions(self, conditions: Dict) -> str: + """Formate les conditions multipart""" + if not conditions: + return "" + + if "AND" in conditions: + parts = [] + for cond in conditions["AND"]: + for key, value in cond.items(): + parts.append(f"{key}:{value}") + return "/".join(parts) + + if "OR" in conditions: + first_cond = conditions["OR"][0] + parts = [] + for key, value in first_cond.items(): + parts.append(f"{key}:{value}") + return "/".join(parts) + + parts = [] + for key, value in conditions.items(): + if isinstance(value, str): + parts.append(f"{key}:{value}") + + return "/".join(parts) + + def determine_transparency(self, block_id: str) -> str: + """Détermine la transparence""" + transparent = ["air", "water", "lava", "fire"] + semitransparent = ["stairs", "slab", "fence", "wall", "door", "trapdoor", "glass", + "pane", "leaves", "bars", "chain", "lantern", "shelf", "candle"] + + for kw in transparent: + if kw in block_id: + return "TRANSPARENT" + + for kw in semitransparent: + if kw in block_id: + return "SEMITRANSPARENT" + + return "OPAQUE" + + def write_output_files(self, output_dir: str): + """Écrit les fichiers de sortie""" + output_path = Path(output_dir) + output_path.mkdir(exist_ok=True) + + # Écrire textures_1.txt + textures_file = output_path / "textures_1.txt" + with open(textures_file, 'w', encoding='utf-8') as f: + for line in sorted(self.texture_lines): + f.write(line + "\n") + print(f"Written: {textures_file}") + + # Écrire models_1.txt + models_file = output_path / "models_1.txt" + with open(models_file, 'w', encoding='utf-8') as f: + for line in sorted(self.block_lines): + f.write(line + "\n") + for line in sorted(self.modellist_lines): + f.write(line + "\n") + print(f"Written: {models_file}") + + +def main(): + import argparse + + parser = argparse.ArgumentParser(description='Convert Minecraft assets to Dynmap format') + parser.add_argument('assets_path', help='Path to Minecraft assets directory') + parser.add_argument('-o', '--output', default='.', help='Output directory') + parser.add_argument('-v', '--version', default='1.21.4', help='Minecraft version') + + args = parser.parse_args() + + converter = MinecraftToDynmapConverter(args.assets_path, args.version) + converter.scan_and_generate(args.output) + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/gpu_warnlist.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/gpu_warnlist.json new file mode 100644 index 000000000..291f55e96 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/gpu_warnlist.json @@ -0,0 +1,7 @@ +{ + "renderer" : [], + "version" : [ + "\\bMetal\\b" + ], + "vendor" : [] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/lang/deprecated.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/lang/deprecated.json new file mode 100644 index 000000000..3a1285263 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/lang/deprecated.json @@ -0,0 +1,353 @@ +{ + "removed": [ + "upgrade.minecraft.netherite_upgrade", + "item.minecraft.creeper_banner_pattern.desc", + "item.minecraft.flow_banner_pattern.desc", + "item.minecraft.flower_banner_pattern.desc", + "item.minecraft.globe_banner_pattern.desc", + "item.minecraft.guster_banner_pattern.desc", + "item.minecraft.mojang_banner_pattern.desc", + "item.minecraft.piglin_banner_pattern.desc", + "item.minecraft.skull_banner_pattern.desc", + "argument.time.invalid_tick_count", + "arguments.nbtpath.too_large", + "block.minecraft.grass", + "book.invalid.tag", + "commands.fillbiome.success", + "commands.function.success.multiple", + "commands.function.success.multiple.result", + "commands.function.success.single", + "commands.function.success.single.result", + "commands.publish.success", + "connect.reconfiging", + "dataPack.update_1_20.description", + "dataPack.update_1_20.name", + "dataPack.update_1_21.description", + "dataPack.update_1_21.name", + "dataPack.winter_drop.description", + "dataPack.winter_drop.name", + "deathScreen.score", + "entity.minecraft.creaking_transient", + "event.minecraft.raid.defeat", + "event.minecraft.raid.victory", + "gui.abuseReport.reason.false_reporting", + "gui.chatReport.comments", + "gui.chatReport.describe", + "gui.chatReport.discard.content", + "gui.chatReport.discard.discard", + "gui.chatReport.discard.draft", + "gui.chatReport.discard.return", + "gui.chatReport.discard.title", + "gui.chatReport.draft.content", + "gui.chatReport.draft.discard", + "gui.chatReport.draft.edit", + "gui.chatReport.draft.quittotitle.content", + "gui.chatReport.draft.quittotitle.title", + "gui.chatReport.draft.title", + "gui.chatReport.more_comments", + "gui.chatReport.observed_what", + "gui.chatReport.read_info", + "gui.chatReport.select_reason", + "gui.chatReport.send.comments_too_long", + "gui.chatReport.send.no_reason", + "item_modifier.unknown", + "item.minecraft.angler_pottery_shard", + "item.minecraft.archer_pottery_shard", + "item.minecraft.arms_up_pottery_shard", + "item.minecraft.blade_pottery_shard", + "item.minecraft.brewer_pottery_shard", + "item.minecraft.bundle.fullness", + "item.minecraft.burn_pottery_shard", + "item.minecraft.danger_pottery_shard", + "item.minecraft.explorer_pottery_shard", + "item.minecraft.friend_pottery_shard", + "item.minecraft.heart_pottery_shard", + "item.minecraft.heartbreak_pottery_shard", + "item.minecraft.howl_pottery_shard", + "item.minecraft.miner_pottery_shard", + "item.minecraft.mourner_pottery_shard", + "item.minecraft.music_disc_5.desc", + "item.minecraft.music_disc_11.desc", + "item.minecraft.music_disc_13.desc", + "item.minecraft.music_disc_blocks.desc", + "item.minecraft.music_disc_cat.desc", + "item.minecraft.music_disc_chirp.desc", + "item.minecraft.music_disc_creator_music_box.desc", + "item.minecraft.music_disc_creator.desc", + "item.minecraft.music_disc_far.desc", + "item.minecraft.music_disc_mall.desc", + "item.minecraft.music_disc_mellohi.desc", + "item.minecraft.music_disc_otherside.desc", + "item.minecraft.music_disc_pigstep.desc", + "item.minecraft.music_disc_precipice.desc", + "item.minecraft.music_disc_relic.desc", + "item.minecraft.music_disc_stal.desc", + "item.minecraft.music_disc_strad.desc", + "item.minecraft.music_disc_wait.desc", + "item.minecraft.music_disc_ward.desc", + "item.minecraft.music_disc_tears.desc", + "item.minecraft.music_disc_lava_chicken.desc", + "item.minecraft.plenty_pottery_shard", + "item.minecraft.pottery_shard_archer", + "item.minecraft.pottery_shard_arms_up", + "item.minecraft.pottery_shard_prize", + "item.minecraft.pottery_shard_skull", + "item.minecraft.prize_pottery_shard", + "item.minecraft.scute", + "item.minecraft.sheaf_pottery_shard", + "item.minecraft.shelter_pottery_shard", + "item.minecraft.skull_pottery_shard", + "item.minecraft.snort_pottery_shard", + "item.nbt_tags", + "mco.account.privacy.info", + "mco.account.privacyinfo", + "mco.client.incompatible.msg.line1", + "mco.client.incompatible.msg.line2", + "mco.client.incompatible.msg.line3", + "mco.configure.world.close.question.line2", + "mco.configure.world.delete.question.line2", + "mco.configure.world.invited", + "mco.configure.world.leave.question.line2", + "mco.configure.world.minigame", + "mco.configure.world.resourcepack.question.line1", + "mco.configure.world.resourcepack.question.line2", + "mco.configure.world.restore.download.question.line2", + "mco.configure.world.restore.question.line2", + "mco.configure.world.slot.switch.question.line2", + "mco.configure.world.slot.tooltip.active", + "mco.configure.world.spawnAnimals", + "mco.configure.world.spawnNPCs", + "mco.configure.world.spawn_toggle.title", + "mco.configure.world.subscription.day", + "mco.configure.world.subscription.days", + "mco.configure.world.subscription.month", + "mco.configure.world.subscription.months", + "mco.configure.world.subscription.title", + "mco.configure.world.title", + "mco.configure.world.uninvite.question", + "mco.create.world.skip", + "mco.create.world.subtitle", + "mco.download.confirmation.line1", + "mco.download.confirmation.line2", + "mco.errorMessage.realmsService", + "mco.gui.ok", + "mco.reset.world.seed", + "mco.reset.world.upload", + "mco.selectServer.closeserver", + "mco.selectServer.configureRealm", + "mco.selectServer.expiredSubscribe", + "mco.selectServer.minigame", + "mco.snapshot.creating", + "mco.snapshot.friendsRealm.upgrade", + "mco.upload.entry.cheats", + "mco.upload.entry.commands", + "mco.upload.hardcore", + "mco.upload.size.failure.line1", + "mco.upload.size.failure.line2", + "mco.version", + "multiplayer.disconnect.out_of_order_chat", + "multiplayer.disconnect.unsigned_chat", + "narration.edit_box", + "painting.minecraft.earth.author", + "painting.minecraft.fire.author", + "painting.minecraft.water.author", + "painting.minecraft.wind.author", + "painting.minecraft.wither.author", + "predicate.unknown", + "resourcepack.downloading", + "resourcepack.progress", + "resourcepack.requesting", + "selectWorld.cheats", + "selectWorld.edit.export_worldgen_settings", + "selectWorld.edit.export_worldgen_settings.failure", + "selectWorld.edit.export_worldgen_settings.success", + "selectWorld.futureworld.error.text", + "selectWorld.futureworld.error.title", + "selectWorld.gameMode.adventure.line1", + "selectWorld.gameMode.adventure.line2", + "selectWorld.gameMode.creative.line1", + "selectWorld.gameMode.creative.line2", + "selectWorld.gameMode.hardcore.line1", + "selectWorld.gameMode.hardcore.line2", + "selectWorld.gameMode.spectator.line1", + "selectWorld.gameMode.spectator.line2", + "selectWorld.gameMode.survival.line1", + "selectWorld.gameMode.survival.line2", + "selectWorld.import_worldgen_settings", + "selectWorld.import_worldgen_settings.failure", + "selectWorld.import_worldgen_settings.select_file", + "selectWorld.moreWorldOptions", + "selectWorld.resultFolder", + "selectWorld.versionJoinButton", + "selectWorld.versionQuestion", + "selectWorld.versionWarning", + "subtitles.block.trial_spawner.ambient_charged", + "subtitles.block.trial_spawner.charge_activate", + "subtitles.entity.camel.step", + "subtitles.entity.camel.step_sand", + "subtitles.entity.leash_knot.break", + "subtitles.entity.leash_knot.place", + "subtitles.entity.drowned.step", + "subtitles.entity.generic.wind_burst", + "subtitles.entity.goat.step", + "subtitles.entity.hoglin.step", + "subtitles.entity.llama.step", + "subtitles.entity.minecart.inside", + "subtitles.entity.minecart.inside_underwater", + "subtitles.entity.panda.step", + "subtitles.entity.piglin_brute.step", + "subtitles.entity.piglin.step", + "subtitles.entity.ravager.step", + "subtitles.entity.sniffer.egg_crack", + "subtitles.entity.sniffer.egg_hatch", + "subtitles.entity.sniffer.step", + "subtitles.entity.warden.step", + "subtitles.entity.zoglin.step", + "symlink_warning.message", + "title.32bit.deprecation", + "title.32bit.deprecation.realms", + "title.32bit.deprecation.realms.check", + "title.32bit.deprecation.realms.header", + "tutorial.bundleInsert.description", + "tutorial.bundleInsert.title", + "attribute.name.generic.armor", + "attribute.name.generic.armor_toughness", + "attribute.name.generic.attack_damage", + "attribute.name.generic.attack_knockback", + "attribute.name.generic.attack_speed", + "attribute.name.generic.block_interaction_range", + "attribute.name.generic.burning_time", + "attribute.name.generic.entity_interaction_range", + "attribute.name.generic.explosion_knockback_resistance", + "attribute.name.generic.fall_damage_multiplier", + "attribute.name.generic.flying_speed", + "attribute.name.generic.follow_range", + "attribute.name.generic.gravity", + "attribute.name.generic.jump_strength", + "attribute.name.generic.knockback_resistance", + "attribute.name.generic.luck", + "attribute.name.generic.max_absorption", + "attribute.name.generic.max_health", + "attribute.name.generic.movement_efficiency", + "attribute.name.generic.movement_speed", + "attribute.name.generic.oxygen_bonus", + "attribute.name.generic.safe_fall_distance", + "attribute.name.generic.scale", + "attribute.name.generic.step_height", + "attribute.name.generic.water_movement_efficiency", + "attribute.name.horse.jump_strength", + "attribute.name.player.block_break_speed", + "attribute.name.player.block_interaction_range", + "attribute.name.player.entity_interaction_range", + "attribute.name.player.mining_efficiency", + "attribute.name.player.sneaking_speed", + "attribute.name.player.submerged_mining_speed", + "attribute.name.player.sweeping_damage_ratio", + "attribute.name.zombie.spawn_reinforcements", + "realms.missing.snapshot.error.text", + "entity.minecraft.boat", + "entity.minecraft.chest_boat", + "subtitles.ambient.cave", + "subtitles.block.creaking_heart.idle", + "subtitles.block.eyeblossom.idle", + "subtitles.block.generic.idle", + "entity.minecraft.potion", + "argument.nbt.list.mixed", + "item.minecraft.crossbow.projectile", + "subtitles.entity.wolf.ambient", + "subtitles.block.trapdoor.toggle", + "subtitles.block.iron_trapdoor.close", + "subtitles.block.iron_trapdoor.open", + "dataPack.bundle.description", + "dataPack.bundle.name", + "dataPack.locator_bar.description", + "dataPack.locator_bar.name", + "argument.resource_or_id.invalid", + "narrator.loading.done", + "gamerule.spawnChunkRadius", + "gamerule.spawnChunkRadius.description", + "gamerule.enableCommandBlocks", + "options.invertMouse", + "mco.upload.select.world.subtitle", + "mco.upload.entry.id", + "mco.configure.world.spawn_toggle.message", + "mco.configure.world.spawn_toggle.message.npc", + "mco.configure.world.spawnMonsters", + "mco.configure.world.commandBlocks", + "selectWorld.world", + "commands.profile_fetch.copy_component", + "commands.profile_fetch.failed_to_serialize", + "commands.profile_fetch.give_item", + "commands.profile_fetch.id.failure", + "commands.profile_fetch.id.success", + "commands.profile_fetch.name.failure", + "commands.profile_fetch.name.success", + "argument.range.ints", + "addServer.add", + "addServer.enterIp", + "addServer.enterName", + "addServer.resourcePack", + "addServer.resourcePack.disabled", + "addServer.resourcePack.enabled", + "addServer.resourcePack.prompt", + "addServer.title", + "key.categories.creative", + "key.categories.gameplay", + "key.categories.inventory", + "key.categories.misc", + "key.categories.movement", + "key.categories.multiplayer", + "key.categories.spectator", + "key.categories.ui", + "commands.setworldspawn.failure.not_overworld" + ], + "renamed": { + "item.minecraft.dune_armor_trim_smithing_template.new": "item.minecraft.dune_armor_trim_smithing_template", + "item.minecraft.eye_armor_trim_smithing_template.new": "item.minecraft.eye_armor_trim_smithing_template", + "item.minecraft.flow_armor_trim_smithing_template.new": "item.minecraft.flow_armor_trim_smithing_template", + "item.minecraft.bolt_armor_trim_smithing_template.new": "item.minecraft.bolt_armor_trim_smithing_template", + "item.minecraft.host_armor_trim_smithing_template.new": "item.minecraft.host_armor_trim_smithing_template", + "item.minecraft.netherite_upgrade_smithing_template.new": "item.minecraft.netherite_upgrade_smithing_template", + "item.minecraft.raiser_armor_trim_smithing_template.new": "item.minecraft.raiser_armor_trim_smithing_template", + "item.minecraft.rib_armor_trim_smithing_template.new": "item.minecraft.rib_armor_trim_smithing_template", + "item.minecraft.sentry_armor_trim_smithing_template.new": "item.minecraft.sentry_armor_trim_smithing_template", + "item.minecraft.shaper_armor_trim_smithing_template.new": "item.minecraft.shaper_armor_trim_smithing_template", + "item.minecraft.silence_armor_trim_smithing_template.new": "item.minecraft.silence_armor_trim_smithing_template", + "item.minecraft.snout_armor_trim_smithing_template.new": "item.minecraft.snout_armor_trim_smithing_template", + "item.minecraft.spire_armor_trim_smithing_template.new": "item.minecraft.spire_armor_trim_smithing_template", + "item.minecraft.tide_armor_trim_smithing_template.new": "item.minecraft.tide_armor_trim_smithing_template", + "item.minecraft.vex_armor_trim_smithing_template.new": "item.minecraft.vex_armor_trim_smithing_template", + "item.minecraft.ward_armor_trim_smithing_template.new": "item.minecraft.ward_armor_trim_smithing_template", + "item.minecraft.wayfinder_armor_trim_smithing_template.new": "item.minecraft.wayfinder_armor_trim_smithing_template", + "item.minecraft.wild_armor_trim_smithing_template.new": "item.minecraft.wild_armor_trim_smithing_template", + "item.minecraft.coast_armor_trim_smithing_template.new": "item.minecraft.coast_armor_trim_smithing_template", + "item.minecraft.creeper_banner_pattern.new": "item.minecraft.creeper_banner_pattern", + "item.minecraft.flow_banner_pattern.new": "item.minecraft.flow_banner_pattern", + "item.minecraft.flower_banner_pattern.new": "item.minecraft.flower_banner_pattern", + "item.minecraft.globe_banner_pattern.new": "item.minecraft.globe_banner_pattern", + "item.minecraft.guster_banner_pattern.new": "item.minecraft.guster_banner_pattern", + "item.minecraft.mojang_banner_pattern.new": "item.minecraft.mojang_banner_pattern", + "item.minecraft.piglin_banner_pattern.new": "item.minecraft.piglin_banner_pattern", + "item.minecraft.skull_banner_pattern.new": "item.minecraft.skull_banner_pattern", + "lanServer.port.unavailable.new": "lanServer.port.unavailable", + "lanServer.port.invalid.new": "lanServer.port.invalid", + "multiplayer.disconnect.invalid_public_key_signature.new": "multiplayer.disconnect.invalid_public_key_signature", + "selectWorld.allowCommands.new": "selectWorld.allowCommands", + "gui.abuseReport.reason.generic": "gui.abuseReport.reason.i_want_to_report_them", + "gui.abuseReport.reason.generic.description": "gui.abuseReport.reason.i_want_to_report_them.description", + "commands.drop.no_loot_table": "commands.drop.no_loot_table.entity", + "item.op_block_warning.line1": "item.op_warning.line1", + "item.op_block_warning.line2": "item.op_warning.line2", + "item.op_block_warning.line3": "item.op_warning.line3", + "container.shulkerBox.unknownContents": "item.container.loot_table.unknown", + "container.shulkerBox.itemCount": "item.container.item_count", + "container.shulkerBox.more": "item.container.more_items", + "advancements.nether.use_lodestone.description": "advancements.adventure.use_lodestone.description", + "advancements.nether.use_lodestone.title": "advancements.adventure.use_lodestone.title", + "subtitles.block.sand.wind": "subtitles.block.dry_grass.ambient", + "snbt.parser.undescore_not_allowed": "snbt.parser.underscore_not_allowed", + "commands.setworldspawn.success.new": "commands.setworldspawn.success", + "commands.spawnpoint.success.multiple.new": "commands.spawnpoint.success.multiple", + "commands.spawnpoint.success.single.new": "commands.spawnpoint.success.single" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/lang/en_us.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/lang/en_us.json new file mode 100644 index 000000000..e00cf3278 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/lang/en_us.json @@ -0,0 +1,7585 @@ +{ + "accessibility.onboarding.accessibility.button": "Accessibility Settings...", + "accessibility.onboarding.screen.narrator": "Press enter to enable the narrator", + "accessibility.onboarding.screen.title": "Welcome to Minecraft!\n\nWould you like to enable the Narrator or visit the Accessibility Settings?", + "addServer.add": "Done", + "addServer.enterIp": "Server Address", + "addServer.enterName": "Server Name", + "addServer.resourcePack": "Server Resource Packs", + "addServer.resourcePack.disabled": "Disabled", + "addServer.resourcePack.enabled": "Enabled", + "addServer.resourcePack.prompt": "Prompt", + "addServer.title": "Edit Server Info", + "advancement.advancementNotFound": "Unknown advancement: %s", + "advancements.adventure.adventuring_time.description": "Discover every biome", + "advancements.adventure.adventuring_time.title": "Adventuring Time", + "advancements.adventure.arbalistic.description": "Kill five unique mobs with one crossbow shot", + "advancements.adventure.arbalistic.title": "Arbalistic", + "advancements.adventure.avoid_vibration.description": "Sneak near a Sculk Sensor or Warden to prevent it from detecting you", + "advancements.adventure.avoid_vibration.title": "Sneak 100", + "advancements.adventure.blowback.description": "Kill a Breeze with a deflected Breeze-shot Wind Charge", + "advancements.adventure.blowback.title": "Blowback", + "advancements.adventure.brush_armadillo.description": "Get Armadillo Scutes from an Armadillo using a Brush", + "advancements.adventure.brush_armadillo.title": "Isn't It Scute?", + "advancements.adventure.bullseye.description": "Hit the bullseye of a Target block from at least 30 meters away", + "advancements.adventure.bullseye.title": "Bullseye", + "advancements.adventure.craft_decorated_pot_using_only_sherds.description": "Make a Decorated Pot out of 4 Pottery Sherds", + "advancements.adventure.craft_decorated_pot_using_only_sherds.title": "Careful Restoration", + "advancements.adventure.crafters_crafting_crafters.description": "Be near a Crafter when it crafts a Crafter", + "advancements.adventure.crafters_crafting_crafters.title": "Crafters Crafting Crafters", + "advancements.adventure.fall_from_world_height.description": "Free fall from the top of the world (build limit) to the bottom of the world and survive", + "advancements.adventure.fall_from_world_height.title": "Caves & Cliffs", + "advancements.adventure.heart_transplanter.description": "Place a Creaking Heart with the correct alignment between two Pale Oak Log blocks", + "advancements.adventure.heart_transplanter.title": "Heart Transplanter", + "advancements.adventure.hero_of_the_village.description": "Successfully defend a village from a raid", + "advancements.adventure.hero_of_the_village.title": "Hero of the Village", + "advancements.adventure.honey_block_slide.description": "Jump into a Honey Block to break your fall", + "advancements.adventure.honey_block_slide.title": "Sticky Situation", + "advancements.adventure.kill_a_mob.description": "Kill any hostile monster", + "advancements.adventure.kill_a_mob.title": "Monster Hunter", + "advancements.adventure.kill_all_mobs.description": "Kill one of every hostile monster", + "advancements.adventure.kill_all_mobs.title": "Monsters Hunted", + "advancements.adventure.kill_mob_near_sculk_catalyst.description": "Kill a mob near a Sculk Catalyst", + "advancements.adventure.kill_mob_near_sculk_catalyst.title": "It Spreads", + "advancements.adventure.lighten_up.description": "Scrape a Copper Bulb with an Axe to make it brighter", + "advancements.adventure.lighten_up.title": "Lighten Up", + "advancements.adventure.lightning_rod_with_villager_no_fire.description": "Protect a Villager from an undesired shock without starting a fire", + "advancements.adventure.lightning_rod_with_villager_no_fire.title": "Surge Protector", + "advancements.adventure.minecraft_trials_edition.description": "Step foot in a Trial Chamber", + "advancements.adventure.minecraft_trials_edition.title": "Minecraft: Trial(s) Edition", + "advancements.adventure.ol_betsy.description": "Shoot a Crossbow", + "advancements.adventure.ol_betsy.title": "Ol' Betsy", + "advancements.adventure.overoverkill.description": "Deal 50 hearts of damage in a single hit using the Mace", + "advancements.adventure.overoverkill.title": "Over-Overkill", + "advancements.adventure.play_jukebox_in_meadows.description": "Make the Meadows come alive with the sound of music from a Jukebox", + "advancements.adventure.play_jukebox_in_meadows.title": "Sound of Music", + "advancements.adventure.read_power_from_chiseled_bookshelf.description": "Read the power signal of a Chiseled Bookshelf using a Comparator", + "advancements.adventure.read_power_from_chiseled_bookshelf.title": "The Power of Books", + "advancements.adventure.revaulting.description": "Unlock an Ominous Vault with an Ominous Trial Key", + "advancements.adventure.revaulting.title": "Revaulting", + "advancements.adventure.root.description": "Adventure, exploration and combat", + "advancements.adventure.root.title": "Adventure", + "advancements.adventure.salvage_sherd.description": "Brush a Suspicious block to obtain a Pottery Sherd", + "advancements.adventure.salvage_sherd.title": "Respecting the Remnants", + "advancements.adventure.shoot_arrow.description": "Shoot something with an Arrow", + "advancements.adventure.shoot_arrow.title": "Take Aim", + "advancements.adventure.sleep_in_bed.description": "Sleep in a Bed to change your respawn point", + "advancements.adventure.sleep_in_bed.title": "Sweet Dreams", + "advancements.adventure.sniper_duel.description": "Kill a Skeleton from at least 50 meters away", + "advancements.adventure.sniper_duel.title": "Sniper Duel", + "advancements.adventure.spyglass_at_dragon.description": "Look at the Ender Dragon through a Spyglass", + "advancements.adventure.spyglass_at_dragon.title": "Is It a Plane?", + "advancements.adventure.spyglass_at_ghast.description": "Look at a Ghast through a Spyglass", + "advancements.adventure.spyglass_at_ghast.title": "Is It a Balloon?", + "advancements.adventure.spyglass_at_parrot.description": "Look at a Parrot through a Spyglass", + "advancements.adventure.spyglass_at_parrot.title": "Is It a Bird?", + "advancements.adventure.summon_iron_golem.description": "Summon an Iron Golem to help defend a village", + "advancements.adventure.summon_iron_golem.title": "Hired Help", + "advancements.adventure.throw_trident.description": "Throw a Trident at something.\nNote: Throwing away your only weapon is not a good idea.", + "advancements.adventure.throw_trident.title": "A Throwaway Joke", + "advancements.adventure.totem_of_undying.description": "Use a Totem of Undying to cheat death", + "advancements.adventure.totem_of_undying.title": "Postmortal", + "advancements.adventure.trade_at_world_height.description": "Trade with a Villager at the build height limit", + "advancements.adventure.trade_at_world_height.title": "Star Trader", + "advancements.adventure.trade.description": "Successfully trade with a Villager", + "advancements.adventure.trade.title": "What a Deal!", + "advancements.adventure.trim_with_all_exclusive_armor_patterns.description": "Apply these smithing templates at least once: Spire, Snout, Rib, Ward, Silence, Vex, Tide, Wayfinder", + "advancements.adventure.trim_with_all_exclusive_armor_patterns.title": "Smithing with Style", + "advancements.adventure.trim_with_any_armor_pattern.description": "Craft trimmed armor at a Smithing Table", + "advancements.adventure.trim_with_any_armor_pattern.title": "Crafting a New Look", + "advancements.adventure.two_birds_one_arrow.description": "Kill two Phantoms with a piercing Arrow", + "advancements.adventure.two_birds_one_arrow.title": "Two Birds, One Arrow", + "advancements.adventure.under_lock_and_key.description": "Unlock a Vault with a Trial Key", + "advancements.adventure.under_lock_and_key.title": "Under Lock and Key", + "advancements.adventure.use_lodestone.description": "Use a Compass on a Lodestone", + "advancements.adventure.use_lodestone.title": "Country Lode, Take Me Home", + "advancements.adventure.very_very_frightening.description": "Strike a Villager with lightning", + "advancements.adventure.very_very_frightening.title": "Very Very Frightening", + "advancements.adventure.voluntary_exile.description": "Kill a raid captain.\nMaybe consider staying away from villages for the time being...", + "advancements.adventure.voluntary_exile.title": "Voluntary Exile", + "advancements.adventure.walk_on_powder_snow_with_leather_boots.description": "Walk on Powder Snow... without sinking in it", + "advancements.adventure.walk_on_powder_snow_with_leather_boots.title": "Light as a Rabbit", + "advancements.adventure.who_needs_rockets.description": "Use a Wind Charge to launch yourself upward 8 blocks", + "advancements.adventure.who_needs_rockets.title": "Who Needs Rockets?", + "advancements.adventure.whos_the_pillager_now.description": "Give a Pillager a taste of their own medicine", + "advancements.adventure.whos_the_pillager_now.title": "Who's the Pillager Now?", + "advancements.empty": "There doesn't seem to be anything here...", + "advancements.end.dragon_breath.description": "Collect Dragon's Breath in a Glass Bottle", + "advancements.end.dragon_breath.title": "You Need a Mint", + "advancements.end.dragon_egg.description": "Hold the Dragon Egg", + "advancements.end.dragon_egg.title": "The Next Generation", + "advancements.end.elytra.description": "Find Elytra", + "advancements.end.elytra.title": "Sky's the Limit", + "advancements.end.enter_end_gateway.description": "Escape the island", + "advancements.end.enter_end_gateway.title": "Remote Getaway", + "advancements.end.find_end_city.description": "Go on in, what could happen?", + "advancements.end.find_end_city.title": "The City at the End of the Game", + "advancements.end.kill_dragon.description": "Good luck", + "advancements.end.kill_dragon.title": "Free the End", + "advancements.end.levitate.description": "Levitate up 50 blocks from the attacks of a Shulker", + "advancements.end.levitate.title": "Great View From Up Here", + "advancements.end.respawn_dragon.description": "Respawn the Ender Dragon", + "advancements.end.respawn_dragon.title": "The End... Again...", + "advancements.end.root.description": "Or the beginning?", + "advancements.end.root.title": "The End", + "advancements.husbandry.allay_deliver_cake_to_note_block.description": "Have an Allay drop a Cake at a Note Block", + "advancements.husbandry.allay_deliver_cake_to_note_block.title": "Birthday Song", + "advancements.husbandry.allay_deliver_item_to_player.description": "Have an Allay deliver items to you", + "advancements.husbandry.allay_deliver_item_to_player.title": "You've Got a Friend in Me", + "advancements.husbandry.axolotl_in_a_bucket.description": "Catch an Axolotl in a Bucket", + "advancements.husbandry.axolotl_in_a_bucket.title": "The Cutest Predator", + "advancements.husbandry.balanced_diet.description": "Eat everything that is edible, even if it's not good for you", + "advancements.husbandry.balanced_diet.title": "A Balanced Diet", + "advancements.husbandry.breed_all_animals.description": "Breed all the animals!", + "advancements.husbandry.breed_all_animals.title": "Two by Two", + "advancements.husbandry.breed_an_animal.description": "Breed two animals together", + "advancements.husbandry.breed_an_animal.title": "The Parrots and the Bats", + "advancements.husbandry.complete_catalogue.description": "Tame all Cat variants!", + "advancements.husbandry.complete_catalogue.title": "A Complete Catalogue", + "advancements.husbandry.feed_snifflet.description": "Feed a Snifflet", + "advancements.husbandry.feed_snifflet.title": "Little Sniffs", + "advancements.husbandry.fishy_business.description": "Catch a fish", + "advancements.husbandry.fishy_business.title": "Fishy Business", + "advancements.husbandry.froglights.description": "Have all Froglights in your inventory", + "advancements.husbandry.froglights.title": "With Our Powers Combined!", + "advancements.husbandry.kill_axolotl_target.description": "Team up with an Axolotl and win a fight", + "advancements.husbandry.kill_axolotl_target.title": "The Healing Power of Friendship!", + "advancements.husbandry.leash_all_frog_variants.description": "Get each Frog variant on a Lead", + "advancements.husbandry.leash_all_frog_variants.title": "When the Squad Hops into Town", + "advancements.husbandry.make_a_sign_glow.description": "Make the text of any kind of sign glow", + "advancements.husbandry.make_a_sign_glow.title": "Glow and Behold!", + "advancements.husbandry.netherite_hoe.description": "Use a Netherite Ingot to upgrade a Hoe, and then reevaluate your life choices", + "advancements.husbandry.netherite_hoe.title": "Serious Dedication", + "advancements.husbandry.obtain_sniffer_egg.description": "Obtain a Sniffer Egg", + "advancements.husbandry.obtain_sniffer_egg.title": "Smells Interesting", + "advancements.husbandry.place_dried_ghast_in_water.description": "Place a Dried Ghast block into water", + "advancements.husbandry.place_dried_ghast_in_water.title": "Stay Hydrated!", + "advancements.husbandry.plant_any_sniffer_seed.description": "Plant any Sniffer seed", + "advancements.husbandry.plant_any_sniffer_seed.title": "Planting the Past", + "advancements.husbandry.plant_seed.description": "Plant a seed and watch it grow", + "advancements.husbandry.plant_seed.title": "A Seedy Place", + "advancements.husbandry.remove_wolf_armor.description": "Remove Wolf Armor from a Wolf using Shears", + "advancements.husbandry.remove_wolf_armor.title": "Shear Brilliance", + "advancements.husbandry.repair_wolf_armor.description": "Fully repair damaged Wolf Armor using Armadillo Scutes", + "advancements.husbandry.repair_wolf_armor.title": "Good as New", + "advancements.husbandry.ride_a_boat_with_a_goat.description": "Get in a Boat and float with a Goat", + "advancements.husbandry.ride_a_boat_with_a_goat.title": "Whatever Floats Your Goat!", + "advancements.husbandry.root.description": "The world is full of friends and food", + "advancements.husbandry.root.title": "Husbandry", + "advancements.husbandry.safely_harvest_honey.description": "Use a Campfire to collect Honey from a Beehive using a Glass Bottle without aggravating the Bees", + "advancements.husbandry.safely_harvest_honey.title": "Bee Our Guest", + "advancements.husbandry.silk_touch_nest.description": "Move a Bee Nest or Beehive, with 3 Bees inside, using Silk Touch", + "advancements.husbandry.silk_touch_nest.title": "Total Beelocation", + "advancements.husbandry.tactical_fishing.description": "Catch a Fish... without a Fishing Rod!", + "advancements.husbandry.tactical_fishing.title": "Tactical Fishing", + "advancements.husbandry.tadpole_in_a_bucket.description": "Catch a Tadpole in a Bucket", + "advancements.husbandry.tadpole_in_a_bucket.title": "Bukkit Bukkit", + "advancements.husbandry.tame_an_animal.description": "Tame an animal", + "advancements.husbandry.tame_an_animal.title": "Best Friends Forever", + "advancements.husbandry.wax_off.description": "Scrape Wax off of a Copper block!", + "advancements.husbandry.wax_off.title": "Wax Off", + "advancements.husbandry.wax_on.description": "Apply Honeycomb to a Copper block!", + "advancements.husbandry.wax_on.title": "Wax On", + "advancements.husbandry.whole_pack.description": "Tame one of each Wolf variant", + "advancements.husbandry.whole_pack.title": "The Whole Pack", + "advancements.nether.all_effects.description": "Have every effect applied at the same time", + "advancements.nether.all_effects.title": "How Did We Get Here?", + "advancements.nether.all_potions.description": "Have every potion effect applied at the same time", + "advancements.nether.all_potions.title": "A Furious Cocktail", + "advancements.nether.brew_potion.description": "Brew a Potion", + "advancements.nether.brew_potion.title": "Local Brewery", + "advancements.nether.charge_respawn_anchor.description": "Charge a Respawn Anchor to the maximum", + "advancements.nether.charge_respawn_anchor.title": "Not Quite \"Nine\" Lives", + "advancements.nether.create_beacon.description": "Construct and place a Beacon", + "advancements.nether.create_beacon.title": "Bring Home the Beacon", + "advancements.nether.create_full_beacon.description": "Bring a Beacon to full power", + "advancements.nether.create_full_beacon.title": "Beaconator", + "advancements.nether.distract_piglin.description": "Distract Piglins with gold", + "advancements.nether.distract_piglin.title": "Oh Shiny", + "advancements.nether.explore_nether.description": "Explore all Nether biomes", + "advancements.nether.explore_nether.title": "Hot Tourist Destinations", + "advancements.nether.fast_travel.description": "Use the Nether to travel 7 km in the Overworld", + "advancements.nether.fast_travel.title": "Subspace Bubble", + "advancements.nether.find_bastion.description": "Enter a Bastion Remnant", + "advancements.nether.find_bastion.title": "Those Were the Days", + "advancements.nether.find_fortress.description": "Break your way into a Nether Fortress", + "advancements.nether.find_fortress.title": "A Terrible Fortress", + "advancements.nether.get_wither_skull.description": "Obtain a Wither Skeleton's skull", + "advancements.nether.get_wither_skull.title": "Spooky Scary Skeleton", + "advancements.nether.loot_bastion.description": "Loot a Chest in a Bastion Remnant", + "advancements.nether.loot_bastion.title": "War Pigs", + "advancements.nether.netherite_armor.description": "Get a full suit of Netherite armor", + "advancements.nether.netherite_armor.title": "Cover Me in Debris", + "advancements.nether.obtain_ancient_debris.description": "Obtain Ancient Debris", + "advancements.nether.obtain_ancient_debris.title": "Hidden in the Depths", + "advancements.nether.obtain_blaze_rod.description": "Relieve a Blaze of its rod", + "advancements.nether.obtain_blaze_rod.title": "Into Fire", + "advancements.nether.obtain_crying_obsidian.description": "Obtain Crying Obsidian", + "advancements.nether.obtain_crying_obsidian.title": "Who is Cutting Onions?", + "advancements.nether.return_to_sender.description": "Destroy a Ghast with a fireball", + "advancements.nether.return_to_sender.title": "Return to Sender", + "advancements.nether.ride_strider_in_overworld_lava.description": "Take a Strider for a loooong ride on a lava lake in the Overworld", + "advancements.nether.ride_strider_in_overworld_lava.title": "Feels Like Home", + "advancements.nether.ride_strider.description": "Ride a Strider with a Warped Fungus on a Stick", + "advancements.nether.ride_strider.title": "This Boat Has Legs", + "advancements.nether.root.description": "Bring summer clothes", + "advancements.nether.root.title": "Nether", + "advancements.nether.summon_wither.description": "Summon the Wither", + "advancements.nether.summon_wither.title": "Withering Heights", + "advancements.nether.uneasy_alliance.description": "Rescue a Ghast from the Nether, bring it safely home to the Overworld... and then kill it", + "advancements.nether.uneasy_alliance.title": "Uneasy Alliance", + "advancements.nether.use_lodestone.description": "Use a Compass on a Lodestone", + "advancements.nether.use_lodestone.title": "Country Lode, Take Me Home", + "advancements.progress": "%s/%s", + "advancements.sad_label": ":(", + "advancements.story.cure_zombie_villager.description": "Weaken and then cure a Zombie Villager", + "advancements.story.cure_zombie_villager.title": "Zombie Doctor", + "advancements.story.deflect_arrow.description": "Deflect a projectile with a Shield", + "advancements.story.deflect_arrow.title": "Not Today, Thank You", + "advancements.story.enchant_item.description": "Enchant an item at an Enchanting Table", + "advancements.story.enchant_item.title": "Enchanter", + "advancements.story.enter_the_end.description": "Enter the End Portal", + "advancements.story.enter_the_end.title": "The End?", + "advancements.story.enter_the_nether.description": "Build, light and enter a Nether Portal", + "advancements.story.enter_the_nether.title": "We Need to Go Deeper", + "advancements.story.follow_ender_eye.description": "Follow an Eye of Ender", + "advancements.story.follow_ender_eye.title": "Eye Spy", + "advancements.story.form_obsidian.description": "Obtain a block of Obsidian", + "advancements.story.form_obsidian.title": "Ice Bucket Challenge", + "advancements.story.iron_tools.description": "Upgrade your Pickaxe", + "advancements.story.iron_tools.title": "Isn't It Iron Pick", + "advancements.story.lava_bucket.description": "Fill a Bucket with lava", + "advancements.story.lava_bucket.title": "Hot Stuff", + "advancements.story.mine_diamond.description": "Acquire diamonds", + "advancements.story.mine_diamond.title": "Diamonds!", + "advancements.story.mine_stone.description": "Mine Stone with your new Pickaxe", + "advancements.story.mine_stone.title": "Stone Age", + "advancements.story.obtain_armor.description": "Protect yourself with a piece of iron armor", + "advancements.story.obtain_armor.title": "Suit Up", + "advancements.story.root.description": "The heart and story of the game", + "advancements.story.root.title": "Minecraft", + "advancements.story.shiny_gear.description": "Diamond armor saves lives", + "advancements.story.shiny_gear.title": "Cover Me with Diamonds", + "advancements.story.smelt_iron.description": "Smelt an Iron Ingot", + "advancements.story.smelt_iron.title": "Acquire Hardware", + "advancements.story.upgrade_tools.description": "Construct a better Pickaxe", + "advancements.story.upgrade_tools.title": "Getting an Upgrade", + "advancements.toast.challenge": "Challenge Complete!", + "advancements.toast.goal": "Goal Reached!", + "advancements.toast.task": "Advancement Made!", + "advMode.command": "Console Command", + "advMode.mode": "Mode", + "advMode.mode.auto": "Repeat", + "advMode.mode.autoexec.bat": "Always Active", + "advMode.mode.conditional": "Conditional", + "advMode.mode.redstone": "Impulse", + "advMode.mode.redstoneTriggered": "Needs Redstone", + "advMode.mode.sequence": "Chain", + "advMode.mode.unconditional": "Unconditional", + "advMode.notAllowed": "Must be an opped player in creative mode", + "advMode.notEnabled": "Command blocks are not enabled", + "advMode.notEnabled.spawner": "Spawner blocks are not enabled", + "advMode.previousOutput": "Previous Output", + "advMode.setCommand": "Set Console Command for Block", + "advMode.setCommand.success": "Command set: %s", + "advMode.trackOutput": "Track output", + "advMode.triggering": "Triggering", + "advMode.type": "Type", + "argument.anchor.invalid": "Invalid entity anchor position %s", + "argument.angle.incomplete": "Incomplete (expected 1 angle)", + "argument.angle.invalid": "Invalid angle", + "argument.block.id.invalid": "Unknown block type '%s'", + "argument.block.property.duplicate": "Property '%s' can only be set once for block %s", + "argument.block.property.invalid": "Block %s does not accept '%s' for %s property", + "argument.block.property.novalue": "Expected value for property '%s' on block %s", + "argument.block.property.unclosed": "Expected closing ] for block state properties", + "argument.block.property.unknown": "Block %s does not have property '%s'", + "argument.block.tag.disallowed": "Tags aren't allowed here; only actual blocks are", + "argument.color.invalid": "Unknown color '%s'", + "argument.component.invalid": "Invalid chat component: %s", + "argument.criteria.invalid": "Unknown criterion '%s'", + "argument.dimension.invalid": "Unknown dimension '%s'", + "argument.double.big": "Double must not be more than %s: found %s", + "argument.double.low": "Double must not be less than %s: found %s", + "argument.entity.invalid": "Invalid name or UUID", + "argument.entity.notfound.entity": "No entity was found", + "argument.entity.notfound.player": "No player was found", + "argument.entity.options.advancements.description": "Players with advancements", + "argument.entity.options.distance.description": "Distance to entity", + "argument.entity.options.distance.negative": "Distance cannot be negative", + "argument.entity.options.dx.description": "Entities between x and x + dx", + "argument.entity.options.dy.description": "Entities between y and y + dy", + "argument.entity.options.dz.description": "Entities between z and z + dz", + "argument.entity.options.gamemode.description": "Players with game mode", + "argument.entity.options.inapplicable": "Option '%s' isn't applicable here", + "argument.entity.options.level.description": "Experience level", + "argument.entity.options.level.negative": "Level shouldn't be negative", + "argument.entity.options.limit.description": "Maximum number of entities to return", + "argument.entity.options.limit.toosmall": "Limit must be at least 1", + "argument.entity.options.mode.invalid": "Invalid or unknown game mode '%s'", + "argument.entity.options.name.description": "Entity name", + "argument.entity.options.nbt.description": "Entities with NBT", + "argument.entity.options.predicate.description": "Custom predicate", + "argument.entity.options.scores.description": "Entities with scores", + "argument.entity.options.sort.description": "Sort the entities", + "argument.entity.options.sort.irreversible": "Invalid or unknown sort type '%s'", + "argument.entity.options.tag.description": "Entities with tag", + "argument.entity.options.team.description": "Entities on team", + "argument.entity.options.type.description": "Entities of type", + "argument.entity.options.type.invalid": "Invalid or unknown entity type '%s'", + "argument.entity.options.unknown": "Unknown option '%s'", + "argument.entity.options.unterminated": "Expected end of options", + "argument.entity.options.valueless": "Expected value for option '%s'", + "argument.entity.options.x_rotation.description": "Entity's x rotation", + "argument.entity.options.x.description": "x position", + "argument.entity.options.y_rotation.description": "Entity's y rotation", + "argument.entity.options.y.description": "y position", + "argument.entity.options.z.description": "z position", + "argument.entity.selector.allEntities": "All entities", + "argument.entity.selector.allPlayers": "All players", + "argument.entity.selector.missing": "Missing selector type", + "argument.entity.selector.nearestEntity": "Nearest entity", + "argument.entity.selector.nearestPlayer": "Nearest player", + "argument.entity.selector.not_allowed": "Selector not allowed", + "argument.entity.selector.randomPlayer": "Random player", + "argument.entity.selector.self": "Current entity", + "argument.entity.selector.unknown": "Unknown selector type '%s'", + "argument.entity.toomany": "Only one entity is allowed, but the provided selector allows more than one", + "argument.enum.invalid": "Invalid value \"%s\"", + "argument.float.big": "Float must not be more than %s: found %s", + "argument.float.low": "Float must not be less than %s: found %s", + "argument.gamemode.invalid": "Unknown game mode: %s", + "argument.hexcolor.invalid": "Invalid hex color code '%s'", + "argument.id.invalid": "Invalid ID", + "argument.id.unknown": "Unknown ID: %s", + "argument.integer.big": "Integer must not be more than %s: found %s", + "argument.integer.low": "Integer must not be less than %s: found %s", + "argument.item.id.invalid": "Unknown item '%s'", + "argument.item.tag.disallowed": "Tags aren't allowed here; only actual items are", + "argument.literal.incorrect": "Expected literal %s", + "argument.long.big": "Long must not be more than %s: found %s", + "argument.long.low": "Long must not be less than %s: found %s", + "argument.message.too_long": "Chat message was too long (%s > maximum %s characters)", + "argument.nbt.array.invalid": "Invalid array type '%s'", + "argument.nbt.array.mixed": "Can't insert %s into %s", + "argument.nbt.expected.compound": "Expected compound tag", + "argument.nbt.expected.key": "Expected key", + "argument.nbt.expected.value": "Expected value", + "argument.nbt.list.mixed": "Can't insert %s into list of %s", + "argument.nbt.trailing": "Unexpected trailing data", + "argument.player.entities": "Only players may be affected by this command, but the provided selector includes entities", + "argument.player.toomany": "Only one player is allowed, but the provided selector allows more than one", + "argument.player.unknown": "That player does not exist", + "argument.pos.missing.double": "Expected a coordinate", + "argument.pos.missing.int": "Expected a block position", + "argument.pos.mixed": "Cannot mix world & local coordinates (everything must either use ^ or not)", + "argument.pos.outofbounds": "That position is outside the allowed boundaries.", + "argument.pos.outofworld": "That position is out of this world!", + "argument.pos.unloaded": "That position is not loaded", + "argument.pos2d.incomplete": "Incomplete (expected 2 coordinates)", + "argument.pos3d.incomplete": "Incomplete (expected 3 coordinates)", + "argument.range.empty": "Expected value or range of values", + "argument.range.ints": "Only whole numbers are allowed; not decimals", + "argument.range.swapped": "Min cannot be bigger than max", + "argument.resource_or_id.failed_to_parse": "Failed to parse structure: %s", + "argument.resource_or_id.invalid": "Invalid id or tag", + "argument.resource_or_id.no_such_element": "Can't find element '%s' in registry '%s'", + "argument.resource_selector.not_found": "No matches for selector '%s' of type '%s'", + "argument.resource_tag.invalid_type": "Tag '%s' has wrong type '%s' (expected '%s')", + "argument.resource_tag.not_found": "Can't find tag '%s' of type '%s'", + "argument.resource.invalid_type": "Element '%s' has wrong type '%s' (expected '%s')", + "argument.resource.not_found": "Can't find element '%s' of type '%s'", + "argument.rotation.incomplete": "Incomplete (expected 2 coordinates)", + "argument.scoreboardDisplaySlot.invalid": "Unknown display slot '%s'", + "argument.scoreHolder.empty": "No relevant score holders could be found", + "argument.style.invalid": "Invalid style: %s", + "argument.time.invalid_tick_count": "The tick count must be non-negative", + "argument.time.invalid_unit": "Invalid unit", + "argument.time.tick_count_too_low": "The tick count must not be less than %s: found %s", + "argument.uuid.invalid": "Invalid UUID", + "argument.waypoint.invalid": "Selected entity is not a waypoint", + "arguments.block.tag.unknown": "Unknown block tag '%s'", + "arguments.function.tag.unknown": "Unknown function tag '%s'", + "arguments.function.unknown": "Unknown function %s", + "arguments.item.component.expected": "Expected item component", + "arguments.item.component.malformed": "Malformed '%s' component: '%s'", + "arguments.item.component.repeated": "Item component '%s' was repeated, but only one value can be specified", + "arguments.item.component.unknown": "Unknown item component '%s'", + "arguments.item.malformed": "Malformed item: '%s'", + "arguments.item.overstacked": "%s can only stack up to %s", + "arguments.item.predicate.malformed": "Malformed '%s' predicate: '%s'", + "arguments.item.predicate.unknown": "Unknown item predicate '%s'", + "arguments.item.tag.unknown": "Unknown item tag '%s'", + "arguments.nbtpath.node.invalid": "Invalid NBT path element", + "arguments.nbtpath.nothing_found": "Found no elements matching %s", + "arguments.nbtpath.too_deep": "Resulting NBT too deeply nested", + "arguments.nbtpath.too_large": "Resulting NBT too large", + "arguments.objective.notFound": "Unknown scoreboard objective '%s'", + "arguments.objective.readonly": "Scoreboard objective '%s' is read-only", + "arguments.operation.div0": "Cannot divide by zero", + "arguments.operation.invalid": "Invalid operation", + "arguments.swizzle.invalid": "Invalid swizzle: expected combination of 'x', 'y' and 'z'", + "attribute.modifier.equals.0": "%s %s", + "attribute.modifier.equals.1": "%s%% %s", + "attribute.modifier.equals.2": "%s%% %s", + "attribute.modifier.plus.0": "+%s %s", + "attribute.modifier.plus.1": "+%s%% %s", + "attribute.modifier.plus.2": "+%s%% %s", + "attribute.modifier.take.0": "-%s %s", + "attribute.modifier.take.1": "-%s%% %s", + "attribute.modifier.take.2": "-%s%% %s", + "attribute.name.armor": "Armor", + "attribute.name.armor_toughness": "Armor Toughness", + "attribute.name.attack_damage": "Attack Damage", + "attribute.name.attack_knockback": "Attack Knockback", + "attribute.name.attack_speed": "Attack Speed", + "attribute.name.block_break_speed": "Block Break Speed", + "attribute.name.block_interaction_range": "Block Interaction Range", + "attribute.name.burning_time": "Burning Time", + "attribute.name.camera_distance": "Camera Distance", + "attribute.name.entity_interaction_range": "Entity Interaction Range", + "attribute.name.explosion_knockback_resistance": "Explosion Knockback Resistance", + "attribute.name.fall_damage_multiplier": "Fall Damage Multiplier", + "attribute.name.flying_speed": "Flying Speed", + "attribute.name.follow_range": "Mob Follow Range", + "attribute.name.generic.armor": "Armor", + "attribute.name.generic.armor_toughness": "Armor Toughness", + "attribute.name.generic.attack_damage": "Attack Damage", + "attribute.name.generic.attack_knockback": "Attack Knockback", + "attribute.name.generic.attack_speed": "Attack Speed", + "attribute.name.generic.block_interaction_range": "Block Interaction Range", + "attribute.name.generic.burning_time": "Burning Time", + "attribute.name.generic.entity_interaction_range": "Entity Interaction Range", + "attribute.name.generic.explosion_knockback_resistance": "Explosion Knockback Resistance", + "attribute.name.generic.fall_damage_multiplier": "Fall Damage Multiplier", + "attribute.name.generic.flying_speed": "Flying Speed", + "attribute.name.generic.follow_range": "Mob Follow Range", + "attribute.name.generic.gravity": "Gravity", + "attribute.name.generic.jump_strength": "Jump Strength", + "attribute.name.generic.knockback_resistance": "Knockback Resistance", + "attribute.name.generic.luck": "Luck", + "attribute.name.generic.max_absorption": "Max Absorption", + "attribute.name.generic.max_health": "Max Health", + "attribute.name.generic.movement_efficiency": "Movement Efficiency", + "attribute.name.generic.movement_speed": "Speed", + "attribute.name.generic.oxygen_bonus": "Oxygen Bonus", + "attribute.name.generic.safe_fall_distance": "Safe Fall Distance", + "attribute.name.generic.scale": "Scale", + "attribute.name.generic.step_height": "Step Height", + "attribute.name.generic.water_movement_efficiency": "Water Movement Efficiency", + "attribute.name.gravity": "Gravity", + "attribute.name.horse.jump_strength": "Horse Jump Strength", + "attribute.name.jump_strength": "Jump Strength", + "attribute.name.knockback_resistance": "Knockback Resistance", + "attribute.name.luck": "Luck", + "attribute.name.max_absorption": "Max Absorption", + "attribute.name.max_health": "Max Health", + "attribute.name.mining_efficiency": "Mining Efficiency", + "attribute.name.movement_efficiency": "Movement Efficiency", + "attribute.name.movement_speed": "Speed", + "attribute.name.oxygen_bonus": "Oxygen Bonus", + "attribute.name.player.block_break_speed": "Block Break Speed", + "attribute.name.player.block_interaction_range": "Block Interaction Range", + "attribute.name.player.entity_interaction_range": "Entity Interaction Range", + "attribute.name.player.mining_efficiency": "Mining Efficiency", + "attribute.name.player.sneaking_speed": "Sneaking Speed", + "attribute.name.player.submerged_mining_speed": "Submerged Mining Speed", + "attribute.name.player.sweeping_damage_ratio": "Sweeping Damage Ratio", + "attribute.name.safe_fall_distance": "Safe Fall Distance", + "attribute.name.scale": "Scale", + "attribute.name.sneaking_speed": "Sneaking Speed", + "attribute.name.spawn_reinforcements": "Zombie Reinforcements", + "attribute.name.step_height": "Step Height", + "attribute.name.submerged_mining_speed": "Submerged Mining Speed", + "attribute.name.sweeping_damage_ratio": "Sweeping Damage Ratio", + "attribute.name.tempt_range": "Mob Tempt Range", + "attribute.name.water_movement_efficiency": "Water Movement Efficiency", + "attribute.name.waypoint_receive_range": "Waypoint Receive Range", + "attribute.name.waypoint_transmit_range": "Waypoint Transmit Range", + "attribute.name.zombie.spawn_reinforcements": "Zombie Reinforcements", + "biome.minecraft.badlands": "Badlands", + "biome.minecraft.bamboo_jungle": "Bamboo Jungle", + "biome.minecraft.basalt_deltas": "Basalt Deltas", + "biome.minecraft.beach": "Beach", + "biome.minecraft.birch_forest": "Birch Forest", + "biome.minecraft.cherry_grove": "Cherry Grove", + "biome.minecraft.cold_ocean": "Cold Ocean", + "biome.minecraft.crimson_forest": "Crimson Forest", + "biome.minecraft.dark_forest": "Dark Forest", + "biome.minecraft.deep_cold_ocean": "Deep Cold Ocean", + "biome.minecraft.deep_dark": "Deep Dark", + "biome.minecraft.deep_frozen_ocean": "Deep Frozen Ocean", + "biome.minecraft.deep_lukewarm_ocean": "Deep Lukewarm Ocean", + "biome.minecraft.deep_ocean": "Deep Ocean", + "biome.minecraft.desert": "Desert", + "biome.minecraft.dripstone_caves": "Dripstone Caves", + "biome.minecraft.end_barrens": "End Barrens", + "biome.minecraft.end_highlands": "End Highlands", + "biome.minecraft.end_midlands": "End Midlands", + "biome.minecraft.eroded_badlands": "Eroded Badlands", + "biome.minecraft.flower_forest": "Flower Forest", + "biome.minecraft.forest": "Forest", + "biome.minecraft.frozen_ocean": "Frozen Ocean", + "biome.minecraft.frozen_peaks": "Frozen Peaks", + "biome.minecraft.frozen_river": "Frozen River", + "biome.minecraft.grove": "Grove", + "biome.minecraft.ice_spikes": "Ice Spikes", + "biome.minecraft.jagged_peaks": "Jagged Peaks", + "biome.minecraft.jungle": "Jungle", + "biome.minecraft.lukewarm_ocean": "Lukewarm Ocean", + "biome.minecraft.lush_caves": "Lush Caves", + "biome.minecraft.mangrove_swamp": "Mangrove Swamp", + "biome.minecraft.meadow": "Meadow", + "biome.minecraft.mushroom_fields": "Mushroom Fields", + "biome.minecraft.nether_wastes": "Nether Wastes", + "biome.minecraft.ocean": "Ocean", + "biome.minecraft.old_growth_birch_forest": "Old Growth Birch Forest", + "biome.minecraft.old_growth_pine_taiga": "Old Growth Pine Taiga", + "biome.minecraft.old_growth_spruce_taiga": "Old Growth Spruce Taiga", + "biome.minecraft.pale_garden": "Pale Garden", + "biome.minecraft.plains": "Plains", + "biome.minecraft.river": "River", + "biome.minecraft.savanna": "Savanna", + "biome.minecraft.savanna_plateau": "Savanna Plateau", + "biome.minecraft.small_end_islands": "Small End Islands", + "biome.minecraft.snowy_beach": "Snowy Beach", + "biome.minecraft.snowy_plains": "Snowy Plains", + "biome.minecraft.snowy_slopes": "Snowy Slopes", + "biome.minecraft.snowy_taiga": "Snowy Taiga", + "biome.minecraft.soul_sand_valley": "Soul Sand Valley", + "biome.minecraft.sparse_jungle": "Sparse Jungle", + "biome.minecraft.stony_peaks": "Stony Peaks", + "biome.minecraft.stony_shore": "Stony Shore", + "biome.minecraft.sunflower_plains": "Sunflower Plains", + "biome.minecraft.swamp": "Swamp", + "biome.minecraft.taiga": "Taiga", + "biome.minecraft.the_end": "The End", + "biome.minecraft.the_void": "The Void", + "biome.minecraft.warm_ocean": "Warm Ocean", + "biome.minecraft.warped_forest": "Warped Forest", + "biome.minecraft.windswept_forest": "Windswept Forest", + "biome.minecraft.windswept_gravelly_hills": "Windswept Gravelly Hills", + "biome.minecraft.windswept_hills": "Windswept Hills", + "biome.minecraft.windswept_savanna": "Windswept Savanna", + "biome.minecraft.wooded_badlands": "Wooded Badlands", + "block.minecraft.acacia_button": "Acacia Button", + "block.minecraft.acacia_door": "Acacia Door", + "block.minecraft.acacia_fence": "Acacia Fence", + "block.minecraft.acacia_fence_gate": "Acacia Fence Gate", + "block.minecraft.acacia_hanging_sign": "Acacia Hanging Sign", + "block.minecraft.acacia_leaves": "Acacia Leaves", + "block.minecraft.acacia_log": "Acacia Log", + "block.minecraft.acacia_planks": "Acacia Planks", + "block.minecraft.acacia_pressure_plate": "Acacia Pressure Plate", + "block.minecraft.acacia_sapling": "Acacia Sapling", + "block.minecraft.acacia_shelf": "Acacia Shelf", + "block.minecraft.acacia_sign": "Acacia Sign", + "block.minecraft.acacia_slab": "Acacia Slab", + "block.minecraft.acacia_stairs": "Acacia Stairs", + "block.minecraft.acacia_trapdoor": "Acacia Trapdoor", + "block.minecraft.acacia_wall_hanging_sign": "Acacia Wall Hanging Sign", + "block.minecraft.acacia_wall_sign": "Acacia Wall Sign", + "block.minecraft.acacia_wood": "Acacia Wood", + "block.minecraft.activator_rail": "Activator Rail", + "block.minecraft.air": "Air", + "block.minecraft.allium": "Allium", + "block.minecraft.amethyst_block": "Block of Amethyst", + "block.minecraft.amethyst_cluster": "Amethyst Cluster", + "block.minecraft.ancient_debris": "Ancient Debris", + "block.minecraft.andesite": "Andesite", + "block.minecraft.andesite_slab": "Andesite Slab", + "block.minecraft.andesite_stairs": "Andesite Stairs", + "block.minecraft.andesite_wall": "Andesite Wall", + "block.minecraft.anvil": "Anvil", + "block.minecraft.attached_melon_stem": "Attached Melon Stem", + "block.minecraft.attached_pumpkin_stem": "Attached Pumpkin Stem", + "block.minecraft.azalea": "Azalea", + "block.minecraft.azalea_leaves": "Azalea Leaves", + "block.minecraft.azure_bluet": "Azure Bluet", + "block.minecraft.bamboo": "Bamboo", + "block.minecraft.bamboo_block": "Block of Bamboo", + "block.minecraft.bamboo_button": "Bamboo Button", + "block.minecraft.bamboo_door": "Bamboo Door", + "block.minecraft.bamboo_fence": "Bamboo Fence", + "block.minecraft.bamboo_fence_gate": "Bamboo Fence Gate", + "block.minecraft.bamboo_hanging_sign": "Bamboo Hanging Sign", + "block.minecraft.bamboo_mosaic": "Bamboo Mosaic", + "block.minecraft.bamboo_mosaic_slab": "Bamboo Mosaic Slab", + "block.minecraft.bamboo_mosaic_stairs": "Bamboo Mosaic Stairs", + "block.minecraft.bamboo_planks": "Bamboo Planks", + "block.minecraft.bamboo_pressure_plate": "Bamboo Pressure Plate", + "block.minecraft.bamboo_sapling": "Bamboo Shoot", + "block.minecraft.bamboo_shelf": "Bamboo Shelf", + "block.minecraft.bamboo_sign": "Bamboo Sign", + "block.minecraft.bamboo_slab": "Bamboo Slab", + "block.minecraft.bamboo_stairs": "Bamboo Stairs", + "block.minecraft.bamboo_trapdoor": "Bamboo Trapdoor", + "block.minecraft.bamboo_wall_hanging_sign": "Bamboo Wall Hanging Sign", + "block.minecraft.bamboo_wall_sign": "Bamboo Wall Sign", + "block.minecraft.banner.base.black": "Fully Black Field", + "block.minecraft.banner.base.blue": "Fully Blue Field", + "block.minecraft.banner.base.brown": "Fully Brown Field", + "block.minecraft.banner.base.cyan": "Fully Cyan Field", + "block.minecraft.banner.base.gray": "Fully Gray Field", + "block.minecraft.banner.base.green": "Fully Green Field", + "block.minecraft.banner.base.light_blue": "Fully Light Blue Field", + "block.minecraft.banner.base.light_gray": "Fully Light Gray Field", + "block.minecraft.banner.base.lime": "Fully Lime Field", + "block.minecraft.banner.base.magenta": "Fully Magenta Field", + "block.minecraft.banner.base.orange": "Fully Orange Field", + "block.minecraft.banner.base.pink": "Fully Pink Field", + "block.minecraft.banner.base.purple": "Fully Purple Field", + "block.minecraft.banner.base.red": "Fully Red Field", + "block.minecraft.banner.base.white": "Fully White Field", + "block.minecraft.banner.base.yellow": "Fully Yellow Field", + "block.minecraft.banner.border.black": "Black Bordure", + "block.minecraft.banner.border.blue": "Blue Bordure", + "block.minecraft.banner.border.brown": "Brown Bordure", + "block.minecraft.banner.border.cyan": "Cyan Bordure", + "block.minecraft.banner.border.gray": "Gray Bordure", + "block.minecraft.banner.border.green": "Green Bordure", + "block.minecraft.banner.border.light_blue": "Light Blue Bordure", + "block.minecraft.banner.border.light_gray": "Light Gray Bordure", + "block.minecraft.banner.border.lime": "Lime Bordure", + "block.minecraft.banner.border.magenta": "Magenta Bordure", + "block.minecraft.banner.border.orange": "Orange Bordure", + "block.minecraft.banner.border.pink": "Pink Bordure", + "block.minecraft.banner.border.purple": "Purple Bordure", + "block.minecraft.banner.border.red": "Red Bordure", + "block.minecraft.banner.border.white": "White Bordure", + "block.minecraft.banner.border.yellow": "Yellow Bordure", + "block.minecraft.banner.bricks.black": "Black Field Masoned", + "block.minecraft.banner.bricks.blue": "Blue Field Masoned", + "block.minecraft.banner.bricks.brown": "Brown Field Masoned", + "block.minecraft.banner.bricks.cyan": "Cyan Field Masoned", + "block.minecraft.banner.bricks.gray": "Gray Field Masoned", + "block.minecraft.banner.bricks.green": "Green Field Masoned", + "block.minecraft.banner.bricks.light_blue": "Light Blue Field Masoned", + "block.minecraft.banner.bricks.light_gray": "Light Gray Field Masoned", + "block.minecraft.banner.bricks.lime": "Lime Field Masoned", + "block.minecraft.banner.bricks.magenta": "Magenta Field Masoned", + "block.minecraft.banner.bricks.orange": "Orange Field Masoned", + "block.minecraft.banner.bricks.pink": "Pink Field Masoned", + "block.minecraft.banner.bricks.purple": "Purple Field Masoned", + "block.minecraft.banner.bricks.red": "Red Field Masoned", + "block.minecraft.banner.bricks.white": "White Field Masoned", + "block.minecraft.banner.bricks.yellow": "Yellow Field Masoned", + "block.minecraft.banner.circle.black": "Black Roundel", + "block.minecraft.banner.circle.blue": "Blue Roundel", + "block.minecraft.banner.circle.brown": "Brown Roundel", + "block.minecraft.banner.circle.cyan": "Cyan Roundel", + "block.minecraft.banner.circle.gray": "Gray Roundel", + "block.minecraft.banner.circle.green": "Green Roundel", + "block.minecraft.banner.circle.light_blue": "Light Blue Roundel", + "block.minecraft.banner.circle.light_gray": "Light Gray Roundel", + "block.minecraft.banner.circle.lime": "Lime Roundel", + "block.minecraft.banner.circle.magenta": "Magenta Roundel", + "block.minecraft.banner.circle.orange": "Orange Roundel", + "block.minecraft.banner.circle.pink": "Pink Roundel", + "block.minecraft.banner.circle.purple": "Purple Roundel", + "block.minecraft.banner.circle.red": "Red Roundel", + "block.minecraft.banner.circle.white": "White Roundel", + "block.minecraft.banner.circle.yellow": "Yellow Roundel", + "block.minecraft.banner.creeper.black": "Black Creeper Charge", + "block.minecraft.banner.creeper.blue": "Blue Creeper Charge", + "block.minecraft.banner.creeper.brown": "Brown Creeper Charge", + "block.minecraft.banner.creeper.cyan": "Cyan Creeper Charge", + "block.minecraft.banner.creeper.gray": "Gray Creeper Charge", + "block.minecraft.banner.creeper.green": "Green Creeper Charge", + "block.minecraft.banner.creeper.light_blue": "Light Blue Creeper Charge", + "block.minecraft.banner.creeper.light_gray": "Light Gray Creeper Charge", + "block.minecraft.banner.creeper.lime": "Lime Creeper Charge", + "block.minecraft.banner.creeper.magenta": "Magenta Creeper Charge", + "block.minecraft.banner.creeper.orange": "Orange Creeper Charge", + "block.minecraft.banner.creeper.pink": "Pink Creeper Charge", + "block.minecraft.banner.creeper.purple": "Purple Creeper Charge", + "block.minecraft.banner.creeper.red": "Red Creeper Charge", + "block.minecraft.banner.creeper.white": "White Creeper Charge", + "block.minecraft.banner.creeper.yellow": "Yellow Creeper Charge", + "block.minecraft.banner.cross.black": "Black Saltire", + "block.minecraft.banner.cross.blue": "Blue Saltire", + "block.minecraft.banner.cross.brown": "Brown Saltire", + "block.minecraft.banner.cross.cyan": "Cyan Saltire", + "block.minecraft.banner.cross.gray": "Gray Saltire", + "block.minecraft.banner.cross.green": "Green Saltire", + "block.minecraft.banner.cross.light_blue": "Light Blue Saltire", + "block.minecraft.banner.cross.light_gray": "Light Gray Saltire", + "block.minecraft.banner.cross.lime": "Lime Saltire", + "block.minecraft.banner.cross.magenta": "Magenta Saltire", + "block.minecraft.banner.cross.orange": "Orange Saltire", + "block.minecraft.banner.cross.pink": "Pink Saltire", + "block.minecraft.banner.cross.purple": "Purple Saltire", + "block.minecraft.banner.cross.red": "Red Saltire", + "block.minecraft.banner.cross.white": "White Saltire", + "block.minecraft.banner.cross.yellow": "Yellow Saltire", + "block.minecraft.banner.curly_border.black": "Black Bordure Indented", + "block.minecraft.banner.curly_border.blue": "Blue Bordure Indented", + "block.minecraft.banner.curly_border.brown": "Brown Bordure Indented", + "block.minecraft.banner.curly_border.cyan": "Cyan Bordure Indented", + "block.minecraft.banner.curly_border.gray": "Gray Bordure Indented", + "block.minecraft.banner.curly_border.green": "Green Bordure Indented", + "block.minecraft.banner.curly_border.light_blue": "Light Blue Bordure Indented", + "block.minecraft.banner.curly_border.light_gray": "Light Gray Bordure Indented", + "block.minecraft.banner.curly_border.lime": "Lime Bordure Indented", + "block.minecraft.banner.curly_border.magenta": "Magenta Bordure Indented", + "block.minecraft.banner.curly_border.orange": "Orange Bordure Indented", + "block.minecraft.banner.curly_border.pink": "Pink Bordure Indented", + "block.minecraft.banner.curly_border.purple": "Purple Bordure Indented", + "block.minecraft.banner.curly_border.red": "Red Bordure Indented", + "block.minecraft.banner.curly_border.white": "White Bordure Indented", + "block.minecraft.banner.curly_border.yellow": "Yellow Bordure Indented", + "block.minecraft.banner.diagonal_left.black": "Black Per Bend Sinister", + "block.minecraft.banner.diagonal_left.blue": "Blue Per Bend Sinister", + "block.minecraft.banner.diagonal_left.brown": "Brown Per Bend Sinister", + "block.minecraft.banner.diagonal_left.cyan": "Cyan Per Bend Sinister", + "block.minecraft.banner.diagonal_left.gray": "Gray Per Bend Sinister", + "block.minecraft.banner.diagonal_left.green": "Green Per Bend Sinister", + "block.minecraft.banner.diagonal_left.light_blue": "Light Blue Per Bend Sinister", + "block.minecraft.banner.diagonal_left.light_gray": "Light Gray Per Bend Sinister", + "block.minecraft.banner.diagonal_left.lime": "Lime Per Bend Sinister", + "block.minecraft.banner.diagonal_left.magenta": "Magenta Per Bend Sinister", + "block.minecraft.banner.diagonal_left.orange": "Orange Per Bend Sinister", + "block.minecraft.banner.diagonal_left.pink": "Pink Per Bend Sinister", + "block.minecraft.banner.diagonal_left.purple": "Purple Per Bend Sinister", + "block.minecraft.banner.diagonal_left.red": "Red Per Bend Sinister", + "block.minecraft.banner.diagonal_left.white": "White Per Bend Sinister", + "block.minecraft.banner.diagonal_left.yellow": "Yellow Per Bend Sinister", + "block.minecraft.banner.diagonal_right.black": "Black Per Bend", + "block.minecraft.banner.diagonal_right.blue": "Blue Per Bend", + "block.minecraft.banner.diagonal_right.brown": "Brown Per Bend", + "block.minecraft.banner.diagonal_right.cyan": "Cyan Per Bend", + "block.minecraft.banner.diagonal_right.gray": "Gray Per Bend", + "block.minecraft.banner.diagonal_right.green": "Green Per Bend", + "block.minecraft.banner.diagonal_right.light_blue": "Light Blue Per Bend", + "block.minecraft.banner.diagonal_right.light_gray": "Light Gray Per Bend", + "block.minecraft.banner.diagonal_right.lime": "Lime Per Bend", + "block.minecraft.banner.diagonal_right.magenta": "Magenta Per Bend", + "block.minecraft.banner.diagonal_right.orange": "Orange Per Bend", + "block.minecraft.banner.diagonal_right.pink": "Pink Per Bend", + "block.minecraft.banner.diagonal_right.purple": "Purple Per Bend", + "block.minecraft.banner.diagonal_right.red": "Red Per Bend", + "block.minecraft.banner.diagonal_right.white": "White Per Bend", + "block.minecraft.banner.diagonal_right.yellow": "Yellow Per Bend", + "block.minecraft.banner.diagonal_up_left.black": "Black Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.blue": "Blue Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.brown": "Brown Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.cyan": "Cyan Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.gray": "Gray Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.green": "Green Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.light_blue": "Light Blue Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.light_gray": "Light Gray Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.lime": "Lime Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.magenta": "Magenta Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.orange": "Orange Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.pink": "Pink Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.purple": "Purple Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.red": "Red Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.white": "White Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.yellow": "Yellow Per Bend Inverted", + "block.minecraft.banner.diagonal_up_right.black": "Black Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.blue": "Blue Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.brown": "Brown Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.cyan": "Cyan Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.gray": "Gray Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.green": "Green Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.light_blue": "Light Blue Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.light_gray": "Light Gray Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.lime": "Lime Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.magenta": "Magenta Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.orange": "Orange Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.pink": "Pink Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.purple": "Purple Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.red": "Red Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.white": "White Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.yellow": "Yellow Per Bend Sinister Inverted", + "block.minecraft.banner.flow.black": "Black Flow", + "block.minecraft.banner.flow.blue": "Blue Flow", + "block.minecraft.banner.flow.brown": "Brown Flow", + "block.minecraft.banner.flow.cyan": "Cyan Flow", + "block.minecraft.banner.flow.gray": "Gray Flow", + "block.minecraft.banner.flow.green": "Green Flow", + "block.minecraft.banner.flow.light_blue": "Light Blue Flow", + "block.minecraft.banner.flow.light_gray": "Light Gray Flow", + "block.minecraft.banner.flow.lime": "Lime Flow", + "block.minecraft.banner.flow.magenta": "Magenta Flow", + "block.minecraft.banner.flow.orange": "Orange Flow", + "block.minecraft.banner.flow.pink": "Pink Flow", + "block.minecraft.banner.flow.purple": "Purple Flow", + "block.minecraft.banner.flow.red": "Red Flow", + "block.minecraft.banner.flow.white": "White Flow", + "block.minecraft.banner.flow.yellow": "Yellow Flow", + "block.minecraft.banner.flower.black": "Black Flower Charge", + "block.minecraft.banner.flower.blue": "Blue Flower Charge", + "block.minecraft.banner.flower.brown": "Brown Flower Charge", + "block.minecraft.banner.flower.cyan": "Cyan Flower Charge", + "block.minecraft.banner.flower.gray": "Gray Flower Charge", + "block.minecraft.banner.flower.green": "Green Flower Charge", + "block.minecraft.banner.flower.light_blue": "Light Blue Flower Charge", + "block.minecraft.banner.flower.light_gray": "Light Gray Flower Charge", + "block.minecraft.banner.flower.lime": "Lime Flower Charge", + "block.minecraft.banner.flower.magenta": "Magenta Flower Charge", + "block.minecraft.banner.flower.orange": "Orange Flower Charge", + "block.minecraft.banner.flower.pink": "Pink Flower Charge", + "block.minecraft.banner.flower.purple": "Purple Flower Charge", + "block.minecraft.banner.flower.red": "Red Flower Charge", + "block.minecraft.banner.flower.white": "White Flower Charge", + "block.minecraft.banner.flower.yellow": "Yellow Flower Charge", + "block.minecraft.banner.globe.black": "Black Globe", + "block.minecraft.banner.globe.blue": "Blue Globe", + "block.minecraft.banner.globe.brown": "Brown Globe", + "block.minecraft.banner.globe.cyan": "Cyan Globe", + "block.minecraft.banner.globe.gray": "Gray Globe", + "block.minecraft.banner.globe.green": "Green Globe", + "block.minecraft.banner.globe.light_blue": "Light Blue Globe", + "block.minecraft.banner.globe.light_gray": "Light Gray Globe", + "block.minecraft.banner.globe.lime": "Lime Globe", + "block.minecraft.banner.globe.magenta": "Magenta Globe", + "block.minecraft.banner.globe.orange": "Orange Globe", + "block.minecraft.banner.globe.pink": "Pink Globe", + "block.minecraft.banner.globe.purple": "Purple Globe", + "block.minecraft.banner.globe.red": "Red Globe", + "block.minecraft.banner.globe.white": "White Globe", + "block.minecraft.banner.globe.yellow": "Yellow Globe", + "block.minecraft.banner.gradient_up.black": "Black Base Gradient", + "block.minecraft.banner.gradient_up.blue": "Blue Base Gradient", + "block.minecraft.banner.gradient_up.brown": "Brown Base Gradient", + "block.minecraft.banner.gradient_up.cyan": "Cyan Base Gradient", + "block.minecraft.banner.gradient_up.gray": "Gray Base Gradient", + "block.minecraft.banner.gradient_up.green": "Green Base Gradient", + "block.minecraft.banner.gradient_up.light_blue": "Light Blue Base Gradient", + "block.minecraft.banner.gradient_up.light_gray": "Light Gray Base Gradient", + "block.minecraft.banner.gradient_up.lime": "Lime Base Gradient", + "block.minecraft.banner.gradient_up.magenta": "Magenta Base Gradient", + "block.minecraft.banner.gradient_up.orange": "Orange Base Gradient", + "block.minecraft.banner.gradient_up.pink": "Pink Base Gradient", + "block.minecraft.banner.gradient_up.purple": "Purple Base Gradient", + "block.minecraft.banner.gradient_up.red": "Red Base Gradient", + "block.minecraft.banner.gradient_up.white": "White Base Gradient", + "block.minecraft.banner.gradient_up.yellow": "Yellow Base Gradient", + "block.minecraft.banner.gradient.black": "Black Gradient", + "block.minecraft.banner.gradient.blue": "Blue Gradient", + "block.minecraft.banner.gradient.brown": "Brown Gradient", + "block.minecraft.banner.gradient.cyan": "Cyan Gradient", + "block.minecraft.banner.gradient.gray": "Gray Gradient", + "block.minecraft.banner.gradient.green": "Green Gradient", + "block.minecraft.banner.gradient.light_blue": "Light Blue Gradient", + "block.minecraft.banner.gradient.light_gray": "Light Gray Gradient", + "block.minecraft.banner.gradient.lime": "Lime Gradient", + "block.minecraft.banner.gradient.magenta": "Magenta Gradient", + "block.minecraft.banner.gradient.orange": "Orange Gradient", + "block.minecraft.banner.gradient.pink": "Pink Gradient", + "block.minecraft.banner.gradient.purple": "Purple Gradient", + "block.minecraft.banner.gradient.red": "Red Gradient", + "block.minecraft.banner.gradient.white": "White Gradient", + "block.minecraft.banner.gradient.yellow": "Yellow Gradient", + "block.minecraft.banner.guster.black": "Black Guster", + "block.minecraft.banner.guster.blue": "Blue Guster", + "block.minecraft.banner.guster.brown": "Brown Guster", + "block.minecraft.banner.guster.cyan": "Cyan Guster", + "block.minecraft.banner.guster.gray": "Gray Guster", + "block.minecraft.banner.guster.green": "Green Guster", + "block.minecraft.banner.guster.light_blue": "Light Blue Guster", + "block.minecraft.banner.guster.light_gray": "Light Gray Guster", + "block.minecraft.banner.guster.lime": "Lime Guster", + "block.minecraft.banner.guster.magenta": "Magenta Guster", + "block.minecraft.banner.guster.orange": "Orange Guster", + "block.minecraft.banner.guster.pink": "Pink Guster", + "block.minecraft.banner.guster.purple": "Purple Guster", + "block.minecraft.banner.guster.red": "Red Guster", + "block.minecraft.banner.guster.white": "White Guster", + "block.minecraft.banner.guster.yellow": "Yellow Guster", + "block.minecraft.banner.half_horizontal_bottom.black": "Black Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.blue": "Blue Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.brown": "Brown Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.cyan": "Cyan Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.gray": "Gray Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.green": "Green Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.light_blue": "Light Blue Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.light_gray": "Light Gray Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.lime": "Lime Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.magenta": "Magenta Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.orange": "Orange Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.pink": "Pink Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.purple": "Purple Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.red": "Red Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.white": "White Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.yellow": "Yellow Per Fess Inverted", + "block.minecraft.banner.half_horizontal.black": "Black Per Fess", + "block.minecraft.banner.half_horizontal.blue": "Blue Per Fess", + "block.minecraft.banner.half_horizontal.brown": "Brown Per Fess", + "block.minecraft.banner.half_horizontal.cyan": "Cyan Per Fess", + "block.minecraft.banner.half_horizontal.gray": "Gray Per Fess", + "block.minecraft.banner.half_horizontal.green": "Green Per Fess", + "block.minecraft.banner.half_horizontal.light_blue": "Light Blue Per Fess", + "block.minecraft.banner.half_horizontal.light_gray": "Light Gray Per Fess", + "block.minecraft.banner.half_horizontal.lime": "Lime Per Fess", + "block.minecraft.banner.half_horizontal.magenta": "Magenta Per Fess", + "block.minecraft.banner.half_horizontal.orange": "Orange Per Fess", + "block.minecraft.banner.half_horizontal.pink": "Pink Per Fess", + "block.minecraft.banner.half_horizontal.purple": "Purple Per Fess", + "block.minecraft.banner.half_horizontal.red": "Red Per Fess", + "block.minecraft.banner.half_horizontal.white": "White Per Fess", + "block.minecraft.banner.half_horizontal.yellow": "Yellow Per Fess", + "block.minecraft.banner.half_vertical_right.black": "Black Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.blue": "Blue Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.brown": "Brown Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.cyan": "Cyan Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.gray": "Gray Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.green": "Green Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.light_blue": "Light Blue Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.light_gray": "Light Gray Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.lime": "Lime Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.magenta": "Magenta Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.orange": "Orange Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.pink": "Pink Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.purple": "Purple Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.red": "Red Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.white": "White Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.yellow": "Yellow Per Pale Inverted", + "block.minecraft.banner.half_vertical.black": "Black Per Pale", + "block.minecraft.banner.half_vertical.blue": "Blue Per Pale", + "block.minecraft.banner.half_vertical.brown": "Brown Per Pale", + "block.minecraft.banner.half_vertical.cyan": "Cyan Per Pale", + "block.minecraft.banner.half_vertical.gray": "Gray Per Pale", + "block.minecraft.banner.half_vertical.green": "Green Per Pale", + "block.minecraft.banner.half_vertical.light_blue": "Light Blue Per Pale", + "block.minecraft.banner.half_vertical.light_gray": "Light Gray Per Pale", + "block.minecraft.banner.half_vertical.lime": "Lime Per Pale", + "block.minecraft.banner.half_vertical.magenta": "Magenta Per Pale", + "block.minecraft.banner.half_vertical.orange": "Orange Per Pale", + "block.minecraft.banner.half_vertical.pink": "Pink Per Pale", + "block.minecraft.banner.half_vertical.purple": "Purple Per Pale", + "block.minecraft.banner.half_vertical.red": "Red Per Pale", + "block.minecraft.banner.half_vertical.white": "White Per Pale", + "block.minecraft.banner.half_vertical.yellow": "Yellow Per Pale", + "block.minecraft.banner.mojang.black": "Black Thing", + "block.minecraft.banner.mojang.blue": "Blue Thing", + "block.minecraft.banner.mojang.brown": "Brown Thing", + "block.minecraft.banner.mojang.cyan": "Cyan Thing", + "block.minecraft.banner.mojang.gray": "Gray Thing", + "block.minecraft.banner.mojang.green": "Green Thing", + "block.minecraft.banner.mojang.light_blue": "Light Blue Thing", + "block.minecraft.banner.mojang.light_gray": "Light Gray Thing", + "block.minecraft.banner.mojang.lime": "Lime Thing", + "block.minecraft.banner.mojang.magenta": "Magenta Thing", + "block.minecraft.banner.mojang.orange": "Orange Thing", + "block.minecraft.banner.mojang.pink": "Pink Thing", + "block.minecraft.banner.mojang.purple": "Purple Thing", + "block.minecraft.banner.mojang.red": "Red Thing", + "block.minecraft.banner.mojang.white": "White Thing", + "block.minecraft.banner.mojang.yellow": "Yellow Thing", + "block.minecraft.banner.piglin.black": "Black Snout", + "block.minecraft.banner.piglin.blue": "Blue Snout", + "block.minecraft.banner.piglin.brown": "Brown Snout", + "block.minecraft.banner.piglin.cyan": "Cyan Snout", + "block.minecraft.banner.piglin.gray": "Gray Snout", + "block.minecraft.banner.piglin.green": "Green Snout", + "block.minecraft.banner.piglin.light_blue": "Light Blue Snout", + "block.minecraft.banner.piglin.light_gray": "Light Gray Snout", + "block.minecraft.banner.piglin.lime": "Lime Snout", + "block.minecraft.banner.piglin.magenta": "Magenta Snout", + "block.minecraft.banner.piglin.orange": "Orange Snout", + "block.minecraft.banner.piglin.pink": "Pink Snout", + "block.minecraft.banner.piglin.purple": "Purple Snout", + "block.minecraft.banner.piglin.red": "Red Snout", + "block.minecraft.banner.piglin.white": "White Snout", + "block.minecraft.banner.piglin.yellow": "Yellow Snout", + "block.minecraft.banner.rhombus.black": "Black Lozenge", + "block.minecraft.banner.rhombus.blue": "Blue Lozenge", + "block.minecraft.banner.rhombus.brown": "Brown Lozenge", + "block.minecraft.banner.rhombus.cyan": "Cyan Lozenge", + "block.minecraft.banner.rhombus.gray": "Gray Lozenge", + "block.minecraft.banner.rhombus.green": "Green Lozenge", + "block.minecraft.banner.rhombus.light_blue": "Light Blue Lozenge", + "block.minecraft.banner.rhombus.light_gray": "Light Gray Lozenge", + "block.minecraft.banner.rhombus.lime": "Lime Lozenge", + "block.minecraft.banner.rhombus.magenta": "Magenta Lozenge", + "block.minecraft.banner.rhombus.orange": "Orange Lozenge", + "block.minecraft.banner.rhombus.pink": "Pink Lozenge", + "block.minecraft.banner.rhombus.purple": "Purple Lozenge", + "block.minecraft.banner.rhombus.red": "Red Lozenge", + "block.minecraft.banner.rhombus.white": "White Lozenge", + "block.minecraft.banner.rhombus.yellow": "Yellow Lozenge", + "block.minecraft.banner.skull.black": "Black Skull Charge", + "block.minecraft.banner.skull.blue": "Blue Skull Charge", + "block.minecraft.banner.skull.brown": "Brown Skull Charge", + "block.minecraft.banner.skull.cyan": "Cyan Skull Charge", + "block.minecraft.banner.skull.gray": "Gray Skull Charge", + "block.minecraft.banner.skull.green": "Green Skull Charge", + "block.minecraft.banner.skull.light_blue": "Light Blue Skull Charge", + "block.minecraft.banner.skull.light_gray": "Light Gray Skull Charge", + "block.minecraft.banner.skull.lime": "Lime Skull Charge", + "block.minecraft.banner.skull.magenta": "Magenta Skull Charge", + "block.minecraft.banner.skull.orange": "Orange Skull Charge", + "block.minecraft.banner.skull.pink": "Pink Skull Charge", + "block.minecraft.banner.skull.purple": "Purple Skull Charge", + "block.minecraft.banner.skull.red": "Red Skull Charge", + "block.minecraft.banner.skull.white": "White Skull Charge", + "block.minecraft.banner.skull.yellow": "Yellow Skull Charge", + "block.minecraft.banner.small_stripes.black": "Black Paly", + "block.minecraft.banner.small_stripes.blue": "Blue Paly", + "block.minecraft.banner.small_stripes.brown": "Brown Paly", + "block.minecraft.banner.small_stripes.cyan": "Cyan Paly", + "block.minecraft.banner.small_stripes.gray": "Gray Paly", + "block.minecraft.banner.small_stripes.green": "Green Paly", + "block.minecraft.banner.small_stripes.light_blue": "Light Blue Paly", + "block.minecraft.banner.small_stripes.light_gray": "Light Gray Paly", + "block.minecraft.banner.small_stripes.lime": "Lime Paly", + "block.minecraft.banner.small_stripes.magenta": "Magenta Paly", + "block.minecraft.banner.small_stripes.orange": "Orange Paly", + "block.minecraft.banner.small_stripes.pink": "Pink Paly", + "block.minecraft.banner.small_stripes.purple": "Purple Paly", + "block.minecraft.banner.small_stripes.red": "Red Paly", + "block.minecraft.banner.small_stripes.white": "White Paly", + "block.minecraft.banner.small_stripes.yellow": "Yellow Paly", + "block.minecraft.banner.square_bottom_left.black": "Black Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.blue": "Blue Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.brown": "Brown Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.cyan": "Cyan Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.gray": "Gray Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.green": "Green Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.light_blue": "Light Blue Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.light_gray": "Light Gray Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.lime": "Lime Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.magenta": "Magenta Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.orange": "Orange Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.pink": "Pink Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.purple": "Purple Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.red": "Red Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.white": "White Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.yellow": "Yellow Base Dexter Canton", + "block.minecraft.banner.square_bottom_right.black": "Black Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.blue": "Blue Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.brown": "Brown Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.cyan": "Cyan Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.gray": "Gray Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.green": "Green Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.light_blue": "Light Blue Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.light_gray": "Light Gray Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.lime": "Lime Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.magenta": "Magenta Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.orange": "Orange Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.pink": "Pink Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.purple": "Purple Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.red": "Red Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.white": "White Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.yellow": "Yellow Base Sinister Canton", + "block.minecraft.banner.square_top_left.black": "Black Chief Dexter Canton", + "block.minecraft.banner.square_top_left.blue": "Blue Chief Dexter Canton", + "block.minecraft.banner.square_top_left.brown": "Brown Chief Dexter Canton", + "block.minecraft.banner.square_top_left.cyan": "Cyan Chief Dexter Canton", + "block.minecraft.banner.square_top_left.gray": "Gray Chief Dexter Canton", + "block.minecraft.banner.square_top_left.green": "Green Chief Dexter Canton", + "block.minecraft.banner.square_top_left.light_blue": "Light Blue Chief Dexter Canton", + "block.minecraft.banner.square_top_left.light_gray": "Light Gray Chief Dexter Canton", + "block.minecraft.banner.square_top_left.lime": "Lime Chief Dexter Canton", + "block.minecraft.banner.square_top_left.magenta": "Magenta Chief Dexter Canton", + "block.minecraft.banner.square_top_left.orange": "Orange Chief Dexter Canton", + "block.minecraft.banner.square_top_left.pink": "Pink Chief Dexter Canton", + "block.minecraft.banner.square_top_left.purple": "Purple Chief Dexter Canton", + "block.minecraft.banner.square_top_left.red": "Red Chief Dexter Canton", + "block.minecraft.banner.square_top_left.white": "White Chief Dexter Canton", + "block.minecraft.banner.square_top_left.yellow": "Yellow Chief Dexter Canton", + "block.minecraft.banner.square_top_right.black": "Black Chief Sinister Canton", + "block.minecraft.banner.square_top_right.blue": "Blue Chief Sinister Canton", + "block.minecraft.banner.square_top_right.brown": "Brown Chief Sinister Canton", + "block.minecraft.banner.square_top_right.cyan": "Cyan Chief Sinister Canton", + "block.minecraft.banner.square_top_right.gray": "Gray Chief Sinister Canton", + "block.minecraft.banner.square_top_right.green": "Green Chief Sinister Canton", + "block.minecraft.banner.square_top_right.light_blue": "Light Blue Chief Sinister Canton", + "block.minecraft.banner.square_top_right.light_gray": "Light Gray Chief Sinister Canton", + "block.minecraft.banner.square_top_right.lime": "Lime Chief Sinister Canton", + "block.minecraft.banner.square_top_right.magenta": "Magenta Chief Sinister Canton", + "block.minecraft.banner.square_top_right.orange": "Orange Chief Sinister Canton", + "block.minecraft.banner.square_top_right.pink": "Pink Chief Sinister Canton", + "block.minecraft.banner.square_top_right.purple": "Purple Chief Sinister Canton", + "block.minecraft.banner.square_top_right.red": "Red Chief Sinister Canton", + "block.minecraft.banner.square_top_right.white": "White Chief Sinister Canton", + "block.minecraft.banner.square_top_right.yellow": "Yellow Chief Sinister Canton", + "block.minecraft.banner.straight_cross.black": "Black Cross", + "block.minecraft.banner.straight_cross.blue": "Blue Cross", + "block.minecraft.banner.straight_cross.brown": "Brown Cross", + "block.minecraft.banner.straight_cross.cyan": "Cyan Cross", + "block.minecraft.banner.straight_cross.gray": "Gray Cross", + "block.minecraft.banner.straight_cross.green": "Green Cross", + "block.minecraft.banner.straight_cross.light_blue": "Light Blue Cross", + "block.minecraft.banner.straight_cross.light_gray": "Light Gray Cross", + "block.minecraft.banner.straight_cross.lime": "Lime Cross", + "block.minecraft.banner.straight_cross.magenta": "Magenta Cross", + "block.minecraft.banner.straight_cross.orange": "Orange Cross", + "block.minecraft.banner.straight_cross.pink": "Pink Cross", + "block.minecraft.banner.straight_cross.purple": "Purple Cross", + "block.minecraft.banner.straight_cross.red": "Red Cross", + "block.minecraft.banner.straight_cross.white": "White Cross", + "block.minecraft.banner.straight_cross.yellow": "Yellow Cross", + "block.minecraft.banner.stripe_bottom.black": "Black Base", + "block.minecraft.banner.stripe_bottom.blue": "Blue Base", + "block.minecraft.banner.stripe_bottom.brown": "Brown Base", + "block.minecraft.banner.stripe_bottom.cyan": "Cyan Base", + "block.minecraft.banner.stripe_bottom.gray": "Gray Base", + "block.minecraft.banner.stripe_bottom.green": "Green Base", + "block.minecraft.banner.stripe_bottom.light_blue": "Light Blue Base", + "block.minecraft.banner.stripe_bottom.light_gray": "Light Gray Base", + "block.minecraft.banner.stripe_bottom.lime": "Lime Base", + "block.minecraft.banner.stripe_bottom.magenta": "Magenta Base", + "block.minecraft.banner.stripe_bottom.orange": "Orange Base", + "block.minecraft.banner.stripe_bottom.pink": "Pink Base", + "block.minecraft.banner.stripe_bottom.purple": "Purple Base", + "block.minecraft.banner.stripe_bottom.red": "Red Base", + "block.minecraft.banner.stripe_bottom.white": "White Base", + "block.minecraft.banner.stripe_bottom.yellow": "Yellow Base", + "block.minecraft.banner.stripe_center.black": "Black Pale", + "block.minecraft.banner.stripe_center.blue": "Blue Pale", + "block.minecraft.banner.stripe_center.brown": "Brown Pale", + "block.minecraft.banner.stripe_center.cyan": "Cyan Pale", + "block.minecraft.banner.stripe_center.gray": "Gray Pale", + "block.minecraft.banner.stripe_center.green": "Green Pale", + "block.minecraft.banner.stripe_center.light_blue": "Light Blue Pale", + "block.minecraft.banner.stripe_center.light_gray": "Light Gray Pale", + "block.minecraft.banner.stripe_center.lime": "Lime Pale", + "block.minecraft.banner.stripe_center.magenta": "Magenta Pale", + "block.minecraft.banner.stripe_center.orange": "Orange Pale", + "block.minecraft.banner.stripe_center.pink": "Pink Pale", + "block.minecraft.banner.stripe_center.purple": "Purple Pale", + "block.minecraft.banner.stripe_center.red": "Red Pale", + "block.minecraft.banner.stripe_center.white": "White Pale", + "block.minecraft.banner.stripe_center.yellow": "Yellow Pale", + "block.minecraft.banner.stripe_downleft.black": "Black Bend Sinister", + "block.minecraft.banner.stripe_downleft.blue": "Blue Bend Sinister", + "block.minecraft.banner.stripe_downleft.brown": "Brown Bend Sinister", + "block.minecraft.banner.stripe_downleft.cyan": "Cyan Bend Sinister", + "block.minecraft.banner.stripe_downleft.gray": "Gray Bend Sinister", + "block.minecraft.banner.stripe_downleft.green": "Green Bend Sinister", + "block.minecraft.banner.stripe_downleft.light_blue": "Light Blue Bend Sinister", + "block.minecraft.banner.stripe_downleft.light_gray": "Light Gray Bend Sinister", + "block.minecraft.banner.stripe_downleft.lime": "Lime Bend Sinister", + "block.minecraft.banner.stripe_downleft.magenta": "Magenta Bend Sinister", + "block.minecraft.banner.stripe_downleft.orange": "Orange Bend Sinister", + "block.minecraft.banner.stripe_downleft.pink": "Pink Bend Sinister", + "block.minecraft.banner.stripe_downleft.purple": "Purple Bend Sinister", + "block.minecraft.banner.stripe_downleft.red": "Red Bend Sinister", + "block.minecraft.banner.stripe_downleft.white": "White Bend Sinister", + "block.minecraft.banner.stripe_downleft.yellow": "Yellow Bend Sinister", + "block.minecraft.banner.stripe_downright.black": "Black Bend", + "block.minecraft.banner.stripe_downright.blue": "Blue Bend", + "block.minecraft.banner.stripe_downright.brown": "Brown Bend", + "block.minecraft.banner.stripe_downright.cyan": "Cyan Bend", + "block.minecraft.banner.stripe_downright.gray": "Gray Bend", + "block.minecraft.banner.stripe_downright.green": "Green Bend", + "block.minecraft.banner.stripe_downright.light_blue": "Light Blue Bend", + "block.minecraft.banner.stripe_downright.light_gray": "Light Gray Bend", + "block.minecraft.banner.stripe_downright.lime": "Lime Bend", + "block.minecraft.banner.stripe_downright.magenta": "Magenta Bend", + "block.minecraft.banner.stripe_downright.orange": "Orange Bend", + "block.minecraft.banner.stripe_downright.pink": "Pink Bend", + "block.minecraft.banner.stripe_downright.purple": "Purple Bend", + "block.minecraft.banner.stripe_downright.red": "Red Bend", + "block.minecraft.banner.stripe_downright.white": "White Bend", + "block.minecraft.banner.stripe_downright.yellow": "Yellow Bend", + "block.minecraft.banner.stripe_left.black": "Black Pale Dexter", + "block.minecraft.banner.stripe_left.blue": "Blue Pale Dexter", + "block.minecraft.banner.stripe_left.brown": "Brown Pale Dexter", + "block.minecraft.banner.stripe_left.cyan": "Cyan Pale Dexter", + "block.minecraft.banner.stripe_left.gray": "Gray Pale Dexter", + "block.minecraft.banner.stripe_left.green": "Green Pale Dexter", + "block.minecraft.banner.stripe_left.light_blue": "Light Blue Pale Dexter", + "block.minecraft.banner.stripe_left.light_gray": "Light Gray Pale Dexter", + "block.minecraft.banner.stripe_left.lime": "Lime Pale Dexter", + "block.minecraft.banner.stripe_left.magenta": "Magenta Pale Dexter", + "block.minecraft.banner.stripe_left.orange": "Orange Pale Dexter", + "block.minecraft.banner.stripe_left.pink": "Pink Pale Dexter", + "block.minecraft.banner.stripe_left.purple": "Purple Pale Dexter", + "block.minecraft.banner.stripe_left.red": "Red Pale Dexter", + "block.minecraft.banner.stripe_left.white": "White Pale Dexter", + "block.minecraft.banner.stripe_left.yellow": "Yellow Pale Dexter", + "block.minecraft.banner.stripe_middle.black": "Black Fess", + "block.minecraft.banner.stripe_middle.blue": "Blue Fess", + "block.minecraft.banner.stripe_middle.brown": "Brown Fess", + "block.minecraft.banner.stripe_middle.cyan": "Cyan Fess", + "block.minecraft.banner.stripe_middle.gray": "Gray Fess", + "block.minecraft.banner.stripe_middle.green": "Green Fess", + "block.minecraft.banner.stripe_middle.light_blue": "Light Blue Fess", + "block.minecraft.banner.stripe_middle.light_gray": "Light Gray Fess", + "block.minecraft.banner.stripe_middle.lime": "Lime Fess", + "block.minecraft.banner.stripe_middle.magenta": "Magenta Fess", + "block.minecraft.banner.stripe_middle.orange": "Orange Fess", + "block.minecraft.banner.stripe_middle.pink": "Pink Fess", + "block.minecraft.banner.stripe_middle.purple": "Purple Fess", + "block.minecraft.banner.stripe_middle.red": "Red Fess", + "block.minecraft.banner.stripe_middle.white": "White Fess", + "block.minecraft.banner.stripe_middle.yellow": "Yellow Fess", + "block.minecraft.banner.stripe_right.black": "Black Pale Sinister", + "block.minecraft.banner.stripe_right.blue": "Blue Pale Sinister", + "block.minecraft.banner.stripe_right.brown": "Brown Pale Sinister", + "block.minecraft.banner.stripe_right.cyan": "Cyan Pale Sinister", + "block.minecraft.banner.stripe_right.gray": "Gray Pale Sinister", + "block.minecraft.banner.stripe_right.green": "Green Pale Sinister", + "block.minecraft.banner.stripe_right.light_blue": "Light Blue Pale Sinister", + "block.minecraft.banner.stripe_right.light_gray": "Light Gray Pale Sinister", + "block.minecraft.banner.stripe_right.lime": "Lime Pale Sinister", + "block.minecraft.banner.stripe_right.magenta": "Magenta Pale Sinister", + "block.minecraft.banner.stripe_right.orange": "Orange Pale Sinister", + "block.minecraft.banner.stripe_right.pink": "Pink Pale Sinister", + "block.minecraft.banner.stripe_right.purple": "Purple Pale Sinister", + "block.minecraft.banner.stripe_right.red": "Red Pale Sinister", + "block.minecraft.banner.stripe_right.white": "White Pale Sinister", + "block.minecraft.banner.stripe_right.yellow": "Yellow Pale Sinister", + "block.minecraft.banner.stripe_top.black": "Black Chief", + "block.minecraft.banner.stripe_top.blue": "Blue Chief", + "block.minecraft.banner.stripe_top.brown": "Brown Chief", + "block.minecraft.banner.stripe_top.cyan": "Cyan Chief", + "block.minecraft.banner.stripe_top.gray": "Gray Chief", + "block.minecraft.banner.stripe_top.green": "Green Chief", + "block.minecraft.banner.stripe_top.light_blue": "Light Blue Chief", + "block.minecraft.banner.stripe_top.light_gray": "Light Gray Chief", + "block.minecraft.banner.stripe_top.lime": "Lime Chief", + "block.minecraft.banner.stripe_top.magenta": "Magenta Chief", + "block.minecraft.banner.stripe_top.orange": "Orange Chief", + "block.minecraft.banner.stripe_top.pink": "Pink Chief", + "block.minecraft.banner.stripe_top.purple": "Purple Chief", + "block.minecraft.banner.stripe_top.red": "Red Chief", + "block.minecraft.banner.stripe_top.white": "White Chief", + "block.minecraft.banner.stripe_top.yellow": "Yellow Chief", + "block.minecraft.banner.triangle_bottom.black": "Black Chevron", + "block.minecraft.banner.triangle_bottom.blue": "Blue Chevron", + "block.minecraft.banner.triangle_bottom.brown": "Brown Chevron", + "block.minecraft.banner.triangle_bottom.cyan": "Cyan Chevron", + "block.minecraft.banner.triangle_bottom.gray": "Gray Chevron", + "block.minecraft.banner.triangle_bottom.green": "Green Chevron", + "block.minecraft.banner.triangle_bottom.light_blue": "Light Blue Chevron", + "block.minecraft.banner.triangle_bottom.light_gray": "Light Gray Chevron", + "block.minecraft.banner.triangle_bottom.lime": "Lime Chevron", + "block.minecraft.banner.triangle_bottom.magenta": "Magenta Chevron", + "block.minecraft.banner.triangle_bottom.orange": "Orange Chevron", + "block.minecraft.banner.triangle_bottom.pink": "Pink Chevron", + "block.minecraft.banner.triangle_bottom.purple": "Purple Chevron", + "block.minecraft.banner.triangle_bottom.red": "Red Chevron", + "block.minecraft.banner.triangle_bottom.white": "White Chevron", + "block.minecraft.banner.triangle_bottom.yellow": "Yellow Chevron", + "block.minecraft.banner.triangle_top.black": "Black Inverted Chevron", + "block.minecraft.banner.triangle_top.blue": "Blue Inverted Chevron", + "block.minecraft.banner.triangle_top.brown": "Brown Inverted Chevron", + "block.minecraft.banner.triangle_top.cyan": "Cyan Inverted Chevron", + "block.minecraft.banner.triangle_top.gray": "Gray Inverted Chevron", + "block.minecraft.banner.triangle_top.green": "Green Inverted Chevron", + "block.minecraft.banner.triangle_top.light_blue": "Light Blue Inverted Chevron", + "block.minecraft.banner.triangle_top.light_gray": "Light Gray Inverted Chevron", + "block.minecraft.banner.triangle_top.lime": "Lime Inverted Chevron", + "block.minecraft.banner.triangle_top.magenta": "Magenta Inverted Chevron", + "block.minecraft.banner.triangle_top.orange": "Orange Inverted Chevron", + "block.minecraft.banner.triangle_top.pink": "Pink Inverted Chevron", + "block.minecraft.banner.triangle_top.purple": "Purple Inverted Chevron", + "block.minecraft.banner.triangle_top.red": "Red Inverted Chevron", + "block.minecraft.banner.triangle_top.white": "White Inverted Chevron", + "block.minecraft.banner.triangle_top.yellow": "Yellow Inverted Chevron", + "block.minecraft.banner.triangles_bottom.black": "Black Base Indented", + "block.minecraft.banner.triangles_bottom.blue": "Blue Base Indented", + "block.minecraft.banner.triangles_bottom.brown": "Brown Base Indented", + "block.minecraft.banner.triangles_bottom.cyan": "Cyan Base Indented", + "block.minecraft.banner.triangles_bottom.gray": "Gray Base Indented", + "block.minecraft.banner.triangles_bottom.green": "Green Base Indented", + "block.minecraft.banner.triangles_bottom.light_blue": "Light Blue Base Indented", + "block.minecraft.banner.triangles_bottom.light_gray": "Light Gray Base Indented", + "block.minecraft.banner.triangles_bottom.lime": "Lime Base Indented", + "block.minecraft.banner.triangles_bottom.magenta": "Magenta Base Indented", + "block.minecraft.banner.triangles_bottom.orange": "Orange Base Indented", + "block.minecraft.banner.triangles_bottom.pink": "Pink Base Indented", + "block.minecraft.banner.triangles_bottom.purple": "Purple Base Indented", + "block.minecraft.banner.triangles_bottom.red": "Red Base Indented", + "block.minecraft.banner.triangles_bottom.white": "White Base Indented", + "block.minecraft.banner.triangles_bottom.yellow": "Yellow Base Indented", + "block.minecraft.banner.triangles_top.black": "Black Chief Indented", + "block.minecraft.banner.triangles_top.blue": "Blue Chief Indented", + "block.minecraft.banner.triangles_top.brown": "Brown Chief Indented", + "block.minecraft.banner.triangles_top.cyan": "Cyan Chief Indented", + "block.minecraft.banner.triangles_top.gray": "Gray Chief Indented", + "block.minecraft.banner.triangles_top.green": "Green Chief Indented", + "block.minecraft.banner.triangles_top.light_blue": "Light Blue Chief Indented", + "block.minecraft.banner.triangles_top.light_gray": "Light Gray Chief Indented", + "block.minecraft.banner.triangles_top.lime": "Lime Chief Indented", + "block.minecraft.banner.triangles_top.magenta": "Magenta Chief Indented", + "block.minecraft.banner.triangles_top.orange": "Orange Chief Indented", + "block.minecraft.banner.triangles_top.pink": "Pink Chief Indented", + "block.minecraft.banner.triangles_top.purple": "Purple Chief Indented", + "block.minecraft.banner.triangles_top.red": "Red Chief Indented", + "block.minecraft.banner.triangles_top.white": "White Chief Indented", + "block.minecraft.banner.triangles_top.yellow": "Yellow Chief Indented", + "block.minecraft.barrel": "Barrel", + "block.minecraft.barrier": "Barrier", + "block.minecraft.basalt": "Basalt", + "block.minecraft.beacon": "Beacon", + "block.minecraft.beacon.primary": "Primary Power", + "block.minecraft.beacon.secondary": "Secondary Power", + "block.minecraft.bed.no_sleep": "You can sleep only at night or during thunderstorms", + "block.minecraft.bed.not_safe": "You may not rest now; there are monsters nearby", + "block.minecraft.bed.obstructed": "This bed is obstructed", + "block.minecraft.bed.occupied": "This bed is occupied", + "block.minecraft.bed.too_far_away": "You may not rest now; the bed is too far away", + "block.minecraft.bedrock": "Bedrock", + "block.minecraft.bee_nest": "Bee Nest", + "block.minecraft.beehive": "Beehive", + "block.minecraft.beetroots": "Beetroots", + "block.minecraft.bell": "Bell", + "block.minecraft.big_dripleaf": "Big Dripleaf", + "block.minecraft.big_dripleaf_stem": "Big Dripleaf Stem", + "block.minecraft.birch_button": "Birch Button", + "block.minecraft.birch_door": "Birch Door", + "block.minecraft.birch_fence": "Birch Fence", + "block.minecraft.birch_fence_gate": "Birch Fence Gate", + "block.minecraft.birch_hanging_sign": "Birch Hanging Sign", + "block.minecraft.birch_leaves": "Birch Leaves", + "block.minecraft.birch_log": "Birch Log", + "block.minecraft.birch_planks": "Birch Planks", + "block.minecraft.birch_pressure_plate": "Birch Pressure Plate", + "block.minecraft.birch_sapling": "Birch Sapling", + "block.minecraft.birch_shelf": "Birch Shelf", + "block.minecraft.birch_sign": "Birch Sign", + "block.minecraft.birch_slab": "Birch Slab", + "block.minecraft.birch_stairs": "Birch Stairs", + "block.minecraft.birch_trapdoor": "Birch Trapdoor", + "block.minecraft.birch_wall_hanging_sign": "Birch Wall Hanging Sign", + "block.minecraft.birch_wall_sign": "Birch Wall Sign", + "block.minecraft.birch_wood": "Birch Wood", + "block.minecraft.black_banner": "Black Banner", + "block.minecraft.black_bed": "Black Bed", + "block.minecraft.black_candle": "Black Candle", + "block.minecraft.black_candle_cake": "Cake with Black Candle", + "block.minecraft.black_carpet": "Black Carpet", + "block.minecraft.black_concrete": "Black Concrete", + "block.minecraft.black_concrete_powder": "Black Concrete Powder", + "block.minecraft.black_glazed_terracotta": "Black Glazed Terracotta", + "block.minecraft.black_shulker_box": "Black Shulker Box", + "block.minecraft.black_stained_glass": "Black Stained Glass", + "block.minecraft.black_stained_glass_pane": "Black Stained Glass Pane", + "block.minecraft.black_terracotta": "Black Terracotta", + "block.minecraft.black_wool": "Black Wool", + "block.minecraft.blackstone": "Blackstone", + "block.minecraft.blackstone_slab": "Blackstone Slab", + "block.minecraft.blackstone_stairs": "Blackstone Stairs", + "block.minecraft.blackstone_wall": "Blackstone Wall", + "block.minecraft.blast_furnace": "Blast Furnace", + "block.minecraft.blue_banner": "Blue Banner", + "block.minecraft.blue_bed": "Blue Bed", + "block.minecraft.blue_candle": "Blue Candle", + "block.minecraft.blue_candle_cake": "Cake with Blue Candle", + "block.minecraft.blue_carpet": "Blue Carpet", + "block.minecraft.blue_concrete": "Blue Concrete", + "block.minecraft.blue_concrete_powder": "Blue Concrete Powder", + "block.minecraft.blue_glazed_terracotta": "Blue Glazed Terracotta", + "block.minecraft.blue_ice": "Blue Ice", + "block.minecraft.blue_orchid": "Blue Orchid", + "block.minecraft.blue_shulker_box": "Blue Shulker Box", + "block.minecraft.blue_stained_glass": "Blue Stained Glass", + "block.minecraft.blue_stained_glass_pane": "Blue Stained Glass Pane", + "block.minecraft.blue_terracotta": "Blue Terracotta", + "block.minecraft.blue_wool": "Blue Wool", + "block.minecraft.bone_block": "Bone Block", + "block.minecraft.bookshelf": "Bookshelf", + "block.minecraft.brain_coral": "Brain Coral", + "block.minecraft.brain_coral_block": "Brain Coral Block", + "block.minecraft.brain_coral_fan": "Brain Coral Fan", + "block.minecraft.brain_coral_wall_fan": "Brain Coral Wall Fan", + "block.minecraft.brewing_stand": "Brewing Stand", + "block.minecraft.brick_slab": "Brick Slab", + "block.minecraft.brick_stairs": "Brick Stairs", + "block.minecraft.brick_wall": "Brick Wall", + "block.minecraft.bricks": "Bricks", + "block.minecraft.brown_banner": "Brown Banner", + "block.minecraft.brown_bed": "Brown Bed", + "block.minecraft.brown_candle": "Brown Candle", + "block.minecraft.brown_candle_cake": "Cake with Brown Candle", + "block.minecraft.brown_carpet": "Brown Carpet", + "block.minecraft.brown_concrete": "Brown Concrete", + "block.minecraft.brown_concrete_powder": "Brown Concrete Powder", + "block.minecraft.brown_glazed_terracotta": "Brown Glazed Terracotta", + "block.minecraft.brown_mushroom": "Brown Mushroom", + "block.minecraft.brown_mushroom_block": "Brown Mushroom Block", + "block.minecraft.brown_shulker_box": "Brown Shulker Box", + "block.minecraft.brown_stained_glass": "Brown Stained Glass", + "block.minecraft.brown_stained_glass_pane": "Brown Stained Glass Pane", + "block.minecraft.brown_terracotta": "Brown Terracotta", + "block.minecraft.brown_wool": "Brown Wool", + "block.minecraft.bubble_column": "Bubble Column", + "block.minecraft.bubble_coral": "Bubble Coral", + "block.minecraft.bubble_coral_block": "Bubble Coral Block", + "block.minecraft.bubble_coral_fan": "Bubble Coral Fan", + "block.minecraft.bubble_coral_wall_fan": "Bubble Coral Wall Fan", + "block.minecraft.budding_amethyst": "Budding Amethyst", + "block.minecraft.bush": "Bush", + "block.minecraft.cactus": "Cactus", + "block.minecraft.cactus_flower": "Cactus Flower", + "block.minecraft.cake": "Cake", + "block.minecraft.calcite": "Calcite", + "block.minecraft.calibrated_sculk_sensor": "Calibrated Sculk Sensor", + "block.minecraft.campfire": "Campfire", + "block.minecraft.candle": "Candle", + "block.minecraft.candle_cake": "Cake with Candle", + "block.minecraft.carrots": "Carrots", + "block.minecraft.cartography_table": "Cartography Table", + "block.minecraft.carved_pumpkin": "Carved Pumpkin", + "block.minecraft.cauldron": "Cauldron", + "block.minecraft.cave_air": "Cave Air", + "block.minecraft.cave_vines": "Cave Vines", + "block.minecraft.cave_vines_plant": "Cave Vines Plant", + "block.minecraft.chain": "Chain", + "block.minecraft.chain_command_block": "Chain Command Block", + "block.minecraft.cherry_button": "Cherry Button", + "block.minecraft.cherry_door": "Cherry Door", + "block.minecraft.cherry_fence": "Cherry Fence", + "block.minecraft.cherry_fence_gate": "Cherry Fence Gate", + "block.minecraft.cherry_hanging_sign": "Cherry Hanging Sign", + "block.minecraft.cherry_leaves": "Cherry Leaves", + "block.minecraft.cherry_log": "Cherry Log", + "block.minecraft.cherry_planks": "Cherry Planks", + "block.minecraft.cherry_pressure_plate": "Cherry Pressure Plate", + "block.minecraft.cherry_sapling": "Cherry Sapling", + "block.minecraft.cherry_shelf": "Cherry Shelf", + "block.minecraft.cherry_sign": "Cherry Sign", + "block.minecraft.cherry_slab": "Cherry Slab", + "block.minecraft.cherry_stairs": "Cherry Stairs", + "block.minecraft.cherry_trapdoor": "Cherry Trapdoor", + "block.minecraft.cherry_wall_hanging_sign": "Cherry Wall Hanging Sign", + "block.minecraft.cherry_wall_sign": "Cherry Wall Sign", + "block.minecraft.cherry_wood": "Cherry Wood", + "block.minecraft.chest": "Chest", + "block.minecraft.chipped_anvil": "Chipped Anvil", + "block.minecraft.chiseled_bookshelf": "Chiseled Bookshelf", + "block.minecraft.chiseled_copper": "Chiseled Copper", + "block.minecraft.chiseled_deepslate": "Chiseled Deepslate", + "block.minecraft.chiseled_nether_bricks": "Chiseled Nether Bricks", + "block.minecraft.chiseled_polished_blackstone": "Chiseled Polished Blackstone", + "block.minecraft.chiseled_quartz_block": "Chiseled Quartz Block", + "block.minecraft.chiseled_red_sandstone": "Chiseled Red Sandstone", + "block.minecraft.chiseled_resin_bricks": "Chiseled Resin Bricks", + "block.minecraft.chiseled_sandstone": "Chiseled Sandstone", + "block.minecraft.chiseled_stone_bricks": "Chiseled Stone Bricks", + "block.minecraft.chiseled_tuff": "Chiseled Tuff", + "block.minecraft.chiseled_tuff_bricks": "Chiseled Tuff Bricks", + "block.minecraft.chorus_flower": "Chorus Flower", + "block.minecraft.chorus_plant": "Chorus Plant", + "block.minecraft.clay": "Clay", + "block.minecraft.closed_eyeblossom": "Closed Eyeblossom", + "block.minecraft.coal_block": "Block of Coal", + "block.minecraft.coal_ore": "Coal Ore", + "block.minecraft.coarse_dirt": "Coarse Dirt", + "block.minecraft.cobbled_deepslate": "Cobbled Deepslate", + "block.minecraft.cobbled_deepslate_slab": "Cobbled Deepslate Slab", + "block.minecraft.cobbled_deepslate_stairs": "Cobbled Deepslate Stairs", + "block.minecraft.cobbled_deepslate_wall": "Cobbled Deepslate Wall", + "block.minecraft.cobblestone": "Cobblestone", + "block.minecraft.cobblestone_slab": "Cobblestone Slab", + "block.minecraft.cobblestone_stairs": "Cobblestone Stairs", + "block.minecraft.cobblestone_wall": "Cobblestone Wall", + "block.minecraft.cobweb": "Cobweb", + "block.minecraft.cocoa": "Cocoa", + "block.minecraft.command_block": "Command Block", + "block.minecraft.comparator": "Redstone Comparator", + "block.minecraft.composter": "Composter", + "block.minecraft.conduit": "Conduit", + "block.minecraft.copper_bars": "Copper Bars", + "block.minecraft.copper_block": "Block of Copper", + "block.minecraft.copper_bulb": "Copper Bulb", + "block.minecraft.copper_chain": "Copper Chain", + "block.minecraft.copper_chest": "Copper Chest", + "block.minecraft.copper_door": "Copper Door", + "block.minecraft.copper_golem_statue": "Copper Golem Statue", + "block.minecraft.copper_grate": "Copper Grate", + "block.minecraft.copper_lantern": "Copper Lantern", + "block.minecraft.copper_ore": "Copper Ore", + "block.minecraft.copper_torch": "Copper Torch", + "block.minecraft.copper_trapdoor": "Copper Trapdoor", + "block.minecraft.copper_wall_torch": "Copper Wall Torch", + "block.minecraft.cornflower": "Cornflower", + "block.minecraft.cracked_deepslate_bricks": "Cracked Deepslate Bricks", + "block.minecraft.cracked_deepslate_tiles": "Cracked Deepslate Tiles", + "block.minecraft.cracked_nether_bricks": "Cracked Nether Bricks", + "block.minecraft.cracked_polished_blackstone_bricks": "Cracked Polished Blackstone Bricks", + "block.minecraft.cracked_stone_bricks": "Cracked Stone Bricks", + "block.minecraft.crafter": "Crafter", + "block.minecraft.crafting_table": "Crafting Table", + "block.minecraft.creaking_heart": "Creaking Heart", + "block.minecraft.creeper_head": "Creeper Head", + "block.minecraft.creeper_wall_head": "Creeper Wall Head", + "block.minecraft.crimson_button": "Crimson Button", + "block.minecraft.crimson_door": "Crimson Door", + "block.minecraft.crimson_fence": "Crimson Fence", + "block.minecraft.crimson_fence_gate": "Crimson Fence Gate", + "block.minecraft.crimson_fungus": "Crimson Fungus", + "block.minecraft.crimson_hanging_sign": "Crimson Hanging Sign", + "block.minecraft.crimson_hyphae": "Crimson Hyphae", + "block.minecraft.crimson_nylium": "Crimson Nylium", + "block.minecraft.crimson_planks": "Crimson Planks", + "block.minecraft.crimson_pressure_plate": "Crimson Pressure Plate", + "block.minecraft.crimson_roots": "Crimson Roots", + "block.minecraft.crimson_shelf": "Crimson Shelf", + "block.minecraft.crimson_sign": "Crimson Sign", + "block.minecraft.crimson_slab": "Crimson Slab", + "block.minecraft.crimson_stairs": "Crimson Stairs", + "block.minecraft.crimson_stem": "Crimson Stem", + "block.minecraft.crimson_trapdoor": "Crimson Trapdoor", + "block.minecraft.crimson_wall_hanging_sign": "Crimson Wall Hanging Sign", + "block.minecraft.crimson_wall_sign": "Crimson Wall Sign", + "block.minecraft.crying_obsidian": "Crying Obsidian", + "block.minecraft.cut_copper": "Cut Copper", + "block.minecraft.cut_copper_slab": "Cut Copper Slab", + "block.minecraft.cut_copper_stairs": "Cut Copper Stairs", + "block.minecraft.cut_red_sandstone": "Cut Red Sandstone", + "block.minecraft.cut_red_sandstone_slab": "Cut Red Sandstone Slab", + "block.minecraft.cut_sandstone": "Cut Sandstone", + "block.minecraft.cut_sandstone_slab": "Cut Sandstone Slab", + "block.minecraft.cyan_banner": "Cyan Banner", + "block.minecraft.cyan_bed": "Cyan Bed", + "block.minecraft.cyan_candle": "Cyan Candle", + "block.minecraft.cyan_candle_cake": "Cake with Cyan Candle", + "block.minecraft.cyan_carpet": "Cyan Carpet", + "block.minecraft.cyan_concrete": "Cyan Concrete", + "block.minecraft.cyan_concrete_powder": "Cyan Concrete Powder", + "block.minecraft.cyan_glazed_terracotta": "Cyan Glazed Terracotta", + "block.minecraft.cyan_shulker_box": "Cyan Shulker Box", + "block.minecraft.cyan_stained_glass": "Cyan Stained Glass", + "block.minecraft.cyan_stained_glass_pane": "Cyan Stained Glass Pane", + "block.minecraft.cyan_terracotta": "Cyan Terracotta", + "block.minecraft.cyan_wool": "Cyan Wool", + "block.minecraft.damaged_anvil": "Damaged Anvil", + "block.minecraft.dandelion": "Dandelion", + "block.minecraft.dark_oak_button": "Dark Oak Button", + "block.minecraft.dark_oak_door": "Dark Oak Door", + "block.minecraft.dark_oak_fence": "Dark Oak Fence", + "block.minecraft.dark_oak_fence_gate": "Dark Oak Fence Gate", + "block.minecraft.dark_oak_hanging_sign": "Dark Oak Hanging Sign", + "block.minecraft.dark_oak_leaves": "Dark Oak Leaves", + "block.minecraft.dark_oak_log": "Dark Oak Log", + "block.minecraft.dark_oak_planks": "Dark Oak Planks", + "block.minecraft.dark_oak_pressure_plate": "Dark Oak Pressure Plate", + "block.minecraft.dark_oak_sapling": "Dark Oak Sapling", + "block.minecraft.dark_oak_shelf": "Dark Oak Shelf", + "block.minecraft.dark_oak_sign": "Dark Oak Sign", + "block.minecraft.dark_oak_slab": "Dark Oak Slab", + "block.minecraft.dark_oak_stairs": "Dark Oak Stairs", + "block.minecraft.dark_oak_trapdoor": "Dark Oak Trapdoor", + "block.minecraft.dark_oak_wall_hanging_sign": "Dark Oak Wall Hanging Sign", + "block.minecraft.dark_oak_wall_sign": "Dark Oak Wall Sign", + "block.minecraft.dark_oak_wood": "Dark Oak Wood", + "block.minecraft.dark_prismarine": "Dark Prismarine", + "block.minecraft.dark_prismarine_slab": "Dark Prismarine Slab", + "block.minecraft.dark_prismarine_stairs": "Dark Prismarine Stairs", + "block.minecraft.daylight_detector": "Daylight Detector", + "block.minecraft.dead_brain_coral": "Dead Brain Coral", + "block.minecraft.dead_brain_coral_block": "Dead Brain Coral Block", + "block.minecraft.dead_brain_coral_fan": "Dead Brain Coral Fan", + "block.minecraft.dead_brain_coral_wall_fan": "Dead Brain Coral Wall Fan", + "block.minecraft.dead_bubble_coral": "Dead Bubble Coral", + "block.minecraft.dead_bubble_coral_block": "Dead Bubble Coral Block", + "block.minecraft.dead_bubble_coral_fan": "Dead Bubble Coral Fan", + "block.minecraft.dead_bubble_coral_wall_fan": "Dead Bubble Coral Wall Fan", + "block.minecraft.dead_bush": "Dead Bush", + "block.minecraft.dead_fire_coral": "Dead Fire Coral", + "block.minecraft.dead_fire_coral_block": "Dead Fire Coral Block", + "block.minecraft.dead_fire_coral_fan": "Dead Fire Coral Fan", + "block.minecraft.dead_fire_coral_wall_fan": "Dead Fire Coral Wall Fan", + "block.minecraft.dead_horn_coral": "Dead Horn Coral", + "block.minecraft.dead_horn_coral_block": "Dead Horn Coral Block", + "block.minecraft.dead_horn_coral_fan": "Dead Horn Coral Fan", + "block.minecraft.dead_horn_coral_wall_fan": "Dead Horn Coral Wall Fan", + "block.minecraft.dead_tube_coral": "Dead Tube Coral", + "block.minecraft.dead_tube_coral_block": "Dead Tube Coral Block", + "block.minecraft.dead_tube_coral_fan": "Dead Tube Coral Fan", + "block.minecraft.dead_tube_coral_wall_fan": "Dead Tube Coral Wall Fan", + "block.minecraft.decorated_pot": "Decorated Pot", + "block.minecraft.deepslate": "Deepslate", + "block.minecraft.deepslate_brick_slab": "Deepslate Brick Slab", + "block.minecraft.deepslate_brick_stairs": "Deepslate Brick Stairs", + "block.minecraft.deepslate_brick_wall": "Deepslate Brick Wall", + "block.minecraft.deepslate_bricks": "Deepslate Bricks", + "block.minecraft.deepslate_coal_ore": "Deepslate Coal Ore", + "block.minecraft.deepslate_copper_ore": "Deepslate Copper Ore", + "block.minecraft.deepslate_diamond_ore": "Deepslate Diamond Ore", + "block.minecraft.deepslate_emerald_ore": "Deepslate Emerald Ore", + "block.minecraft.deepslate_gold_ore": "Deepslate Gold Ore", + "block.minecraft.deepslate_iron_ore": "Deepslate Iron Ore", + "block.minecraft.deepslate_lapis_ore": "Deepslate Lapis Lazuli Ore", + "block.minecraft.deepslate_redstone_ore": "Deepslate Redstone Ore", + "block.minecraft.deepslate_tile_slab": "Deepslate Tile Slab", + "block.minecraft.deepslate_tile_stairs": "Deepslate Tile Stairs", + "block.minecraft.deepslate_tile_wall": "Deepslate Tile Wall", + "block.minecraft.deepslate_tiles": "Deepslate Tiles", + "block.minecraft.detector_rail": "Detector Rail", + "block.minecraft.diamond_block": "Block of Diamond", + "block.minecraft.diamond_ore": "Diamond Ore", + "block.minecraft.diorite": "Diorite", + "block.minecraft.diorite_slab": "Diorite Slab", + "block.minecraft.diorite_stairs": "Diorite Stairs", + "block.minecraft.diorite_wall": "Diorite Wall", + "block.minecraft.dirt": "Dirt", + "block.minecraft.dirt_path": "Dirt Path", + "block.minecraft.dispenser": "Dispenser", + "block.minecraft.dragon_egg": "Dragon Egg", + "block.minecraft.dragon_head": "Dragon Head", + "block.minecraft.dragon_wall_head": "Dragon Wall Head", + "block.minecraft.dried_ghast": "Dried Ghast", + "block.minecraft.dried_kelp_block": "Dried Kelp Block", + "block.minecraft.dripstone_block": "Dripstone Block", + "block.minecraft.dropper": "Dropper", + "block.minecraft.emerald_block": "Block of Emerald", + "block.minecraft.emerald_ore": "Emerald Ore", + "block.minecraft.enchanting_table": "Enchanting Table", + "block.minecraft.end_gateway": "End Gateway", + "block.minecraft.end_portal": "End Portal", + "block.minecraft.end_portal_frame": "End Portal Frame", + "block.minecraft.end_rod": "End Rod", + "block.minecraft.end_stone": "End Stone", + "block.minecraft.end_stone_brick_slab": "End Stone Brick Slab", + "block.minecraft.end_stone_brick_stairs": "End Stone Brick Stairs", + "block.minecraft.end_stone_brick_wall": "End Stone Brick Wall", + "block.minecraft.end_stone_bricks": "End Stone Bricks", + "block.minecraft.ender_chest": "Ender Chest", + "block.minecraft.exposed_chiseled_copper": "Exposed Chiseled Copper", + "block.minecraft.exposed_copper": "Exposed Copper", + "block.minecraft.exposed_copper_bars": "Exposed Copper Bars", + "block.minecraft.exposed_copper_bulb": "Exposed Copper Bulb", + "block.minecraft.exposed_copper_chain": "Exposed Copper Chain", + "block.minecraft.exposed_copper_chest": "Exposed Copper Chest", + "block.minecraft.exposed_copper_door": "Exposed Copper Door", + "block.minecraft.exposed_copper_golem_statue": "Exposed Copper Golem Statue", + "block.minecraft.exposed_copper_grate": "Exposed Copper Grate", + "block.minecraft.exposed_copper_lantern": "Exposed Copper Lantern", + "block.minecraft.exposed_copper_trapdoor": "Exposed Copper Trapdoor", + "block.minecraft.exposed_cut_copper": "Exposed Cut Copper", + "block.minecraft.exposed_cut_copper_slab": "Exposed Cut Copper Slab", + "block.minecraft.exposed_cut_copper_stairs": "Exposed Cut Copper Stairs", + "block.minecraft.exposed_lightning_rod": "Exposed Lightning Rod", + "block.minecraft.farmland": "Farmland", + "block.minecraft.fern": "Fern", + "block.minecraft.fire": "Fire", + "block.minecraft.fire_coral": "Fire Coral", + "block.minecraft.fire_coral_block": "Fire Coral Block", + "block.minecraft.fire_coral_fan": "Fire Coral Fan", + "block.minecraft.fire_coral_wall_fan": "Fire Coral Wall Fan", + "block.minecraft.firefly_bush": "Firefly Bush", + "block.minecraft.fletching_table": "Fletching Table", + "block.minecraft.flower_pot": "Flower Pot", + "block.minecraft.flowering_azalea": "Flowering Azalea", + "block.minecraft.flowering_azalea_leaves": "Flowering Azalea Leaves", + "block.minecraft.frogspawn": "Frogspawn", + "block.minecraft.frosted_ice": "Frosted Ice", + "block.minecraft.furnace": "Furnace", + "block.minecraft.gilded_blackstone": "Gilded Blackstone", + "block.minecraft.glass": "Glass", + "block.minecraft.glass_pane": "Glass Pane", + "block.minecraft.glow_lichen": "Glow Lichen", + "block.minecraft.glowstone": "Glowstone", + "block.minecraft.gold_block": "Block of Gold", + "block.minecraft.gold_ore": "Gold Ore", + "block.minecraft.granite": "Granite", + "block.minecraft.granite_slab": "Granite Slab", + "block.minecraft.granite_stairs": "Granite Stairs", + "block.minecraft.granite_wall": "Granite Wall", + "block.minecraft.grass": "Grass", + "block.minecraft.grass_block": "Grass Block", + "block.minecraft.gravel": "Gravel", + "block.minecraft.gray_banner": "Gray Banner", + "block.minecraft.gray_bed": "Gray Bed", + "block.minecraft.gray_candle": "Gray Candle", + "block.minecraft.gray_candle_cake": "Cake with Gray Candle", + "block.minecraft.gray_carpet": "Gray Carpet", + "block.minecraft.gray_concrete": "Gray Concrete", + "block.minecraft.gray_concrete_powder": "Gray Concrete Powder", + "block.minecraft.gray_glazed_terracotta": "Gray Glazed Terracotta", + "block.minecraft.gray_shulker_box": "Gray Shulker Box", + "block.minecraft.gray_stained_glass": "Gray Stained Glass", + "block.minecraft.gray_stained_glass_pane": "Gray Stained Glass Pane", + "block.minecraft.gray_terracotta": "Gray Terracotta", + "block.minecraft.gray_wool": "Gray Wool", + "block.minecraft.green_banner": "Green Banner", + "block.minecraft.green_bed": "Green Bed", + "block.minecraft.green_candle": "Green Candle", + "block.minecraft.green_candle_cake": "Cake with Green Candle", + "block.minecraft.green_carpet": "Green Carpet", + "block.minecraft.green_concrete": "Green Concrete", + "block.minecraft.green_concrete_powder": "Green Concrete Powder", + "block.minecraft.green_glazed_terracotta": "Green Glazed Terracotta", + "block.minecraft.green_shulker_box": "Green Shulker Box", + "block.minecraft.green_stained_glass": "Green Stained Glass", + "block.minecraft.green_stained_glass_pane": "Green Stained Glass Pane", + "block.minecraft.green_terracotta": "Green Terracotta", + "block.minecraft.green_wool": "Green Wool", + "block.minecraft.grindstone": "Grindstone", + "block.minecraft.hanging_roots": "Hanging Roots", + "block.minecraft.hay_block": "Hay Bale", + "block.minecraft.heavy_core": "Heavy Core", + "block.minecraft.heavy_weighted_pressure_plate": "Heavy Weighted Pressure Plate", + "block.minecraft.honey_block": "Honey Block", + "block.minecraft.honeycomb_block": "Honeycomb Block", + "block.minecraft.hopper": "Hopper", + "block.minecraft.horn_coral": "Horn Coral", + "block.minecraft.horn_coral_block": "Horn Coral Block", + "block.minecraft.horn_coral_fan": "Horn Coral Fan", + "block.minecraft.horn_coral_wall_fan": "Horn Coral Wall Fan", + "block.minecraft.ice": "Ice", + "block.minecraft.infested_chiseled_stone_bricks": "Infested Chiseled Stone Bricks", + "block.minecraft.infested_cobblestone": "Infested Cobblestone", + "block.minecraft.infested_cracked_stone_bricks": "Infested Cracked Stone Bricks", + "block.minecraft.infested_deepslate": "Infested Deepslate", + "block.minecraft.infested_mossy_stone_bricks": "Infested Mossy Stone Bricks", + "block.minecraft.infested_stone": "Infested Stone", + "block.minecraft.infested_stone_bricks": "Infested Stone Bricks", + "block.minecraft.iron_bars": "Iron Bars", + "block.minecraft.iron_block": "Block of Iron", + "block.minecraft.iron_chain": "Iron Chain", + "block.minecraft.iron_door": "Iron Door", + "block.minecraft.iron_ore": "Iron Ore", + "block.minecraft.iron_trapdoor": "Iron Trapdoor", + "block.minecraft.jack_o_lantern": "Jack o'Lantern", + "block.minecraft.jigsaw": "Jigsaw Block", + "block.minecraft.jukebox": "Jukebox", + "block.minecraft.jungle_button": "Jungle Button", + "block.minecraft.jungle_door": "Jungle Door", + "block.minecraft.jungle_fence": "Jungle Fence", + "block.minecraft.jungle_fence_gate": "Jungle Fence Gate", + "block.minecraft.jungle_hanging_sign": "Jungle Hanging Sign", + "block.minecraft.jungle_leaves": "Jungle Leaves", + "block.minecraft.jungle_log": "Jungle Log", + "block.minecraft.jungle_planks": "Jungle Planks", + "block.minecraft.jungle_pressure_plate": "Jungle Pressure Plate", + "block.minecraft.jungle_sapling": "Jungle Sapling", + "block.minecraft.jungle_shelf": "Jungle Shelf", + "block.minecraft.jungle_sign": "Jungle Sign", + "block.minecraft.jungle_slab": "Jungle Slab", + "block.minecraft.jungle_stairs": "Jungle Stairs", + "block.minecraft.jungle_trapdoor": "Jungle Trapdoor", + "block.minecraft.jungle_wall_hanging_sign": "Jungle Wall Hanging Sign", + "block.minecraft.jungle_wall_sign": "Jungle Wall Sign", + "block.minecraft.jungle_wood": "Jungle Wood", + "block.minecraft.kelp": "Kelp", + "block.minecraft.kelp_plant": "Kelp Plant", + "block.minecraft.ladder": "Ladder", + "block.minecraft.lantern": "Lantern", + "block.minecraft.lapis_block": "Block of Lapis Lazuli", + "block.minecraft.lapis_ore": "Lapis Lazuli Ore", + "block.minecraft.large_amethyst_bud": "Large Amethyst Bud", + "block.minecraft.large_fern": "Large Fern", + "block.minecraft.lava": "Lava", + "block.minecraft.lava_cauldron": "Lava Cauldron", + "block.minecraft.leaf_litter": "Leaf Litter", + "block.minecraft.lectern": "Lectern", + "block.minecraft.lever": "Lever", + "block.minecraft.light": "Light", + "block.minecraft.light_blue_banner": "Light Blue Banner", + "block.minecraft.light_blue_bed": "Light Blue Bed", + "block.minecraft.light_blue_candle": "Light Blue Candle", + "block.minecraft.light_blue_candle_cake": "Cake with Light Blue Candle", + "block.minecraft.light_blue_carpet": "Light Blue Carpet", + "block.minecraft.light_blue_concrete": "Light Blue Concrete", + "block.minecraft.light_blue_concrete_powder": "Light Blue Concrete Powder", + "block.minecraft.light_blue_glazed_terracotta": "Light Blue Glazed Terracotta", + "block.minecraft.light_blue_shulker_box": "Light Blue Shulker Box", + "block.minecraft.light_blue_stained_glass": "Light Blue Stained Glass", + "block.minecraft.light_blue_stained_glass_pane": "Light Blue Stained Glass Pane", + "block.minecraft.light_blue_terracotta": "Light Blue Terracotta", + "block.minecraft.light_blue_wool": "Light Blue Wool", + "block.minecraft.light_gray_banner": "Light Gray Banner", + "block.minecraft.light_gray_bed": "Light Gray Bed", + "block.minecraft.light_gray_candle": "Light Gray Candle", + "block.minecraft.light_gray_candle_cake": "Cake with Light Gray Candle", + "block.minecraft.light_gray_carpet": "Light Gray Carpet", + "block.minecraft.light_gray_concrete": "Light Gray Concrete", + "block.minecraft.light_gray_concrete_powder": "Light Gray Concrete Powder", + "block.minecraft.light_gray_glazed_terracotta": "Light Gray Glazed Terracotta", + "block.minecraft.light_gray_shulker_box": "Light Gray Shulker Box", + "block.minecraft.light_gray_stained_glass": "Light Gray Stained Glass", + "block.minecraft.light_gray_stained_glass_pane": "Light Gray Stained Glass Pane", + "block.minecraft.light_gray_terracotta": "Light Gray Terracotta", + "block.minecraft.light_gray_wool": "Light Gray Wool", + "block.minecraft.light_weighted_pressure_plate": "Light Weighted Pressure Plate", + "block.minecraft.lightning_rod": "Lightning Rod", + "block.minecraft.lilac": "Lilac", + "block.minecraft.lily_of_the_valley": "Lily of the Valley", + "block.minecraft.lily_pad": "Lily Pad", + "block.minecraft.lime_banner": "Lime Banner", + "block.minecraft.lime_bed": "Lime Bed", + "block.minecraft.lime_candle": "Lime Candle", + "block.minecraft.lime_candle_cake": "Cake with Lime Candle", + "block.minecraft.lime_carpet": "Lime Carpet", + "block.minecraft.lime_concrete": "Lime Concrete", + "block.minecraft.lime_concrete_powder": "Lime Concrete Powder", + "block.minecraft.lime_glazed_terracotta": "Lime Glazed Terracotta", + "block.minecraft.lime_shulker_box": "Lime Shulker Box", + "block.minecraft.lime_stained_glass": "Lime Stained Glass", + "block.minecraft.lime_stained_glass_pane": "Lime Stained Glass Pane", + "block.minecraft.lime_terracotta": "Lime Terracotta", + "block.minecraft.lime_wool": "Lime Wool", + "block.minecraft.lodestone": "Lodestone", + "block.minecraft.loom": "Loom", + "block.minecraft.magenta_banner": "Magenta Banner", + "block.minecraft.magenta_bed": "Magenta Bed", + "block.minecraft.magenta_candle": "Magenta Candle", + "block.minecraft.magenta_candle_cake": "Cake with Magenta Candle", + "block.minecraft.magenta_carpet": "Magenta Carpet", + "block.minecraft.magenta_concrete": "Magenta Concrete", + "block.minecraft.magenta_concrete_powder": "Magenta Concrete Powder", + "block.minecraft.magenta_glazed_terracotta": "Magenta Glazed Terracotta", + "block.minecraft.magenta_shulker_box": "Magenta Shulker Box", + "block.minecraft.magenta_stained_glass": "Magenta Stained Glass", + "block.minecraft.magenta_stained_glass_pane": "Magenta Stained Glass Pane", + "block.minecraft.magenta_terracotta": "Magenta Terracotta", + "block.minecraft.magenta_wool": "Magenta Wool", + "block.minecraft.magma_block": "Magma Block", + "block.minecraft.mangrove_button": "Mangrove Button", + "block.minecraft.mangrove_door": "Mangrove Door", + "block.minecraft.mangrove_fence": "Mangrove Fence", + "block.minecraft.mangrove_fence_gate": "Mangrove Fence Gate", + "block.minecraft.mangrove_hanging_sign": "Mangrove Hanging Sign", + "block.minecraft.mangrove_leaves": "Mangrove Leaves", + "block.minecraft.mangrove_log": "Mangrove Log", + "block.minecraft.mangrove_planks": "Mangrove Planks", + "block.minecraft.mangrove_pressure_plate": "Mangrove Pressure Plate", + "block.minecraft.mangrove_propagule": "Mangrove Propagule", + "block.minecraft.mangrove_roots": "Mangrove Roots", + "block.minecraft.mangrove_shelf": "Mangrove Shelf", + "block.minecraft.mangrove_sign": "Mangrove Sign", + "block.minecraft.mangrove_slab": "Mangrove Slab", + "block.minecraft.mangrove_stairs": "Mangrove Stairs", + "block.minecraft.mangrove_trapdoor": "Mangrove Trapdoor", + "block.minecraft.mangrove_wall_hanging_sign": "Mangrove Wall Hanging Sign", + "block.minecraft.mangrove_wall_sign": "Mangrove Wall Sign", + "block.minecraft.mangrove_wood": "Mangrove Wood", + "block.minecraft.medium_amethyst_bud": "Medium Amethyst Bud", + "block.minecraft.melon": "Melon", + "block.minecraft.melon_stem": "Melon Stem", + "block.minecraft.moss_block": "Moss Block", + "block.minecraft.moss_carpet": "Moss Carpet", + "block.minecraft.mossy_cobblestone": "Mossy Cobblestone", + "block.minecraft.mossy_cobblestone_slab": "Mossy Cobblestone Slab", + "block.minecraft.mossy_cobblestone_stairs": "Mossy Cobblestone Stairs", + "block.minecraft.mossy_cobblestone_wall": "Mossy Cobblestone Wall", + "block.minecraft.mossy_stone_brick_slab": "Mossy Stone Brick Slab", + "block.minecraft.mossy_stone_brick_stairs": "Mossy Stone Brick Stairs", + "block.minecraft.mossy_stone_brick_wall": "Mossy Stone Brick Wall", + "block.minecraft.mossy_stone_bricks": "Mossy Stone Bricks", + "block.minecraft.moving_piston": "Moving Piston", + "block.minecraft.mud": "Mud", + "block.minecraft.mud_brick_slab": "Mud Brick Slab", + "block.minecraft.mud_brick_stairs": "Mud Brick Stairs", + "block.minecraft.mud_brick_wall": "Mud Brick Wall", + "block.minecraft.mud_bricks": "Mud Bricks", + "block.minecraft.muddy_mangrove_roots": "Muddy Mangrove Roots", + "block.minecraft.mushroom_stem": "Mushroom Stem", + "block.minecraft.mycelium": "Mycelium", + "block.minecraft.nether_brick_fence": "Nether Brick Fence", + "block.minecraft.nether_brick_slab": "Nether Brick Slab", + "block.minecraft.nether_brick_stairs": "Nether Brick Stairs", + "block.minecraft.nether_brick_wall": "Nether Brick Wall", + "block.minecraft.nether_bricks": "Nether Bricks", + "block.minecraft.nether_gold_ore": "Nether Gold Ore", + "block.minecraft.nether_portal": "Nether Portal", + "block.minecraft.nether_quartz_ore": "Nether Quartz Ore", + "block.minecraft.nether_sprouts": "Nether Sprouts", + "block.minecraft.nether_wart": "Nether Wart", + "block.minecraft.nether_wart_block": "Nether Wart Block", + "block.minecraft.netherite_block": "Block of Netherite", + "block.minecraft.netherrack": "Netherrack", + "block.minecraft.note_block": "Note Block", + "block.minecraft.oak_button": "Oak Button", + "block.minecraft.oak_door": "Oak Door", + "block.minecraft.oak_fence": "Oak Fence", + "block.minecraft.oak_fence_gate": "Oak Fence Gate", + "block.minecraft.oak_hanging_sign": "Oak Hanging Sign", + "block.minecraft.oak_leaves": "Oak Leaves", + "block.minecraft.oak_log": "Oak Log", + "block.minecraft.oak_planks": "Oak Planks", + "block.minecraft.oak_pressure_plate": "Oak Pressure Plate", + "block.minecraft.oak_sapling": "Oak Sapling", + "block.minecraft.oak_shelf": "Oak Shelf", + "block.minecraft.oak_sign": "Oak Sign", + "block.minecraft.oak_slab": "Oak Slab", + "block.minecraft.oak_stairs": "Oak Stairs", + "block.minecraft.oak_trapdoor": "Oak Trapdoor", + "block.minecraft.oak_wall_hanging_sign": "Oak Wall Hanging Sign", + "block.minecraft.oak_wall_sign": "Oak Wall Sign", + "block.minecraft.oak_wood": "Oak Wood", + "block.minecraft.observer": "Observer", + "block.minecraft.obsidian": "Obsidian", + "block.minecraft.ochre_froglight": "Ochre Froglight", + "block.minecraft.ominous_banner": "Ominous Banner", + "block.minecraft.open_eyeblossom": "Open Eyeblossom", + "block.minecraft.orange_banner": "Orange Banner", + "block.minecraft.orange_bed": "Orange Bed", + "block.minecraft.orange_candle": "Orange Candle", + "block.minecraft.orange_candle_cake": "Cake with Orange Candle", + "block.minecraft.orange_carpet": "Orange Carpet", + "block.minecraft.orange_concrete": "Orange Concrete", + "block.minecraft.orange_concrete_powder": "Orange Concrete Powder", + "block.minecraft.orange_glazed_terracotta": "Orange Glazed Terracotta", + "block.minecraft.orange_shulker_box": "Orange Shulker Box", + "block.minecraft.orange_stained_glass": "Orange Stained Glass", + "block.minecraft.orange_stained_glass_pane": "Orange Stained Glass Pane", + "block.minecraft.orange_terracotta": "Orange Terracotta", + "block.minecraft.orange_tulip": "Orange Tulip", + "block.minecraft.orange_wool": "Orange Wool", + "block.minecraft.oxeye_daisy": "Oxeye Daisy", + "block.minecraft.oxidized_chiseled_copper": "Oxidized Chiseled Copper", + "block.minecraft.oxidized_copper": "Oxidized Copper", + "block.minecraft.oxidized_copper_bars": "Oxidized Copper Bars", + "block.minecraft.oxidized_copper_bulb": "Oxidized Copper Bulb", + "block.minecraft.oxidized_copper_chain": "Oxidized Copper Chain", + "block.minecraft.oxidized_copper_chest": "Oxidized Copper Chest", + "block.minecraft.oxidized_copper_door": "Oxidized Copper Door", + "block.minecraft.oxidized_copper_golem_statue": "Oxidized Copper Golem Statue", + "block.minecraft.oxidized_copper_grate": "Oxidized Copper Grate", + "block.minecraft.oxidized_copper_lantern": "Oxidized Copper Lantern", + "block.minecraft.oxidized_copper_trapdoor": "Oxidized Copper Trapdoor", + "block.minecraft.oxidized_cut_copper": "Oxidized Cut Copper", + "block.minecraft.oxidized_cut_copper_slab": "Oxidized Cut Copper Slab", + "block.minecraft.oxidized_cut_copper_stairs": "Oxidized Cut Copper Stairs", + "block.minecraft.oxidized_lightning_rod": "Oxidized Lightning Rod", + "block.minecraft.packed_ice": "Packed Ice", + "block.minecraft.packed_mud": "Packed Mud", + "block.minecraft.pale_hanging_moss": "Pale Hanging Moss", + "block.minecraft.pale_moss_block": "Pale Moss Block", + "block.minecraft.pale_moss_carpet": "Pale Moss Carpet", + "block.minecraft.pale_oak_button": "Pale Oak Button", + "block.minecraft.pale_oak_door": "Pale Oak Door", + "block.minecraft.pale_oak_fence": "Pale Oak Fence", + "block.minecraft.pale_oak_fence_gate": "Pale Oak Fence Gate", + "block.minecraft.pale_oak_hanging_sign": "Pale Oak Hanging Sign", + "block.minecraft.pale_oak_leaves": "Pale Oak Leaves", + "block.minecraft.pale_oak_log": "Pale Oak Log", + "block.minecraft.pale_oak_planks": "Pale Oak Planks", + "block.minecraft.pale_oak_pressure_plate": "Pale Oak Pressure Plate", + "block.minecraft.pale_oak_sapling": "Pale Oak Sapling", + "block.minecraft.pale_oak_shelf": "Pale Oak Shelf", + "block.minecraft.pale_oak_sign": "Pale Oak Sign", + "block.minecraft.pale_oak_slab": "Pale Oak Slab", + "block.minecraft.pale_oak_stairs": "Pale Oak Stairs", + "block.minecraft.pale_oak_trapdoor": "Pale Oak Trapdoor", + "block.minecraft.pale_oak_wall_hanging_sign": "Pale Oak Wall Hanging Sign", + "block.minecraft.pale_oak_wall_sign": "Pale Oak Wall Sign", + "block.minecraft.pale_oak_wood": "Pale Oak Wood", + "block.minecraft.pearlescent_froglight": "Pearlescent Froglight", + "block.minecraft.peony": "Peony", + "block.minecraft.petrified_oak_slab": "Petrified Oak Slab", + "block.minecraft.piglin_head": "Piglin Head", + "block.minecraft.piglin_wall_head": "Piglin Wall Head", + "block.minecraft.pink_banner": "Pink Banner", + "block.minecraft.pink_bed": "Pink Bed", + "block.minecraft.pink_candle": "Pink Candle", + "block.minecraft.pink_candle_cake": "Cake with Pink Candle", + "block.minecraft.pink_carpet": "Pink Carpet", + "block.minecraft.pink_concrete": "Pink Concrete", + "block.minecraft.pink_concrete_powder": "Pink Concrete Powder", + "block.minecraft.pink_glazed_terracotta": "Pink Glazed Terracotta", + "block.minecraft.pink_petals": "Pink Petals", + "block.minecraft.pink_shulker_box": "Pink Shulker Box", + "block.minecraft.pink_stained_glass": "Pink Stained Glass", + "block.minecraft.pink_stained_glass_pane": "Pink Stained Glass Pane", + "block.minecraft.pink_terracotta": "Pink Terracotta", + "block.minecraft.pink_tulip": "Pink Tulip", + "block.minecraft.pink_wool": "Pink Wool", + "block.minecraft.piston": "Piston", + "block.minecraft.piston_head": "Piston Head", + "block.minecraft.pitcher_crop": "Pitcher Crop", + "block.minecraft.pitcher_plant": "Pitcher Plant", + "block.minecraft.player_head": "Player Head", + "block.minecraft.player_head.named": "%s's Head", + "block.minecraft.player_wall_head": "Player Wall Head", + "block.minecraft.podzol": "Podzol", + "block.minecraft.pointed_dripstone": "Pointed Dripstone", + "block.minecraft.polished_andesite": "Polished Andesite", + "block.minecraft.polished_andesite_slab": "Polished Andesite Slab", + "block.minecraft.polished_andesite_stairs": "Polished Andesite Stairs", + "block.minecraft.polished_basalt": "Polished Basalt", + "block.minecraft.polished_blackstone": "Polished Blackstone", + "block.minecraft.polished_blackstone_brick_slab": "Polished Blackstone Brick Slab", + "block.minecraft.polished_blackstone_brick_stairs": "Polished Blackstone Brick Stairs", + "block.minecraft.polished_blackstone_brick_wall": "Polished Blackstone Brick Wall", + "block.minecraft.polished_blackstone_bricks": "Polished Blackstone Bricks", + "block.minecraft.polished_blackstone_button": "Polished Blackstone Button", + "block.minecraft.polished_blackstone_pressure_plate": "Polished Blackstone Pressure Plate", + "block.minecraft.polished_blackstone_slab": "Polished Blackstone Slab", + "block.minecraft.polished_blackstone_stairs": "Polished Blackstone Stairs", + "block.minecraft.polished_blackstone_wall": "Polished Blackstone Wall", + "block.minecraft.polished_deepslate": "Polished Deepslate", + "block.minecraft.polished_deepslate_slab": "Polished Deepslate Slab", + "block.minecraft.polished_deepslate_stairs": "Polished Deepslate Stairs", + "block.minecraft.polished_deepslate_wall": "Polished Deepslate Wall", + "block.minecraft.polished_diorite": "Polished Diorite", + "block.minecraft.polished_diorite_slab": "Polished Diorite Slab", + "block.minecraft.polished_diorite_stairs": "Polished Diorite Stairs", + "block.minecraft.polished_granite": "Polished Granite", + "block.minecraft.polished_granite_slab": "Polished Granite Slab", + "block.minecraft.polished_granite_stairs": "Polished Granite Stairs", + "block.minecraft.polished_tuff": "Polished Tuff", + "block.minecraft.polished_tuff_slab": "Polished Tuff Slab", + "block.minecraft.polished_tuff_stairs": "Polished Tuff Stairs", + "block.minecraft.polished_tuff_wall": "Polished Tuff Wall", + "block.minecraft.poppy": "Poppy", + "block.minecraft.potatoes": "Potatoes", + "block.minecraft.potted_acacia_sapling": "Potted Acacia Sapling", + "block.minecraft.potted_allium": "Potted Allium", + "block.minecraft.potted_azalea_bush": "Potted Azalea", + "block.minecraft.potted_azure_bluet": "Potted Azure Bluet", + "block.minecraft.potted_bamboo": "Potted Bamboo", + "block.minecraft.potted_birch_sapling": "Potted Birch Sapling", + "block.minecraft.potted_blue_orchid": "Potted Blue Orchid", + "block.minecraft.potted_brown_mushroom": "Potted Brown Mushroom", + "block.minecraft.potted_cactus": "Potted Cactus", + "block.minecraft.potted_cherry_sapling": "Potted Cherry Sapling", + "block.minecraft.potted_closed_eyeblossom": "Potted Closed Eyeblossom", + "block.minecraft.potted_cornflower": "Potted Cornflower", + "block.minecraft.potted_crimson_fungus": "Potted Crimson Fungus", + "block.minecraft.potted_crimson_roots": "Potted Crimson Roots", + "block.minecraft.potted_dandelion": "Potted Dandelion", + "block.minecraft.potted_dark_oak_sapling": "Potted Dark Oak Sapling", + "block.minecraft.potted_dead_bush": "Potted Dead Bush", + "block.minecraft.potted_fern": "Potted Fern", + "block.minecraft.potted_flowering_azalea_bush": "Potted Flowering Azalea", + "block.minecraft.potted_jungle_sapling": "Potted Jungle Sapling", + "block.minecraft.potted_lily_of_the_valley": "Potted Lily of the Valley", + "block.minecraft.potted_mangrove_propagule": "Potted Mangrove Propagule", + "block.minecraft.potted_oak_sapling": "Potted Oak Sapling", + "block.minecraft.potted_open_eyeblossom": "Potted Open Eyeblossom", + "block.minecraft.potted_orange_tulip": "Potted Orange Tulip", + "block.minecraft.potted_oxeye_daisy": "Potted Oxeye Daisy", + "block.minecraft.potted_pale_oak_sapling": "Potted Pale Oak Sapling", + "block.minecraft.potted_pink_tulip": "Potted Pink Tulip", + "block.minecraft.potted_poppy": "Potted Poppy", + "block.minecraft.potted_red_mushroom": "Potted Red Mushroom", + "block.minecraft.potted_red_tulip": "Potted Red Tulip", + "block.minecraft.potted_spruce_sapling": "Potted Spruce Sapling", + "block.minecraft.potted_torchflower": "Potted Torchflower", + "block.minecraft.potted_warped_fungus": "Potted Warped Fungus", + "block.minecraft.potted_warped_roots": "Potted Warped Roots", + "block.minecraft.potted_white_tulip": "Potted White Tulip", + "block.minecraft.potted_wither_rose": "Potted Wither Rose", + "block.minecraft.powder_snow": "Powder Snow", + "block.minecraft.powder_snow_cauldron": "Powder Snow Cauldron", + "block.minecraft.powered_rail": "Powered Rail", + "block.minecraft.prismarine": "Prismarine", + "block.minecraft.prismarine_brick_slab": "Prismarine Brick Slab", + "block.minecraft.prismarine_brick_stairs": "Prismarine Brick Stairs", + "block.minecraft.prismarine_bricks": "Prismarine Bricks", + "block.minecraft.prismarine_slab": "Prismarine Slab", + "block.minecraft.prismarine_stairs": "Prismarine Stairs", + "block.minecraft.prismarine_wall": "Prismarine Wall", + "block.minecraft.pumpkin": "Pumpkin", + "block.minecraft.pumpkin_stem": "Pumpkin Stem", + "block.minecraft.purple_banner": "Purple Banner", + "block.minecraft.purple_bed": "Purple Bed", + "block.minecraft.purple_candle": "Purple Candle", + "block.minecraft.purple_candle_cake": "Cake with Purple Candle", + "block.minecraft.purple_carpet": "Purple Carpet", + "block.minecraft.purple_concrete": "Purple Concrete", + "block.minecraft.purple_concrete_powder": "Purple Concrete Powder", + "block.minecraft.purple_glazed_terracotta": "Purple Glazed Terracotta", + "block.minecraft.purple_shulker_box": "Purple Shulker Box", + "block.minecraft.purple_stained_glass": "Purple Stained Glass", + "block.minecraft.purple_stained_glass_pane": "Purple Stained Glass Pane", + "block.minecraft.purple_terracotta": "Purple Terracotta", + "block.minecraft.purple_wool": "Purple Wool", + "block.minecraft.purpur_block": "Purpur Block", + "block.minecraft.purpur_pillar": "Purpur Pillar", + "block.minecraft.purpur_slab": "Purpur Slab", + "block.minecraft.purpur_stairs": "Purpur Stairs", + "block.minecraft.quartz_block": "Block of Quartz", + "block.minecraft.quartz_bricks": "Quartz Bricks", + "block.minecraft.quartz_pillar": "Quartz Pillar", + "block.minecraft.quartz_slab": "Quartz Slab", + "block.minecraft.quartz_stairs": "Quartz Stairs", + "block.minecraft.rail": "Rail", + "block.minecraft.raw_copper_block": "Block of Raw Copper", + "block.minecraft.raw_gold_block": "Block of Raw Gold", + "block.minecraft.raw_iron_block": "Block of Raw Iron", + "block.minecraft.red_banner": "Red Banner", + "block.minecraft.red_bed": "Red Bed", + "block.minecraft.red_candle": "Red Candle", + "block.minecraft.red_candle_cake": "Cake with Red Candle", + "block.minecraft.red_carpet": "Red Carpet", + "block.minecraft.red_concrete": "Red Concrete", + "block.minecraft.red_concrete_powder": "Red Concrete Powder", + "block.minecraft.red_glazed_terracotta": "Red Glazed Terracotta", + "block.minecraft.red_mushroom": "Red Mushroom", + "block.minecraft.red_mushroom_block": "Red Mushroom Block", + "block.minecraft.red_nether_brick_slab": "Red Nether Brick Slab", + "block.minecraft.red_nether_brick_stairs": "Red Nether Brick Stairs", + "block.minecraft.red_nether_brick_wall": "Red Nether Brick Wall", + "block.minecraft.red_nether_bricks": "Red Nether Bricks", + "block.minecraft.red_sand": "Red Sand", + "block.minecraft.red_sandstone": "Red Sandstone", + "block.minecraft.red_sandstone_slab": "Red Sandstone Slab", + "block.minecraft.red_sandstone_stairs": "Red Sandstone Stairs", + "block.minecraft.red_sandstone_wall": "Red Sandstone Wall", + "block.minecraft.red_shulker_box": "Red Shulker Box", + "block.minecraft.red_stained_glass": "Red Stained Glass", + "block.minecraft.red_stained_glass_pane": "Red Stained Glass Pane", + "block.minecraft.red_terracotta": "Red Terracotta", + "block.minecraft.red_tulip": "Red Tulip", + "block.minecraft.red_wool": "Red Wool", + "block.minecraft.redstone_block": "Block of Redstone", + "block.minecraft.redstone_lamp": "Redstone Lamp", + "block.minecraft.redstone_ore": "Redstone Ore", + "block.minecraft.redstone_torch": "Redstone Torch", + "block.minecraft.redstone_wall_torch": "Redstone Wall Torch", + "block.minecraft.redstone_wire": "Redstone Wire", + "block.minecraft.reinforced_deepslate": "Reinforced Deepslate", + "block.minecraft.repeater": "Redstone Repeater", + "block.minecraft.repeating_command_block": "Repeating Command Block", + "block.minecraft.resin_block": "Block of Resin", + "block.minecraft.resin_brick_slab": "Resin Brick Slab", + "block.minecraft.resin_brick_stairs": "Resin Brick Stairs", + "block.minecraft.resin_brick_wall": "Resin Brick Wall", + "block.minecraft.resin_bricks": "Resin Bricks", + "block.minecraft.resin_clump": "Resin Clump", + "block.minecraft.respawn_anchor": "Respawn Anchor", + "block.minecraft.rooted_dirt": "Rooted Dirt", + "block.minecraft.rose_bush": "Rose Bush", + "block.minecraft.sand": "Sand", + "block.minecraft.sandstone": "Sandstone", + "block.minecraft.sandstone_slab": "Sandstone Slab", + "block.minecraft.sandstone_stairs": "Sandstone Stairs", + "block.minecraft.sandstone_wall": "Sandstone Wall", + "block.minecraft.scaffolding": "Scaffolding", + "block.minecraft.sculk": "Sculk", + "block.minecraft.sculk_catalyst": "Sculk Catalyst", + "block.minecraft.sculk_sensor": "Sculk Sensor", + "block.minecraft.sculk_shrieker": "Sculk Shrieker", + "block.minecraft.sculk_vein": "Sculk Vein", + "block.minecraft.sea_lantern": "Sea Lantern", + "block.minecraft.sea_pickle": "Sea Pickle", + "block.minecraft.seagrass": "Seagrass", + "block.minecraft.set_spawn": "Respawn point set", + "block.minecraft.short_dry_grass": "Short Dry Grass", + "block.minecraft.short_grass": "Short Grass", + "block.minecraft.shroomlight": "Shroomlight", + "block.minecraft.shulker_box": "Shulker Box", + "block.minecraft.skeleton_skull": "Skeleton Skull", + "block.minecraft.skeleton_wall_skull": "Skeleton Wall Skull", + "block.minecraft.slime_block": "Slime Block", + "block.minecraft.small_amethyst_bud": "Small Amethyst Bud", + "block.minecraft.small_dripleaf": "Small Dripleaf", + "block.minecraft.smithing_table": "Smithing Table", + "block.minecraft.smoker": "Smoker", + "block.minecraft.smooth_basalt": "Smooth Basalt", + "block.minecraft.smooth_quartz": "Smooth Quartz Block", + "block.minecraft.smooth_quartz_slab": "Smooth Quartz Slab", + "block.minecraft.smooth_quartz_stairs": "Smooth Quartz Stairs", + "block.minecraft.smooth_red_sandstone": "Smooth Red Sandstone", + "block.minecraft.smooth_red_sandstone_slab": "Smooth Red Sandstone Slab", + "block.minecraft.smooth_red_sandstone_stairs": "Smooth Red Sandstone Stairs", + "block.minecraft.smooth_sandstone": "Smooth Sandstone", + "block.minecraft.smooth_sandstone_slab": "Smooth Sandstone Slab", + "block.minecraft.smooth_sandstone_stairs": "Smooth Sandstone Stairs", + "block.minecraft.smooth_stone": "Smooth Stone", + "block.minecraft.smooth_stone_slab": "Smooth Stone Slab", + "block.minecraft.sniffer_egg": "Sniffer Egg", + "block.minecraft.snow": "Snow", + "block.minecraft.snow_block": "Snow Block", + "block.minecraft.soul_campfire": "Soul Campfire", + "block.minecraft.soul_fire": "Soul Fire", + "block.minecraft.soul_lantern": "Soul Lantern", + "block.minecraft.soul_sand": "Soul Sand", + "block.minecraft.soul_soil": "Soul Soil", + "block.minecraft.soul_torch": "Soul Torch", + "block.minecraft.soul_wall_torch": "Soul Wall Torch", + "block.minecraft.spawn.not_valid": "You have no home bed or charged respawn anchor, or it was obstructed", + "block.minecraft.spawner": "Monster Spawner", + "block.minecraft.spawner.desc1": "Interact with Spawn Egg:", + "block.minecraft.spawner.desc2": "Sets Mob Type", + "block.minecraft.sponge": "Sponge", + "block.minecraft.spore_blossom": "Spore Blossom", + "block.minecraft.spruce_button": "Spruce Button", + "block.minecraft.spruce_door": "Spruce Door", + "block.minecraft.spruce_fence": "Spruce Fence", + "block.minecraft.spruce_fence_gate": "Spruce Fence Gate", + "block.minecraft.spruce_hanging_sign": "Spruce Hanging Sign", + "block.minecraft.spruce_leaves": "Spruce Leaves", + "block.minecraft.spruce_log": "Spruce Log", + "block.minecraft.spruce_planks": "Spruce Planks", + "block.minecraft.spruce_pressure_plate": "Spruce Pressure Plate", + "block.minecraft.spruce_sapling": "Spruce Sapling", + "block.minecraft.spruce_shelf": "Spruce Shelf", + "block.minecraft.spruce_sign": "Spruce Sign", + "block.minecraft.spruce_slab": "Spruce Slab", + "block.minecraft.spruce_stairs": "Spruce Stairs", + "block.minecraft.spruce_trapdoor": "Spruce Trapdoor", + "block.minecraft.spruce_wall_hanging_sign": "Spruce Wall Hanging Sign", + "block.minecraft.spruce_wall_sign": "Spruce Wall Sign", + "block.minecraft.spruce_wood": "Spruce Wood", + "block.minecraft.sticky_piston": "Sticky Piston", + "block.minecraft.stone": "Stone", + "block.minecraft.stone_brick_slab": "Stone Brick Slab", + "block.minecraft.stone_brick_stairs": "Stone Brick Stairs", + "block.minecraft.stone_brick_wall": "Stone Brick Wall", + "block.minecraft.stone_bricks": "Stone Bricks", + "block.minecraft.stone_button": "Stone Button", + "block.minecraft.stone_pressure_plate": "Stone Pressure Plate", + "block.minecraft.stone_slab": "Stone Slab", + "block.minecraft.stone_stairs": "Stone Stairs", + "block.minecraft.stonecutter": "Stonecutter", + "block.minecraft.stripped_acacia_log": "Stripped Acacia Log", + "block.minecraft.stripped_acacia_wood": "Stripped Acacia Wood", + "block.minecraft.stripped_bamboo_block": "Block of Stripped Bamboo", + "block.minecraft.stripped_birch_log": "Stripped Birch Log", + "block.minecraft.stripped_birch_wood": "Stripped Birch Wood", + "block.minecraft.stripped_cherry_log": "Stripped Cherry Log", + "block.minecraft.stripped_cherry_wood": "Stripped Cherry Wood", + "block.minecraft.stripped_crimson_hyphae": "Stripped Crimson Hyphae", + "block.minecraft.stripped_crimson_stem": "Stripped Crimson Stem", + "block.minecraft.stripped_dark_oak_log": "Stripped Dark Oak Log", + "block.minecraft.stripped_dark_oak_wood": "Stripped Dark Oak Wood", + "block.minecraft.stripped_jungle_log": "Stripped Jungle Log", + "block.minecraft.stripped_jungle_wood": "Stripped Jungle Wood", + "block.minecraft.stripped_mangrove_log": "Stripped Mangrove Log", + "block.minecraft.stripped_mangrove_wood": "Stripped Mangrove Wood", + "block.minecraft.stripped_oak_log": "Stripped Oak Log", + "block.minecraft.stripped_oak_wood": "Stripped Oak Wood", + "block.minecraft.stripped_pale_oak_log": "Stripped Pale Oak Log", + "block.minecraft.stripped_pale_oak_wood": "Stripped Pale Oak Wood", + "block.minecraft.stripped_spruce_log": "Stripped Spruce Log", + "block.minecraft.stripped_spruce_wood": "Stripped Spruce Wood", + "block.minecraft.stripped_warped_hyphae": "Stripped Warped Hyphae", + "block.minecraft.stripped_warped_stem": "Stripped Warped Stem", + "block.minecraft.structure_block": "Structure Block", + "block.minecraft.structure_void": "Structure Void", + "block.minecraft.sugar_cane": "Sugar Cane", + "block.minecraft.sunflower": "Sunflower", + "block.minecraft.suspicious_gravel": "Suspicious Gravel", + "block.minecraft.suspicious_sand": "Suspicious Sand", + "block.minecraft.sweet_berry_bush": "Sweet Berry Bush", + "block.minecraft.tall_dry_grass": "Tall Dry Grass", + "block.minecraft.tall_grass": "Tall Grass", + "block.minecraft.tall_seagrass": "Tall Seagrass", + "block.minecraft.target": "Target", + "block.minecraft.terracotta": "Terracotta", + "block.minecraft.test_block": "Test Block", + "block.minecraft.test_instance_block": "Test Instance Block", + "block.minecraft.tinted_glass": "Tinted Glass", + "block.minecraft.tnt": "TNT", + "block.minecraft.tnt.disabled": "TNT explosions are disabled", + "block.minecraft.torch": "Torch", + "block.minecraft.torchflower": "Torchflower", + "block.minecraft.torchflower_crop": "Torchflower Crop", + "block.minecraft.trapped_chest": "Trapped Chest", + "block.minecraft.trial_spawner": "Trial Spawner", + "block.minecraft.tripwire": "Tripwire", + "block.minecraft.tripwire_hook": "Tripwire Hook", + "block.minecraft.tube_coral": "Tube Coral", + "block.minecraft.tube_coral_block": "Tube Coral Block", + "block.minecraft.tube_coral_fan": "Tube Coral Fan", + "block.minecraft.tube_coral_wall_fan": "Tube Coral Wall Fan", + "block.minecraft.tuff": "Tuff", + "block.minecraft.tuff_brick_slab": "Tuff Brick Slab", + "block.minecraft.tuff_brick_stairs": "Tuff Brick Stairs", + "block.minecraft.tuff_brick_wall": "Tuff Brick Wall", + "block.minecraft.tuff_bricks": "Tuff Bricks", + "block.minecraft.tuff_slab": "Tuff Slab", + "block.minecraft.tuff_stairs": "Tuff Stairs", + "block.minecraft.tuff_wall": "Tuff Wall", + "block.minecraft.turtle_egg": "Turtle Egg", + "block.minecraft.twisting_vines": "Twisting Vines", + "block.minecraft.twisting_vines_plant": "Twisting Vines Plant", + "block.minecraft.vault": "Vault", + "block.minecraft.verdant_froglight": "Verdant Froglight", + "block.minecraft.vine": "Vines", + "block.minecraft.void_air": "Void Air", + "block.minecraft.wall_torch": "Wall Torch", + "block.minecraft.warped_button": "Warped Button", + "block.minecraft.warped_door": "Warped Door", + "block.minecraft.warped_fence": "Warped Fence", + "block.minecraft.warped_fence_gate": "Warped Fence Gate", + "block.minecraft.warped_fungus": "Warped Fungus", + "block.minecraft.warped_hanging_sign": "Warped Hanging Sign", + "block.minecraft.warped_hyphae": "Warped Hyphae", + "block.minecraft.warped_nylium": "Warped Nylium", + "block.minecraft.warped_planks": "Warped Planks", + "block.minecraft.warped_pressure_plate": "Warped Pressure Plate", + "block.minecraft.warped_roots": "Warped Roots", + "block.minecraft.warped_shelf": "Warped Shelf", + "block.minecraft.warped_sign": "Warped Sign", + "block.minecraft.warped_slab": "Warped Slab", + "block.minecraft.warped_stairs": "Warped Stairs", + "block.minecraft.warped_stem": "Warped Stem", + "block.minecraft.warped_trapdoor": "Warped Trapdoor", + "block.minecraft.warped_wall_hanging_sign": "Warped Wall Hanging Sign", + "block.minecraft.warped_wall_sign": "Warped Wall Sign", + "block.minecraft.warped_wart_block": "Warped Wart Block", + "block.minecraft.water": "Water", + "block.minecraft.water_cauldron": "Water Cauldron", + "block.minecraft.waxed_chiseled_copper": "Waxed Chiseled Copper", + "block.minecraft.waxed_copper_bars": "Waxed Copper Bars", + "block.minecraft.waxed_copper_block": "Waxed Block of Copper", + "block.minecraft.waxed_copper_bulb": "Waxed Copper Bulb", + "block.minecraft.waxed_copper_chain": "Waxed Copper Chain", + "block.minecraft.waxed_copper_chest": "Waxed Copper Chest", + "block.minecraft.waxed_copper_door": "Waxed Copper Door", + "block.minecraft.waxed_copper_golem_statue": "Waxed Copper Golem Statue", + "block.minecraft.waxed_copper_grate": "Waxed Copper Grate", + "block.minecraft.waxed_copper_lantern": "Waxed Copper Lantern", + "block.minecraft.waxed_copper_trapdoor": "Waxed Copper Trapdoor", + "block.minecraft.waxed_cut_copper": "Waxed Cut Copper", + "block.minecraft.waxed_cut_copper_slab": "Waxed Cut Copper Slab", + "block.minecraft.waxed_cut_copper_stairs": "Waxed Cut Copper Stairs", + "block.minecraft.waxed_exposed_chiseled_copper": "Waxed Exposed Chiseled Copper", + "block.minecraft.waxed_exposed_copper": "Waxed Exposed Copper", + "block.minecraft.waxed_exposed_copper_bars": "Waxed Exposed Copper Bars", + "block.minecraft.waxed_exposed_copper_bulb": "Waxed Exposed Copper Bulb", + "block.minecraft.waxed_exposed_copper_chain": "Waxed Exposed Copper Chain", + "block.minecraft.waxed_exposed_copper_chest": "Waxed Exposed Copper Chest", + "block.minecraft.waxed_exposed_copper_door": "Waxed Exposed Copper Door", + "block.minecraft.waxed_exposed_copper_golem_statue": "Waxed Exposed Copper Golem Statue", + "block.minecraft.waxed_exposed_copper_grate": "Waxed Exposed Copper Grate", + "block.minecraft.waxed_exposed_copper_lantern": "Waxed Exposed Copper Lantern", + "block.minecraft.waxed_exposed_copper_trapdoor": "Waxed Exposed Copper Trapdoor", + "block.minecraft.waxed_exposed_cut_copper": "Waxed Exposed Cut Copper", + "block.minecraft.waxed_exposed_cut_copper_slab": "Waxed Exposed Cut Copper Slab", + "block.minecraft.waxed_exposed_cut_copper_stairs": "Waxed Exposed Cut Copper Stairs", + "block.minecraft.waxed_exposed_lightning_rod": "Waxed Exposed Lightning Rod", + "block.minecraft.waxed_lightning_rod": "Waxed Lightning Rod", + "block.minecraft.waxed_oxidized_chiseled_copper": "Waxed Oxidized Chiseled Copper", + "block.minecraft.waxed_oxidized_copper": "Waxed Oxidized Copper", + "block.minecraft.waxed_oxidized_copper_bars": "Waxed Oxidized Copper Bars", + "block.minecraft.waxed_oxidized_copper_bulb": "Waxed Oxidized Copper Bulb", + "block.minecraft.waxed_oxidized_copper_chain": "Waxed Oxidized Copper Chain", + "block.minecraft.waxed_oxidized_copper_chest": "Waxed Oxidized Copper Chest", + "block.minecraft.waxed_oxidized_copper_door": "Waxed Oxidized Copper Door", + "block.minecraft.waxed_oxidized_copper_golem_statue": "Waxed Oxidized Copper Golem Statue", + "block.minecraft.waxed_oxidized_copper_grate": "Waxed Oxidized Copper Grate", + "block.minecraft.waxed_oxidized_copper_lantern": "Waxed Oxidized Copper Lantern", + "block.minecraft.waxed_oxidized_copper_trapdoor": "Waxed Oxidized Copper Trapdoor", + "block.minecraft.waxed_oxidized_cut_copper": "Waxed Oxidized Cut Copper", + "block.minecraft.waxed_oxidized_cut_copper_slab": "Waxed Oxidized Cut Copper Slab", + "block.minecraft.waxed_oxidized_cut_copper_stairs": "Waxed Oxidized Cut Copper Stairs", + "block.minecraft.waxed_oxidized_lightning_rod": "Waxed Oxidized Lightning Rod", + "block.minecraft.waxed_weathered_chiseled_copper": "Waxed Weathered Chiseled Copper", + "block.minecraft.waxed_weathered_copper": "Waxed Weathered Copper", + "block.minecraft.waxed_weathered_copper_bars": "Waxed Weathered Copper Bars", + "block.minecraft.waxed_weathered_copper_bulb": "Waxed Weathered Copper Bulb", + "block.minecraft.waxed_weathered_copper_chain": "Waxed Weathered Copper Chain", + "block.minecraft.waxed_weathered_copper_chest": "Waxed Weathered Copper Chest", + "block.minecraft.waxed_weathered_copper_door": "Waxed Weathered Copper Door", + "block.minecraft.waxed_weathered_copper_golem_statue": "Waxed Weathered Copper Golem Statue", + "block.minecraft.waxed_weathered_copper_grate": "Waxed Weathered Copper Grate", + "block.minecraft.waxed_weathered_copper_lantern": "Waxed Weathered Copper Lantern", + "block.minecraft.waxed_weathered_copper_trapdoor": "Waxed Weathered Copper Trapdoor", + "block.minecraft.waxed_weathered_cut_copper": "Waxed Weathered Cut Copper", + "block.minecraft.waxed_weathered_cut_copper_slab": "Waxed Weathered Cut Copper Slab", + "block.minecraft.waxed_weathered_cut_copper_stairs": "Waxed Weathered Cut Copper Stairs", + "block.minecraft.waxed_weathered_lightning_rod": "Waxed Weathered Lightning Rod", + "block.minecraft.weathered_chiseled_copper": "Weathered Chiseled Copper", + "block.minecraft.weathered_copper": "Weathered Copper", + "block.minecraft.weathered_copper_bars": "Weathered Copper Bars", + "block.minecraft.weathered_copper_bulb": "Weathered Copper Bulb", + "block.minecraft.weathered_copper_chain": "Weathered Copper Chain", + "block.minecraft.weathered_copper_chest": "Weathered Copper Chest", + "block.minecraft.weathered_copper_door": "Weathered Copper Door", + "block.minecraft.weathered_copper_golem_statue": "Weathered Copper Golem Statue", + "block.minecraft.weathered_copper_grate": "Weathered Copper Grate", + "block.minecraft.weathered_copper_lantern": "Weathered Copper Lantern", + "block.minecraft.weathered_copper_trapdoor": "Weathered Copper Trapdoor", + "block.minecraft.weathered_cut_copper": "Weathered Cut Copper", + "block.minecraft.weathered_cut_copper_slab": "Weathered Cut Copper Slab", + "block.minecraft.weathered_cut_copper_stairs": "Weathered Cut Copper Stairs", + "block.minecraft.weathered_lightning_rod": "Weathered Lightning Rod", + "block.minecraft.weeping_vines": "Weeping Vines", + "block.minecraft.weeping_vines_plant": "Weeping Vines Plant", + "block.minecraft.wet_sponge": "Wet Sponge", + "block.minecraft.wheat": "Wheat Crops", + "block.minecraft.white_banner": "White Banner", + "block.minecraft.white_bed": "White Bed", + "block.minecraft.white_candle": "White Candle", + "block.minecraft.white_candle_cake": "Cake with White Candle", + "block.minecraft.white_carpet": "White Carpet", + "block.minecraft.white_concrete": "White Concrete", + "block.minecraft.white_concrete_powder": "White Concrete Powder", + "block.minecraft.white_glazed_terracotta": "White Glazed Terracotta", + "block.minecraft.white_shulker_box": "White Shulker Box", + "block.minecraft.white_stained_glass": "White Stained Glass", + "block.minecraft.white_stained_glass_pane": "White Stained Glass Pane", + "block.minecraft.white_terracotta": "White Terracotta", + "block.minecraft.white_tulip": "White Tulip", + "block.minecraft.white_wool": "White Wool", + "block.minecraft.wildflowers": "Wildflowers", + "block.minecraft.wither_rose": "Wither Rose", + "block.minecraft.wither_skeleton_skull": "Wither Skeleton Skull", + "block.minecraft.wither_skeleton_wall_skull": "Wither Skeleton Wall Skull", + "block.minecraft.yellow_banner": "Yellow Banner", + "block.minecraft.yellow_bed": "Yellow Bed", + "block.minecraft.yellow_candle": "Yellow Candle", + "block.minecraft.yellow_candle_cake": "Cake with Yellow Candle", + "block.minecraft.yellow_carpet": "Yellow Carpet", + "block.minecraft.yellow_concrete": "Yellow Concrete", + "block.minecraft.yellow_concrete_powder": "Yellow Concrete Powder", + "block.minecraft.yellow_glazed_terracotta": "Yellow Glazed Terracotta", + "block.minecraft.yellow_shulker_box": "Yellow Shulker Box", + "block.minecraft.yellow_stained_glass": "Yellow Stained Glass", + "block.minecraft.yellow_stained_glass_pane": "Yellow Stained Glass Pane", + "block.minecraft.yellow_terracotta": "Yellow Terracotta", + "block.minecraft.yellow_wool": "Yellow Wool", + "block.minecraft.zombie_head": "Zombie Head", + "block.minecraft.zombie_wall_head": "Zombie Wall Head", + "book.byAuthor": "by %1$s", + "book.edit.title": "Book Edit Screen", + "book.editTitle": "Enter Book Title:", + "book.finalizeButton": "Sign and Close", + "book.finalizeWarning": "Note! When you sign the book, it will no longer be editable.", + "book.generation.0": "Original", + "book.generation.1": "Copy of original", + "book.generation.2": "Copy of a copy", + "book.generation.3": "Tattered", + "book.invalid.tag": "* Invalid book tag *", + "book.page_button.next": "Next Page", + "book.page_button.previous": "Previous Page", + "book.pageIndicator": "Page %1$s of %2$s", + "book.sign.title": "Book Sign Screen", + "book.sign.titlebox": "Title", + "book.signButton": "Sign", + "book.view.title": "Book View Screen", + "build.tooHigh": "Height limit for building is %s", + "chat_screen.message": "Message to send: %s", + "chat_screen.title": "Chat screen", + "chat_screen.usage": "Input message and press Enter to send", + "chat.cannotSend": "Cannot send chat message", + "chat.coordinates": "%s, %s, %s", + "chat.coordinates.tooltip": "Click to teleport", + "chat.copy": "Copy to Clipboard", + "chat.copy.click": "Click to Copy to Clipboard", + "chat.deleted_marker": "This chat message has been deleted by the server.", + "chat.disabled.chain_broken": "Chat disabled due to broken chain. Please try reconnecting.", + "chat.disabled.expiredProfileKey": "Chat disabled due to expired profile public key. Please try reconnecting.", + "chat.disabled.invalid_command_signature": "The command had unexpected or missing command argument signatures.", + "chat.disabled.invalid_signature": "Chat had an invalid signature. Please try reconnecting.", + "chat.disabled.launcher": "Chat disabled by launcher option. Cannot send message.", + "chat.disabled.missingProfileKey": "Chat disabled due to missing profile public key. Please try reconnecting.", + "chat.disabled.options": "Chat disabled in client options.", + "chat.disabled.out_of_order_chat": "Chat received out-of-order. Did your system time change?", + "chat.disabled.profile": "Chat is not allowed by account settings. Press '%s' again for more information.", + "chat.disabled.profile.moreInfo": "Chat is not allowed by account settings. Cannot send or view messages.", + "chat.editBox": "chat", + "chat.filtered": "Filtered by the server.", + "chat.filtered_full": "The server has hidden your message for some players.", + "chat.link.confirm": "Are you sure you want to open the following website?", + "chat.link.confirmTrusted": "Do you want to open this link or copy it to your clipboard?", + "chat.link.open": "Open in Browser", + "chat.link.warning": "Never open links from people that you don't trust!", + "chat.queue": "[+%s pending line(s)]", + "chat.square_brackets": "[%s]", + "chat.tag.error": "Server sent invalid message.", + "chat.tag.modified": "Message modified by the server. Original:", + "chat.tag.not_secure": "Unverified message. Cannot be reported.", + "chat.tag.system": "Server message. Cannot be reported.", + "chat.tag.system_single_player": "Server message.", + "chat.type.admin": "[%s: %s]", + "chat.type.advancement.challenge": "%s has completed the challenge %s", + "chat.type.advancement.goal": "%s has reached the goal %s", + "chat.type.advancement.task": "%s has made the advancement %s", + "chat.type.announcement": "[%s] %s", + "chat.type.emote": "* %s %s", + "chat.type.team.hover": "Message Team", + "chat.type.team.sent": "-> %s <%s> %s", + "chat.type.team.text": "%s <%s> %s", + "chat.type.text": "<%s> %s", + "chat.type.text.narrate": "%s says %s", + "chat.validation_error": "Chat validation error", + "chunk.toast.checkLog": "See log for more details", + "chunk.toast.loadFailure": "Failed to load chunk at %s", + "chunk.toast.lowDiskSpace": "Low disk space!", + "chunk.toast.lowDiskSpace.description": "Might not be able to save the world.", + "chunk.toast.saveFailure": "Failed to save chunk at %s", + "clear.failed.multiple": "No items were found on %s players", + "clear.failed.single": "No items were found on player %s", + "color.minecraft.black": "Black", + "color.minecraft.blue": "Blue", + "color.minecraft.brown": "Brown", + "color.minecraft.cyan": "Cyan", + "color.minecraft.gray": "Gray", + "color.minecraft.green": "Green", + "color.minecraft.light_blue": "Light Blue", + "color.minecraft.light_gray": "Light Gray", + "color.minecraft.lime": "Lime", + "color.minecraft.magenta": "Magenta", + "color.minecraft.orange": "Orange", + "color.minecraft.pink": "Pink", + "color.minecraft.purple": "Purple", + "color.minecraft.red": "Red", + "color.minecraft.white": "White", + "color.minecraft.yellow": "Yellow", + "command.context.here": "<--[HERE]", + "command.context.parse_error": "%s at position %s: %s", + "command.exception": "Could not parse command: %s", + "command.expected.separator": "Expected whitespace to end one argument, but found trailing data", + "command.failed": "An unexpected error occurred trying to execute that command", + "command.forkLimit": "Maximum number of contexts (%s) reached", + "command.unknown.argument": "Incorrect argument for command", + "command.unknown.command": "Unknown or incomplete command. See below for error", + "commands.advancement.criterionNotFound": "The advancement %1$s does not contain the criterion '%2$s'", + "commands.advancement.grant.criterion.to.many.failure": "Couldn't grant criterion '%s' of advancement %s to %s players as they already have it", + "commands.advancement.grant.criterion.to.many.success": "Granted criterion '%s' of advancement %s to %s players", + "commands.advancement.grant.criterion.to.one.failure": "Couldn't grant criterion '%s' of advancement %s to %s as they already have it", + "commands.advancement.grant.criterion.to.one.success": "Granted criterion '%s' of advancement %s to %s", + "commands.advancement.grant.many.to.many.failure": "Couldn't grant %s advancements to %s players as they already have them", + "commands.advancement.grant.many.to.many.success": "Granted %s advancements to %s players", + "commands.advancement.grant.many.to.one.failure": "Couldn't grant %s advancements to %s as they already have them", + "commands.advancement.grant.many.to.one.success": "Granted %s advancements to %s", + "commands.advancement.grant.one.to.many.failure": "Couldn't grant advancement %s to %s players as they already have it", + "commands.advancement.grant.one.to.many.success": "Granted the advancement %s to %s players", + "commands.advancement.grant.one.to.one.failure": "Couldn't grant advancement %s to %s as they already have it", + "commands.advancement.grant.one.to.one.success": "Granted the advancement %s to %s", + "commands.advancement.revoke.criterion.to.many.failure": "Couldn't revoke criterion '%s' of advancement %s from %s players as they don't have it", + "commands.advancement.revoke.criterion.to.many.success": "Revoked criterion '%s' of advancement %s from %s players", + "commands.advancement.revoke.criterion.to.one.failure": "Couldn't revoke criterion '%s' of advancement %s from %s as they don't have it", + "commands.advancement.revoke.criterion.to.one.success": "Revoked criterion '%s' of advancement %s from %s", + "commands.advancement.revoke.many.to.many.failure": "Couldn't revoke %s advancements from %s players as they don't have them", + "commands.advancement.revoke.many.to.many.success": "Revoked %s advancements from %s players", + "commands.advancement.revoke.many.to.one.failure": "Couldn't revoke %s advancements from %s as they don't have them", + "commands.advancement.revoke.many.to.one.success": "Revoked %s advancements from %s", + "commands.advancement.revoke.one.to.many.failure": "Couldn't revoke advancement %s from %s players as they don't have it", + "commands.advancement.revoke.one.to.many.success": "Revoked the advancement %s from %s players", + "commands.advancement.revoke.one.to.one.failure": "Couldn't revoke advancement %s from %s as they don't have it", + "commands.advancement.revoke.one.to.one.success": "Revoked the advancement %s from %s", + "commands.attribute.base_value.get.success": "The base value of attribute %s for entity %s is %s", + "commands.attribute.base_value.reset.success": "The base value for attribute %s for entity %s reset to default %s", + "commands.attribute.base_value.set.success": "The base value for attribute %s for entity %s set to %s", + "commands.attribute.failed.entity": "%s is not a valid entity for this command", + "commands.attribute.failed.modifier_already_present": "Modifier %s is already present on attribute %s for entity %s", + "commands.attribute.failed.no_attribute": "Entity %s has no attribute %s", + "commands.attribute.failed.no_modifier": "Attribute %s for entity %s has no modifier %s", + "commands.attribute.modifier.add.success": "Added modifier %s to attribute %s for entity %s", + "commands.attribute.modifier.remove.success": "Removed modifier %s from attribute %s for entity %s", + "commands.attribute.modifier.value.get.success": "The value of modifier %s on attribute %s for entity %s is %s", + "commands.attribute.value.get.success": "The value of attribute %s for entity %s is %s", + "commands.ban.failed": "Nothing changed. The player is already banned", + "commands.ban.success": "Banned %s: %s", + "commands.banip.failed": "Nothing changed. That IP is already banned", + "commands.banip.info": "This ban affects %s player(s): %s", + "commands.banip.invalid": "Invalid IP address or unknown player", + "commands.banip.success": "Banned IP %s: %s", + "commands.banlist.entry": "%s was banned by %s: %s", + "commands.banlist.entry.unknown": "(Unknown)", + "commands.banlist.list": "There are %s ban(s):", + "commands.banlist.none": "There are no bans", + "commands.bossbar.create.failed": "A bossbar already exists with the ID '%s'", + "commands.bossbar.create.success": "Created custom bossbar %s", + "commands.bossbar.get.max": "Custom bossbar %s has a maximum of %s", + "commands.bossbar.get.players.none": "Custom bossbar %s has no players currently online", + "commands.bossbar.get.players.some": "Custom bossbar %s has %s player(s) currently online: %s", + "commands.bossbar.get.value": "Custom bossbar %s has a value of %s", + "commands.bossbar.get.visible.hidden": "Custom bossbar %s is currently hidden", + "commands.bossbar.get.visible.visible": "Custom bossbar %s is currently shown", + "commands.bossbar.list.bars.none": "There are no custom bossbars active", + "commands.bossbar.list.bars.some": "There are %s custom bossbar(s) active: %s", + "commands.bossbar.remove.success": "Removed custom bossbar %s", + "commands.bossbar.set.color.success": "Custom bossbar %s has changed color", + "commands.bossbar.set.color.unchanged": "Nothing changed. That's already the color of this bossbar", + "commands.bossbar.set.max.success": "Custom bossbar %s has changed maximum to %s", + "commands.bossbar.set.max.unchanged": "Nothing changed. That's already the max of this bossbar", + "commands.bossbar.set.name.success": "Custom bossbar %s has been renamed", + "commands.bossbar.set.name.unchanged": "Nothing changed. That's already the name of this bossbar", + "commands.bossbar.set.players.success.none": "Custom bossbar %s no longer has any players", + "commands.bossbar.set.players.success.some": "Custom bossbar %s now has %s player(s): %s", + "commands.bossbar.set.players.unchanged": "Nothing changed. Those players are already on the bossbar with nobody to add or remove", + "commands.bossbar.set.style.success": "Custom bossbar %s has changed style", + "commands.bossbar.set.style.unchanged": "Nothing changed. That's already the style of this bossbar", + "commands.bossbar.set.value.success": "Custom bossbar %s has changed value to %s", + "commands.bossbar.set.value.unchanged": "Nothing changed. That's already the value of this bossbar", + "commands.bossbar.set.visibility.unchanged.hidden": "Nothing changed. The bossbar is already hidden", + "commands.bossbar.set.visibility.unchanged.visible": "Nothing changed. The bossbar is already visible", + "commands.bossbar.set.visible.success.hidden": "Custom bossbar %s is now hidden", + "commands.bossbar.set.visible.success.visible": "Custom bossbar %s is now visible", + "commands.bossbar.unknown": "No bossbar exists with the ID '%s'", + "commands.clear.success.multiple": "Removed %s item(s) from %s players", + "commands.clear.success.single": "Removed %s item(s) from player %s", + "commands.clear.test.multiple": "Found %s matching item(s) on %s players", + "commands.clear.test.single": "Found %s matching item(s) on player %s", + "commands.clone.failed": "No blocks were cloned", + "commands.clone.overlap": "The source and destination areas cannot overlap", + "commands.clone.success": "Successfully cloned %s block(s)", + "commands.clone.toobig": "Too many blocks in the specified area (maximum %s, but specified %s)", + "commands.damage.invulnerable": "Target is invulnerable to the given damage type", + "commands.damage.success": "Applied %s damage to %s", + "commands.data.block.get": "%s on block %s, %s, %s after scale factor of %s is %s", + "commands.data.block.invalid": "The target block is not a block entity", + "commands.data.block.modified": "Modified block data of %s, %s, %s", + "commands.data.block.query": "%s, %s, %s has the following block data: %s", + "commands.data.entity.get": "%s on %s after scale factor of %s is %s", + "commands.data.entity.invalid": "Unable to modify player data", + "commands.data.entity.modified": "Modified entity data of %s", + "commands.data.entity.query": "%s has the following entity data: %s", + "commands.data.get.invalid": "Can't get %s; only numeric tags are allowed", + "commands.data.get.multiple": "This argument accepts a single NBT value", + "commands.data.get.unknown": "Can't get %s; tag doesn't exist", + "commands.data.merge.failed": "Nothing changed. The specified properties already have these values", + "commands.data.modify.expected_list": "Expected a list: got %s", + "commands.data.modify.expected_object": "Expected an object: got %s", + "commands.data.modify.expected_value": "Expected a value: got %s", + "commands.data.modify.invalid_index": "Invalid list index: %s", + "commands.data.modify.invalid_substring": "Invalid substring indices: %s to %s", + "commands.data.storage.get": "%s in storage %s after scale factor of %s is %s", + "commands.data.storage.modified": "Modified storage %s", + "commands.data.storage.query": "Storage %s has the following contents: %s", + "commands.datapack.create.already_exists": "Pack with name '%s' already exists", + "commands.datapack.create.invalid_full_name": "Invalid new pack name '%s'", + "commands.datapack.create.invalid_name": "Invalid characters in new pack name '%s'", + "commands.datapack.create.io_failure": "Can't create pack with name '%s'. Check logs", + "commands.datapack.create.metadata_encode_failure": "Failed to encode metadata for pack with name '%s': %s", + "commands.datapack.create.success": "Created new empty pack with name '%s'", + "commands.datapack.disable.failed": "Pack '%s' is not enabled!", + "commands.datapack.disable.failed.feature": "Pack '%s' cannot be disabled, since it is part of an enabled flag!", + "commands.datapack.enable.failed": "Pack '%s' is already enabled!", + "commands.datapack.enable.failed.no_flags": "Pack '%s' cannot be enabled, since required flags are not enabled in this world: %s!", + "commands.datapack.list.available.none": "There are no more data packs available", + "commands.datapack.list.available.success": "There are %s data pack(s) available: %s", + "commands.datapack.list.enabled.none": "There are no data packs enabled", + "commands.datapack.list.enabled.success": "There are %s data pack(s) enabled: %s", + "commands.datapack.modify.disable": "Disabling data pack %s", + "commands.datapack.modify.enable": "Enabling data pack %s", + "commands.datapack.unknown": "Unknown data pack '%s'", + "commands.debug.alreadyRunning": "The tick profiler is already started", + "commands.debug.function.noRecursion": "Can't trace from inside of function", + "commands.debug.function.noReturnRun": "Tracing can't be used with return run", + "commands.debug.function.success.multiple": "Traced %s command(s) from %s functions to output file %s", + "commands.debug.function.success.single": "Traced %s command(s) from function '%s' to output file %s", + "commands.debug.function.traceFailed": "Failed to trace function", + "commands.debug.notRunning": "The tick profiler hasn't started", + "commands.debug.started": "Started tick profiling", + "commands.debug.stopped": "Stopped tick profiling after %s second(s) and %s tick(s) (%s tick(s) per second)", + "commands.defaultgamemode.success": "The default game mode is now %s", + "commands.deop.failed": "Nothing changed. The player is not an operator", + "commands.deop.success": "Made %s no longer a server operator", + "commands.dialog.clear.multiple": "Cleared dialog for %s players", + "commands.dialog.clear.single": "Cleared dialog for %s", + "commands.dialog.show.multiple": "Displayed dialog to %s players", + "commands.dialog.show.single": "Displayed dialog to %s", + "commands.difficulty.failure": "The difficulty did not change; it is already set to %s", + "commands.difficulty.query": "The difficulty is %s", + "commands.difficulty.success": "The difficulty has been set to %s", + "commands.drop.no_held_items": "Entity can't hold any items", + "commands.drop.no_loot_table": "Entity %s has no loot table", + "commands.drop.no_loot_table.block": "Block %s has no loot table", + "commands.drop.success.multiple": "Dropped %s items", + "commands.drop.success.multiple_with_table": "Dropped %s items from loot table %s", + "commands.drop.success.single": "Dropped %s %s", + "commands.drop.success.single_with_table": "Dropped %s %s from loot table %s", + "commands.effect.clear.everything.failed": "Target has no effects to remove", + "commands.effect.clear.everything.success.multiple": "Removed every effect from %s targets", + "commands.effect.clear.everything.success.single": "Removed every effect from %s", + "commands.effect.clear.specific.failed": "Target doesn't have the requested effect", + "commands.effect.clear.specific.success.multiple": "Removed effect %s from %s targets", + "commands.effect.clear.specific.success.single": "Removed effect %s from %s", + "commands.effect.give.failed": "Unable to apply this effect (target is either immune to effects, or has something stronger)", + "commands.effect.give.success.multiple": "Applied effect %s to %s targets", + "commands.effect.give.success.single": "Applied effect %s to %s", + "commands.enchant.failed": "Nothing changed. Targets either have no item in their hands or the enchantment could not be applied", + "commands.enchant.failed.entity": "%s is not a valid entity for this command", + "commands.enchant.failed.incompatible": "%s cannot support that enchantment", + "commands.enchant.failed.itemless": "%s is not holding any item", + "commands.enchant.failed.level": "%s is higher than the maximum level of %s supported by that enchantment", + "commands.enchant.success.multiple": "Applied enchantment %s to %s entities", + "commands.enchant.success.single": "Applied enchantment %s to %s's item", + "commands.execute.blocks.toobig": "Too many blocks in the specified area (maximum %s, but specified %s)", + "commands.execute.conditional.fail": "Test failed", + "commands.execute.conditional.fail_count": "Test failed. Count: %s", + "commands.execute.conditional.pass": "Test passed", + "commands.execute.conditional.pass_count": "Test passed. Count: %s", + "commands.execute.function.instantiationFailure": "Failed to instantiate function %s: %s", + "commands.experience.add.levels.success.multiple": "Gave %s experience levels to %s players", + "commands.experience.add.levels.success.single": "Gave %s experience levels to %s", + "commands.experience.add.points.success.multiple": "Gave %s experience points to %s players", + "commands.experience.add.points.success.single": "Gave %s experience points to %s", + "commands.experience.query.levels": "%s has %s experience levels", + "commands.experience.query.points": "%s has %s experience points", + "commands.experience.set.levels.success.multiple": "Set %s experience levels on %s players", + "commands.experience.set.levels.success.single": "Set %s experience levels on %s", + "commands.experience.set.points.invalid": "Cannot set experience points above the maximum points for the player's current level", + "commands.experience.set.points.success.multiple": "Set %s experience points on %s players", + "commands.experience.set.points.success.single": "Set %s experience points on %s", + "commands.fetchprofile.copy_component": "Copy Component", + "commands.fetchprofile.copy_text": "Copy %s", + "commands.fetchprofile.failed_to_serialize": "Failed to serialize profile: %s", + "commands.fetchprofile.give_item": "Give Item", + "commands.fetchprofile.id.failure": "Failed to resolve profile for ID %s", + "commands.fetchprofile.id.success": "Resolved profile for ID %s: %s", + "commands.fetchprofile.name.failure": "Failed to resolve profile for name %s", + "commands.fetchprofile.name.success": "Resolved profile for name %s: %s", + "commands.fetchprofile.summon_mannequin": "Summon Mannequin", + "commands.fill.failed": "No blocks were filled", + "commands.fill.success": "Successfully filled %s block(s)", + "commands.fill.toobig": "Too many blocks in the specified area (maximum %s, but specified %s)", + "commands.fillbiome.success": "Biomes set between %s, %s, %s and %s, %s, %s", + "commands.fillbiome.success.count": "%s biome entry/entries set between %s, %s, %s and %s, %s, %s", + "commands.fillbiome.toobig": "Too many blocks in the specified volume (maximum %s, but specified %s)", + "commands.forceload.added.failure": "No chunks were marked for force loading", + "commands.forceload.added.multiple": "Marked %s chunks in %s from %s to %s to be force loaded", + "commands.forceload.added.none": "No force loaded chunks were found in %s", + "commands.forceload.added.single": "Marked chunk %s in %s to be force loaded", + "commands.forceload.list.multiple": "%s force loaded chunks were found in %s at: %s", + "commands.forceload.list.single": "A force loaded chunk was found in %s at: %s", + "commands.forceload.query.failure": "Chunk at %s in %s is not marked for force loading", + "commands.forceload.query.success": "Chunk at %s in %s is marked for force loading", + "commands.forceload.removed.all": "Unmarked all force loaded chunks in %s", + "commands.forceload.removed.failure": "No chunks were removed from force loading", + "commands.forceload.removed.multiple": "Unmarked %s chunks in %s from %s to %s for force loading", + "commands.forceload.removed.single": "Unmarked chunk %s in %s for force loading", + "commands.forceload.toobig": "Too many chunks in the specified area (maximum %s, but specified %s)", + "commands.function.error.argument_not_compound": "Invalid argument type: %s. Expected Compound", + "commands.function.error.missing_argument": "Missing argument %2$s to function %1$s", + "commands.function.error.missing_arguments": "Missing arguments to function %s", + "commands.function.error.parse": "While instantiating macro %s: Command '%s' caused error: %s", + "commands.function.instantiationFailure": "Failed to instantiate function %s: %s", + "commands.function.result": "Function %s returned %s", + "commands.function.scheduled.multiple": "Running functions %s", + "commands.function.scheduled.no_functions": "Can't find any functions for name %s", + "commands.function.scheduled.single": "Running function %s", + "commands.function.success.multiple": "Executed %s command(s) from %s functions", + "commands.function.success.multiple.result": "Executed %s functions", + "commands.function.success.single": "Executed %s command(s) from function '%s'", + "commands.function.success.single.result": "Function '%2$s' returned %1$s", + "commands.gamemode.success.other": "Set %s's game mode to %s", + "commands.gamemode.success.self": "Set own game mode to %s", + "commands.gamerule.query": "Gamerule %s is currently set to: %s", + "commands.gamerule.set": "Gamerule %s is now set to: %s", + "commands.give.failed.toomanyitems": "Can't give more than %s of %s", + "commands.give.success.multiple": "Gave %s %s to %s players", + "commands.give.success.single": "Gave %s %s to %s", + "commands.help.failed": "Unknown command or insufficient permissions", + "commands.item.block.set.success": "Replaced a slot at %s, %s, %s with %s", + "commands.item.entity.set.success.multiple": "Replaced a slot on %s entities with %s", + "commands.item.entity.set.success.single": "Replaced a slot on %s with %s", + "commands.item.source.no_such_slot": "The source does not have slot %s", + "commands.item.source.not_a_container": "Source position %s, %s, %s is not a container", + "commands.item.target.no_changed.known_item": "No targets accepted item %s into slot %s", + "commands.item.target.no_changes": "No targets accepted item into slot %s", + "commands.item.target.no_such_slot": "The target does not have slot %s", + "commands.item.target.not_a_container": "Target position %s, %s, %s is not a container", + "commands.jfr.dump.failed": "Failed to dump JFR recording: %s", + "commands.jfr.start.failed": "Failed to start JFR profiling", + "commands.jfr.started": "JFR profiling started", + "commands.jfr.stopped": "JFR profiling stopped and dumped to %s", + "commands.kick.owner.failed": "Cannot kick server owner in LAN game", + "commands.kick.singleplayer.failed": "Cannot kick in an offline singleplayer game", + "commands.kick.success": "Kicked %s: %s", + "commands.kill.success.multiple": "Killed %s entities", + "commands.kill.success.single": "Killed %s", + "commands.list.nameAndId": "%s (%s)", + "commands.list.players": "There are %s of a max of %s players online: %s", + "commands.locate.biome.not_found": "Could not find a biome of type \"%s\" within reasonable distance", + "commands.locate.biome.success": "The nearest %s is at %s (%s blocks away)", + "commands.locate.poi.not_found": "Could not find a point of interest of type \"%s\" within reasonable distance", + "commands.locate.poi.success": "The nearest %s is at %s (%s blocks away)", + "commands.locate.structure.invalid": "There is no structure with type \"%s\"", + "commands.locate.structure.not_found": "Could not find a structure of type \"%s\" nearby", + "commands.locate.structure.success": "The nearest %s is at %s (%s blocks away)", + "commands.message.display.incoming": "%s whispers to you: %s", + "commands.message.display.outgoing": "You whisper to %s: %s", + "commands.op.failed": "Nothing changed. The player already is an operator", + "commands.op.success": "Made %s a server operator", + "commands.pardon.failed": "Nothing changed. The player isn't banned", + "commands.pardon.success": "Unbanned %s", + "commands.pardonip.failed": "Nothing changed. That IP isn't banned", + "commands.pardonip.invalid": "Invalid IP address", + "commands.pardonip.success": "Unbanned IP %s", + "commands.particle.failed": "The particle was not visible for anybody", + "commands.particle.success": "Displaying particle %s", + "commands.perf.alreadyRunning": "The performance profiler is already started", + "commands.perf.notRunning": "The performance profiler hasn't started", + "commands.perf.reportFailed": "Failed to create debug report", + "commands.perf.reportSaved": "Created debug report in %s", + "commands.perf.started": "Started 10 second performance profiling run (use '/perf stop' to stop early)", + "commands.perf.stopped": "Stopped performance profiling after %s second(s) and %s tick(s) (%s tick(s) per second)", + "commands.place.feature.failed": "Failed to place feature", + "commands.place.feature.invalid": "There is no feature with type \"%s\"", + "commands.place.feature.success": "Placed \"%s\" at %s, %s, %s", + "commands.place.jigsaw.failed": "Failed to generate jigsaw", + "commands.place.jigsaw.invalid": "There is no template pool with type \"%s\"", + "commands.place.jigsaw.success": "Generated jigsaw at %s, %s, %s", + "commands.place.structure.failed": "Failed to place structure", + "commands.place.structure.invalid": "There is no structure with type \"%s\"", + "commands.place.structure.success": "Generated structure \"%s\" at %s, %s, %s", + "commands.place.template.failed": "Failed to place template", + "commands.place.template.invalid": "There is no template with id \"%s\"", + "commands.place.template.success": "Loaded template \"%s\" at %s, %s, %s", + "commands.playsound.failed": "The sound is too far away to be heard", + "commands.playsound.success.multiple": "Played sound %s to %s players", + "commands.playsound.success.single": "Played sound %s to %s", + "commands.profile_fetch.copy_component": "Copy Component", + "commands.profile_fetch.failed_to_serialize": "Failed to serialize profile: %s", + "commands.profile_fetch.give_item": "Give Item", + "commands.profile_fetch.id.failure": "Failed to resolved profile for id %s", + "commands.profile_fetch.id.success": "Resolved profile for id %s: %s", + "commands.profile_fetch.name.failure": "Failed to resolve profile for name %s", + "commands.profile_fetch.name.success": "Resolved profile for name %s: %s", + "commands.publish.alreadyPublished": "Multiplayer game is already hosted on port %s", + "commands.publish.failed": "Unable to host local game", + "commands.publish.started": "Local game hosted on port %s", + "commands.publish.success": "Multiplayer game is now hosted on port %s", + "commands.random.error.range_too_large": "The range of the random value must be at most 2147483646", + "commands.random.error.range_too_small": "The range of the random value must be at least 2", + "commands.random.reset.all.success": "Reset %s random sequence(s)", + "commands.random.reset.success": "Reset random sequence %s", + "commands.random.roll": "%s rolled %s (from %s to %s)", + "commands.random.sample.success": "Randomized value: %s", + "commands.recipe.give.failed": "No new recipes were learned", + "commands.recipe.give.success.multiple": "Unlocked %s recipe(s) for %s players", + "commands.recipe.give.success.single": "Unlocked %s recipe(s) for %s", + "commands.recipe.take.failed": "No recipes could be forgotten", + "commands.recipe.take.success.multiple": "Took %s recipe(s) from %s players", + "commands.recipe.take.success.single": "Took %s recipe(s) from %s", + "commands.reload.failure": "Reload failed; keeping old data", + "commands.reload.success": "Reloading!", + "commands.ride.already_riding": "%s is already riding %s", + "commands.ride.dismount.success": "%s stopped riding %s", + "commands.ride.mount.failure.cant_ride_players": "Players can't be ridden", + "commands.ride.mount.failure.generic": "%s couldn't start riding %s", + "commands.ride.mount.failure.loop": "Can't mount entity on itself or any of its passengers", + "commands.ride.mount.failure.wrong_dimension": "Can't mount entity in different dimension", + "commands.ride.mount.success": "%s started riding %s", + "commands.ride.not_riding": "%s is not riding any vehicle", + "commands.rotate.success": "Rotated %s", + "commands.save.alreadyOff": "Saving is already turned off", + "commands.save.alreadyOn": "Saving is already turned on", + "commands.save.disabled": "Automatic saving is now disabled", + "commands.save.enabled": "Automatic saving is now enabled", + "commands.save.failed": "Unable to save the game (is there enough disk space?)", + "commands.save.saving": "Saving the game (this may take a moment!)", + "commands.save.success": "Saved the game", + "commands.schedule.cleared.failure": "No schedules with id %s", + "commands.schedule.cleared.success": "Removed %s schedule(s) with id %s", + "commands.schedule.created.function": "Scheduled function '%s' in %s tick(s) at gametime %s", + "commands.schedule.created.tag": "Scheduled tag '%s' in %s tick(s) at gametime %s", + "commands.schedule.macro": "Can't schedule a macro", + "commands.schedule.same_tick": "Can't schedule for current tick", + "commands.scoreboard.objectives.add.duplicate": "An objective already exists by that name", + "commands.scoreboard.objectives.add.success": "Created new objective %s", + "commands.scoreboard.objectives.display.alreadyEmpty": "Nothing changed. That display slot is already empty", + "commands.scoreboard.objectives.display.alreadySet": "Nothing changed. That display slot is already showing that objective", + "commands.scoreboard.objectives.display.cleared": "Cleared any objectives in display slot %s", + "commands.scoreboard.objectives.display.set": "Set display slot %s to show objective %s", + "commands.scoreboard.objectives.list.empty": "There are no objectives", + "commands.scoreboard.objectives.list.success": "There are %s objective(s): %s", + "commands.scoreboard.objectives.modify.displayAutoUpdate.disable": "Disabled display auto-update for objective %s", + "commands.scoreboard.objectives.modify.displayAutoUpdate.enable": "Enabled display auto-update for objective %s", + "commands.scoreboard.objectives.modify.displayname": "Changed the display name of %s to %s", + "commands.scoreboard.objectives.modify.objectiveFormat.clear": "Cleared default number format of objective %s", + "commands.scoreboard.objectives.modify.objectiveFormat.set": "Changed default number format of objective %s", + "commands.scoreboard.objectives.modify.rendertype": "Changed the render type of objective %s", + "commands.scoreboard.objectives.remove.success": "Removed objective %s", + "commands.scoreboard.players.add.success.multiple": "Added %s to %s for %s entities", + "commands.scoreboard.players.add.success.single": "Added %s to %s for %s (now %s)", + "commands.scoreboard.players.display.name.clear.success.multiple": "Cleared display name for %s entities in %s", + "commands.scoreboard.players.display.name.clear.success.single": "Cleared display name for %s in %s", + "commands.scoreboard.players.display.name.set.success.multiple": "Changed display name to %s for %s entities in %s", + "commands.scoreboard.players.display.name.set.success.single": "Changed display name to %s for %s in %s", + "commands.scoreboard.players.display.numberFormat.clear.success.multiple": "Cleared number format for %s entities in %s", + "commands.scoreboard.players.display.numberFormat.clear.success.single": "Cleared number format for %s in %s", + "commands.scoreboard.players.display.numberFormat.set.success.multiple": "Changed number format for %s entities in %s", + "commands.scoreboard.players.display.numberFormat.set.success.single": "Changed number format for %s in %s", + "commands.scoreboard.players.enable.failed": "Nothing changed. That trigger is already enabled", + "commands.scoreboard.players.enable.invalid": "Enable only works on trigger-objectives", + "commands.scoreboard.players.enable.success.multiple": "Enabled trigger %s for %s entities", + "commands.scoreboard.players.enable.success.single": "Enabled trigger %s for %s", + "commands.scoreboard.players.get.null": "Can't get value of %s for %s; none is set", + "commands.scoreboard.players.get.success": "%s has %s %s", + "commands.scoreboard.players.list.empty": "There are no tracked entities", + "commands.scoreboard.players.list.entity.empty": "%s has no scores to show", + "commands.scoreboard.players.list.entity.entry": "%s: %s", + "commands.scoreboard.players.list.entity.success": "%s has %s score(s):", + "commands.scoreboard.players.list.success": "There are %s tracked entity/entities: %s", + "commands.scoreboard.players.operation.success.multiple": "Updated %s for %s entities", + "commands.scoreboard.players.operation.success.single": "Set %s for %s to %s", + "commands.scoreboard.players.remove.success.multiple": "Removed %s from %s for %s entities", + "commands.scoreboard.players.remove.success.single": "Removed %s from %s for %s (now %s)", + "commands.scoreboard.players.reset.all.multiple": "Reset all scores for %s entities", + "commands.scoreboard.players.reset.all.single": "Reset all scores for %s", + "commands.scoreboard.players.reset.specific.multiple": "Reset %s for %s entities", + "commands.scoreboard.players.reset.specific.single": "Reset %s for %s", + "commands.scoreboard.players.set.success.multiple": "Set %s for %s entities to %s", + "commands.scoreboard.players.set.success.single": "Set %s for %s to %s", + "commands.seed.success": "Seed: %s", + "commands.setblock.failed": "Could not set the block", + "commands.setblock.success": "Changed the block at %s, %s, %s", + "commands.setidletimeout.success": "The player idle timeout is now %s minute(s)", + "commands.setidletimeout.success.disabled": "The player idle timeout is now disabled", + "commands.setworldspawn.failure.not_overworld": "Can only set the world spawn for overworld", + "commands.setworldspawn.success": "Set the world spawn point to %s, %s, %s [%s]", + "commands.setworldspawn.success.new": "Set the world spawn point to %s, %s, %s [%s, %s] in %s", + "commands.spawnpoint.success.multiple": "Set spawn point to %s, %s, %s [%s] in %s for %s players", + "commands.spawnpoint.success.multiple.new": "Set spawn point to %s, %s, %s [%s, %s] in %s for %s players", + "commands.spawnpoint.success.single": "Set spawn point to %s, %s, %s [%s] in %s for %s", + "commands.spawnpoint.success.single.new": "Set spawn point to %s, %s, %s [%s, %s] in %s for %s", + "commands.spectate.cannot_spectate": "%s cannot be spectated", + "commands.spectate.not_spectator": "%s is not in spectator mode", + "commands.spectate.self": "Cannot spectate yourself", + "commands.spectate.success.started": "Now spectating %s", + "commands.spectate.success.stopped": "No longer spectating an entity", + "commands.spreadplayers.failed.entities": "Could not spread %s entity/entities around %s, %s (too many entities for space - try using spread of at most %s)", + "commands.spreadplayers.failed.invalid.height": "Invalid maxHeight %s; expected higher than world minimum %s", + "commands.spreadplayers.failed.teams": "Could not spread %s team(s) around %s, %s (too many entities for space - try using spread of at most %s)", + "commands.spreadplayers.success.entities": "Spread %s entity/entities around %s, %s with an average distance of %s block(s) apart", + "commands.spreadplayers.success.teams": "Spread %s team(s) around %s, %s with an average distance of %s block(s) apart", + "commands.stop.stopping": "Stopping the server", + "commands.stopsound.success.source.any": "Stopped all '%s' sounds", + "commands.stopsound.success.source.sound": "Stopped sound '%s' on source '%s'", + "commands.stopsound.success.sourceless.any": "Stopped all sounds", + "commands.stopsound.success.sourceless.sound": "Stopped sound '%s'", + "commands.summon.failed": "Unable to summon entity", + "commands.summon.failed.peaceful": "Monsters cannot be summoned in Peaceful difficulty", + "commands.summon.failed.uuid": "Unable to summon entity due to duplicate UUIDs", + "commands.summon.invalidPosition": "Invalid position for summon", + "commands.summon.success": "Summoned new %s", + "commands.tag.add.failed": "Target either already has the tag or has too many tags", + "commands.tag.add.success.multiple": "Added tag '%s' to %s entities", + "commands.tag.add.success.single": "Added tag '%s' to %s", + "commands.tag.list.multiple.empty": "There are no tags on the %s entities", + "commands.tag.list.multiple.success": "The %s entities have %s total tags: %s", + "commands.tag.list.single.empty": "%s has no tags", + "commands.tag.list.single.success": "%s has %s tags: %s", + "commands.tag.remove.failed": "Target does not have this tag", + "commands.tag.remove.success.multiple": "Removed tag '%s' from %s entities", + "commands.tag.remove.success.single": "Removed tag '%s' from %s", + "commands.team.add.duplicate": "A team already exists by that name", + "commands.team.add.success": "Created team %s", + "commands.team.empty.success": "Removed %s member(s) from team %s", + "commands.team.empty.unchanged": "Nothing changed. That team is already empty", + "commands.team.join.success.multiple": "Added %s members to team %s", + "commands.team.join.success.single": "Added %s to team %s", + "commands.team.leave.success.multiple": "Removed %s members from any team", + "commands.team.leave.success.single": "Removed %s from any team", + "commands.team.list.members.empty": "There are no members on team %s", + "commands.team.list.members.success": "Team %s has %s member(s): %s", + "commands.team.list.teams.empty": "There are no teams", + "commands.team.list.teams.success": "There are %s team(s): %s", + "commands.team.option.collisionRule.success": "Collision rule for team %s is now \"%s\"", + "commands.team.option.collisionRule.unchanged": "Nothing changed. Collision rule is already that value", + "commands.team.option.color.success": "Updated the color for team %s to %s", + "commands.team.option.color.unchanged": "Nothing changed. That team already has that color", + "commands.team.option.deathMessageVisibility.success": "Death message visibility for team %s is now \"%s\"", + "commands.team.option.deathMessageVisibility.unchanged": "Nothing changed. Death message visibility is already that value", + "commands.team.option.friendlyfire.alreadyDisabled": "Nothing changed. Friendly fire is already disabled for that team", + "commands.team.option.friendlyfire.alreadyEnabled": "Nothing changed. Friendly fire is already enabled for that team", + "commands.team.option.friendlyfire.disabled": "Disabled friendly fire for team %s", + "commands.team.option.friendlyfire.enabled": "Enabled friendly fire for team %s", + "commands.team.option.name.success": "Updated the name of team %s", + "commands.team.option.name.unchanged": "Nothing changed. That team already has that name", + "commands.team.option.nametagVisibility.success": "Nametag visibility for team %s is now \"%s\"", + "commands.team.option.nametagVisibility.unchanged": "Nothing changed. Nametag visibility is already that value", + "commands.team.option.prefix.success": "Team prefix set to %s", + "commands.team.option.seeFriendlyInvisibles.alreadyDisabled": "Nothing changed. That team already can't see invisible teammates", + "commands.team.option.seeFriendlyInvisibles.alreadyEnabled": "Nothing changed. That team can already see invisible teammates", + "commands.team.option.seeFriendlyInvisibles.disabled": "Team %s can no longer see invisible teammates", + "commands.team.option.seeFriendlyInvisibles.enabled": "Team %s can now see invisible teammates", + "commands.team.option.suffix.success": "Team suffix set to %s", + "commands.team.remove.success": "Removed team %s", + "commands.teammsg.failed.noteam": "You must be on a team to message your team", + "commands.teleport.invalidPosition": "Invalid position for teleport", + "commands.teleport.success.entity.multiple": "Teleported %s entities to %s", + "commands.teleport.success.entity.single": "Teleported %s to %s", + "commands.teleport.success.location.multiple": "Teleported %s entities to %s, %s, %s", + "commands.teleport.success.location.single": "Teleported %s to %s, %s, %s", + "commands.test.batch.starting": "Starting environment %s batch %s", + "commands.test.clear.error.no_tests": "Could not find any tests to clear", + "commands.test.clear.success": "Cleared %s structure(s)", + "commands.test.coordinates": "%s, %s, %s", + "commands.test.coordinates.copy": "Click to copy to clipboard", + "commands.test.create.success": "Created test setup for test %s", + "commands.test.error.no_test_containing_pos": "Can't find a test instance that contains %s, %s, %s", + "commands.test.error.no_test_instances": "Found no test instances", + "commands.test.error.non_existant_test": "Test %s could not be found", + "commands.test.error.structure_not_found": "Test structure %s could not be found", + "commands.test.error.test_instance_not_found": "Test instance block entity could not be found", + "commands.test.error.test_instance_not_found.position": "Test instance block entity could not be found for test at %s, %s, %s", + "commands.test.error.too_large": "The structure size must be less than %s blocks along each axis", + "commands.test.locate.done": "Finished locating: found %s structure(s)", + "commands.test.locate.found": "Found structure at: %s (distance: %s)", + "commands.test.locate.started": "Started locating test structures. This might take a while...", + "commands.test.no_tests": "No tests to run", + "commands.test.relative_position": "Position relative to %s: %s", + "commands.test.reset.error.no_tests": "Could not find any tests to reset", + "commands.test.reset.success": "Reset %s structure(s)", + "commands.test.run.no_tests": "No tests found", + "commands.test.run.running": "Running %s test(s)...", + "commands.test.summary": "Game Test complete! %s test(s) were run", + "commands.test.summary.all_required_passed": "All required tests passed :)", + "commands.test.summary.failed": "%s required test(s) failed :(", + "commands.test.summary.optional_failed": "%s optional test(s) failed", + "commands.tick.query.percentiles": "Percentiles: P50: %sms P95: %sms P99: %sms. Sample: %s", + "commands.tick.query.rate.running": "Target tick rate: %s per second.\nAverage time per tick: %sms (Target: %sms)", + "commands.tick.query.rate.sprinting": "Target tick rate: %s per second (ignored, reference only).\nAverage time per tick: %sms", + "commands.tick.rate.success": "Set the target tick rate to %s per second", + "commands.tick.sprint.report": "Sprint completed with %s ticks per second, or %s ms per tick", + "commands.tick.sprint.stop.fail": "No tick sprint in progress", + "commands.tick.sprint.stop.success": "Interrupted the current tick sprint", + "commands.tick.status.frozen": "The game is frozen", + "commands.tick.status.lagging": "The game is running, but can't keep up with the target tick rate", + "commands.tick.status.running": "The game is running normally", + "commands.tick.status.sprinting": "The game is sprinting", + "commands.tick.step.fail": "Unable to step the game - the game must be frozen first", + "commands.tick.step.stop.fail": "No tick step in progress", + "commands.tick.step.stop.success": "Interrupted the current tick step", + "commands.tick.step.success": "Stepping %s tick(s)", + "commands.time.query": "The time is %s", + "commands.time.set": "Set the time to %s", + "commands.title.cleared.multiple": "Cleared titles for %s players", + "commands.title.cleared.single": "Cleared titles for %s", + "commands.title.reset.multiple": "Reset title options for %s players", + "commands.title.reset.single": "Reset title options for %s", + "commands.title.show.actionbar.multiple": "Showing new actionbar title for %s players", + "commands.title.show.actionbar.single": "Showing new actionbar title for %s", + "commands.title.show.subtitle.multiple": "Showing new subtitle for %s players", + "commands.title.show.subtitle.single": "Showing new subtitle for %s", + "commands.title.show.title.multiple": "Showing new title for %s players", + "commands.title.show.title.single": "Showing new title for %s", + "commands.title.times.multiple": "Changed title display times for %s players", + "commands.title.times.single": "Changed title display times for %s", + "commands.transfer.error.no_players": "Must specify at least one player to transfer", + "commands.transfer.success.multiple": "Transferring %s players to %s:%s", + "commands.transfer.success.single": "Transferring %s to %s:%s", + "commands.trigger.add.success": "Triggered %s (added %s to value)", + "commands.trigger.failed.invalid": "You can only trigger objectives that are 'trigger' type", + "commands.trigger.failed.unprimed": "You cannot trigger this objective yet", + "commands.trigger.set.success": "Triggered %s (set value to %s)", + "commands.trigger.simple.success": "Triggered %s", + "commands.version.build_time": "build_time = %s", + "commands.version.data": "data = %s", + "commands.version.header": "Server version info:", + "commands.version.id": "id = %s", + "commands.version.name": "name = %s", + "commands.version.pack.data": "pack_data = %s", + "commands.version.pack.resource": "pack_resource = %s", + "commands.version.protocol": "protocol = %s (%s)", + "commands.version.series": "series = %s", + "commands.version.stable.no": "stable = no", + "commands.version.stable.yes": "stable = yes", + "commands.waypoint.list.empty": "No waypoints in %s", + "commands.waypoint.list.success": "%s waypoint(s) in %s: %s", + "commands.waypoint.modify.color": "Waypoint color is now %s", + "commands.waypoint.modify.color.reset": "Reset waypoint color", + "commands.waypoint.modify.style": "Waypoint style changed", + "commands.weather.set.clear": "Set the weather to clear", + "commands.weather.set.rain": "Set the weather to rain", + "commands.weather.set.thunder": "Set the weather to rain & thunder", + "commands.whitelist.add.failed": "Player is already whitelisted", + "commands.whitelist.add.success": "Added %s to the whitelist", + "commands.whitelist.alreadyOff": "Whitelist is already turned off", + "commands.whitelist.alreadyOn": "Whitelist is already turned on", + "commands.whitelist.disabled": "Whitelist is now turned off", + "commands.whitelist.enabled": "Whitelist is now turned on", + "commands.whitelist.list": "There are %s whitelisted player(s): %s", + "commands.whitelist.none": "There are no whitelisted players", + "commands.whitelist.reloaded": "Reloaded the whitelist", + "commands.whitelist.remove.failed": "Player is not whitelisted", + "commands.whitelist.remove.success": "Removed %s from the whitelist", + "commands.worldborder.center.failed": "Nothing changed. The world border is already centered there", + "commands.worldborder.center.success": "Set the center of the world border to %s, %s", + "commands.worldborder.damage.amount.failed": "Nothing changed. The world border damage is already that amount", + "commands.worldborder.damage.amount.success": "Set the world border damage to %s per block each second", + "commands.worldborder.damage.buffer.failed": "Nothing changed. The world border damage buffer is already that distance", + "commands.worldborder.damage.buffer.success": "Set the world border damage buffer to %s block(s)", + "commands.worldborder.get": "The world border is currently %s block(s) wide", + "commands.worldborder.set.failed.big": "World border cannot be bigger than %s blocks wide", + "commands.worldborder.set.failed.far": "World border cannot be further out than %s blocks", + "commands.worldborder.set.failed.nochange": "Nothing changed. The world border is already that size", + "commands.worldborder.set.failed.small": "World border cannot be smaller than 1 block wide", + "commands.worldborder.set.grow": "Growing the world border to %s blocks wide over %s seconds", + "commands.worldborder.set.immediate": "Set the world border to %s block(s) wide", + "commands.worldborder.set.shrink": "Shrinking the world border to %s block(s) wide over %s second(s)", + "commands.worldborder.warning.distance.failed": "Nothing changed. The world border warning is already that distance", + "commands.worldborder.warning.distance.success": "Set the world border warning distance to %s block(s)", + "commands.worldborder.warning.time.failed": "Nothing changed. The world border warning is already that amount of time", + "commands.worldborder.warning.time.success": "Set the world border warning time to %s second(s)", + "compliance.playtime.greaterThan24Hours": "You've been playing for greater than 24 hours", + "compliance.playtime.hours": "You've been playing for %s hour(s)", + "compliance.playtime.message": "Excessive gaming may interfere with normal daily life", + "component.profile.dynamic": "Dynamic", + "connect.aborted": "Aborted", + "connect.authorizing": "Logging in...", + "connect.connecting": "Connecting to the server...", + "connect.encrypting": "Encrypting...", + "connect.failed": "Failed to connect to the server", + "connect.failed.transfer": "Connection failed while transferring to the server", + "connect.joining": "Joining world...", + "connect.negotiating": "Negotiating...", + "connect.reconfiging": "Reconfiguring...", + "connect.reconfiguring": "Reconfiguring...", + "connect.transferring": "Transferring to new server...", + "container.barrel": "Barrel", + "container.beacon": "Beacon", + "container.beehive.bees": "Bees: %s / %s", + "container.beehive.honey": "Honey: %s / %s", + "container.blast_furnace": "Blast Furnace", + "container.brewing": "Brewing Stand", + "container.cartography_table": "Cartography Table", + "container.chest": "Chest", + "container.chestDouble": "Large Chest", + "container.crafter": "Crafter", + "container.crafting": "Crafting", + "container.creative": "Item Selection", + "container.dispenser": "Dispenser", + "container.dropper": "Dropper", + "container.enchant": "Enchant", + "container.enchant.clue": "%s . . . ?", + "container.enchant.lapis.many": "%s Lapis Lazuli", + "container.enchant.lapis.one": "1 Lapis Lazuli", + "container.enchant.level.many": "%s Enchantment Levels", + "container.enchant.level.one": "1 Enchantment Level", + "container.enchant.level.requirement": "Level Requirement: %s", + "container.enderchest": "Ender Chest", + "container.furnace": "Furnace", + "container.grindstone_title": "Repair & Disenchant", + "container.hopper": "Item Hopper", + "container.inventory": "Inventory", + "container.isLocked": "%s is locked!", + "container.lectern": "Lectern", + "container.loom": "Loom", + "container.repair": "Repair & Name", + "container.repair.cost": "Enchantment Cost: %1$s", + "container.repair.expensive": "Too Expensive!", + "container.shulkerBox": "Shulker Box", + "container.shulkerBox.itemCount": "%s x%s", + "container.shulkerBox.more": "and %s more...", + "container.shulkerBox.unknownContents": "???????", + "container.smoker": "Smoker", + "container.spectatorCantOpen": "Unable to open. Loot not generated yet.", + "container.stonecutter": "Stonecutter", + "container.upgrade": "Upgrade Gear", + "container.upgrade.error_tooltip": "Item can't be upgraded this way", + "container.upgrade.missing_template_tooltip": "Add Smithing Template", + "controls.keybinds": "Key Binds...", + "controls.keybinds.duplicateKeybinds": "This key is also used for:\n%s", + "controls.keybinds.title": "Key Binds", + "controls.reset": "Reset", + "controls.resetAll": "Reset Keys", + "controls.title": "Controls", + "createWorld.customize.buffet.biome": "Please select a biome", + "createWorld.customize.buffet.title": "Single Biome Customization", + "createWorld.customize.flat.height": "Height", + "createWorld.customize.flat.layer": "%s", + "createWorld.customize.flat.layer.bottom": "Bottom - %s", + "createWorld.customize.flat.layer.top": "Top - %s", + "createWorld.customize.flat.removeLayer": "Remove Layer", + "createWorld.customize.flat.tile": "Layer Material", + "createWorld.customize.flat.title": "Superflat Customization", + "createWorld.customize.presets": "Presets", + "createWorld.customize.presets.list": "Alternatively, here are some we made earlier!", + "createWorld.customize.presets.select": "Use Preset", + "createWorld.customize.presets.share": "Want to share your preset with someone? Use the box below!", + "createWorld.customize.presets.title": "Select a Preset", + "createWorld.preparing": "Preparing for world creation...", + "createWorld.tab.game.title": "Game", + "createWorld.tab.more.title": "More", + "createWorld.tab.world.title": "World", + "credits_and_attribution.button.attribution": "Attribution", + "credits_and_attribution.button.credits": "Credits", + "credits_and_attribution.button.licenses": "Licenses", + "credits_and_attribution.screen.title": "Credits and Attribution", + "dataPack.bundle.description": "Enables experimental Bundle item", + "dataPack.bundle.name": "Bundles", + "dataPack.locator_bar.description": "Show the direction of other players in multiplayer", + "dataPack.locator_bar.name": "Locator Bar", + "dataPack.minecart_improvements.description": "Improved movement for Minecarts", + "dataPack.minecart_improvements.name": "Minecart Improvements", + "dataPack.redstone_experiments.description": "Experimental Redstone changes", + "dataPack.redstone_experiments.name": "Redstone Experiments", + "dataPack.title": "Select Data Packs", + "dataPack.trade_rebalance.description": "Updated trades for Villagers", + "dataPack.trade_rebalance.name": "Villager Trade Rebalance", + "dataPack.update_1_20.description": "New features and content for Minecraft 1.20", + "dataPack.update_1_20.name": "Update 1.20", + "dataPack.update_1_21.description": "New features and content for Minecraft 1.21", + "dataPack.update_1_21.name": "Update 1.21", + "dataPack.validation.back": "Go Back", + "dataPack.validation.failed": "Data pack validation failed!", + "dataPack.validation.reset": "Reset to Default", + "dataPack.validation.working": "Validating selected data packs...", + "dataPack.vanilla.description": "The default data for Minecraft", + "dataPack.vanilla.name": "Default", + "dataPack.winter_drop.description": "New features and content for the Winter Drop", + "dataPack.winter_drop.name": "Winter Drop", + "datapackFailure.safeMode": "Safe Mode", + "datapackFailure.safeMode.failed.description": "This world contains invalid or corrupted save data.", + "datapackFailure.safeMode.failed.title": "Failed to load world in Safe Mode.", + "datapackFailure.title": "Errors in currently selected data packs prevented the world from loading.\nYou can either try to load it with only the vanilla data pack (\"safe mode\"), or go back to the title screen and fix it manually.", + "death.attack.anvil": "%1$s was squashed by a falling anvil", + "death.attack.anvil.player": "%1$s was squashed by a falling anvil while fighting %2$s", + "death.attack.arrow": "%1$s was shot by %2$s", + "death.attack.arrow.item": "%1$s was shot by %2$s using %3$s", + "death.attack.badRespawnPoint.link": "Intentional Game Design", + "death.attack.badRespawnPoint.message": "%1$s was killed by %2$s", + "death.attack.cactus": "%1$s was pricked to death", + "death.attack.cactus.player": "%1$s walked into a cactus while trying to escape %2$s", + "death.attack.cramming": "%1$s was squished too much", + "death.attack.cramming.player": "%1$s was squashed by %2$s", + "death.attack.dragonBreath": "%1$s was roasted in dragon's breath", + "death.attack.dragonBreath.player": "%1$s was roasted in dragon's breath by %2$s", + "death.attack.drown": "%1$s drowned", + "death.attack.drown.player": "%1$s drowned while trying to escape %2$s", + "death.attack.dryout": "%1$s died from dehydration", + "death.attack.dryout.player": "%1$s died from dehydration while trying to escape %2$s", + "death.attack.even_more_magic": "%1$s was killed by even more magic", + "death.attack.explosion": "%1$s blew up", + "death.attack.explosion.player": "%1$s was blown up by %2$s", + "death.attack.explosion.player.item": "%1$s was blown up by %2$s using %3$s", + "death.attack.fall": "%1$s hit the ground too hard", + "death.attack.fall.player": "%1$s hit the ground too hard while trying to escape %2$s", + "death.attack.fallingBlock": "%1$s was squashed by a falling block", + "death.attack.fallingBlock.player": "%1$s was squashed by a falling block while fighting %2$s", + "death.attack.fallingStalactite": "%1$s was skewered by a falling stalactite", + "death.attack.fallingStalactite.player": "%1$s was skewered by a falling stalactite while fighting %2$s", + "death.attack.fireball": "%1$s was fireballed by %2$s", + "death.attack.fireball.item": "%1$s was fireballed by %2$s using %3$s", + "death.attack.fireworks": "%1$s went off with a bang", + "death.attack.fireworks.item": "%1$s went off with a bang due to a firework fired from %3$s by %2$s", + "death.attack.fireworks.player": "%1$s went off with a bang while fighting %2$s", + "death.attack.flyIntoWall": "%1$s experienced kinetic energy", + "death.attack.flyIntoWall.player": "%1$s experienced kinetic energy while trying to escape %2$s", + "death.attack.freeze": "%1$s froze to death", + "death.attack.freeze.player": "%1$s was frozen to death by %2$s", + "death.attack.generic": "%1$s died", + "death.attack.generic.player": "%1$s died because of %2$s", + "death.attack.genericKill": "%1$s was killed", + "death.attack.genericKill.player": "%1$s was killed while fighting %2$s", + "death.attack.hotFloor": "%1$s discovered the floor was lava", + "death.attack.hotFloor.player": "%1$s walked into the danger zone due to %2$s", + "death.attack.indirectMagic": "%1$s was killed by %2$s using magic", + "death.attack.indirectMagic.item": "%1$s was killed by %2$s using %3$s", + "death.attack.inFire": "%1$s went up in flames", + "death.attack.inFire.player": "%1$s walked into fire while fighting %2$s", + "death.attack.inWall": "%1$s suffocated in a wall", + "death.attack.inWall.player": "%1$s suffocated in a wall while fighting %2$s", + "death.attack.lava": "%1$s tried to swim in lava", + "death.attack.lava.player": "%1$s tried to swim in lava to escape %2$s", + "death.attack.lightningBolt": "%1$s was struck by lightning", + "death.attack.lightningBolt.player": "%1$s was struck by lightning while fighting %2$s", + "death.attack.mace_smash": "%1$s was smashed by %2$s", + "death.attack.mace_smash.item": "%1$s was smashed by %2$s with %3$s", + "death.attack.magic": "%1$s was killed by magic", + "death.attack.magic.player": "%1$s was killed by magic while trying to escape %2$s", + "death.attack.message_too_long": "Actually, the message was too long to deliver fully. Sorry! Here's a stripped version: %s", + "death.attack.mob": "%1$s was slain by %2$s", + "death.attack.mob.item": "%1$s was slain by %2$s using %3$s", + "death.attack.onFire": "%1$s burned to death", + "death.attack.onFire.item": "%1$s was burned to a crisp while fighting %2$s wielding %3$s", + "death.attack.onFire.player": "%1$s was burned to a crisp while fighting %2$s", + "death.attack.outOfWorld": "%1$s fell out of the world", + "death.attack.outOfWorld.player": "%1$s didn't want to live in the same world as %2$s", + "death.attack.outsideBorder": "%1$s left the confines of this world", + "death.attack.outsideBorder.player": "%1$s left the confines of this world while fighting %2$s", + "death.attack.player": "%1$s was slain by %2$s", + "death.attack.player.item": "%1$s was slain by %2$s using %3$s", + "death.attack.sonic_boom": "%1$s was obliterated by a sonically-charged shriek", + "death.attack.sonic_boom.item": "%1$s was obliterated by a sonically-charged shriek while trying to escape %2$s wielding %3$s", + "death.attack.sonic_boom.player": "%1$s was obliterated by a sonically-charged shriek while trying to escape %2$s", + "death.attack.stalagmite": "%1$s was impaled on a stalagmite", + "death.attack.stalagmite.player": "%1$s was impaled on a stalagmite while fighting %2$s", + "death.attack.starve": "%1$s starved to death", + "death.attack.starve.player": "%1$s starved to death while fighting %2$s", + "death.attack.sting": "%1$s was stung to death", + "death.attack.sting.item": "%1$s was stung to death by %2$s using %3$s", + "death.attack.sting.player": "%1$s was stung to death by %2$s", + "death.attack.sweetBerryBush": "%1$s was poked to death by a sweet berry bush", + "death.attack.sweetBerryBush.player": "%1$s was poked to death by a sweet berry bush while trying to escape %2$s", + "death.attack.thorns": "%1$s was killed while trying to hurt %2$s", + "death.attack.thorns.item": "%1$s was killed by %3$s while trying to hurt %2$s", + "death.attack.thrown": "%1$s was pummeled by %2$s", + "death.attack.thrown.item": "%1$s was pummeled by %2$s using %3$s", + "death.attack.trident": "%1$s was impaled by %2$s", + "death.attack.trident.item": "%1$s was impaled by %2$s with %3$s", + "death.attack.wither": "%1$s withered away", + "death.attack.wither.player": "%1$s withered away while fighting %2$s", + "death.attack.witherSkull": "%1$s was shot by a skull from %2$s", + "death.attack.witherSkull.item": "%1$s was shot by a skull from %2$s using %3$s", + "death.fell.accident.generic": "%1$s fell from a high place", + "death.fell.accident.ladder": "%1$s fell off a ladder", + "death.fell.accident.other_climbable": "%1$s fell while climbing", + "death.fell.accident.scaffolding": "%1$s fell off scaffolding", + "death.fell.accident.twisting_vines": "%1$s fell off some twisting vines", + "death.fell.accident.vines": "%1$s fell off some vines", + "death.fell.accident.weeping_vines": "%1$s fell off some weeping vines", + "death.fell.assist": "%1$s was doomed to fall by %2$s", + "death.fell.assist.item": "%1$s was doomed to fall by %2$s using %3$s", + "death.fell.finish": "%1$s fell too far and was finished by %2$s", + "death.fell.finish.item": "%1$s fell too far and was finished by %2$s using %3$s", + "death.fell.killer": "%1$s was doomed to fall", + "deathScreen.quit.confirm": "Are you sure you want to quit?", + "deathScreen.respawn": "Respawn", + "deathScreen.score": "Score", + "deathScreen.score.value": "Score: %s", + "deathScreen.spectate": "Spectate World", + "deathScreen.title": "You Died!", + "deathScreen.title.hardcore": "Game Over!", + "deathScreen.titleScreen": "Title Screen", + "debug.advanced_tooltips.help": "F3 + H = Advanced tooltips", + "debug.advanced_tooltips.off": "Advanced tooltips: hidden", + "debug.advanced_tooltips.on": "Advanced tooltips: shown", + "debug.chunk_boundaries.help": "F3 + G = Show chunk boundaries", + "debug.chunk_boundaries.off": "Chunk borders: hidden", + "debug.chunk_boundaries.on": "Chunk borders: shown", + "debug.clear_chat.help": "F3 + D = Clear chat", + "debug.copy_location.help": "F3 + C = Copy location as /tp command, or hold for 10 seconds to crash the game", + "debug.copy_location.message": "Copied location to clipboard", + "debug.crash.message": "F3 + C is held down. This will crash the game unless released.", + "debug.crash.warning": "Crashing in %s...", + "debug.creative_spectator.error": "Unable to switch game mode; no permission", + "debug.creative_spectator.help": "F3 + N = Cycle previous game mode <-> spectator", + "debug.dump_dynamic_textures": "Saved dynamic textures to %s", + "debug.dump_dynamic_textures.help": "F3 + S = Dump dynamic textures", + "debug.entry.always": "Always", + "debug.entry.currently.alwaysOn": "%s: Currently always on", + "debug.entry.currently.inF3": "%s: Currently only in F3", + "debug.entry.currently.never": "%s: Currently off", + "debug.entry.f3": "In F3", + "debug.gamemodes.error": "Unable to open game mode switcher; no permission", + "debug.gamemodes.help": "F3 + F4 = Open game mode switcher", + "debug.gamemodes.press_f4": "[ F4 ]", + "debug.gamemodes.select_next": "%s Next", + "debug.help.help": "F3 + Q = Show this list", + "debug.help.message": "Key bindings:", + "debug.inspect.client.block": "Copied client-side block data to clipboard", + "debug.inspect.client.entity": "Copied client-side entity data to clipboard", + "debug.inspect.help": "F3 + I = Copy entity or block data to clipboard", + "debug.inspect.server.block": "Copied server-side block data to clipboard", + "debug.inspect.server.entity": "Copied server-side entity data to clipboard", + "debug.options.category.renderer": "Debug Renderers", + "debug.options.category.text": "Debug Screen Text", + "debug.options.help": "F3 + F6 = Edit debug options", + "debug.options.notAllowed.tooltip": "Not visible when debug info is reduced", + "debug.options.profile.default": "Default profile", + "debug.options.profile.performance": "Performance profile", + "debug.options.search": "Search...", + "debug.options.title": "Debug Options", + "debug.options.warning": "These options are for testing purposes only. They may slow down your computer, crash the game, or eat your pet rock.", + "debug.pause_focus.help": "F3 + P = Pause on lost focus", + "debug.pause_focus.off": "Pause on lost focus: disabled", + "debug.pause_focus.on": "Pause on lost focus: enabled", + "debug.pause.help": "F3 + Esc = Pause without pause menu (if pausing is possible)", + "debug.prefix": "[Debug]:", + "debug.profiling.help": "F3 + L = Start/stop profiling", + "debug.profiling.start": "Profiling started for %s seconds. Use F3 + L to stop early", + "debug.profiling.stop": "Profiling ended. Saved results to %s", + "debug.reload_chunks.help": "F3 + A = Reload chunks", + "debug.reload_chunks.message": "Reloading all chunks", + "debug.reload_resourcepacks.help": "F3 + T = Reload resource packs", + "debug.reload_resourcepacks.message": "Reloaded resource packs", + "debug.show_hitboxes.help": "F3 + B = Show hitboxes", + "debug.show_hitboxes.off": "Hitboxes: hidden", + "debug.show_hitboxes.on": "Hitboxes: shown", + "debug.version.header": "Client version info:", + "debug.version.help": "F3 + V = Client version info", + "demo.day.1": "This demo will last five game days. Do your best!", + "demo.day.2": "Day Two", + "demo.day.3": "Day Three", + "demo.day.4": "Day Four", + "demo.day.5": "This is your last day!", + "demo.day.6": "You have passed your fifth day. Use %s to save a screenshot of your creation.", + "demo.day.warning": "Your time is almost up!", + "demo.demoExpired": "Demo time's up!", + "demo.help.buy": "Purchase Now!", + "demo.help.fullWrapped": "This demo will last 5 in-game days (about 1 hour and 40 minutes of real time). Check the advancements for hints! Have fun!", + "demo.help.inventory": "Use the %1$s key to open your inventory", + "demo.help.jump": "Jump by pressing the %1$s key", + "demo.help.later": "Continue Playing!", + "demo.help.movement": "Use the %1$s, %2$s, %3$s, %4$s keys and the mouse to move around", + "demo.help.movementMouse": "Look around using the mouse", + "demo.help.movementShort": "Move by pressing the %1$s, %2$s, %3$s, %4$s keys", + "demo.help.title": "Minecraft Demo Mode", + "demo.remainingTime": "Remaining time: %s", + "demo.reminder": "The demo time has expired. Buy the game to continue or start a new world!", + "difficulty.lock.question": "Are you sure you want to lock the difficulty of this world? This will set this world to always be %1$s, and you will never be able to change that again.", + "difficulty.lock.title": "Lock World Difficulty", + "disconnect.endOfStream": "End of stream", + "disconnect.exceeded_packet_rate": "Kicked for exceeding packet rate limit", + "disconnect.genericReason": "%s", + "disconnect.ignoring_status_request": "Ignoring status request", + "disconnect.loginFailedInfo": "Failed to log in: %s", + "disconnect.loginFailedInfo.insufficientPrivileges": "Multiplayer is disabled. Please check your Microsoft account settings.", + "disconnect.loginFailedInfo.invalidSession": "Invalid session (Try restarting your game and the launcher)", + "disconnect.loginFailedInfo.serversUnavailable": "The authentication servers are currently not reachable. Please try again.", + "disconnect.loginFailedInfo.userBanned": "You are banned from playing online", + "disconnect.lost": "Connection Lost", + "disconnect.packetError": "Network Protocol Error", + "disconnect.spam": "Kicked for spamming", + "disconnect.timeout": "Timed out", + "disconnect.transfer": "Transferred to another server", + "disconnect.unknownHost": "Unknown host", + "download.pack.failed": "%s out of %s pack(s) failed to download", + "download.pack.progress.bytes": "Progress: %s (total size unknown)", + "download.pack.progress.percent": "Progress: %s%%", + "download.pack.title": "Downloading resource pack %s/%s", + "editGamerule.default": "Default: %s", + "editGamerule.title": "Edit Game Rules", + "effect.duration.infinite": "∞", + "effect.minecraft.absorption": "Absorption", + "effect.minecraft.bad_omen": "Bad Omen", + "effect.minecraft.blindness": "Blindness", + "effect.minecraft.conduit_power": "Conduit Power", + "effect.minecraft.darkness": "Darkness", + "effect.minecraft.dolphins_grace": "Dolphin's Grace", + "effect.minecraft.fire_resistance": "Fire Resistance", + "effect.minecraft.glowing": "Glowing", + "effect.minecraft.haste": "Haste", + "effect.minecraft.health_boost": "Health Boost", + "effect.minecraft.hero_of_the_village": "Hero of the Village", + "effect.minecraft.hunger": "Hunger", + "effect.minecraft.infested": "Infested", + "effect.minecraft.instant_damage": "Instant Damage", + "effect.minecraft.instant_health": "Instant Health", + "effect.minecraft.invisibility": "Invisibility", + "effect.minecraft.jump_boost": "Jump Boost", + "effect.minecraft.levitation": "Levitation", + "effect.minecraft.luck": "Luck", + "effect.minecraft.mining_fatigue": "Mining Fatigue", + "effect.minecraft.nausea": "Nausea", + "effect.minecraft.night_vision": "Night Vision", + "effect.minecraft.oozing": "Oozing", + "effect.minecraft.poison": "Poison", + "effect.minecraft.raid_omen": "Raid Omen", + "effect.minecraft.regeneration": "Regeneration", + "effect.minecraft.resistance": "Resistance", + "effect.minecraft.saturation": "Saturation", + "effect.minecraft.slow_falling": "Slow Falling", + "effect.minecraft.slowness": "Slowness", + "effect.minecraft.speed": "Speed", + "effect.minecraft.strength": "Strength", + "effect.minecraft.trial_omen": "Trial Omen", + "effect.minecraft.unluck": "Bad Luck", + "effect.minecraft.water_breathing": "Water Breathing", + "effect.minecraft.weakness": "Weakness", + "effect.minecraft.weaving": "Weaving", + "effect.minecraft.wind_charged": "Wind Charged", + "effect.minecraft.wither": "Wither", + "effect.none": "No Effects", + "enchantment.level.1": "I", + "enchantment.level.2": "II", + "enchantment.level.3": "III", + "enchantment.level.4": "IV", + "enchantment.level.5": "V", + "enchantment.level.6": "VI", + "enchantment.level.7": "VII", + "enchantment.level.8": "VIII", + "enchantment.level.9": "IX", + "enchantment.level.10": "X", + "enchantment.minecraft.aqua_affinity": "Aqua Affinity", + "enchantment.minecraft.bane_of_arthropods": "Bane of Arthropods", + "enchantment.minecraft.binding_curse": "Curse of Binding", + "enchantment.minecraft.blast_protection": "Blast Protection", + "enchantment.minecraft.breach": "Breach", + "enchantment.minecraft.channeling": "Channeling", + "enchantment.minecraft.density": "Density", + "enchantment.minecraft.depth_strider": "Depth Strider", + "enchantment.minecraft.efficiency": "Efficiency", + "enchantment.minecraft.feather_falling": "Feather Falling", + "enchantment.minecraft.fire_aspect": "Fire Aspect", + "enchantment.minecraft.fire_protection": "Fire Protection", + "enchantment.minecraft.flame": "Flame", + "enchantment.minecraft.fortune": "Fortune", + "enchantment.minecraft.frost_walker": "Frost Walker", + "enchantment.minecraft.impaling": "Impaling", + "enchantment.minecraft.infinity": "Infinity", + "enchantment.minecraft.knockback": "Knockback", + "enchantment.minecraft.looting": "Looting", + "enchantment.minecraft.loyalty": "Loyalty", + "enchantment.minecraft.luck_of_the_sea": "Luck of the Sea", + "enchantment.minecraft.lure": "Lure", + "enchantment.minecraft.mending": "Mending", + "enchantment.minecraft.multishot": "Multishot", + "enchantment.minecraft.piercing": "Piercing", + "enchantment.minecraft.power": "Power", + "enchantment.minecraft.projectile_protection": "Projectile Protection", + "enchantment.minecraft.protection": "Protection", + "enchantment.minecraft.punch": "Punch", + "enchantment.minecraft.quick_charge": "Quick Charge", + "enchantment.minecraft.respiration": "Respiration", + "enchantment.minecraft.riptide": "Riptide", + "enchantment.minecraft.sharpness": "Sharpness", + "enchantment.minecraft.silk_touch": "Silk Touch", + "enchantment.minecraft.smite": "Smite", + "enchantment.minecraft.soul_speed": "Soul Speed", + "enchantment.minecraft.sweeping": "Sweeping Edge", + "enchantment.minecraft.sweeping_edge": "Sweeping Edge", + "enchantment.minecraft.swift_sneak": "Swift Sneak", + "enchantment.minecraft.thorns": "Thorns", + "enchantment.minecraft.unbreaking": "Unbreaking", + "enchantment.minecraft.vanishing_curse": "Curse of Vanishing", + "enchantment.minecraft.wind_burst": "Wind Burst", + "entity.minecraft.acacia_boat": "Acacia Boat", + "entity.minecraft.acacia_chest_boat": "Acacia Boat with Chest", + "entity.minecraft.allay": "Allay", + "entity.minecraft.area_effect_cloud": "Area Effect Cloud", + "entity.minecraft.armadillo": "Armadillo", + "entity.minecraft.armor_stand": "Armor Stand", + "entity.minecraft.arrow": "Arrow", + "entity.minecraft.axolotl": "Axolotl", + "entity.minecraft.bamboo_chest_raft": "Bamboo Raft with Chest", + "entity.minecraft.bamboo_raft": "Bamboo Raft", + "entity.minecraft.bat": "Bat", + "entity.minecraft.bee": "Bee", + "entity.minecraft.birch_boat": "Birch Boat", + "entity.minecraft.birch_chest_boat": "Birch Boat with Chest", + "entity.minecraft.blaze": "Blaze", + "entity.minecraft.block_display": "Block Display", + "entity.minecraft.boat": "Boat", + "entity.minecraft.bogged": "Bogged", + "entity.minecraft.breeze": "Breeze", + "entity.minecraft.breeze_wind_charge": "Wind Charge", + "entity.minecraft.camel": "Camel", + "entity.minecraft.cat": "Cat", + "entity.minecraft.cave_spider": "Cave Spider", + "entity.minecraft.cherry_boat": "Cherry Boat", + "entity.minecraft.cherry_chest_boat": "Cherry Boat with Chest", + "entity.minecraft.chest_boat": "Boat with Chest", + "entity.minecraft.chest_minecart": "Minecart with Chest", + "entity.minecraft.chicken": "Chicken", + "entity.minecraft.cod": "Cod", + "entity.minecraft.command_block_minecart": "Minecart with Command Block", + "entity.minecraft.copper_golem": "Copper Golem", + "entity.minecraft.cow": "Cow", + "entity.minecraft.creaking": "Creaking", + "entity.minecraft.creaking_transient": "Creaking", + "entity.minecraft.creeper": "Creeper", + "entity.minecraft.dark_oak_boat": "Dark Oak Boat", + "entity.minecraft.dark_oak_chest_boat": "Dark Oak Boat with Chest", + "entity.minecraft.dolphin": "Dolphin", + "entity.minecraft.donkey": "Donkey", + "entity.minecraft.dragon_fireball": "Dragon Fireball", + "entity.minecraft.drowned": "Drowned", + "entity.minecraft.egg": "Thrown Egg", + "entity.minecraft.elder_guardian": "Elder Guardian", + "entity.minecraft.end_crystal": "End Crystal", + "entity.minecraft.ender_dragon": "Ender Dragon", + "entity.minecraft.ender_pearl": "Thrown Ender Pearl", + "entity.minecraft.enderman": "Enderman", + "entity.minecraft.endermite": "Endermite", + "entity.minecraft.evoker": "Evoker", + "entity.minecraft.evoker_fangs": "Evoker Fangs", + "entity.minecraft.experience_bottle": "Thrown Bottle o' Enchanting", + "entity.minecraft.experience_orb": "Experience Orb", + "entity.minecraft.eye_of_ender": "Eye of Ender", + "entity.minecraft.falling_block": "Falling Block", + "entity.minecraft.falling_block_type": "Falling %s", + "entity.minecraft.fireball": "Fireball", + "entity.minecraft.firework_rocket": "Firework Rocket", + "entity.minecraft.fishing_bobber": "Fishing Bobber", + "entity.minecraft.fox": "Fox", + "entity.minecraft.frog": "Frog", + "entity.minecraft.furnace_minecart": "Minecart with Furnace", + "entity.minecraft.ghast": "Ghast", + "entity.minecraft.giant": "Giant", + "entity.minecraft.glow_item_frame": "Glow Item Frame", + "entity.minecraft.glow_squid": "Glow Squid", + "entity.minecraft.goat": "Goat", + "entity.minecraft.guardian": "Guardian", + "entity.minecraft.happy_ghast": "Happy Ghast", + "entity.minecraft.hoglin": "Hoglin", + "entity.minecraft.hopper_minecart": "Minecart with Hopper", + "entity.minecraft.horse": "Horse", + "entity.minecraft.husk": "Husk", + "entity.minecraft.illusioner": "Illusioner", + "entity.minecraft.interaction": "Interaction", + "entity.minecraft.iron_golem": "Iron Golem", + "entity.minecraft.item": "Item", + "entity.minecraft.item_display": "Item Display", + "entity.minecraft.item_frame": "Item Frame", + "entity.minecraft.jungle_boat": "Jungle Boat", + "entity.minecraft.jungle_chest_boat": "Jungle Boat with Chest", + "entity.minecraft.killer_bunny": "The Killer Bunny", + "entity.minecraft.leash_knot": "Leash Knot", + "entity.minecraft.lightning_bolt": "Lightning Bolt", + "entity.minecraft.lingering_potion": "Lingering Potion", + "entity.minecraft.llama": "Llama", + "entity.minecraft.llama_spit": "Llama Spit", + "entity.minecraft.magma_cube": "Magma Cube", + "entity.minecraft.mangrove_boat": "Mangrove Boat", + "entity.minecraft.mangrove_chest_boat": "Mangrove Boat with Chest", + "entity.minecraft.mannequin": "Mannequin", + "entity.minecraft.mannequin.label": "NPC", + "entity.minecraft.marker": "Marker", + "entity.minecraft.minecart": "Minecart", + "entity.minecraft.mooshroom": "Mooshroom", + "entity.minecraft.mule": "Mule", + "entity.minecraft.oak_boat": "Oak Boat", + "entity.minecraft.oak_chest_boat": "Oak Boat with Chest", + "entity.minecraft.ocelot": "Ocelot", + "entity.minecraft.ominous_item_spawner": "Ominous Item Spawner", + "entity.minecraft.painting": "Painting", + "entity.minecraft.pale_oak_boat": "Pale Oak Boat", + "entity.minecraft.pale_oak_chest_boat": "Pale Oak Boat with Chest", + "entity.minecraft.panda": "Panda", + "entity.minecraft.parrot": "Parrot", + "entity.minecraft.phantom": "Phantom", + "entity.minecraft.pig": "Pig", + "entity.minecraft.piglin": "Piglin", + "entity.minecraft.piglin_brute": "Piglin Brute", + "entity.minecraft.pillager": "Pillager", + "entity.minecraft.player": "Player", + "entity.minecraft.polar_bear": "Polar Bear", + "entity.minecraft.potion": "Potion", + "entity.minecraft.pufferfish": "Pufferfish", + "entity.minecraft.rabbit": "Rabbit", + "entity.minecraft.ravager": "Ravager", + "entity.minecraft.salmon": "Salmon", + "entity.minecraft.sheep": "Sheep", + "entity.minecraft.shulker": "Shulker", + "entity.minecraft.shulker_bullet": "Shulker Bullet", + "entity.minecraft.silverfish": "Silverfish", + "entity.minecraft.skeleton": "Skeleton", + "entity.minecraft.skeleton_horse": "Skeleton Horse", + "entity.minecraft.slime": "Slime", + "entity.minecraft.small_fireball": "Small Fireball", + "entity.minecraft.sniffer": "Sniffer", + "entity.minecraft.snow_golem": "Snow Golem", + "entity.minecraft.snowball": "Snowball", + "entity.minecraft.spawner_minecart": "Minecart with Monster Spawner", + "entity.minecraft.spectral_arrow": "Spectral Arrow", + "entity.minecraft.spider": "Spider", + "entity.minecraft.splash_potion": "Splash Potion", + "entity.minecraft.spruce_boat": "Spruce Boat", + "entity.minecraft.spruce_chest_boat": "Spruce Boat with Chest", + "entity.minecraft.squid": "Squid", + "entity.minecraft.stray": "Stray", + "entity.minecraft.strider": "Strider", + "entity.minecraft.tadpole": "Tadpole", + "entity.minecraft.text_display": "Text Display", + "entity.minecraft.tnt": "Primed TNT", + "entity.minecraft.tnt_minecart": "Minecart with TNT", + "entity.minecraft.trader_llama": "Trader Llama", + "entity.minecraft.trident": "Trident", + "entity.minecraft.tropical_fish": "Tropical Fish", + "entity.minecraft.tropical_fish.predefined.0": "Anemone", + "entity.minecraft.tropical_fish.predefined.1": "Black Tang", + "entity.minecraft.tropical_fish.predefined.2": "Blue Tang", + "entity.minecraft.tropical_fish.predefined.3": "Butterflyfish", + "entity.minecraft.tropical_fish.predefined.4": "Cichlid", + "entity.minecraft.tropical_fish.predefined.5": "Clownfish", + "entity.minecraft.tropical_fish.predefined.6": "Cotton Candy Betta", + "entity.minecraft.tropical_fish.predefined.7": "Dottyback", + "entity.minecraft.tropical_fish.predefined.8": "Emperor Red Snapper", + "entity.minecraft.tropical_fish.predefined.9": "Goatfish", + "entity.minecraft.tropical_fish.predefined.10": "Moorish Idol", + "entity.minecraft.tropical_fish.predefined.11": "Ornate Butterflyfish", + "entity.minecraft.tropical_fish.predefined.12": "Parrotfish", + "entity.minecraft.tropical_fish.predefined.13": "Queen Angelfish", + "entity.minecraft.tropical_fish.predefined.14": "Red Cichlid", + "entity.minecraft.tropical_fish.predefined.15": "Red Lipped Blenny", + "entity.minecraft.tropical_fish.predefined.16": "Red Snapper", + "entity.minecraft.tropical_fish.predefined.17": "Threadfin", + "entity.minecraft.tropical_fish.predefined.18": "Tomato Clownfish", + "entity.minecraft.tropical_fish.predefined.19": "Triggerfish", + "entity.minecraft.tropical_fish.predefined.20": "Yellowtail Parrotfish", + "entity.minecraft.tropical_fish.predefined.21": "Yellow Tang", + "entity.minecraft.tropical_fish.type.betty": "Betty", + "entity.minecraft.tropical_fish.type.blockfish": "Blockfish", + "entity.minecraft.tropical_fish.type.brinely": "Brinely", + "entity.minecraft.tropical_fish.type.clayfish": "Clayfish", + "entity.minecraft.tropical_fish.type.dasher": "Dasher", + "entity.minecraft.tropical_fish.type.flopper": "Flopper", + "entity.minecraft.tropical_fish.type.glitter": "Glitter", + "entity.minecraft.tropical_fish.type.kob": "Kob", + "entity.minecraft.tropical_fish.type.snooper": "Snooper", + "entity.minecraft.tropical_fish.type.spotty": "Spotty", + "entity.minecraft.tropical_fish.type.stripey": "Stripey", + "entity.minecraft.tropical_fish.type.sunstreak": "Sunstreak", + "entity.minecraft.turtle": "Turtle", + "entity.minecraft.vex": "Vex", + "entity.minecraft.villager": "Villager", + "entity.minecraft.villager.armorer": "Armorer", + "entity.minecraft.villager.butcher": "Butcher", + "entity.minecraft.villager.cartographer": "Cartographer", + "entity.minecraft.villager.cleric": "Cleric", + "entity.minecraft.villager.farmer": "Farmer", + "entity.minecraft.villager.fisherman": "Fisherman", + "entity.minecraft.villager.fletcher": "Fletcher", + "entity.minecraft.villager.leatherworker": "Leatherworker", + "entity.minecraft.villager.librarian": "Librarian", + "entity.minecraft.villager.mason": "Mason", + "entity.minecraft.villager.nitwit": "Nitwit", + "entity.minecraft.villager.none": "Villager", + "entity.minecraft.villager.shepherd": "Shepherd", + "entity.minecraft.villager.toolsmith": "Toolsmith", + "entity.minecraft.villager.weaponsmith": "Weaponsmith", + "entity.minecraft.vindicator": "Vindicator", + "entity.minecraft.wandering_trader": "Wandering Trader", + "entity.minecraft.warden": "Warden", + "entity.minecraft.wind_charge": "Wind Charge", + "entity.minecraft.witch": "Witch", + "entity.minecraft.wither": "Wither", + "entity.minecraft.wither_skeleton": "Wither Skeleton", + "entity.minecraft.wither_skull": "Wither Skull", + "entity.minecraft.wolf": "Wolf", + "entity.minecraft.zoglin": "Zoglin", + "entity.minecraft.zombie": "Zombie", + "entity.minecraft.zombie_horse": "Zombie Horse", + "entity.minecraft.zombie_villager": "Zombie Villager", + "entity.minecraft.zombified_piglin": "Zombified Piglin", + "entity.not_summonable": "Can't summon entity of type %s", + "event.minecraft.raid": "Raid", + "event.minecraft.raid.defeat": "Defeat", + "event.minecraft.raid.defeat.full": "Raid - Defeat", + "event.minecraft.raid.raiders_remaining": "Raiders Remaining: %s", + "event.minecraft.raid.victory": "Victory", + "event.minecraft.raid.victory.full": "Raid - Victory", + "filled_map.buried_treasure": "Buried Treasure Map", + "filled_map.explorer_jungle": "Jungle Explorer Map", + "filled_map.explorer_swamp": "Swamp Explorer Map", + "filled_map.id": "Id #%s", + "filled_map.level": "(Level %s/%s)", + "filled_map.locked": "Locked", + "filled_map.mansion": "Woodland Explorer Map", + "filled_map.monument": "Ocean Explorer Map", + "filled_map.scale": "Scaling at 1:%s", + "filled_map.trial_chambers": "Trial Explorer Map", + "filled_map.unknown": "Unknown Map", + "filled_map.village_desert": "Desert Village Map", + "filled_map.village_plains": "Plains Village Map", + "filled_map.village_savanna": "Savanna Village Map", + "filled_map.village_snowy": "Snowy Village Map", + "filled_map.village_taiga": "Taiga Village Map", + "flat_world_preset.minecraft.bottomless_pit": "Bottomless Pit", + "flat_world_preset.minecraft.classic_flat": "Classic Flat", + "flat_world_preset.minecraft.desert": "Desert", + "flat_world_preset.minecraft.overworld": "Overworld", + "flat_world_preset.minecraft.redstone_ready": "Redstone Ready", + "flat_world_preset.minecraft.snowy_kingdom": "Snowy Kingdom", + "flat_world_preset.minecraft.the_void": "The Void", + "flat_world_preset.minecraft.tunnelers_dream": "Tunnelers' Dream", + "flat_world_preset.minecraft.water_world": "Water World", + "flat_world_preset.unknown": "???", + "gameMode.adventure": "Adventure Mode", + "gameMode.changed": "Your game mode has been updated to %s", + "gameMode.creative": "Creative Mode", + "gameMode.hardcore": "Hardcore Mode", + "gameMode.spectator": "Spectator Mode", + "gameMode.survival": "Survival Mode", + "gamerule.allowEnteringNetherUsingPortals": "Allow Nether", + "gamerule.allowEnteringNetherUsingPortals.description": "Controls whether players are allowed to enter the Nether.", + "gamerule.allowFireTicksAwayFromPlayer": "Tick fire away from players", + "gamerule.allowFireTicksAwayFromPlayer.description": "Controls whether fire and lava should be able to tick further than 8 chunks away from any player.", + "gamerule.announceAdvancements": "Announce advancements", + "gamerule.blockExplosionDropDecay": "In block interaction explosions, some blocks won't drop their loot", + "gamerule.blockExplosionDropDecay.description": "Some of the drops from blocks destroyed by explosions caused by block interactions are lost in the explosion.", + "gamerule.category.chat": "Chat", + "gamerule.category.drops": "Drops", + "gamerule.category.misc": "Miscellaneous", + "gamerule.category.mobs": "Mobs", + "gamerule.category.player": "Player", + "gamerule.category.spawning": "Spawning", + "gamerule.category.updates": "World Updates", + "gamerule.commandBlockOutput": "Broadcast command block output", + "gamerule.commandBlocksEnabled": "Enable Command Blocks", + "gamerule.commandModificationBlockLimit": "Command modification block limit", + "gamerule.commandModificationBlockLimit.description": "The number of blocks that can be changed at once by one command, such as fill or clone.", + "gamerule.disableElytraMovementCheck": "Disable elytra movement check", + "gamerule.disablePlayerMovementCheck": "Disable player movement check", + "gamerule.disableRaids": "Disable raids", + "gamerule.doDaylightCycle": "Advance time of day", + "gamerule.doEntityDrops": "Drop entity equipment", + "gamerule.doEntityDrops.description": "Controls drops from minecarts (including inventories), item frames, boats, etc.", + "gamerule.doFireTick": "Update fire", + "gamerule.doImmediateRespawn": "Respawn immediately", + "gamerule.doInsomnia": "Spawn phantoms", + "gamerule.doLimitedCrafting": "Require recipe for crafting", + "gamerule.doLimitedCrafting.description": "If enabled, players will be able to craft only unlocked recipes.", + "gamerule.doMobLoot": "Drop mob loot", + "gamerule.doMobLoot.description": "Controls resource drops from mobs, including experience orbs.", + "gamerule.doMobSpawning": "Spawn mobs", + "gamerule.doMobSpawning.description": "Some entities might have separate rules.", + "gamerule.doPatrolSpawning": "Spawn pillager patrols", + "gamerule.doTileDrops": "Drop blocks", + "gamerule.doTileDrops.description": "Controls resource drops from blocks, including experience orbs.", + "gamerule.doTraderSpawning": "Spawn Wandering Traders", + "gamerule.doVinesSpread": "Vines spread", + "gamerule.doVinesSpread.description": "Controls whether the Vines block spreads randomly to adjacent blocks. Does not affect other types of vine blocks such as Weeping Vines, Twisting Vines, etc.", + "gamerule.doWardenSpawning": "Spawn Wardens", + "gamerule.doWeatherCycle": "Update weather", + "gamerule.drowningDamage": "Deal drowning damage", + "gamerule.enableCommandBlocks": "Enable Command Blocks", + "gamerule.enderPearlsVanishOnDeath": "Thrown Ender Pearls vanish on death", + "gamerule.enderPearlsVanishOnDeath.description": "Whether Ender Pearls thrown by a player vanish when that player dies.", + "gamerule.entitiesWithPassengersCanUsePortals": "Entities with passengers can use portals", + "gamerule.entitiesWithPassengersCanUsePortals.description": "Allow entities with passengers to teleport through Nether Portals, End Portals, and End Gateways.", + "gamerule.fallDamage": "Deal fall damage", + "gamerule.fireDamage": "Deal fire damage", + "gamerule.forgiveDeadPlayers": "Forgive dead players", + "gamerule.forgiveDeadPlayers.description": "Angered neutral mobs stop being angry when the targeted player dies nearby.", + "gamerule.freezeDamage": "Deal freeze damage", + "gamerule.globalSoundEvents": "Global sound events", + "gamerule.globalSoundEvents.description": "When certain game events happen, like a boss spawning, the sound is heard everywhere.", + "gamerule.keepInventory": "Keep inventory after death", + "gamerule.lavaSourceConversion": "Lava converts to source", + "gamerule.lavaSourceConversion.description": "When flowing lava is surrounded on two sides by lava sources it converts into a source.", + "gamerule.locatorBar": "Enable player Locator Bar", + "gamerule.locatorBar.description": "When enabled, a bar is shown on the screen to indicate the direction of players.", + "gamerule.logAdminCommands": "Broadcast admin commands", + "gamerule.maxCommandChainLength": "Command chain size limit", + "gamerule.maxCommandChainLength.description": "Applies to command block chains and functions.", + "gamerule.maxCommandForkCount": "Command context limit", + "gamerule.maxCommandForkCount.description": "Maximum number of contexts that can be used by commands like 'execute as'.", + "gamerule.maxEntityCramming": "Entity cramming threshold", + "gamerule.minecartMaxSpeed": "Minecart max speed", + "gamerule.minecartMaxSpeed.description": "Maximum default speed of a moving Minecart on land.", + "gamerule.mobExplosionDropDecay": "In mob explosions, some blocks won't drop their loot", + "gamerule.mobExplosionDropDecay.description": "Some of the drops from blocks destroyed by explosions caused by mobs are lost in the explosion.", + "gamerule.mobGriefing": "Allow destructive mob actions", + "gamerule.naturalRegeneration": "Regenerate health", + "gamerule.playersNetherPortalCreativeDelay": "Player's Nether portal delay in creative mode", + "gamerule.playersNetherPortalCreativeDelay.description": "Time (in ticks) that a creative mode player needs to stand in a Nether portal before changing dimensions.", + "gamerule.playersNetherPortalDefaultDelay": "Player's Nether portal delay in non-creative mode", + "gamerule.playersNetherPortalDefaultDelay.description": "Time (in ticks) that a non-creative mode player needs to stand in a Nether portal before changing dimensions.", + "gamerule.playersSleepingPercentage": "Sleep percentage", + "gamerule.playersSleepingPercentage.description": "The percentage of players who must be sleeping to skip the night.", + "gamerule.projectilesCanBreakBlocks": "Projectiles can break blocks", + "gamerule.projectilesCanBreakBlocks.description": "Controls whether impact projectiles will destroy blocks that are destructible by them.", + "gamerule.pvp": "Enable pvp", + "gamerule.pvp.description": "Controls whether players are allowed to damage other players.", + "gamerule.randomTickSpeed": "Random tick speed rate", + "gamerule.reducedDebugInfo": "Reduce debug info", + "gamerule.reducedDebugInfo.description": "Limits contents of debug screen.", + "gamerule.sendCommandFeedback": "Send command feedback", + "gamerule.showDeathMessages": "Show death messages", + "gamerule.snowAccumulationHeight": "Snow accumulation height", + "gamerule.snowAccumulationHeight.description": "When it snows, layers of snow form on the ground up to at most this number of layers.", + "gamerule.spawnChunkRadius": "Spawn chunk radius", + "gamerule.spawnChunkRadius.description": "The amount of chunks that stay loaded around the overworld spawn position.", + "gamerule.spawnerBlocksEnabled": "Enable Spawner Blocks", + "gamerule.spawnMonsters": "Spawn Monsters", + "gamerule.spawnMonsters.description": "Controls whether monsters naturally spawn.", + "gamerule.spawnRadius": "Respawn location radius", + "gamerule.spawnRadius.description": "Controls the size of the area around the spawn point that players can spawn in.", + "gamerule.spectatorsGenerateChunks": "Allow spectators to generate terrain", + "gamerule.tntExplodes": "Allow TNT to be activated and to explode", + "gamerule.tntExplosionDropDecay": "In TNT explosions, some blocks won't drop their loot", + "gamerule.tntExplosionDropDecay.description": "Some of the drops from blocks destroyed by explosions caused by TNT are lost in the explosion.", + "gamerule.universalAnger": "Universal anger", + "gamerule.universalAnger.description": "Angered neutral mobs attack any nearby player, not just the player that angered them. Works best if forgiveDeadPlayers is disabled.", + "gamerule.waterSourceConversion": "Water converts to source", + "gamerule.waterSourceConversion.description": "When flowing water is surrounded on two sides by water sources it converts into a source.", + "generator.custom": "Custom", + "generator.customized": "Old Customized", + "generator.minecraft.amplified": "AMPLIFIED", + "generator.minecraft.amplified.info": "Notice: Just for fun! Requires a beefy computer.", + "generator.minecraft.debug_all_block_states": "Debug Mode", + "generator.minecraft.flat": "Superflat", + "generator.minecraft.large_biomes": "Large Biomes", + "generator.minecraft.normal": "Default", + "generator.minecraft.single_biome_surface": "Single Biome", + "generator.single_biome_caves": "Caves", + "generator.single_biome_floating_islands": "Floating Islands", + "gui.abuseReport.attestation": "By submitting this report, you confirm that the information you have provided is accurate and complete to the best of your knowledge.", + "gui.abuseReport.comments": "Comments", + "gui.abuseReport.describe": "Sharing details will help us make a well-informed decision.", + "gui.abuseReport.discard.content": "If you leave, you'll lose this report and your comments.\nAre you sure you want to leave?", + "gui.abuseReport.discard.discard": "Leave and Discard Report", + "gui.abuseReport.discard.draft": "Save as Draft", + "gui.abuseReport.discard.return": "Continue Editing", + "gui.abuseReport.discard.title": "Discard report and comments?", + "gui.abuseReport.draft.content": "Would you like to continue editing the existing report or discard it and create a new one?", + "gui.abuseReport.draft.discard": "Discard", + "gui.abuseReport.draft.edit": "Continue Editing", + "gui.abuseReport.draft.quittotitle.content": "Would you like to continue editing it or discard it?", + "gui.abuseReport.draft.quittotitle.title": "You have a draft chat report that will be lost if you quit", + "gui.abuseReport.draft.title": "Edit draft chat report?", + "gui.abuseReport.error.title": "Problem sending your report", + "gui.abuseReport.message": "Where did you observe the bad behavior?\nThis will help us in researching your case.", + "gui.abuseReport.more_comments": "Please describe what happened:", + "gui.abuseReport.name.comment_box_label": "Please describe why you want to report this name:", + "gui.abuseReport.name.reporting": "You are reporting \"%s\".", + "gui.abuseReport.name.title": "Report Inappropriate Player Name", + "gui.abuseReport.observed_what": "Why are you reporting this?", + "gui.abuseReport.read_info": "Learn About Reporting", + "gui.abuseReport.reason.alcohol_tobacco_drugs": "Drugs or alcohol", + "gui.abuseReport.reason.alcohol_tobacco_drugs.description": "Someone is encouraging others to partake in illegal drug related activities or encouraging underage drinking.", + "gui.abuseReport.reason.child_sexual_exploitation_or_abuse": "Child sexual exploitation or abuse", + "gui.abuseReport.reason.child_sexual_exploitation_or_abuse.description": "Someone is talking about or otherwise promoting indecent behavior involving children.", + "gui.abuseReport.reason.defamation_impersonation_false_information": "Defamation", + "gui.abuseReport.reason.defamation_impersonation_false_information.description": "Someone is damaging your or someone else's reputation, for example sharing false information with the aim to exploit or mislead others.", + "gui.abuseReport.reason.description": "Description:", + "gui.abuseReport.reason.false_reporting": "False Reporting", + "gui.abuseReport.reason.generic": "I want to report them", + "gui.abuseReport.reason.generic.description": "I'm annoyed with them / they have done something I do not like.", + "gui.abuseReport.reason.harassment_or_bullying": "Harassment or bullying", + "gui.abuseReport.reason.harassment_or_bullying.description": "Someone is shaming, attacking, or bullying you or someone else. This includes when someone is repeatedly trying to contact you or someone else without consent or posting private personal information about you or someone else without consent (\"doxing\").", + "gui.abuseReport.reason.hate_speech": "Hate speech", + "gui.abuseReport.reason.hate_speech.description": "Someone is attacking you or another player based on characteristics of their identity, like religion, race, or sexuality.", + "gui.abuseReport.reason.imminent_harm": "Threat of harm to others", + "gui.abuseReport.reason.imminent_harm.description": "Someone is threatening to harm you or someone else in real life.", + "gui.abuseReport.reason.narration": "%s: %s", + "gui.abuseReport.reason.non_consensual_intimate_imagery": "Non-consensual intimate imagery", + "gui.abuseReport.reason.non_consensual_intimate_imagery.description": "Someone is talking about, sharing, or otherwise promoting private and intimate images.", + "gui.abuseReport.reason.self_harm_or_suicide": "Self-harm or suicide", + "gui.abuseReport.reason.self_harm_or_suicide.description": "Someone is threatening to harm themselves in real life or talking about harming themselves in real life.", + "gui.abuseReport.reason.sexually_inappropriate": "Sexually inappropriate", + "gui.abuseReport.reason.sexually_inappropriate.description": "Skins that are graphic in nature relating to sexual acts, sexual organs, and sexual violence.", + "gui.abuseReport.reason.terrorism_or_violent_extremism": "Terrorism or violent extremism", + "gui.abuseReport.reason.terrorism_or_violent_extremism.description": "Someone is talking about, promoting, or threatening to commit acts of terrorism or violent extremism for political, religious, ideological, or other reasons.", + "gui.abuseReport.reason.title": "Select Report Category", + "gui.abuseReport.report_sent_msg": "We've successfully received your report. Thank you!\n\nOur team will review it as soon as possible.", + "gui.abuseReport.select_reason": "Select Report Category", + "gui.abuseReport.send": "Send Report", + "gui.abuseReport.send.comment_too_long": "Please shorten the comment", + "gui.abuseReport.send.error_message": "An error was returned while sending your report:\n'%s'", + "gui.abuseReport.send.generic_error": "Encountered an unexpected error while sending your report.", + "gui.abuseReport.send.http_error": "An unexpected HTTP error occurred while sending your report.", + "gui.abuseReport.send.json_error": "Encountered malformed payload while sending your report.", + "gui.abuseReport.send.no_reason": "Please select a report category", + "gui.abuseReport.send.not_attested": "Please read the text above and tick the checkbox to be able to send the report", + "gui.abuseReport.send.service_unavailable": "Unable to reach the Abuse Reporting service. Please make sure you are connected to the internet and try again.", + "gui.abuseReport.sending.title": "Sending your report...", + "gui.abuseReport.sent.title": "Report sent", + "gui.abuseReport.skin.title": "Report Player Skin", + "gui.abuseReport.title": "Report Player", + "gui.abuseReport.type.chat": "Chat Messages", + "gui.abuseReport.type.name": "Player Name", + "gui.abuseReport.type.skin": "Player Skin", + "gui.acknowledge": "Acknowledge", + "gui.advancements": "Advancements", + "gui.all": "All", + "gui.back": "Back", + "gui.banned.description": "%s\n\n%s\n\nLearn more at the following link: %s", + "gui.banned.description.permanent": "Your account is permanently banned, which means you can't play online or join Realms.", + "gui.banned.description.reason": "We recently received a report for bad behavior by your account. Our moderators have now reviewed your case and identified it as %s, which goes against the Minecraft Community Standards.", + "gui.banned.description.reason_id": "Code: %s", + "gui.banned.description.reason_id_message": "Code: %s - %s", + "gui.banned.description.temporary": "%s Until then, you can't play online or join Realms.", + "gui.banned.description.temporary.duration": "Your account is temporarily suspended and will be reactivated in %s.", + "gui.banned.description.unknownreason": "We recently received a report for bad behavior by your account. Our moderators have now reviewed your case and identified that it goes against the Minecraft Community Standards.", + "gui.banned.name.description": "Your current name - \"%s\" - violates our Community Standards. You can play singleplayer, but will need to change your name to play online.\n\nLearn more or submit a case review at the following link: %s", + "gui.banned.name.title": "Name Not Allowed in Multiplayer", + "gui.banned.reason.defamation_impersonation_false_information": "Impersonation or sharing information to exploit or mislead others", + "gui.banned.reason.drugs": "References to illegal drugs", + "gui.banned.reason.extreme_violence_or_gore": "Depictions of real-life excessive violence or gore", + "gui.banned.reason.false_reporting": "Excessive false or inaccurate reports", + "gui.banned.reason.fraud": "Fraudulent acquisition or use of content", + "gui.banned.reason.generic_violation": "Violating Community Standards", + "gui.banned.reason.harassment_or_bullying": "Abusive language used in a directed, harmful manner", + "gui.banned.reason.hate_speech": "Hate speech or discrimination", + "gui.banned.reason.hate_terrorism_notorious_figure": "References to hate groups, terrorist organizations, or notorious figures", + "gui.banned.reason.imminent_harm_to_person_or_property": "Intent to cause real-life harm to persons or property", + "gui.banned.reason.nudity_or_pornography": "Displaying lewd or pornographic material", + "gui.banned.reason.sexually_inappropriate": "Topics or content of a sexual nature", + "gui.banned.reason.spam_or_advertising": "Spam or advertising", + "gui.banned.skin.description": "Your current skin violates our Community Standards. You can still play with a default skin, or select a new one.\n\nLearn more or submit a case review at the following link: %s", + "gui.banned.skin.title": "Skin Not Allowed", + "gui.banned.title.permanent": "Account permanently banned", + "gui.banned.title.temporary": "Account temporarily suspended", + "gui.cancel": "Cancel", + "gui.chatReport.comments": "Comments", + "gui.chatReport.describe": "Sharing details will help us make a well-informed decision.", + "gui.chatReport.discard.content": "If you leave, you'll lose this report and your comments.\nAre you sure you want to leave?", + "gui.chatReport.discard.discard": "Leave and Discard Report", + "gui.chatReport.discard.draft": "Save as Draft", + "gui.chatReport.discard.return": "Continue Editing", + "gui.chatReport.discard.title": "Discard report and comments?", + "gui.chatReport.draft.content": "Would you like to continue editing the existing report or discard it and create a new one?", + "gui.chatReport.draft.discard": "Discard", + "gui.chatReport.draft.edit": "Continue Editing", + "gui.chatReport.draft.quittotitle.content": "Would you like to continue editing it or discard it?", + "gui.chatReport.draft.quittotitle.title": "You have a draft chat report that will be lost if you quit", + "gui.chatReport.draft.title": "Edit draft chat report?", + "gui.chatReport.more_comments": "Please describe what happened:", + "gui.chatReport.observed_what": "Why are you reporting this?", + "gui.chatReport.read_info": "Learn About Reporting", + "gui.chatReport.report_sent_msg": "We've successfully received your report. Thank you!\n\nOur team will review it as soon as possible.", + "gui.chatReport.select_chat": "Select Chat Messages to Report", + "gui.chatReport.select_reason": "Select Report Category", + "gui.chatReport.selected_chat": "%s Chat Message(s) Selected to Report", + "gui.chatReport.send": "Send Report", + "gui.chatReport.send.comments_too_long": "Please shorten the comment", + "gui.chatReport.send.no_reason": "Please select a report category", + "gui.chatReport.send.no_reported_messages": "Please select at least one chat message to report", + "gui.chatReport.send.too_many_messages": "Trying to include too many messages in the report", + "gui.chatReport.title": "Report Player Chat", + "gui.chatSelection.context": "Messages surrounding this selection will be included to provide additional context", + "gui.chatSelection.fold": "%s message(s) hidden", + "gui.chatSelection.heading": "%s %s", + "gui.chatSelection.join": "%s joined the chat", + "gui.chatSelection.message.narrate": "%s said: %s at %s", + "gui.chatSelection.selected": "%s/%s message(s) selected", + "gui.chatSelection.title": "Select Chat Messages to Report", + "gui.continue": "Continue", + "gui.copy_link_to_clipboard": "Copy Link to Clipboard", + "gui.days": "%s day(s)", + "gui.done": "Done", + "gui.down": "Down", + "gui.entity_tooltip.type": "Type: %s", + "gui.experience.level": "%s", + "gui.fileDropFailure.detail": "Rejected %s files", + "gui.fileDropFailure.title": "Failed to add files", + "gui.hours": "%s hour(s)", + "gui.loadingMinecraft": "Loading Minecraft", + "gui.minutes": "%s minute(s)", + "gui.multiLineEditBox.character_limit": "%s/%s", + "gui.narrate.button": "%s button", + "gui.narrate.editBox": "%s edit box: %s", + "gui.narrate.slider": "%s slider", + "gui.narrate.tab": "%s tab", + "gui.no": "No", + "gui.none": "None", + "gui.ok": "Ok", + "gui.open_report_dir": "Open Report Directory", + "gui.packSelection.search": "Search...", + "gui.proceed": "Proceed", + "gui.recipebook.moreRecipes": "Right Click for More", + "gui.recipebook.page": "%s/%s", + "gui.recipebook.search_hint": "Search...", + "gui.recipebook.toggleRecipes.all": "Showing All", + "gui.recipebook.toggleRecipes.blastable": "Showing Blastable", + "gui.recipebook.toggleRecipes.craftable": "Showing Craftable", + "gui.recipebook.toggleRecipes.smeltable": "Showing Smeltable", + "gui.recipebook.toggleRecipes.smokable": "Showing Smokable", + "gui.report_to_server": "Report To Server", + "gui.socialInteractions.blocking_hint": "Manage with Microsoft account", + "gui.socialInteractions.empty_blocked": "No blocked players in chat", + "gui.socialInteractions.empty_hidden": "No players hidden in chat", + "gui.socialInteractions.hidden_in_chat": "Chat messages from %s will be hidden", + "gui.socialInteractions.hide": "Hide in Chat", + "gui.socialInteractions.narration.hide": "Hide messages from %s", + "gui.socialInteractions.narration.report": "Report player %s", + "gui.socialInteractions.narration.show": "Show messages from %s", + "gui.socialInteractions.report": "Report", + "gui.socialInteractions.search_empty": "Couldn't find any players with that name", + "gui.socialInteractions.search_hint": "Search...", + "gui.socialInteractions.server_label.multiple": "%s - %s players", + "gui.socialInteractions.server_label.single": "%s - %s player", + "gui.socialInteractions.show": "Show in Chat", + "gui.socialInteractions.shown_in_chat": "Chat messages from %s will be shown", + "gui.socialInteractions.status_blocked": "Blocked", + "gui.socialInteractions.status_blocked_offline": "Blocked - Offline", + "gui.socialInteractions.status_hidden": "Hidden", + "gui.socialInteractions.status_hidden_offline": "Hidden - Offline", + "gui.socialInteractions.status_offline": "Offline", + "gui.socialInteractions.tab_all": "All", + "gui.socialInteractions.tab_blocked": "Blocked", + "gui.socialInteractions.tab_hidden": "Hidden", + "gui.socialInteractions.title": "Social Interactions", + "gui.socialInteractions.tooltip.hide": "Hide messages", + "gui.socialInteractions.tooltip.report": "Report player", + "gui.socialInteractions.tooltip.report.disabled": "The reporting service is unavailable", + "gui.socialInteractions.tooltip.report.no_messages": "No reportable messages from player %s", + "gui.socialInteractions.tooltip.report.not_reportable": "This player can't be reported, because their chat messages can't be verified on this server", + "gui.socialInteractions.tooltip.show": "Show messages", + "gui.stats": "Statistics", + "gui.stats.none_found": "No statistics found.", + "gui.togglable_slot": "Click to disable slot", + "gui.toMenu": "Back to Server List", + "gui.toRealms": "Back to Realms List", + "gui.toTitle": "Back to Title Screen", + "gui.toWorld": "Back to World List", + "gui.up": "Up", + "gui.waitingForResponse.button.inactive": "Back (%ss)", + "gui.waitingForResponse.title": "Waiting for Server", + "gui.yes": "Yes", + "hanging_sign.edit": "Edit Hanging Sign Message", + "instrument.minecraft.admire_goat_horn": "Admire", + "instrument.minecraft.call_goat_horn": "Call", + "instrument.minecraft.dream_goat_horn": "Dream", + "instrument.minecraft.feel_goat_horn": "Feel", + "instrument.minecraft.ponder_goat_horn": "Ponder", + "instrument.minecraft.seek_goat_horn": "Seek", + "instrument.minecraft.sing_goat_horn": "Sing", + "instrument.minecraft.yearn_goat_horn": "Yearn", + "inventory.binSlot": "Destroy Item", + "inventory.hotbarInfo": "Save hotbar with %1$s + %2$s", + "inventory.hotbarSaved": "Item hotbar saved (restore with %1$s + %2$s)", + "item_modifier.unknown": "Unknown item modifier: %s", + "item.canBreak": "Can break:", + "item.canPlace": "Can be placed on:", + "item.canUse.unknown": "Unknown", + "item.color": "Color: %s", + "item.components": "%s component(s)", + "item.disabled": "Disabled item", + "item.durability": "Durability: %s / %s", + "item.dyed": "Dyed", + "item.minecraft.acacia_boat": "Acacia Boat", + "item.minecraft.acacia_chest_boat": "Acacia Boat with Chest", + "item.minecraft.allay_spawn_egg": "Allay Spawn Egg", + "item.minecraft.amethyst_shard": "Amethyst Shard", + "item.minecraft.angler_pottery_shard": "Angler Pottery Shard", + "item.minecraft.angler_pottery_sherd": "Angler Pottery Sherd", + "item.minecraft.apple": "Apple", + "item.minecraft.archer_pottery_shard": "Archer Pottery Shard", + "item.minecraft.archer_pottery_sherd": "Archer Pottery Sherd", + "item.minecraft.armadillo_scute": "Armadillo Scute", + "item.minecraft.armadillo_spawn_egg": "Armadillo Spawn Egg", + "item.minecraft.armor_stand": "Armor Stand", + "item.minecraft.arms_up_pottery_shard": "Arms Up Pottery Shard", + "item.minecraft.arms_up_pottery_sherd": "Arms Up Pottery Sherd", + "item.minecraft.arrow": "Arrow", + "item.minecraft.axolotl_bucket": "Bucket of Axolotl", + "item.minecraft.axolotl_spawn_egg": "Axolotl Spawn Egg", + "item.minecraft.baked_potato": "Baked Potato", + "item.minecraft.bamboo_chest_raft": "Bamboo Raft with Chest", + "item.minecraft.bamboo_raft": "Bamboo Raft", + "item.minecraft.bat_spawn_egg": "Bat Spawn Egg", + "item.minecraft.bee_spawn_egg": "Bee Spawn Egg", + "item.minecraft.beef": "Raw Beef", + "item.minecraft.beetroot": "Beetroot", + "item.minecraft.beetroot_seeds": "Beetroot Seeds", + "item.minecraft.beetroot_soup": "Beetroot Soup", + "item.minecraft.birch_boat": "Birch Boat", + "item.minecraft.birch_chest_boat": "Birch Boat with Chest", + "item.minecraft.black_bundle": "Black Bundle", + "item.minecraft.black_dye": "Black Dye", + "item.minecraft.black_harness": "Black Harness", + "item.minecraft.blade_pottery_shard": "Blade Pottery Shard", + "item.minecraft.blade_pottery_sherd": "Blade Pottery Sherd", + "item.minecraft.blaze_powder": "Blaze Powder", + "item.minecraft.blaze_rod": "Blaze Rod", + "item.minecraft.blaze_spawn_egg": "Blaze Spawn Egg", + "item.minecraft.blue_bundle": "Blue Bundle", + "item.minecraft.blue_dye": "Blue Dye", + "item.minecraft.blue_egg": "Blue Egg", + "item.minecraft.blue_harness": "Blue Harness", + "item.minecraft.bogged_spawn_egg": "Bogged Spawn Egg", + "item.minecraft.bolt_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.bolt_armor_trim_smithing_template.new": "Bolt Armor Trim", + "item.minecraft.bone": "Bone", + "item.minecraft.bone_meal": "Bone Meal", + "item.minecraft.book": "Book", + "item.minecraft.bordure_indented_banner_pattern": "Bordure Indented Banner Pattern", + "item.minecraft.bow": "Bow", + "item.minecraft.bowl": "Bowl", + "item.minecraft.bread": "Bread", + "item.minecraft.breeze_rod": "Breeze Rod", + "item.minecraft.breeze_spawn_egg": "Breeze Spawn Egg", + "item.minecraft.brewer_pottery_shard": "Brewer Pottery Shard", + "item.minecraft.brewer_pottery_sherd": "Brewer Pottery Sherd", + "item.minecraft.brewing_stand": "Brewing Stand", + "item.minecraft.brick": "Brick", + "item.minecraft.brown_bundle": "Brown Bundle", + "item.minecraft.brown_dye": "Brown Dye", + "item.minecraft.brown_egg": "Brown Egg", + "item.minecraft.brown_harness": "Brown Harness", + "item.minecraft.brush": "Brush", + "item.minecraft.bucket": "Bucket", + "item.minecraft.bundle": "Bundle", + "item.minecraft.bundle.empty": "Empty", + "item.minecraft.bundle.empty.description": "Can hold a mixed stack of items", + "item.minecraft.bundle.full": "Full", + "item.minecraft.bundle.fullness": "%s/%s", + "item.minecraft.burn_pottery_shard": "Burn Pottery Shard", + "item.minecraft.burn_pottery_sherd": "Burn Pottery Sherd", + "item.minecraft.camel_spawn_egg": "Camel Spawn Egg", + "item.minecraft.carrot": "Carrot", + "item.minecraft.carrot_on_a_stick": "Carrot on a Stick", + "item.minecraft.cat_spawn_egg": "Cat Spawn Egg", + "item.minecraft.cauldron": "Cauldron", + "item.minecraft.cave_spider_spawn_egg": "Cave Spider Spawn Egg", + "item.minecraft.chainmail_boots": "Chainmail Boots", + "item.minecraft.chainmail_chestplate": "Chainmail Chestplate", + "item.minecraft.chainmail_helmet": "Chainmail Helmet", + "item.minecraft.chainmail_leggings": "Chainmail Leggings", + "item.minecraft.charcoal": "Charcoal", + "item.minecraft.cherry_boat": "Cherry Boat", + "item.minecraft.cherry_chest_boat": "Cherry Boat with Chest", + "item.minecraft.chest_minecart": "Minecart with Chest", + "item.minecraft.chicken": "Raw Chicken", + "item.minecraft.chicken_spawn_egg": "Chicken Spawn Egg", + "item.minecraft.chorus_fruit": "Chorus Fruit", + "item.minecraft.clay_ball": "Clay Ball", + "item.minecraft.clock": "Clock", + "item.minecraft.coal": "Coal", + "item.minecraft.coast_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.coast_armor_trim_smithing_template.new": "Coast Armor Trim", + "item.minecraft.cocoa_beans": "Cocoa Beans", + "item.minecraft.cod": "Raw Cod", + "item.minecraft.cod_bucket": "Bucket of Cod", + "item.minecraft.cod_spawn_egg": "Cod Spawn Egg", + "item.minecraft.command_block_minecart": "Minecart with Command Block", + "item.minecraft.compass": "Compass", + "item.minecraft.cooked_beef": "Steak", + "item.minecraft.cooked_chicken": "Cooked Chicken", + "item.minecraft.cooked_cod": "Cooked Cod", + "item.minecraft.cooked_mutton": "Cooked Mutton", + "item.minecraft.cooked_porkchop": "Cooked Porkchop", + "item.minecraft.cooked_rabbit": "Cooked Rabbit", + "item.minecraft.cooked_salmon": "Cooked Salmon", + "item.minecraft.cookie": "Cookie", + "item.minecraft.copper_axe": "Copper Axe", + "item.minecraft.copper_boots": "Copper Boots", + "item.minecraft.copper_chestplate": "Copper Chestplate", + "item.minecraft.copper_golem_spawn_egg": "Copper Golem Spawn Egg", + "item.minecraft.copper_helmet": "Copper Helmet", + "item.minecraft.copper_hoe": "Copper Hoe", + "item.minecraft.copper_horse_armor": "Copper Horse Armor", + "item.minecraft.copper_ingot": "Copper Ingot", + "item.minecraft.copper_leggings": "Copper Leggings", + "item.minecraft.copper_nugget": "Copper Nugget", + "item.minecraft.copper_pickaxe": "Copper Pickaxe", + "item.minecraft.copper_shovel": "Copper Shovel", + "item.minecraft.copper_sword": "Copper Sword", + "item.minecraft.cow_spawn_egg": "Cow Spawn Egg", + "item.minecraft.creaking_spawn_egg": "Creaking Spawn Egg", + "item.minecraft.creeper_banner_pattern": "Banner Pattern", + "item.minecraft.creeper_banner_pattern.desc": "Creeper Charge", + "item.minecraft.creeper_banner_pattern.new": "Creeper Charge Banner Pattern", + "item.minecraft.creeper_spawn_egg": "Creeper Spawn Egg", + "item.minecraft.crossbow": "Crossbow", + "item.minecraft.crossbow.projectile": "Projectile:", + "item.minecraft.crossbow.projectile.multiple": "Projectile: %s x %s", + "item.minecraft.crossbow.projectile.single": "Projectile: %s", + "item.minecraft.cyan_bundle": "Cyan Bundle", + "item.minecraft.cyan_dye": "Cyan Dye", + "item.minecraft.cyan_harness": "Cyan Harness", + "item.minecraft.danger_pottery_shard": "Danger Pottery Shard", + "item.minecraft.danger_pottery_sherd": "Danger Pottery Sherd", + "item.minecraft.dark_oak_boat": "Dark Oak Boat", + "item.minecraft.dark_oak_chest_boat": "Dark Oak Boat with Chest", + "item.minecraft.debug_stick": "Debug Stick", + "item.minecraft.debug_stick.empty": "%s has no properties", + "item.minecraft.debug_stick.select": "selected \"%s\" (%s)", + "item.minecraft.debug_stick.update": "\"%s\" to %s", + "item.minecraft.diamond": "Diamond", + "item.minecraft.diamond_axe": "Diamond Axe", + "item.minecraft.diamond_boots": "Diamond Boots", + "item.minecraft.diamond_chestplate": "Diamond Chestplate", + "item.minecraft.diamond_helmet": "Diamond Helmet", + "item.minecraft.diamond_hoe": "Diamond Hoe", + "item.minecraft.diamond_horse_armor": "Diamond Horse Armor", + "item.minecraft.diamond_leggings": "Diamond Leggings", + "item.minecraft.diamond_pickaxe": "Diamond Pickaxe", + "item.minecraft.diamond_shovel": "Diamond Shovel", + "item.minecraft.diamond_sword": "Diamond Sword", + "item.minecraft.disc_fragment_5": "Disc Fragment", + "item.minecraft.disc_fragment_5.desc": "Music Disc - 5", + "item.minecraft.dolphin_spawn_egg": "Dolphin Spawn Egg", + "item.minecraft.donkey_spawn_egg": "Donkey Spawn Egg", + "item.minecraft.dragon_breath": "Dragon's Breath", + "item.minecraft.dried_kelp": "Dried Kelp", + "item.minecraft.drowned_spawn_egg": "Drowned Spawn Egg", + "item.minecraft.dune_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.dune_armor_trim_smithing_template.new": "Dune Armor Trim", + "item.minecraft.echo_shard": "Echo Shard", + "item.minecraft.egg": "Egg", + "item.minecraft.elder_guardian_spawn_egg": "Elder Guardian Spawn Egg", + "item.minecraft.elytra": "Elytra", + "item.minecraft.emerald": "Emerald", + "item.minecraft.enchanted_book": "Enchanted Book", + "item.minecraft.enchanted_golden_apple": "Enchanted Golden Apple", + "item.minecraft.end_crystal": "End Crystal", + "item.minecraft.ender_dragon_spawn_egg": "Ender Dragon Spawn Egg", + "item.minecraft.ender_eye": "Eye of Ender", + "item.minecraft.ender_pearl": "Ender Pearl", + "item.minecraft.enderman_spawn_egg": "Enderman Spawn Egg", + "item.minecraft.endermite_spawn_egg": "Endermite Spawn Egg", + "item.minecraft.evoker_spawn_egg": "Evoker Spawn Egg", + "item.minecraft.experience_bottle": "Bottle o' Enchanting", + "item.minecraft.explorer_pottery_shard": "Explorer Pottery Shard", + "item.minecraft.explorer_pottery_sherd": "Explorer Pottery Sherd", + "item.minecraft.eye_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.eye_armor_trim_smithing_template.new": "Eye Armor Trim", + "item.minecraft.feather": "Feather", + "item.minecraft.fermented_spider_eye": "Fermented Spider Eye", + "item.minecraft.field_masoned_banner_pattern": "Field Masoned Banner Pattern", + "item.minecraft.filled_map": "Map", + "item.minecraft.fire_charge": "Fire Charge", + "item.minecraft.firework_rocket": "Firework Rocket", + "item.minecraft.firework_rocket.flight": "Flight Duration:", + "item.minecraft.firework_rocket.multiple_stars": "%s x %s", + "item.minecraft.firework_rocket.single_star": "%s", + "item.minecraft.firework_star": "Firework Star", + "item.minecraft.firework_star.black": "Black", + "item.minecraft.firework_star.blue": "Blue", + "item.minecraft.firework_star.brown": "Brown", + "item.minecraft.firework_star.custom_color": "Custom", + "item.minecraft.firework_star.cyan": "Cyan", + "item.minecraft.firework_star.fade_to": "Fade to", + "item.minecraft.firework_star.flicker": "Twinkle", + "item.minecraft.firework_star.gray": "Gray", + "item.minecraft.firework_star.green": "Green", + "item.minecraft.firework_star.light_blue": "Light Blue", + "item.minecraft.firework_star.light_gray": "Light Gray", + "item.minecraft.firework_star.lime": "Lime", + "item.minecraft.firework_star.magenta": "Magenta", + "item.minecraft.firework_star.orange": "Orange", + "item.minecraft.firework_star.pink": "Pink", + "item.minecraft.firework_star.purple": "Purple", + "item.minecraft.firework_star.red": "Red", + "item.minecraft.firework_star.shape": "Unknown Shape", + "item.minecraft.firework_star.shape.burst": "Burst", + "item.minecraft.firework_star.shape.creeper": "Creeper-shaped", + "item.minecraft.firework_star.shape.large_ball": "Large Ball", + "item.minecraft.firework_star.shape.small_ball": "Small Ball", + "item.minecraft.firework_star.shape.star": "Star-shaped", + "item.minecraft.firework_star.trail": "Trail", + "item.minecraft.firework_star.white": "White", + "item.minecraft.firework_star.yellow": "Yellow", + "item.minecraft.fishing_rod": "Fishing Rod", + "item.minecraft.flint": "Flint", + "item.minecraft.flint_and_steel": "Flint and Steel", + "item.minecraft.flow_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.flow_armor_trim_smithing_template.new": "Flow Armor Trim", + "item.minecraft.flow_banner_pattern": "Banner Pattern", + "item.minecraft.flow_banner_pattern.desc": "Flow", + "item.minecraft.flow_banner_pattern.new": "Flow Banner Pattern", + "item.minecraft.flow_pottery_sherd": "Flow Pottery Sherd", + "item.minecraft.flower_banner_pattern": "Banner Pattern", + "item.minecraft.flower_banner_pattern.desc": "Flower Charge", + "item.minecraft.flower_banner_pattern.new": "Flower Charge Banner Pattern", + "item.minecraft.flower_pot": "Flower Pot", + "item.minecraft.fox_spawn_egg": "Fox Spawn Egg", + "item.minecraft.friend_pottery_shard": "Friend Pottery Shard", + "item.minecraft.friend_pottery_sherd": "Friend Pottery Sherd", + "item.minecraft.frog_spawn_egg": "Frog Spawn Egg", + "item.minecraft.furnace_minecart": "Minecart with Furnace", + "item.minecraft.ghast_spawn_egg": "Ghast Spawn Egg", + "item.minecraft.ghast_tear": "Ghast Tear", + "item.minecraft.glass_bottle": "Glass Bottle", + "item.minecraft.glistering_melon_slice": "Glistering Melon Slice", + "item.minecraft.globe_banner_pattern": "Banner Pattern", + "item.minecraft.globe_banner_pattern.desc": "Globe", + "item.minecraft.globe_banner_pattern.new": "Globe Banner Pattern", + "item.minecraft.glow_berries": "Glow Berries", + "item.minecraft.glow_ink_sac": "Glow Ink Sac", + "item.minecraft.glow_item_frame": "Glow Item Frame", + "item.minecraft.glow_squid_spawn_egg": "Glow Squid Spawn Egg", + "item.minecraft.glowstone_dust": "Glowstone Dust", + "item.minecraft.goat_horn": "Goat Horn", + "item.minecraft.goat_spawn_egg": "Goat Spawn Egg", + "item.minecraft.gold_ingot": "Gold Ingot", + "item.minecraft.gold_nugget": "Gold Nugget", + "item.minecraft.golden_apple": "Golden Apple", + "item.minecraft.golden_axe": "Golden Axe", + "item.minecraft.golden_boots": "Golden Boots", + "item.minecraft.golden_carrot": "Golden Carrot", + "item.minecraft.golden_chestplate": "Golden Chestplate", + "item.minecraft.golden_helmet": "Golden Helmet", + "item.minecraft.golden_hoe": "Golden Hoe", + "item.minecraft.golden_horse_armor": "Golden Horse Armor", + "item.minecraft.golden_leggings": "Golden Leggings", + "item.minecraft.golden_pickaxe": "Golden Pickaxe", + "item.minecraft.golden_shovel": "Golden Shovel", + "item.minecraft.golden_sword": "Golden Sword", + "item.minecraft.gray_bundle": "Gray Bundle", + "item.minecraft.gray_dye": "Gray Dye", + "item.minecraft.gray_harness": "Gray Harness", + "item.minecraft.green_bundle": "Green Bundle", + "item.minecraft.green_dye": "Green Dye", + "item.minecraft.green_harness": "Green Harness", + "item.minecraft.guardian_spawn_egg": "Guardian Spawn Egg", + "item.minecraft.gunpowder": "Gunpowder", + "item.minecraft.guster_banner_pattern": "Banner Pattern", + "item.minecraft.guster_banner_pattern.desc": "Guster", + "item.minecraft.guster_banner_pattern.new": "Guster Banner Pattern", + "item.minecraft.guster_pottery_sherd": "Guster Pottery Sherd", + "item.minecraft.happy_ghast_spawn_egg": "Happy Ghast Spawn Egg", + "item.minecraft.harness": "Harness", + "item.minecraft.heart_of_the_sea": "Heart of the Sea", + "item.minecraft.heart_pottery_shard": "Heart Pottery Shard", + "item.minecraft.heart_pottery_sherd": "Heart Pottery Sherd", + "item.minecraft.heartbreak_pottery_shard": "Heartbreak Pottery Shard", + "item.minecraft.heartbreak_pottery_sherd": "Heartbreak Pottery Sherd", + "item.minecraft.hoglin_spawn_egg": "Hoglin Spawn Egg", + "item.minecraft.honey_bottle": "Honey Bottle", + "item.minecraft.honeycomb": "Honeycomb", + "item.minecraft.hopper_minecart": "Minecart with Hopper", + "item.minecraft.horse_spawn_egg": "Horse Spawn Egg", + "item.minecraft.host_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.host_armor_trim_smithing_template.new": "Host Armor Trim", + "item.minecraft.howl_pottery_shard": "Howl Pottery Shard", + "item.minecraft.howl_pottery_sherd": "Howl Pottery Sherd", + "item.minecraft.husk_spawn_egg": "Husk Spawn Egg", + "item.minecraft.ink_sac": "Ink Sac", + "item.minecraft.iron_axe": "Iron Axe", + "item.minecraft.iron_boots": "Iron Boots", + "item.minecraft.iron_chestplate": "Iron Chestplate", + "item.minecraft.iron_golem_spawn_egg": "Iron Golem Spawn Egg", + "item.minecraft.iron_helmet": "Iron Helmet", + "item.minecraft.iron_hoe": "Iron Hoe", + "item.minecraft.iron_horse_armor": "Iron Horse Armor", + "item.minecraft.iron_ingot": "Iron Ingot", + "item.minecraft.iron_leggings": "Iron Leggings", + "item.minecraft.iron_nugget": "Iron Nugget", + "item.minecraft.iron_pickaxe": "Iron Pickaxe", + "item.minecraft.iron_shovel": "Iron Shovel", + "item.minecraft.iron_sword": "Iron Sword", + "item.minecraft.item_frame": "Item Frame", + "item.minecraft.jungle_boat": "Jungle Boat", + "item.minecraft.jungle_chest_boat": "Jungle Boat with Chest", + "item.minecraft.knowledge_book": "Knowledge Book", + "item.minecraft.lapis_lazuli": "Lapis Lazuli", + "item.minecraft.lava_bucket": "Lava Bucket", + "item.minecraft.lead": "Lead", + "item.minecraft.leather": "Leather", + "item.minecraft.leather_boots": "Leather Boots", + "item.minecraft.leather_chestplate": "Leather Tunic", + "item.minecraft.leather_helmet": "Leather Cap", + "item.minecraft.leather_horse_armor": "Leather Horse Armor", + "item.minecraft.leather_leggings": "Leather Pants", + "item.minecraft.light_blue_bundle": "Light Blue Bundle", + "item.minecraft.light_blue_dye": "Light Blue Dye", + "item.minecraft.light_blue_harness": "Light Blue Harness", + "item.minecraft.light_gray_bundle": "Light Gray Bundle", + "item.minecraft.light_gray_dye": "Light Gray Dye", + "item.minecraft.light_gray_harness": "Light Gray Harness", + "item.minecraft.lime_bundle": "Lime Bundle", + "item.minecraft.lime_dye": "Lime Dye", + "item.minecraft.lime_harness": "Lime Harness", + "item.minecraft.lingering_potion": "Lingering Potion", + "item.minecraft.lingering_potion.effect.awkward": "Awkward Lingering Potion", + "item.minecraft.lingering_potion.effect.empty": "Lingering Uncraftable Potion", + "item.minecraft.lingering_potion.effect.fire_resistance": "Lingering Potion of Fire Resistance", + "item.minecraft.lingering_potion.effect.harming": "Lingering Potion of Harming", + "item.minecraft.lingering_potion.effect.healing": "Lingering Potion of Healing", + "item.minecraft.lingering_potion.effect.infested": "Lingering Potion of Infestation", + "item.minecraft.lingering_potion.effect.invisibility": "Lingering Potion of Invisibility", + "item.minecraft.lingering_potion.effect.leaping": "Lingering Potion of Leaping", + "item.minecraft.lingering_potion.effect.levitation": "Lingering Potion of Levitation", + "item.minecraft.lingering_potion.effect.luck": "Lingering Potion of Luck", + "item.minecraft.lingering_potion.effect.mundane": "Mundane Lingering Potion", + "item.minecraft.lingering_potion.effect.night_vision": "Lingering Potion of Night Vision", + "item.minecraft.lingering_potion.effect.oozing": "Lingering Potion of Oozing", + "item.minecraft.lingering_potion.effect.poison": "Lingering Potion of Poison", + "item.minecraft.lingering_potion.effect.regeneration": "Lingering Potion of Regeneration", + "item.minecraft.lingering_potion.effect.slow_falling": "Lingering Potion of Slow Falling", + "item.minecraft.lingering_potion.effect.slowness": "Lingering Potion of Slowness", + "item.minecraft.lingering_potion.effect.strength": "Lingering Potion of Strength", + "item.minecraft.lingering_potion.effect.swiftness": "Lingering Potion of Swiftness", + "item.minecraft.lingering_potion.effect.thick": "Thick Lingering Potion", + "item.minecraft.lingering_potion.effect.turtle_master": "Lingering Potion of the Turtle Master", + "item.minecraft.lingering_potion.effect.water": "Lingering Water Bottle", + "item.minecraft.lingering_potion.effect.water_breathing": "Lingering Potion of Water Breathing", + "item.minecraft.lingering_potion.effect.weakness": "Lingering Potion of Weakness", + "item.minecraft.lingering_potion.effect.weaving": "Lingering Potion of Weaving", + "item.minecraft.lingering_potion.effect.wind_charged": "Lingering Potion of Wind Charging", + "item.minecraft.llama_spawn_egg": "Llama Spawn Egg", + "item.minecraft.lodestone_compass": "Lodestone Compass", + "item.minecraft.mace": "Mace", + "item.minecraft.magenta_bundle": "Magenta Bundle", + "item.minecraft.magenta_dye": "Magenta Dye", + "item.minecraft.magenta_harness": "Magenta Harness", + "item.minecraft.magma_cream": "Magma Cream", + "item.minecraft.magma_cube_spawn_egg": "Magma Cube Spawn Egg", + "item.minecraft.mangrove_boat": "Mangrove Boat", + "item.minecraft.mangrove_chest_boat": "Mangrove Boat with Chest", + "item.minecraft.map": "Empty Map", + "item.minecraft.melon_seeds": "Melon Seeds", + "item.minecraft.melon_slice": "Melon Slice", + "item.minecraft.milk_bucket": "Milk Bucket", + "item.minecraft.minecart": "Minecart", + "item.minecraft.miner_pottery_shard": "Miner Pottery Shard", + "item.minecraft.miner_pottery_sherd": "Miner Pottery Sherd", + "item.minecraft.mojang_banner_pattern": "Banner Pattern", + "item.minecraft.mojang_banner_pattern.desc": "Thing", + "item.minecraft.mojang_banner_pattern.new": "Thing Banner Pattern", + "item.minecraft.mooshroom_spawn_egg": "Mooshroom Spawn Egg", + "item.minecraft.mourner_pottery_shard": "Mourner Pottery Shard", + "item.minecraft.mourner_pottery_sherd": "Mourner Pottery Sherd", + "item.minecraft.mule_spawn_egg": "Mule Spawn Egg", + "item.minecraft.mushroom_stew": "Mushroom Stew", + "item.minecraft.music_disc_5": "Music Disc", + "item.minecraft.music_disc_5.desc": "Samuel Åberg - 5", + "item.minecraft.music_disc_11": "Music Disc", + "item.minecraft.music_disc_11.desc": "C418 - 11", + "item.minecraft.music_disc_13": "Music Disc", + "item.minecraft.music_disc_13.desc": "C418 - 13", + "item.minecraft.music_disc_blocks": "Music Disc", + "item.minecraft.music_disc_blocks.desc": "C418 - blocks", + "item.minecraft.music_disc_cat": "Music Disc", + "item.minecraft.music_disc_cat.desc": "C418 - cat", + "item.minecraft.music_disc_chirp": "Music Disc", + "item.minecraft.music_disc_chirp.desc": "C418 - chirp", + "item.minecraft.music_disc_creator": "Music Disc", + "item.minecraft.music_disc_creator_music_box": "Music Disc", + "item.minecraft.music_disc_creator_music_box.desc": "Lena Raine - Creator (Music Box)", + "item.minecraft.music_disc_creator.desc": "Lena Raine - Creator", + "item.minecraft.music_disc_far": "Music Disc", + "item.minecraft.music_disc_far.desc": "C418 - far", + "item.minecraft.music_disc_lava_chicken": "Music Disc", + "item.minecraft.music_disc_lava_chicken.desc": "Hyper Potions - Lava Chicken", + "item.minecraft.music_disc_mall": "Music Disc", + "item.minecraft.music_disc_mall.desc": "C418 - mall", + "item.minecraft.music_disc_mellohi": "Music Disc", + "item.minecraft.music_disc_mellohi.desc": "C418 - mellohi", + "item.minecraft.music_disc_otherside": "Music Disc", + "item.minecraft.music_disc_otherside.desc": "Lena Raine - otherside", + "item.minecraft.music_disc_pigstep": "Music Disc", + "item.minecraft.music_disc_pigstep.desc": "Lena Raine - Pigstep", + "item.minecraft.music_disc_precipice": "Music Disc", + "item.minecraft.music_disc_precipice.desc": "Aaron Cherof - Precipice", + "item.minecraft.music_disc_relic": "Music Disc", + "item.minecraft.music_disc_relic.desc": "Aaron Cherof - Relic", + "item.minecraft.music_disc_stal": "Music Disc", + "item.minecraft.music_disc_stal.desc": "C418 - stal", + "item.minecraft.music_disc_strad": "Music Disc", + "item.minecraft.music_disc_strad.desc": "C418 - strad", + "item.minecraft.music_disc_tears": "Music Disc", + "item.minecraft.music_disc_tears.desc": "Amos Roddy - Tears", + "item.minecraft.music_disc_wait": "Music Disc", + "item.minecraft.music_disc_wait.desc": "C418 - wait", + "item.minecraft.music_disc_ward": "Music Disc", + "item.minecraft.music_disc_ward.desc": "C418 - ward", + "item.minecraft.mutton": "Raw Mutton", + "item.minecraft.name_tag": "Name Tag", + "item.minecraft.nautilus_shell": "Nautilus Shell", + "item.minecraft.nether_brick": "Nether Brick", + "item.minecraft.nether_star": "Nether Star", + "item.minecraft.nether_wart": "Nether Wart", + "item.minecraft.netherite_axe": "Netherite Axe", + "item.minecraft.netherite_boots": "Netherite Boots", + "item.minecraft.netherite_chestplate": "Netherite Chestplate", + "item.minecraft.netherite_helmet": "Netherite Helmet", + "item.minecraft.netherite_hoe": "Netherite Hoe", + "item.minecraft.netherite_ingot": "Netherite Ingot", + "item.minecraft.netherite_leggings": "Netherite Leggings", + "item.minecraft.netherite_pickaxe": "Netherite Pickaxe", + "item.minecraft.netherite_scrap": "Netherite Scrap", + "item.minecraft.netherite_shovel": "Netherite Shovel", + "item.minecraft.netherite_sword": "Netherite Sword", + "item.minecraft.netherite_upgrade_smithing_template": "Smithing Template", + "item.minecraft.netherite_upgrade_smithing_template.new": "Netherite Upgrade", + "item.minecraft.oak_boat": "Oak Boat", + "item.minecraft.oak_chest_boat": "Oak Boat with Chest", + "item.minecraft.ocelot_spawn_egg": "Ocelot Spawn Egg", + "item.minecraft.ominous_bottle": "Ominous Bottle", + "item.minecraft.ominous_trial_key": "Ominous Trial Key", + "item.minecraft.orange_bundle": "Orange Bundle", + "item.minecraft.orange_dye": "Orange Dye", + "item.minecraft.orange_harness": "Orange Harness", + "item.minecraft.painting": "Painting", + "item.minecraft.pale_oak_boat": "Pale Oak Boat", + "item.minecraft.pale_oak_chest_boat": "Pale Oak Boat with Chest", + "item.minecraft.panda_spawn_egg": "Panda Spawn Egg", + "item.minecraft.paper": "Paper", + "item.minecraft.parrot_spawn_egg": "Parrot Spawn Egg", + "item.minecraft.phantom_membrane": "Phantom Membrane", + "item.minecraft.phantom_spawn_egg": "Phantom Spawn Egg", + "item.minecraft.pig_spawn_egg": "Pig Spawn Egg", + "item.minecraft.piglin_banner_pattern": "Banner Pattern", + "item.minecraft.piglin_banner_pattern.desc": "Snout", + "item.minecraft.piglin_banner_pattern.new": "Snout Banner Pattern", + "item.minecraft.piglin_brute_spawn_egg": "Piglin Brute Spawn Egg", + "item.minecraft.piglin_spawn_egg": "Piglin Spawn Egg", + "item.minecraft.pillager_spawn_egg": "Pillager Spawn Egg", + "item.minecraft.pink_bundle": "Pink Bundle", + "item.minecraft.pink_dye": "Pink Dye", + "item.minecraft.pink_harness": "Pink Harness", + "item.minecraft.pitcher_plant": "Pitcher Plant", + "item.minecraft.pitcher_pod": "Pitcher Pod", + "item.minecraft.plenty_pottery_shard": "Plenty Pottery Shard", + "item.minecraft.plenty_pottery_sherd": "Plenty Pottery Sherd", + "item.minecraft.poisonous_potato": "Poisonous Potato", + "item.minecraft.polar_bear_spawn_egg": "Polar Bear Spawn Egg", + "item.minecraft.popped_chorus_fruit": "Popped Chorus Fruit", + "item.minecraft.porkchop": "Raw Porkchop", + "item.minecraft.potato": "Potato", + "item.minecraft.potion": "Potion", + "item.minecraft.potion.effect.awkward": "Awkward Potion", + "item.minecraft.potion.effect.empty": "Uncraftable Potion", + "item.minecraft.potion.effect.fire_resistance": "Potion of Fire Resistance", + "item.minecraft.potion.effect.harming": "Potion of Harming", + "item.minecraft.potion.effect.healing": "Potion of Healing", + "item.minecraft.potion.effect.infested": "Potion of Infestation", + "item.minecraft.potion.effect.invisibility": "Potion of Invisibility", + "item.minecraft.potion.effect.leaping": "Potion of Leaping", + "item.minecraft.potion.effect.levitation": "Potion of Levitation", + "item.minecraft.potion.effect.luck": "Potion of Luck", + "item.minecraft.potion.effect.mundane": "Mundane Potion", + "item.minecraft.potion.effect.night_vision": "Potion of Night Vision", + "item.minecraft.potion.effect.oozing": "Potion of Oozing", + "item.minecraft.potion.effect.poison": "Potion of Poison", + "item.minecraft.potion.effect.regeneration": "Potion of Regeneration", + "item.minecraft.potion.effect.slow_falling": "Potion of Slow Falling", + "item.minecraft.potion.effect.slowness": "Potion of Slowness", + "item.minecraft.potion.effect.strength": "Potion of Strength", + "item.minecraft.potion.effect.swiftness": "Potion of Swiftness", + "item.minecraft.potion.effect.thick": "Thick Potion", + "item.minecraft.potion.effect.turtle_master": "Potion of the Turtle Master", + "item.minecraft.potion.effect.water": "Water Bottle", + "item.minecraft.potion.effect.water_breathing": "Potion of Water Breathing", + "item.minecraft.potion.effect.weakness": "Potion of Weakness", + "item.minecraft.potion.effect.weaving": "Potion of Weaving", + "item.minecraft.potion.effect.wind_charged": "Potion of Wind Charging", + "item.minecraft.pottery_shard_archer": "Archer Pottery Shard", + "item.minecraft.pottery_shard_arms_up": "Arms Up Pottery Shard", + "item.minecraft.pottery_shard_prize": "Prize Pottery Shard", + "item.minecraft.pottery_shard_skull": "Skull Pottery Shard", + "item.minecraft.powder_snow_bucket": "Powder Snow Bucket", + "item.minecraft.prismarine_crystals": "Prismarine Crystals", + "item.minecraft.prismarine_shard": "Prismarine Shard", + "item.minecraft.prize_pottery_shard": "Prize Pottery Shard", + "item.minecraft.prize_pottery_sherd": "Prize Pottery Sherd", + "item.minecraft.pufferfish": "Pufferfish", + "item.minecraft.pufferfish_bucket": "Bucket of Pufferfish", + "item.minecraft.pufferfish_spawn_egg": "Pufferfish Spawn Egg", + "item.minecraft.pumpkin_pie": "Pumpkin Pie", + "item.minecraft.pumpkin_seeds": "Pumpkin Seeds", + "item.minecraft.purple_bundle": "Purple Bundle", + "item.minecraft.purple_dye": "Purple Dye", + "item.minecraft.purple_harness": "Purple Harness", + "item.minecraft.quartz": "Nether Quartz", + "item.minecraft.rabbit": "Raw Rabbit", + "item.minecraft.rabbit_foot": "Rabbit's Foot", + "item.minecraft.rabbit_hide": "Rabbit Hide", + "item.minecraft.rabbit_spawn_egg": "Rabbit Spawn Egg", + "item.minecraft.rabbit_stew": "Rabbit Stew", + "item.minecraft.raiser_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.raiser_armor_trim_smithing_template.new": "Raiser Armor Trim", + "item.minecraft.ravager_spawn_egg": "Ravager Spawn Egg", + "item.minecraft.raw_copper": "Raw Copper", + "item.minecraft.raw_gold": "Raw Gold", + "item.minecraft.raw_iron": "Raw Iron", + "item.minecraft.recovery_compass": "Recovery Compass", + "item.minecraft.red_bundle": "Red Bundle", + "item.minecraft.red_dye": "Red Dye", + "item.minecraft.red_harness": "Red Harness", + "item.minecraft.redstone": "Redstone Dust", + "item.minecraft.resin_brick": "Resin Brick", + "item.minecraft.resin_clump": "Resin Clump", + "item.minecraft.rib_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.rib_armor_trim_smithing_template.new": "Rib Armor Trim", + "item.minecraft.rotten_flesh": "Rotten Flesh", + "item.minecraft.saddle": "Saddle", + "item.minecraft.salmon": "Raw Salmon", + "item.minecraft.salmon_bucket": "Bucket of Salmon", + "item.minecraft.salmon_spawn_egg": "Salmon Spawn Egg", + "item.minecraft.scrape_pottery_sherd": "Scrape Pottery Sherd", + "item.minecraft.scute": "Scute", + "item.minecraft.sentry_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.sentry_armor_trim_smithing_template.new": "Sentry Armor Trim", + "item.minecraft.shaper_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.shaper_armor_trim_smithing_template.new": "Shaper Armor Trim", + "item.minecraft.sheaf_pottery_shard": "Sheaf Pottery Shard", + "item.minecraft.sheaf_pottery_sherd": "Sheaf Pottery Sherd", + "item.minecraft.shears": "Shears", + "item.minecraft.sheep_spawn_egg": "Sheep Spawn Egg", + "item.minecraft.shelter_pottery_shard": "Shelter Pottery Shard", + "item.minecraft.shelter_pottery_sherd": "Shelter Pottery Sherd", + "item.minecraft.shield": "Shield", + "item.minecraft.shield.black": "Black Shield", + "item.minecraft.shield.blue": "Blue Shield", + "item.minecraft.shield.brown": "Brown Shield", + "item.minecraft.shield.cyan": "Cyan Shield", + "item.minecraft.shield.gray": "Gray Shield", + "item.minecraft.shield.green": "Green Shield", + "item.minecraft.shield.light_blue": "Light Blue Shield", + "item.minecraft.shield.light_gray": "Light Gray Shield", + "item.minecraft.shield.lime": "Lime Shield", + "item.minecraft.shield.magenta": "Magenta Shield", + "item.minecraft.shield.orange": "Orange Shield", + "item.minecraft.shield.pink": "Pink Shield", + "item.minecraft.shield.purple": "Purple Shield", + "item.minecraft.shield.red": "Red Shield", + "item.minecraft.shield.white": "White Shield", + "item.minecraft.shield.yellow": "Yellow Shield", + "item.minecraft.shulker_shell": "Shulker Shell", + "item.minecraft.shulker_spawn_egg": "Shulker Spawn Egg", + "item.minecraft.sign": "Sign", + "item.minecraft.silence_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.silence_armor_trim_smithing_template.new": "Silence Armor Trim", + "item.minecraft.silverfish_spawn_egg": "Silverfish Spawn Egg", + "item.minecraft.skeleton_horse_spawn_egg": "Skeleton Horse Spawn Egg", + "item.minecraft.skeleton_spawn_egg": "Skeleton Spawn Egg", + "item.minecraft.skull_banner_pattern": "Banner Pattern", + "item.minecraft.skull_banner_pattern.desc": "Skull Charge", + "item.minecraft.skull_banner_pattern.new": "Skull Charge Banner Pattern", + "item.minecraft.skull_pottery_shard": "Skull Pottery Shard", + "item.minecraft.skull_pottery_sherd": "Skull Pottery Sherd", + "item.minecraft.slime_ball": "Slimeball", + "item.minecraft.slime_spawn_egg": "Slime Spawn Egg", + "item.minecraft.smithing_template": "Smithing Template", + "item.minecraft.smithing_template.applies_to": "Applies to:", + "item.minecraft.smithing_template.armor_trim.additions_slot_description": "Add ingot or crystal", + "item.minecraft.smithing_template.armor_trim.applies_to": "Armor", + "item.minecraft.smithing_template.armor_trim.base_slot_description": "Add a piece of armor", + "item.minecraft.smithing_template.armor_trim.ingredients": "Ingots & Crystals", + "item.minecraft.smithing_template.ingredients": "Ingredients:", + "item.minecraft.smithing_template.netherite_upgrade.additions_slot_description": "Add Netherite Ingot", + "item.minecraft.smithing_template.netherite_upgrade.applies_to": "Diamond Equipment", + "item.minecraft.smithing_template.netherite_upgrade.base_slot_description": "Add diamond armor, weapon, or tool", + "item.minecraft.smithing_template.netherite_upgrade.ingredients": "Netherite Ingot", + "item.minecraft.smithing_template.upgrade": "Upgrade: ", + "item.minecraft.sniffer_spawn_egg": "Sniffer Spawn Egg", + "item.minecraft.snort_pottery_shard": "Snort Pottery Shard", + "item.minecraft.snort_pottery_sherd": "Snort Pottery Sherd", + "item.minecraft.snout_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.snout_armor_trim_smithing_template.new": "Snout Armor Trim", + "item.minecraft.snow_golem_spawn_egg": "Snow Golem Spawn Egg", + "item.minecraft.snowball": "Snowball", + "item.minecraft.spectral_arrow": "Spectral Arrow", + "item.minecraft.spider_eye": "Spider Eye", + "item.minecraft.spider_spawn_egg": "Spider Spawn Egg", + "item.minecraft.spire_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.spire_armor_trim_smithing_template.new": "Spire Armor Trim", + "item.minecraft.splash_potion": "Splash Potion", + "item.minecraft.splash_potion.effect.awkward": "Awkward Splash Potion", + "item.minecraft.splash_potion.effect.empty": "Splash Uncraftable Potion", + "item.minecraft.splash_potion.effect.fire_resistance": "Splash Potion of Fire Resistance", + "item.minecraft.splash_potion.effect.harming": "Splash Potion of Harming", + "item.minecraft.splash_potion.effect.healing": "Splash Potion of Healing", + "item.minecraft.splash_potion.effect.infested": "Splash Potion of Infestation", + "item.minecraft.splash_potion.effect.invisibility": "Splash Potion of Invisibility", + "item.minecraft.splash_potion.effect.leaping": "Splash Potion of Leaping", + "item.minecraft.splash_potion.effect.levitation": "Splash Potion of Levitation", + "item.minecraft.splash_potion.effect.luck": "Splash Potion of Luck", + "item.minecraft.splash_potion.effect.mundane": "Mundane Splash Potion", + "item.minecraft.splash_potion.effect.night_vision": "Splash Potion of Night Vision", + "item.minecraft.splash_potion.effect.oozing": "Splash Potion of Oozing", + "item.minecraft.splash_potion.effect.poison": "Splash Potion of Poison", + "item.minecraft.splash_potion.effect.regeneration": "Splash Potion of Regeneration", + "item.minecraft.splash_potion.effect.slow_falling": "Splash Potion of Slow Falling", + "item.minecraft.splash_potion.effect.slowness": "Splash Potion of Slowness", + "item.minecraft.splash_potion.effect.strength": "Splash Potion of Strength", + "item.minecraft.splash_potion.effect.swiftness": "Splash Potion of Swiftness", + "item.minecraft.splash_potion.effect.thick": "Thick Splash Potion", + "item.minecraft.splash_potion.effect.turtle_master": "Splash Potion of the Turtle Master", + "item.minecraft.splash_potion.effect.water": "Splash Water Bottle", + "item.minecraft.splash_potion.effect.water_breathing": "Splash Potion of Water Breathing", + "item.minecraft.splash_potion.effect.weakness": "Splash Potion of Weakness", + "item.minecraft.splash_potion.effect.weaving": "Splash Potion of Weaving", + "item.minecraft.splash_potion.effect.wind_charged": "Splash Potion of Wind Charging", + "item.minecraft.spruce_boat": "Spruce Boat", + "item.minecraft.spruce_chest_boat": "Spruce Boat with Chest", + "item.minecraft.spyglass": "Spyglass", + "item.minecraft.squid_spawn_egg": "Squid Spawn Egg", + "item.minecraft.stick": "Stick", + "item.minecraft.stone_axe": "Stone Axe", + "item.minecraft.stone_hoe": "Stone Hoe", + "item.minecraft.stone_pickaxe": "Stone Pickaxe", + "item.minecraft.stone_shovel": "Stone Shovel", + "item.minecraft.stone_sword": "Stone Sword", + "item.minecraft.stray_spawn_egg": "Stray Spawn Egg", + "item.minecraft.strider_spawn_egg": "Strider Spawn Egg", + "item.minecraft.string": "String", + "item.minecraft.sugar": "Sugar", + "item.minecraft.suspicious_stew": "Suspicious Stew", + "item.minecraft.sweet_berries": "Sweet Berries", + "item.minecraft.tadpole_bucket": "Bucket of Tadpole", + "item.minecraft.tadpole_spawn_egg": "Tadpole Spawn Egg", + "item.minecraft.tide_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.tide_armor_trim_smithing_template.new": "Tide Armor Trim", + "item.minecraft.tipped_arrow": "Tipped Arrow", + "item.minecraft.tipped_arrow.effect.awkward": "Tipped Arrow", + "item.minecraft.tipped_arrow.effect.empty": "Uncraftable Tipped Arrow", + "item.minecraft.tipped_arrow.effect.fire_resistance": "Arrow of Fire Resistance", + "item.minecraft.tipped_arrow.effect.harming": "Arrow of Harming", + "item.minecraft.tipped_arrow.effect.healing": "Arrow of Healing", + "item.minecraft.tipped_arrow.effect.infested": "Arrow of Infestation", + "item.minecraft.tipped_arrow.effect.invisibility": "Arrow of Invisibility", + "item.minecraft.tipped_arrow.effect.leaping": "Arrow of Leaping", + "item.minecraft.tipped_arrow.effect.levitation": "Arrow of Levitation", + "item.minecraft.tipped_arrow.effect.luck": "Arrow of Luck", + "item.minecraft.tipped_arrow.effect.mundane": "Tipped Arrow", + "item.minecraft.tipped_arrow.effect.night_vision": "Arrow of Night Vision", + "item.minecraft.tipped_arrow.effect.oozing": "Arrow of Oozing", + "item.minecraft.tipped_arrow.effect.poison": "Arrow of Poison", + "item.minecraft.tipped_arrow.effect.regeneration": "Arrow of Regeneration", + "item.minecraft.tipped_arrow.effect.slow_falling": "Arrow of Slow Falling", + "item.minecraft.tipped_arrow.effect.slowness": "Arrow of Slowness", + "item.minecraft.tipped_arrow.effect.strength": "Arrow of Strength", + "item.minecraft.tipped_arrow.effect.swiftness": "Arrow of Swiftness", + "item.minecraft.tipped_arrow.effect.thick": "Tipped Arrow", + "item.minecraft.tipped_arrow.effect.turtle_master": "Arrow of the Turtle Master", + "item.minecraft.tipped_arrow.effect.water": "Arrow of Splashing", + "item.minecraft.tipped_arrow.effect.water_breathing": "Arrow of Water Breathing", + "item.minecraft.tipped_arrow.effect.weakness": "Arrow of Weakness", + "item.minecraft.tipped_arrow.effect.weaving": "Arrow of Weaving", + "item.minecraft.tipped_arrow.effect.wind_charged": "Arrow of Wind Charging", + "item.minecraft.tnt_minecart": "Minecart with TNT", + "item.minecraft.torchflower_seeds": "Torchflower Seeds", + "item.minecraft.totem_of_undying": "Totem of Undying", + "item.minecraft.trader_llama_spawn_egg": "Trader Llama Spawn Egg", + "item.minecraft.trial_key": "Trial Key", + "item.minecraft.trident": "Trident", + "item.minecraft.tropical_fish": "Tropical Fish", + "item.minecraft.tropical_fish_bucket": "Bucket of Tropical Fish", + "item.minecraft.tropical_fish_spawn_egg": "Tropical Fish Spawn Egg", + "item.minecraft.turtle_helmet": "Turtle Shell", + "item.minecraft.turtle_scute": "Turtle Scute", + "item.minecraft.turtle_spawn_egg": "Turtle Spawn Egg", + "item.minecraft.vex_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.vex_armor_trim_smithing_template.new": "Vex Armor Trim", + "item.minecraft.vex_spawn_egg": "Vex Spawn Egg", + "item.minecraft.villager_spawn_egg": "Villager Spawn Egg", + "item.minecraft.vindicator_spawn_egg": "Vindicator Spawn Egg", + "item.minecraft.wandering_trader_spawn_egg": "Wandering Trader Spawn Egg", + "item.minecraft.ward_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.ward_armor_trim_smithing_template.new": "Ward Armor Trim", + "item.minecraft.warden_spawn_egg": "Warden Spawn Egg", + "item.minecraft.warped_fungus_on_a_stick": "Warped Fungus on a Stick", + "item.minecraft.water_bucket": "Water Bucket", + "item.minecraft.wayfinder_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.wayfinder_armor_trim_smithing_template.new": "Wayfinder Armor Trim", + "item.minecraft.wheat": "Wheat", + "item.minecraft.wheat_seeds": "Wheat Seeds", + "item.minecraft.white_bundle": "White Bundle", + "item.minecraft.white_dye": "White Dye", + "item.minecraft.white_harness": "White Harness", + "item.minecraft.wild_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.wild_armor_trim_smithing_template.new": "Wild Armor Trim", + "item.minecraft.wind_charge": "Wind Charge", + "item.minecraft.witch_spawn_egg": "Witch Spawn Egg", + "item.minecraft.wither_skeleton_spawn_egg": "Wither Skeleton Spawn Egg", + "item.minecraft.wither_spawn_egg": "Wither Spawn Egg", + "item.minecraft.wolf_armor": "Wolf Armor", + "item.minecraft.wolf_spawn_egg": "Wolf Spawn Egg", + "item.minecraft.wooden_axe": "Wooden Axe", + "item.minecraft.wooden_hoe": "Wooden Hoe", + "item.minecraft.wooden_pickaxe": "Wooden Pickaxe", + "item.minecraft.wooden_shovel": "Wooden Shovel", + "item.minecraft.wooden_sword": "Wooden Sword", + "item.minecraft.writable_book": "Book and Quill", + "item.minecraft.written_book": "Written Book", + "item.minecraft.yellow_bundle": "Yellow Bundle", + "item.minecraft.yellow_dye": "Yellow Dye", + "item.minecraft.yellow_harness": "Yellow Harness", + "item.minecraft.zoglin_spawn_egg": "Zoglin Spawn Egg", + "item.minecraft.zombie_horse_spawn_egg": "Zombie Horse Spawn Egg", + "item.minecraft.zombie_spawn_egg": "Zombie Spawn Egg", + "item.minecraft.zombie_villager_spawn_egg": "Zombie Villager Spawn Egg", + "item.minecraft.zombified_piglin_spawn_egg": "Zombified Piglin Spawn Egg", + "item.modifiers.any": "When equipped:", + "item.modifiers.armor": "When worn:", + "item.modifiers.body": "When equipped:", + "item.modifiers.chest": "When on Chest:", + "item.modifiers.feet": "When on Feet:", + "item.modifiers.hand": "When held:", + "item.modifiers.head": "When on Head:", + "item.modifiers.legs": "When on Legs:", + "item.modifiers.mainhand": "When in Main Hand:", + "item.modifiers.offhand": "When in Off Hand:", + "item.modifiers.saddle": "When saddled:", + "item.nbt_tags": "NBT: %s tag(s)", + "item.op_block_warning.line1": "Warning:", + "item.op_block_warning.line2": "Use of this item might lead to command execution.", + "item.op_block_warning.line3": "Do not use unless you know the exact contents!", + "item.spawn_egg.peaceful": "Disabled in Peaceful", + "item.unbreakable": "Unbreakable", + "itemGroup.buildingBlocks": "Building Blocks", + "itemGroup.coloredBlocks": "Colored Blocks", + "itemGroup.combat": "Combat", + "itemGroup.consumables": "Consumables", + "itemGroup.crafting": "Crafting", + "itemGroup.foodAndDrink": "Food & Drinks", + "itemGroup.functional": "Functional Blocks", + "itemGroup.hotbar": "Saved Hotbars", + "itemGroup.ingredients": "Ingredients", + "itemGroup.inventory": "Survival Inventory", + "itemGroup.natural": "Natural Blocks", + "itemGroup.op": "Operator Utilities", + "itemGroup.redstone": "Redstone Blocks", + "itemGroup.search": "Search Items", + "itemGroup.spawnEggs": "Spawn Eggs", + "itemGroup.tools": "Tools & Utilities", + "jigsaw_block.final_state": "Turns into:", + "jigsaw_block.generate": "Generate", + "jigsaw_block.joint_label": "Joint Type:", + "jigsaw_block.joint.aligned": "Aligned", + "jigsaw_block.joint.rollable": "Rollable", + "jigsaw_block.keep_jigsaws": "Keep Jigsaws", + "jigsaw_block.levels": "Levels: %s", + "jigsaw_block.name": "Name:", + "jigsaw_block.placement_priority": "Placement Priority:", + "jigsaw_block.placement_priority.tooltip": "When this Jigsaw block connects to a piece, this is the order in which that piece is processed for connections in the wider structure.\n\nPieces will be processed in descending priority with insertion order breaking ties.", + "jigsaw_block.pool": "Target Pool:", + "jigsaw_block.selection_priority": "Selection Priority:", + "jigsaw_block.selection_priority.tooltip": "When the parent piece is being processed for connections, this is the order in which this Jigsaw block attempts to connect to its target piece.\n\nJigsaws will be processed in descending priority with random ordering breaking ties.", + "jigsaw_block.target": "Target Name:", + "jukebox_song.minecraft.5": "Samuel Åberg - 5", + "jukebox_song.minecraft.11": "C418 - 11", + "jukebox_song.minecraft.13": "C418 - 13", + "jukebox_song.minecraft.blocks": "C418 - blocks", + "jukebox_song.minecraft.cat": "C418 - cat", + "jukebox_song.minecraft.chirp": "C418 - chirp", + "jukebox_song.minecraft.creator": "Lena Raine - Creator", + "jukebox_song.minecraft.creator_music_box": "Lena Raine - Creator (Music Box)", + "jukebox_song.minecraft.far": "C418 - far", + "jukebox_song.minecraft.lava_chicken": "Hyper Potions - Lava Chicken", + "jukebox_song.minecraft.mall": "C418 - mall", + "jukebox_song.minecraft.mellohi": "C418 - mellohi", + "jukebox_song.minecraft.otherside": "Lena Raine - otherside", + "jukebox_song.minecraft.pigstep": "Lena Raine - Pigstep", + "jukebox_song.minecraft.precipice": "Aaron Cherof - Precipice", + "jukebox_song.minecraft.relic": "Aaron Cherof - Relic", + "jukebox_song.minecraft.stal": "C418 - stal", + "jukebox_song.minecraft.strad": "C418 - strad", + "jukebox_song.minecraft.tears": "Amos Roddy - Tears", + "jukebox_song.minecraft.wait": "C418 - wait", + "jukebox_song.minecraft.ward": "C418 - ward", + "key.advancements": "Advancements", + "key.attack": "Attack/Destroy", + "key.back": "Walk Backward", + "key.categories.creative": "Creative Mode", + "key.categories.gameplay": "Gameplay", + "key.categories.inventory": "Inventory", + "key.categories.misc": "Miscellaneous", + "key.categories.movement": "Movement", + "key.categories.multiplayer": "Multiplayer", + "key.categories.spectator": "Spectator", + "key.categories.ui": "Game Interface", + "key.category.minecraft.creative": "Creative Mode", + "key.category.minecraft.gameplay": "Gameplay", + "key.category.minecraft.inventory": "Inventory", + "key.category.minecraft.misc": "Miscellaneous", + "key.category.minecraft.movement": "Movement", + "key.category.minecraft.multiplayer": "Multiplayer", + "key.category.minecraft.spectator": "Spectator", + "key.chat": "Open Chat", + "key.command": "Open Command", + "key.drop": "Drop Selected Item", + "key.forward": "Walk Forward", + "key.fullscreen": "Toggle Fullscreen", + "key.hotbar.1": "Hotbar Slot 1", + "key.hotbar.2": "Hotbar Slot 2", + "key.hotbar.3": "Hotbar Slot 3", + "key.hotbar.4": "Hotbar Slot 4", + "key.hotbar.5": "Hotbar Slot 5", + "key.hotbar.6": "Hotbar Slot 6", + "key.hotbar.7": "Hotbar Slot 7", + "key.hotbar.8": "Hotbar Slot 8", + "key.hotbar.9": "Hotbar Slot 9", + "key.inventory": "Open/Close Inventory", + "key.jump": "Jump", + "key.keyboard.apostrophe": "'", + "key.keyboard.backslash": "\\", + "key.keyboard.backspace": "Backspace", + "key.keyboard.caps.lock": "Caps Lock", + "key.keyboard.comma": ",", + "key.keyboard.delete": "Delete", + "key.keyboard.down": "Down Arrow", + "key.keyboard.end": "End", + "key.keyboard.enter": "Enter", + "key.keyboard.equal": "=", + "key.keyboard.escape": "Escape", + "key.keyboard.f1": "F1", + "key.keyboard.f2": "F2", + "key.keyboard.f3": "F3", + "key.keyboard.f4": "F4", + "key.keyboard.f5": "F5", + "key.keyboard.f6": "F6", + "key.keyboard.f7": "F7", + "key.keyboard.f8": "F8", + "key.keyboard.f9": "F9", + "key.keyboard.f10": "F10", + "key.keyboard.f11": "F11", + "key.keyboard.f12": "F12", + "key.keyboard.f13": "F13", + "key.keyboard.f14": "F14", + "key.keyboard.f15": "F15", + "key.keyboard.f16": "F16", + "key.keyboard.f17": "F17", + "key.keyboard.f18": "F18", + "key.keyboard.f19": "F19", + "key.keyboard.f20": "F20", + "key.keyboard.f21": "F21", + "key.keyboard.f22": "F22", + "key.keyboard.f23": "F23", + "key.keyboard.f24": "F24", + "key.keyboard.f25": "F25", + "key.keyboard.grave.accent": "`", + "key.keyboard.home": "Home", + "key.keyboard.insert": "Insert", + "key.keyboard.keypad.0": "Keypad 0", + "key.keyboard.keypad.1": "Keypad 1", + "key.keyboard.keypad.2": "Keypad 2", + "key.keyboard.keypad.3": "Keypad 3", + "key.keyboard.keypad.4": "Keypad 4", + "key.keyboard.keypad.5": "Keypad 5", + "key.keyboard.keypad.6": "Keypad 6", + "key.keyboard.keypad.7": "Keypad 7", + "key.keyboard.keypad.8": "Keypad 8", + "key.keyboard.keypad.9": "Keypad 9", + "key.keyboard.keypad.add": "Keypad +", + "key.keyboard.keypad.decimal": "Keypad Decimal", + "key.keyboard.keypad.divide": "Keypad /", + "key.keyboard.keypad.enter": "Keypad Enter", + "key.keyboard.keypad.equal": "Keypad =", + "key.keyboard.keypad.multiply": "Keypad *", + "key.keyboard.keypad.subtract": "Keypad -", + "key.keyboard.left": "Left Arrow", + "key.keyboard.left.alt": "Left Alt", + "key.keyboard.left.bracket": "[", + "key.keyboard.left.control": "Left Control", + "key.keyboard.left.shift": "Left Shift", + "key.keyboard.left.win": "Left Win", + "key.keyboard.menu": "Menu", + "key.keyboard.minus": "-", + "key.keyboard.num.lock": "Num Lock", + "key.keyboard.page.down": "Page Down", + "key.keyboard.page.up": "Page Up", + "key.keyboard.pause": "Pause", + "key.keyboard.period": ".", + "key.keyboard.print.screen": "Print Screen", + "key.keyboard.right": "Right Arrow", + "key.keyboard.right.alt": "Right Alt", + "key.keyboard.right.bracket": "]", + "key.keyboard.right.control": "Right Control", + "key.keyboard.right.shift": "Right Shift", + "key.keyboard.right.win": "Right Win", + "key.keyboard.scroll.lock": "Scroll Lock", + "key.keyboard.semicolon": ";", + "key.keyboard.slash": "/", + "key.keyboard.space": "Space", + "key.keyboard.tab": "Tab", + "key.keyboard.unknown": "Not Bound", + "key.keyboard.up": "Up Arrow", + "key.keyboard.world.1": "World 1", + "key.keyboard.world.2": "World 2", + "key.left": "Strafe Left", + "key.loadToolbarActivator": "Load Hotbar Activator", + "key.mouse": "Button %1$s", + "key.mouse.left": "Left Button", + "key.mouse.middle": "Middle Button", + "key.mouse.right": "Right Button", + "key.pickItem": "Pick Block", + "key.playerlist": "List Players", + "key.quickActions": "Quick Actions", + "key.right": "Strafe Right", + "key.saveToolbarActivator": "Save Hotbar Activator", + "key.screenshot": "Take Screenshot", + "key.smoothCamera": "Toggle Cinematic Camera", + "key.sneak": "Sneak", + "key.socialInteractions": "Social Interactions Screen", + "key.spectatorHotbar": "Select On Hotbar", + "key.spectatorOutlines": "Highlight Players", + "key.sprint": "Sprint", + "key.swapOffhand": "Swap Item With Off Hand", + "key.togglePerspective": "Toggle Perspective", + "key.use": "Use Item/Place Block", + "known_server_link.announcements": "Announcements", + "known_server_link.community": "Community", + "known_server_link.community_guidelines": "Community Guidelines", + "known_server_link.feedback": "Feedback", + "known_server_link.forums": "Forums", + "known_server_link.news": "News", + "known_server_link.report_bug": "Report Server Bug", + "known_server_link.status": "Status", + "known_server_link.support": "Support", + "known_server_link.website": "Website", + "language.code": "en_us", + "language.name": "English", + "language.region": "United States", + "lanServer.otherPlayers": "Settings for Other Players", + "lanServer.port": "Port Number", + "lanServer.port.invalid": "Not a valid port.\nLeave the edit box empty or enter a number between 1024 and 65535.", + "lanServer.port.invalid.new": "Not a valid port.\nLeave the edit box empty or enter a number between %s and %s.", + "lanServer.port.unavailable": "Port not available.\nLeave the edit box empty or enter a different number between 1024 and 65535.", + "lanServer.port.unavailable.new": "Port not available.\nLeave the edit box empty or enter a different number between %s and %s.", + "lanServer.scanning": "Scanning for games on your local network", + "lanServer.start": "Start LAN World", + "lanServer.title": "LAN World", + "lectern.take_book": "Take Book", + "loading.progress": "%s%%", + "manageServer.add.title": "Add Server", + "manageServer.edit.title": "Edit Server Info", + "manageServer.enterIp": "Server Address", + "manageServer.enterName": "Server Name", + "manageServer.resourcePack": "Server Resource Packs", + "manageServer.resourcePack.disabled": "Disabled", + "manageServer.resourcePack.enabled": "Enabled", + "manageServer.resourcePack.prompt": "Prompt", + "mco.account.privacy.info": "Read more about Mojang and privacy laws", + "mco.account.privacy.info.button": "Read more about GDPR", + "mco.account.privacy.information": "Mojang implements certain procedures to help protect children and their privacy including complying with the Children's Online Privacy Protection Act (COPPA) and General Data Protection Regulation (GDPR).\n\nYou may need to obtain parental consent before accessing your Realms account.", + "mco.account.privacyinfo": "Mojang implements certain procedures to help protect children and their privacy including complying with the Children's Online Privacy Protection Act (COPPA) and General Data Protection Regulation (GDPR).\n\nYou may need to obtain parental consent before accessing your Realms account.\n\nIf you have an older Minecraft account (you log in with your username), you need to migrate the account to a Mojang account in order to access Realms.", + "mco.account.update": "Update account", + "mco.activity.noactivity": "No activity for the past %s day(s)", + "mco.activity.title": "Player activity", + "mco.backup.button.download": "Download Latest", + "mco.backup.button.reset": "Reset World", + "mco.backup.button.restore": "Restore", + "mco.backup.button.upload": "Upload World", + "mco.backup.changes.tooltip": "Changes", + "mco.backup.entry": "Backup (%s)", + "mco.backup.entry.description": "Description", + "mco.backup.entry.enabledPack": "Enabled Pack(s)", + "mco.backup.entry.gameDifficulty": "Game Difficulty", + "mco.backup.entry.gameMode": "Game Mode", + "mco.backup.entry.gameServerVersion": "Game Server Version", + "mco.backup.entry.name": "Name", + "mco.backup.entry.seed": "Seed", + "mco.backup.entry.templateName": "Template Name", + "mco.backup.entry.undefined": "Undefined Change", + "mco.backup.entry.uploaded": "Uploaded", + "mco.backup.entry.worldType": "World Type", + "mco.backup.generate.world": "Generate world", + "mco.backup.info.title": "Changes From Last Backup", + "mco.backup.narration": "Backup from %s", + "mco.backup.nobackups": "This Realm doesn't have any backups currently.", + "mco.backup.restoring": "Restoring your Realm", + "mco.backup.unknown": "UNKNOWN", + "mco.brokenworld.download": "Download", + "mco.brokenworld.downloaded": "Downloaded", + "mco.brokenworld.message.line1": "Please reset or select another world.", + "mco.brokenworld.message.line2": "You can also choose to download the world to singleplayer.", + "mco.brokenworld.minigame.title": "This minigame is no longer supported", + "mco.brokenworld.nonowner.error": "Please wait for the Realm owner to reset the world", + "mco.brokenworld.nonowner.title": "World is out of date", + "mco.brokenworld.play": "Play", + "mco.brokenworld.reset": "Reset", + "mco.brokenworld.title": "Your current world is no longer supported", + "mco.client.incompatible.msg.line1": "Your client is not compatible with Realms.", + "mco.client.incompatible.msg.line2": "Please use the most recent version of Minecraft.", + "mco.client.incompatible.msg.line3": "Realms is not compatible with snapshot versions.", + "mco.client.incompatible.title": "Client incompatible!", + "mco.client.outdated.stable.version": "Your client version (%s) is not compatible with Realms.\n\nPlease use the most recent version of Minecraft.", + "mco.client.unsupported.snapshot.version": "Your client version (%s) is not compatible with Realms.\n\nRealms is not available for this snapshot version.", + "mco.compatibility.downgrade": "Downgrade", + "mco.compatibility.downgrade.description": "This world was last played in version %s; you are on version %s. Downgrading a world could cause corruption - we cannot guarantee that it will load or work.\n\nA backup of your world will be saved under \"World Backups\". Please restore your world if needed.", + "mco.compatibility.incompatible.popup.title": "Incompatible version", + "mco.compatibility.incompatible.releaseType.popup.message": "The world you are trying to join is incompatible with the version you are on.", + "mco.compatibility.incompatible.series.popup.message": "This world was last played in version %s; you are on version %s.\n\nThese series are not compatible with each other. A new world is needed to play on this version.", + "mco.compatibility.unverifiable.message": "The version this world was last played in could not be verified. If the world gets upgraded or downgraded, a backup will be automatically created and saved under \"World Backups\".", + "mco.compatibility.unverifiable.title": "Compatibility not verifiable", + "mco.compatibility.upgrade": "Upgrade", + "mco.compatibility.upgrade.description": "This world was last played in version %s; you are on version %s.\n\nA backup of your world will be saved under \"World Backups\".\n\nPlease restore your world if needed.", + "mco.compatibility.upgrade.friend.description": "This world was last played in version %s; you are on version %s.\n\nA backup of the world will be saved under \"World Backups\".\n\nThe owner of the Realm can restore the world if needed.", + "mco.compatibility.upgrade.title": "Do you really want to upgrade this world?", + "mco.configure.current.minigame": "Current", + "mco.configure.world.activityfeed.disabled": "Player feed temporarily disabled", + "mco.configure.world.backup": "World Backups", + "mco.configure.world.buttons.activity": "Player activity", + "mco.configure.world.buttons.close": "Temporarily Close Realm", + "mco.configure.world.buttons.delete": "Delete", + "mco.configure.world.buttons.done": "Done", + "mco.configure.world.buttons.edit": "Settings", + "mco.configure.world.buttons.invite": "Invite Player", + "mco.configure.world.buttons.moreoptions": "More options", + "mco.configure.world.buttons.newworld": "New World", + "mco.configure.world.buttons.open": "Reopen Realm", + "mco.configure.world.buttons.options": "World Options", + "mco.configure.world.buttons.players": "Players", + "mco.configure.world.buttons.region_preference": "Select Region...", + "mco.configure.world.buttons.resetworld": "Reset World", + "mco.configure.world.buttons.save": "Save", + "mco.configure.world.buttons.settings": "Settings", + "mco.configure.world.buttons.subscription": "Subscription", + "mco.configure.world.buttons.switchminigame": "Switch Minigame", + "mco.configure.world.close.question.line1": "You can temporarily close your Realm, preventing play while you make adjustments. Open it back up when you're ready. \n\nThis does not cancel your Realms Subscription.", + "mco.configure.world.close.question.line2": "Are you sure you want to continue?", + "mco.configure.world.close.question.title": "Need to make changes without disruption?", + "mco.configure.world.closing": "Temporarily closing the Realm...", + "mco.configure.world.commandBlocks": "Command Blocks", + "mco.configure.world.delete.button": "Delete Realm", + "mco.configure.world.delete.question.line1": "Your Realm will be permanently deleted", + "mco.configure.world.delete.question.line2": "Are you sure you want to continue?", + "mco.configure.world.description": "Realm Description", + "mco.configure.world.edit.slot.name": "World Name", + "mco.configure.world.edit.subscreen.adventuremap": "Some settings are disabled since your current world is an adventure", + "mco.configure.world.edit.subscreen.experience": "Some settings are disabled since your current world is an experience", + "mco.configure.world.edit.subscreen.inspiration": "Some settings are disabled since your current world is an inspiration", + "mco.configure.world.forceGameMode": "Force Game Mode", + "mco.configure.world.invite.narration": "You have %s new invite(s)", + "mco.configure.world.invite.profile.name": "Name", + "mco.configure.world.invited": "Invited", + "mco.configure.world.invited.number": "Invited (%s)", + "mco.configure.world.invites.normal.tooltip": "Normal User", + "mco.configure.world.invites.ops.tooltip": "Operator", + "mco.configure.world.invites.remove.tooltip": "Remove", + "mco.configure.world.leave.question.line1": "If you leave this Realm you won't see it unless you are invited again", + "mco.configure.world.leave.question.line2": "Are you sure you want to continue?", + "mco.configure.world.loading": "Loading Realm", + "mco.configure.world.location": "Location", + "mco.configure.world.minigame": "Current: %s", + "mco.configure.world.name": "Realm Name", + "mco.configure.world.opening": "Opening the Realm...", + "mco.configure.world.players.error": "A player with the provided name does not exist", + "mco.configure.world.players.invite.duplicate": "A player with the provided name has already been invited to the Realm", + "mco.configure.world.players.inviting": "Inviting player...", + "mco.configure.world.players.title": "Players", + "mco.configure.world.pvp": "PVP", + "mco.configure.world.region_preference": "Region Preference", + "mco.configure.world.region_preference.title": "Region Preference Selection", + "mco.configure.world.reset.question.line1": "Your world will be regenerated and your current world will be lost", + "mco.configure.world.reset.question.line2": "Are you sure you want to continue?", + "mco.configure.world.resourcepack.question": "You need a custom resource pack to play on this Realm\n\nDo you want to download it and play?", + "mco.configure.world.resourcepack.question.line1": "You need a custom resource pack to play on this Realm", + "mco.configure.world.resourcepack.question.line2": "Do you want to download it and play?", + "mco.configure.world.restore.download.question.line1": "The world will be downloaded and added to your single player worlds.", + "mco.configure.world.restore.download.question.line2": "Do you want to continue?", + "mco.configure.world.restore.question.line1": "Your world will be restored to date '%s' (%s)", + "mco.configure.world.restore.question.line2": "Are you sure you want to continue?", + "mco.configure.world.settings.expired": "You cannot edit settings of an expired Realm", + "mco.configure.world.settings.title": "Settings", + "mco.configure.world.slot": "World %s", + "mco.configure.world.slot.empty": "Empty", + "mco.configure.world.slot.switch.question.line1": "Your Realm will be switched to another world", + "mco.configure.world.slot.switch.question.line2": "Are you sure you want to continue?", + "mco.configure.world.slot.tooltip": "Switch to world", + "mco.configure.world.slot.tooltip.active": "Join", + "mco.configure.world.slot.tooltip.minigame": "Switch to minigame", + "mco.configure.world.spawn_toggle.message": "Turning this option off will remove all existing entities of that type", + "mco.configure.world.spawn_toggle.message.npc": "Turning this option off will remove all existing entities of that type, like Villagers", + "mco.configure.world.spawn_toggle.title": "Warning!", + "mco.configure.world.spawnAnimals": "Spawn Animals", + "mco.configure.world.spawnMonsters": "Spawn Monsters", + "mco.configure.world.spawnNPCs": "Spawn NPCs", + "mco.configure.world.spawnProtection": "Spawn Protection", + "mco.configure.world.status": "Status", + "mco.configure.world.subscription.day": "day", + "mco.configure.world.subscription.days": "days", + "mco.configure.world.subscription.expired": "Expired", + "mco.configure.world.subscription.extend": "Extend Subscription", + "mco.configure.world.subscription.less_than_a_day": "Less than a day", + "mco.configure.world.subscription.month": "month", + "mco.configure.world.subscription.months": "months", + "mco.configure.world.subscription.recurring.daysleft": "Renewed automatically in", + "mco.configure.world.subscription.recurring.info": "Changes made to your Realms subscription such as stacking time or turning off recurring billing will not be reflected until your next bill date.", + "mco.configure.world.subscription.remaining.days": "%1$s day(s)", + "mco.configure.world.subscription.remaining.months": "%1$s month(s)", + "mco.configure.world.subscription.remaining.months.days": "%1$s month(s), %2$s day(s)", + "mco.configure.world.subscription.start": "Start Date", + "mco.configure.world.subscription.tab": "Subscription", + "mco.configure.world.subscription.timeleft": "Time Left", + "mco.configure.world.subscription.title": "Your Subscription", + "mco.configure.world.subscription.unknown": "Unknown", + "mco.configure.world.switch.slot": "Create World", + "mco.configure.world.switch.slot.subtitle": "This world is empty. Choose how to create your world", + "mco.configure.world.title": "Configure Realm:", + "mco.configure.world.uninvite.player": "Are you sure that you want to uninvite '%s'?", + "mco.configure.world.uninvite.question": "Are you sure that you want to uninvite", + "mco.configure.worlds.title": "Worlds", + "mco.connect.authorizing": "Logging in...", + "mco.connect.connecting": "Connecting to the Realm...", + "mco.connect.failed": "Failed to connect to the Realm", + "mco.connect.region": "Server region: %s", + "mco.connect.success": "Done", + "mco.create.world": "Create", + "mco.create.world.error": "You must enter a name!", + "mco.create.world.failed": "Failed to create world!", + "mco.create.world.reset.title": "Creating world...", + "mco.create.world.skip": "Skip", + "mco.create.world.subtitle": "Optionally, select what world to put on your new Realm", + "mco.create.world.wait": "Creating the Realm...", + "mco.download.cancelled": "Download cancelled", + "mco.download.confirmation.line1": "The world you are going to download is larger than %s", + "mco.download.confirmation.line2": "You won't be able to upload this world to your Realm again", + "mco.download.confirmation.oversized": "The world you are going to download is larger than %s\n\nYou won't be able to upload this world to your Realm again", + "mco.download.done": "Download done", + "mco.download.downloading": "Downloading", + "mco.download.extracting": "Extracting", + "mco.download.failed": "Download failed", + "mco.download.percent": "%s %%", + "mco.download.preparing": "Preparing download", + "mco.download.resourcePack.fail": "Failed to download resource pack!", + "mco.download.speed": "(%s/s)", + "mco.download.speed.narration": "%s/s", + "mco.download.title": "Downloading Latest World", + "mco.error.invalid.session.message": "Please try restarting Minecraft", + "mco.error.invalid.session.title": "Invalid Session", + "mco.errorMessage.6001": "Client outdated", + "mco.errorMessage.6002": "Terms of service not accepted", + "mco.errorMessage.6003": "Download limit reached", + "mco.errorMessage.6004": "Upload limit reached", + "mco.errorMessage.6005": "World locked", + "mco.errorMessage.6006": "World is out of date", + "mco.errorMessage.6007": "User in too many Realms", + "mco.errorMessage.6008": "Invalid Realm name", + "mco.errorMessage.6009": "Invalid Realm description", + "mco.errorMessage.connectionFailure": "An error occurred. Please try again later.", + "mco.errorMessage.generic": "An error occurred: ", + "mco.errorMessage.initialize.failed": "Failed to initialize Realm", + "mco.errorMessage.noDetails": "No error details provided", + "mco.errorMessage.realmsService": "An error occurred (%s):", + "mco.errorMessage.realmsService.configurationError": "An unexpected error occurred while editing world options", + "mco.errorMessage.realmsService.connectivity": "Could not connect to Realms: %s", + "mco.errorMessage.realmsService.realmsError": "Realms (%s):", + "mco.errorMessage.realmsService.unknownCompatibility": "Could not check compatible version. Got response: %s", + "mco.errorMessage.retry": "Retry operation", + "mco.errorMessage.serviceBusy": "Realms is busy at the moment.\nPlease try connecting to your Realm again in a couple of minutes.", + "mco.gui.button": "Button", + "mco.gui.ok": "Ok", + "mco.info": "Info!", + "mco.invited.player.narration": "Invited player %s", + "mco.invites.button.accept": "Accept", + "mco.invites.button.reject": "Reject", + "mco.invites.nopending": "No pending invites!", + "mco.invites.pending": "New invite(s)!", + "mco.invites.title": "Pending Invites", + "mco.minigame.world.changeButton": "Select Another Minigame", + "mco.minigame.world.info.line1": "This will temporarily replace your world with a minigame!", + "mco.minigame.world.info.line2": "You can later return to your original world without losing anything.", + "mco.minigame.world.noSelection": "Please make a selection", + "mco.minigame.world.restore": "Ending Minigame...", + "mco.minigame.world.restore.question.line1": "The minigame will end and your Realm will be restored.", + "mco.minigame.world.restore.question.line2": "Are you sure you want to continue?", + "mco.minigame.world.selected": "Selected Minigame:", + "mco.minigame.world.slot.screen.title": "Switching World...", + "mco.minigame.world.startButton": "Switch", + "mco.minigame.world.starting.screen.title": "Starting Minigame...", + "mco.minigame.world.stopButton": "End Minigame", + "mco.minigame.world.switch.new": "Select another minigame?", + "mco.minigame.world.switch.title": "Switch Minigame", + "mco.minigame.world.title": "Switch Realm to Minigame", + "mco.news": "Realms news", + "mco.notification.dismiss": "Dismiss", + "mco.notification.transferSubscription.buttonText": "Transfer Now", + "mco.notification.transferSubscription.message": "Java Realms subscriptions are moving to the Microsoft Store. Do not let your subscription expire!\nTransfer now and get 30 days of Realms for free.\nGo to Profile on minecraft.net to transfer your subscription.", + "mco.notification.visitUrl.buttonText.default": "Open Link", + "mco.notification.visitUrl.message.default": "Please visit the link below", + "mco.onlinePlayers": "Online Players", + "mco.play.button.realm.closed": "Realm is closed", + "mco.question": "Question", + "mco.reset.world.adventure": "Adventures", + "mco.reset.world.experience": "Experiences", + "mco.reset.world.generate": "New World", + "mco.reset.world.inspiration": "Inspiration", + "mco.reset.world.resetting.screen.title": "Resetting world...", + "mco.reset.world.seed": "Seed (Optional)", + "mco.reset.world.template": "World Templates", + "mco.reset.world.title": "Reset World", + "mco.reset.world.upload": "Upload world", + "mco.reset.world.warning": "This will replace the current world of your Realm", + "mco.selectServer.buy": "Buy a Realm!", + "mco.selectServer.close": "Close", + "mco.selectServer.closed": "Deactivated Realm", + "mco.selectServer.closeserver": "Close Realm", + "mco.selectServer.configure": "Configure", + "mco.selectServer.configureRealm": "Configure Realm", + "mco.selectServer.create": "Create Realm", + "mco.selectServer.create.subtitle": "Select what world to put on your new Realm", + "mco.selectServer.expired": "Expired Realm", + "mco.selectServer.expiredList": "Your subscription has expired", + "mco.selectServer.expiredRenew": "Renew", + "mco.selectServer.expiredSubscribe": "Subscribe", + "mco.selectServer.expiredTrial": "Your trial has ended", + "mco.selectServer.expires.day": "Expires in a day", + "mco.selectServer.expires.days": "Expires in %s days", + "mco.selectServer.expires.soon": "Expires soon", + "mco.selectServer.leave": "Leave Realm", + "mco.selectServer.loading": "Loading Realms List", + "mco.selectServer.mapOnlySupportedForVersion": "This map is unsupported in %s", + "mco.selectServer.minigame": "Minigame:", + "mco.selectServer.minigameName": "Minigame: %s", + "mco.selectServer.minigameNotSupportedInVersion": "Can't play this minigame in %s", + "mco.selectServer.noRealms": "You don't seem to have a Realm. Add a Realm to play together with your friends.", + "mco.selectServer.note": "Note:", + "mco.selectServer.open": "Open Realm", + "mco.selectServer.openserver": "Open Realm", + "mco.selectServer.play": "Play", + "mco.selectServer.popup": "Realms is a safe, simple way to enjoy an online Minecraft world with up to ten friends at a time. It supports loads of minigames and plenty of custom worlds! Only the owner of the realm needs to pay.", + "mco.selectServer.purchase": "Add Realm", + "mco.selectServer.trial": "Get a Trial!", + "mco.selectServer.uninitialized": "Click to start your new Realm!", + "mco.snapshot.createSnapshotPopup.text": "You are about to create a free Snapshot Realm that will be paired with your paid Realms subscription. This new Snapshot Realm will be accessible for as long as the paid subscription is active. Your paid Realm will not be affected.", + "mco.snapshot.createSnapshotPopup.title": "Create Snapshot Realm?", + "mco.snapshot.creating": "Creating Snapshot Realm...", + "mco.snapshot.description": "Paired with \"%s\"", + "mco.snapshot.friendsRealm.downgrade": "You need to be on version %s to join this Realm", + "mco.snapshot.friendsRealm.upgrade": "%s needs to upgrade their Realm before you can play from this version", + "mco.snapshot.paired": "This Snapshot Realm is paired with \"%s\"", + "mco.snapshot.parent.tooltip": "Use the latest release of Minecraft to play on this Realm", + "mco.snapshot.start": "Start free Snapshot Realm", + "mco.snapshot.subscription.info": "This is a Snapshot Realm that is paired to the subscription of your Realm '%s'. It will stay active for as long as its paired Realm is.", + "mco.snapshot.tooltip": "Use Snapshot Realms to get a sneak peek at upcoming versions of Minecraft, which might include new features and other changes.\n\nYou can find your normal Realms in the release version of the game.", + "mco.snapshotRealmsPopup.message": "Realms is now available in Snapshots starting with Snapshot 23w41a. Every Realms subscription comes with a free Snapshot Realm that is separate from your normal Java Realm!", + "mco.snapshotRealmsPopup.title": "Realms is now available in Snapshots", + "mco.snapshotRealmsPopup.urlText": "Learn More", + "mco.template.button.publisher": "Publisher", + "mco.template.button.select": "Select", + "mco.template.button.trailer": "Trailer", + "mco.template.default.name": "World template", + "mco.template.info.tooltip": "Publisher website", + "mco.template.name": "Template", + "mco.template.select.failure": "We couldn't retrieve the list of content for this category.\nPlease check your internet connection, or try again later.", + "mco.template.select.narrate.authors": "Authors: %s", + "mco.template.select.narrate.version": "version %s", + "mco.template.select.none": "Oops, it looks like this content category is currently empty.\nPlease check back later for new content, or if you're a creator,\n%s.", + "mco.template.select.none.linkTitle": "consider submitting something yourself", + "mco.template.title": "World templates", + "mco.template.title.minigame": "Minigames", + "mco.template.trailer.tooltip": "Map trailer", + "mco.terms.buttons.agree": "Agree", + "mco.terms.buttons.disagree": "Don't agree", + "mco.terms.sentence.1": "I agree to the Minecraft Realms", + "mco.terms.sentence.2": "Terms of Service", + "mco.terms.title": "Realms Terms of Service", + "mco.time.daysAgo": "%1$s day(s) ago", + "mco.time.hoursAgo": "%1$s hour(s) ago", + "mco.time.minutesAgo": "%1$s minute(s) ago", + "mco.time.now": "right now", + "mco.time.secondsAgo": "%1$s second(s) ago", + "mco.trial.message.line1": "Want to get your own Realm?", + "mco.trial.message.line2": "Click here for more info!", + "mco.upload.button.name": "Upload", + "mco.upload.cancelled": "Upload cancelled", + "mco.upload.close.failure": "Could not close your Realm. Please try again later.", + "mco.upload.done": "Upload done", + "mco.upload.entry.cheats": "%1$s, %2$s", + "mco.upload.entry.commands": "%1$s, %2$s", + "mco.upload.entry.id": "%1$s (%2$s)", + "mco.upload.failed": "Upload failed! (%s)", + "mco.upload.failed.too_big.description": "The selected world is too big. The maximum allowed size is %s.", + "mco.upload.failed.too_big.title": "World too big", + "mco.upload.hardcore": "Hardcore worlds can't be uploaded!", + "mco.upload.percent": "%s %%", + "mco.upload.preparing": "Preparing your world", + "mco.upload.select.world.none": "No singleplayer worlds found!", + "mco.upload.select.world.subtitle": "Please select a singleplayer world to upload", + "mco.upload.select.world.title": "Upload World", + "mco.upload.size.failure.line1": "'%s' is too big!", + "mco.upload.size.failure.line2": "It is %s. The maximum allowed size is %s.", + "mco.upload.uploading": "Uploading '%s'", + "mco.upload.verifying": "Verifying your world", + "mco.version": "Version: %s", + "mco.warning": "Warning!", + "mco.worldSlot.minigame": "Minigame", + "menu.custom_options": "Custom Options...", + "menu.custom_options.title": "Custom Options", + "menu.custom_options.tooltip": "Note: Custom options are provided by third-party servers and/or content.\nHandle with care!", + "menu.custom_screen_info.button_narration": "This is a custom screen. Learn more.", + "menu.custom_screen_info.contents": "The contents of this screen are controlled by third-party servers and maps that are not owned, operated, or supervised by Mojang Studios or Microsoft.\n\nHandle with care! Always be careful when following links and never give away your personal information, including login details.\n\nIf this screen prevents you from playing, you can also disconnect from the current server by using the button below.", + "menu.custom_screen_info.disconnect": "Custom screen rejected", + "menu.custom_screen_info.title": "Note about custom screens", + "menu.custom_screen_info.tooltip": "This is a custom screen. Click here to learn more.", + "menu.disconnect": "Disconnect", + "menu.feedback": "Feedback...", + "menu.feedback.title": "Feedback", + "menu.game": "Game Menu", + "menu.modded": " (Modded)", + "menu.multiplayer": "Multiplayer", + "menu.online": "Minecraft Realms", + "menu.options": "Options...", + "menu.paused": "Game Paused", + "menu.playdemo": "Play Demo World", + "menu.playerReporting": "Player Reporting", + "menu.preparingSpawn": "Preparing spawn area: %s%%", + "menu.quick_actions": "Quick Actions...", + "menu.quick_actions.title": "Quick Actions", + "menu.quit": "Quit Game", + "menu.reportBugs": "Report Bugs", + "menu.resetdemo": "Reset Demo World", + "menu.returnToGame": "Back to Game", + "menu.returnToMenu": "Save and Quit to Title", + "menu.savingChunks": "Saving chunks", + "menu.savingLevel": "Saving world", + "menu.sendFeedback": "Give Feedback", + "menu.server_links": "Server Links...", + "menu.server_links.title": "Server Links", + "menu.shareToLan": "Open to LAN", + "menu.singleplayer": "Singleplayer", + "menu.working": "Working...", + "merchant.deprecated": "Villagers restock up to two times per day.", + "merchant.level.1": "Novice", + "merchant.level.2": "Apprentice", + "merchant.level.3": "Journeyman", + "merchant.level.4": "Expert", + "merchant.level.5": "Master", + "merchant.title": "%s - %s", + "merchant.trades": "Trades", + "mirror.front_back": "↑ ↓", + "mirror.left_right": "← →", + "mirror.none": "|", + "mount.onboard": "Press %1$s to Dismount", + "multiplayer.applyingPack": "Applying resource pack", + "multiplayer.codeOfConduct.check": "Do not notify again for this Code of Conduct", + "multiplayer.codeOfConduct.title": "Server Code of Conduct", + "multiplayer.confirm_command.parse_errors": "You are trying to execute an unrecognized or invalid command.\nAre you sure?\nCommand: %s", + "multiplayer.confirm_command.permissions_required": "You are trying to execute a command that requires elevated permissions.\nThis might negatively affect your game.\nAre you sure?\nCommand: %s", + "multiplayer.confirm_command.run_command": "Run Command", + "multiplayer.confirm_command.signature_required": "You are trying to execute a command that will send chat messages using your name.\nIt can only be run from the chat screen\nCommand: %s", + "multiplayer.confirm_command.suggest_command": "Copy to Chat Screen", + "multiplayer.confirm_command.title": "Confirm Command Execution", + "multiplayer.disconnect.authservers_down": "Authentication servers are down. Please try again later. Sorry!", + "multiplayer.disconnect.bad_chat_index": "Detected a missed or reordered chat message from the server", + "multiplayer.disconnect.banned": "You are banned from this server", + "multiplayer.disconnect.banned_ip.expiration": "\nYour ban will be removed on %s", + "multiplayer.disconnect.banned_ip.reason": "Your IP address is banned from this server.\nReason: %s", + "multiplayer.disconnect.banned.expiration": "\nYour ban will be removed on %s", + "multiplayer.disconnect.banned.reason": "You are banned from this server.\nReason: %s", + "multiplayer.disconnect.banned.reason.default": "Banned by an operator.", + "multiplayer.disconnect.chat_validation_failed": "Chat message validation failure", + "multiplayer.disconnect.code_of_conduct": "Server requires accepting the Code of Conduct", + "multiplayer.disconnect.configuration_error": "Unexpected error during configuration", + "multiplayer.disconnect.duplicate_login": "You logged in from another location", + "multiplayer.disconnect.expired_public_key": "Expired profile public key. Check that your system time is synchronized, and try restarting your game.", + "multiplayer.disconnect.flying": "Flying is not enabled on this server", + "multiplayer.disconnect.generic": "Disconnected", + "multiplayer.disconnect.idling": "You have been idle for too long!", + "multiplayer.disconnect.illegal_characters": "Illegal characters in chat", + "multiplayer.disconnect.incompatible": "Incompatible client! Please use %s", + "multiplayer.disconnect.invalid_entity_attacked": "Attempting to attack an invalid entity", + "multiplayer.disconnect.invalid_packet": "The server sent an invalid packet", + "multiplayer.disconnect.invalid_player_data": "Invalid player data", + "multiplayer.disconnect.invalid_player_movement": "Invalid move player packet received", + "multiplayer.disconnect.invalid_public_key_signature": "Invalid signature for profile public key.\nTry restarting your game.", + "multiplayer.disconnect.invalid_public_key_signature.new": "Invalid signature for profile public key.\nTry restarting your game.", + "multiplayer.disconnect.invalid_vehicle_movement": "Invalid move vehicle packet received", + "multiplayer.disconnect.ip_banned": "You have been IP banned from this server", + "multiplayer.disconnect.kicked": "Kicked by an operator", + "multiplayer.disconnect.missing_tags": "Incomplete set of tags received from the server.\nPlease contact a server operator.", + "multiplayer.disconnect.name_taken": "That name is already taken", + "multiplayer.disconnect.not_whitelisted": "You are not white-listed on this server!", + "multiplayer.disconnect.out_of_order_chat": "Out-of-order chat packet received. Did your system time change?", + "multiplayer.disconnect.outdated_client": "Incompatible client! Please use %s", + "multiplayer.disconnect.outdated_server": "Incompatible client! Please use %s", + "multiplayer.disconnect.server_full": "The server is full!", + "multiplayer.disconnect.server_shutdown": "Server closed", + "multiplayer.disconnect.slow_login": "Took too long to log in", + "multiplayer.disconnect.too_many_pending_chats": "Too many unacknowledged chat messages", + "multiplayer.disconnect.transfers_disabled": "This server does not accept transfers", + "multiplayer.disconnect.unexpected_query_response": "Unexpected custom data from client", + "multiplayer.disconnect.unsigned_chat": "Received a chat packet with a missing or invalid signature.", + "multiplayer.disconnect.unverified_username": "Failed to verify username!", + "multiplayer.downloadingStats": "Retrieving statistics...", + "multiplayer.downloadingTerrain": "Loading terrain...", + "multiplayer.lan.server_found": "New server found: %s", + "multiplayer.message_not_delivered": "Can't deliver chat message; check server logs: %s", + "multiplayer.player.joined": "%s joined the game", + "multiplayer.player.joined.renamed": "%s (formerly known as %s) joined the game", + "multiplayer.player.left": "%s left the game", + "multiplayer.player.list.hp": "%shp", + "multiplayer.player.list.narration": "Online players: %s", + "multiplayer.requiredTexturePrompt.disconnect": "This server requires a custom resource pack", + "multiplayer.requiredTexturePrompt.line1": "This server requires the use of a custom resource pack.", + "multiplayer.requiredTexturePrompt.line2": "Rejecting this custom resource pack will disconnect you from this server.", + "multiplayer.socialInteractions.not_available": "Social Interactions are only available in Multiplayer worlds", + "multiplayer.status.and_more": "... and %s more ...", + "multiplayer.status.anonymous_player": "Anonymous Player", + "multiplayer.status.cancelled": "Cancelled", + "multiplayer.status.cannot_connect": "Can't connect to server", + "multiplayer.status.cannot_resolve": "Can't resolve hostname", + "multiplayer.status.finished": "Finished", + "multiplayer.status.incompatible": "Incompatible version!", + "multiplayer.status.motd.narration": "Message of the day: %s", + "multiplayer.status.no_connection": "(no connection)", + "multiplayer.status.old": "Old", + "multiplayer.status.online": "Online", + "multiplayer.status.ping": "%s ms", + "multiplayer.status.ping.narration": "Ping %s milliseconds", + "multiplayer.status.pinging": "Pinging...", + "multiplayer.status.player_count": "%s/%s", + "multiplayer.status.player_count.narration": "%s out of %s players online", + "multiplayer.status.quitting": "Quitting", + "multiplayer.status.request_handled": "Status request has been handled", + "multiplayer.status.unknown": "???", + "multiplayer.status.unrequested": "Received unrequested status", + "multiplayer.status.version.narration": "Server version: %s", + "multiplayer.stopSleeping": "Leave Bed", + "multiplayer.texturePrompt.failure.line1": "Server resource pack couldn't be applied", + "multiplayer.texturePrompt.failure.line2": "Any functionality that requires custom resources might not work as expected", + "multiplayer.texturePrompt.line1": "This server recommends the use of a custom resource pack.", + "multiplayer.texturePrompt.line2": "Would you like to download and install it automagically?", + "multiplayer.texturePrompt.serverPrompt": "%s\n\nMessage from server:\n%s", + "multiplayer.title": "Play Multiplayer", + "multiplayer.unsecureserver.toast": "Messages sent on this server may be modified and might not reflect the original message", + "multiplayer.unsecureserver.toast.title": "Chat messages can't be verified", + "multiplayerWarning.check": "Do not show this screen again", + "multiplayerWarning.header": "Caution: Third-Party Online Play", + "multiplayerWarning.message": "Caution: Online play is offered by third-party servers that are not owned, operated, or supervised by Mojang Studios or Microsoft. During online play, you may be exposed to unmoderated chat messages or other types of user-generated content that may not be suitable for everyone.", + "music.game.a_familiar_room": "Aaron Cherof - A Familiar Room", + "music.game.an_ordinary_day": "Kumi Tanioka - An Ordinary Day", + "music.game.ancestry": "Lena Raine - Ancestry", + "music.game.below_and_above": "Amos Roddy - Below and Above", + "music.game.broken_clocks": "Amos Roddy - Broken Clocks", + "music.game.bromeliad": "Aaron Cherof - Bromeliad", + "music.game.clark": "C418 - Clark", + "music.game.comforting_memories": "Kumi Tanioka - Comforting Memories", + "music.game.creative.aria_math": "C418 - Aria Math", + "music.game.creative.biome_fest": "C418 - Biome Fest", + "music.game.creative.blind_spots": "C418 - Blind Spots", + "music.game.creative.dreiton": "C418 - Dreiton", + "music.game.creative.haunt_muskie": "C418 - Haunt Muskie", + "music.game.creative.taswell": "C418 - Taswell", + "music.game.crescent_dunes": "Aaron Cherof - Crescent Dunes", + "music.game.danny": "C418 - Danny", + "music.game.deeper": "Lena Raine - Deeper", + "music.game.dry_hands": "C418 - Dry Hands", + "music.game.echo_in_the_wind": "Aaron Cherof - Echo in the Wind", + "music.game.eld_unknown": "Lena Raine - Eld Unknown", + "music.game.end.alpha": "C418 - Alpha", + "music.game.end.boss": "C418 - Boss", + "music.game.end.the_end": "C418 - The End", + "music.game.endless": "Lena Raine - Endless", + "music.game.featherfall": "Aaron Cherof - Featherfall", + "music.game.fireflies": "Amos Roddy - Fireflies", + "music.game.floating_dream": "Kumi Tanioka - Floating Dream", + "music.game.haggstrom": "C418 - Haggstrom", + "music.game.infinite_amethyst": "Lena Raine - Infinite Amethyst", + "music.game.key": "C418 - Key", + "music.game.komorebi": "Kumi Tanioka - komorebi", + "music.game.left_to_bloom": "Lena Raine - Left to Bloom", + "music.game.lilypad": "Amos Roddy - Lilypad", + "music.game.living_mice": "C418 - Living Mice", + "music.game.mice_on_venus": "C418 - Mice on Venus", + "music.game.minecraft": "C418 - Minecraft", + "music.game.nether.ballad_of_the_cats": "C418 - Ballad of the Cats", + "music.game.nether.concrete_halls": "C418 - Concrete Halls", + "music.game.nether.crimson_forest.chrysopoeia": "Lena Raine - Chrysopoeia", + "music.game.nether.dead_voxel": "C418 - Dead Voxel", + "music.game.nether.nether_wastes.rubedo": "Lena Raine - Rubedo", + "music.game.nether.soulsand_valley.so_below": "Lena Raine - So Below", + "music.game.nether.warmth": "C418 - Warmth", + "music.game.one_more_day": "Lena Raine - One More Day", + "music.game.os_piano": "Amos Roddy - O's Piano", + "music.game.oxygene": "C418 - Oxygène", + "music.game.pokopoko": "Kumi Tanioka - pokopoko", + "music.game.puzzlebox": "Aaron Cherof - Puzzlebox", + "music.game.stand_tall": "Lena Raine - Stand Tall", + "music.game.subwoofer_lullaby": "C418 - Subwoofer Lullaby", + "music.game.swamp.aerie": "Lena Raine - Aerie", + "music.game.swamp.firebugs": "Lena Raine - Firebugs", + "music.game.swamp.labyrinthine": "Lena Raine - Labyrinthine", + "music.game.sweden": "C418 - Sweden", + "music.game.watcher": "Aaron Cherof - Watcher", + "music.game.water.axolotl": "C418 - Axolotl", + "music.game.water.dragon_fish": "C418 - Dragon Fish", + "music.game.water.shuniji": "C418 - Shuniji", + "music.game.wending": "Lena Raine - Wending", + "music.game.wet_hands": "C418 - Wet Hands", + "music.game.yakusoku": "Kumi Tanioka - yakusoku", + "music.menu.beginning_2": "C418 - Beginning 2", + "music.menu.floating_trees": "C418 - Floating Trees", + "music.menu.moog_city_2": "C418 - Moog City 2", + "music.menu.mutation": "C418 - Mutation", + "narration.button": "Button: %s", + "narration.button.usage.focused": "Press Enter to activate", + "narration.button.usage.hovered": "Left click to activate", + "narration.checkbox": "Checkbox: %s", + "narration.checkbox.usage.focused": "Press Enter to toggle", + "narration.checkbox.usage.hovered": "Left click to toggle", + "narration.component_list.usage": "Press Tab to navigate to the next element", + "narration.cycle_button.usage.focused": "Press Enter to switch to %s", + "narration.cycle_button.usage.hovered": "Left click to switch to %s", + "narration.edit_box": "Edit box: %s", + "narration.item": "Item: %s", + "narration.recipe": "Recipe for %s", + "narration.recipe.usage": "Left click to select", + "narration.recipe.usage.more": "Right click to show more recipes", + "narration.selection.usage": "Press the up and down buttons to move to another entry", + "narration.slider.usage.focused": "Press the left or right keyboard buttons to change the value", + "narration.slider.usage.focused.keyboard_cannot_change_value": "Press Enter to start changing the slider value", + "narration.slider.usage.hovered": "Drag the slider to change its value", + "narration.suggestion": "Selected suggestion %s out of %s: %s", + "narration.suggestion.tooltip": "Selected suggestion %s out of %s: %s (%s)", + "narration.suggestion.usage.cycle.fixed": "Press Tab to cycle to the next suggestion", + "narration.suggestion.usage.cycle.hidable": "Press Tab to cycle to the next suggestion, or Escape to leave suggestions", + "narration.suggestion.usage.fill.fixed": "Press Tab to use the suggestion", + "narration.suggestion.usage.fill.hidable": "Press Tab to use the suggestion, or Escape to leave suggestions", + "narration.tab_navigation.usage": "Press Ctrl and Tab to switch between tabs", + "narrator.button.accessibility": "Accessibility", + "narrator.button.difficulty_lock": "Difficulty lock", + "narrator.button.difficulty_lock.locked": "Locked", + "narrator.button.difficulty_lock.unlocked": "Unlocked", + "narrator.button.language": "Language", + "narrator.controls.bound": "%s is bound to %s", + "narrator.controls.reset": "Reset %s button", + "narrator.controls.unbound": "%s is not bound", + "narrator.joining": "Joining", + "narrator.loading": "Loading: %s", + "narrator.loading.done": "Done", + "narrator.position.list": "Selected list row %s out of %s", + "narrator.position.object_list": "Selected row element %s out of %s", + "narrator.position.screen": "Screen element %s out of %s", + "narrator.position.tab": "Selected tab %s out of %s", + "narrator.ready_to_play": "Ready to play", + "narrator.screen.title": "Title Screen", + "narrator.screen.usage": "Use mouse cursor or Tab button to select element", + "narrator.select": "Selected: %s", + "narrator.select.world": "Selected %s, last played: %s, %s, %s, version: %s", + "narrator.select.world_info": "Selected %s, last played: %s, %s", + "narrator.toast.disabled": "Narrator Disabled", + "narrator.toast.enabled": "Narrator Enabled", + "optimizeWorld.confirm.description": "This will attempt to optimize your world by making sure all data is stored in the most recent game format. This can take a very long time, depending on your world. Once done, your world may play faster but will no longer be compatible with older versions of the game. Are you sure you wish to proceed?", + "optimizeWorld.confirm.proceed": "Create Backup and Optimize", + "optimizeWorld.confirm.title": "Optimize World", + "optimizeWorld.info.converted": "Upgraded chunks: %s", + "optimizeWorld.info.skipped": "Skipped chunks: %s", + "optimizeWorld.info.total": "Total chunks: %s", + "optimizeWorld.progress.counter": "%s / %s", + "optimizeWorld.progress.percentage": "%s%%", + "optimizeWorld.stage.counting": "Counting chunks...", + "optimizeWorld.stage.failed": "Failed! :(", + "optimizeWorld.stage.finished": "Finishing up...", + "optimizeWorld.stage.finished.chunks": "Finishing up upgrading chunks...", + "optimizeWorld.stage.finished.entities": "Finishing up upgrading entities...", + "optimizeWorld.stage.finished.poi": "Finishing up upgrading points of interest...", + "optimizeWorld.stage.upgrading": "Upgrading all chunks...", + "optimizeWorld.stage.upgrading.chunks": "Upgrading all chunks...", + "optimizeWorld.stage.upgrading.entities": "Upgrading all entities...", + "optimizeWorld.stage.upgrading.poi": "Upgrading all points of interest...", + "optimizeWorld.title": "Optimizing World '%s'", + "options.accessibility": "Accessibility Settings...", + "options.accessibility.high_contrast": "High Contrast", + "options.accessibility.high_contrast_block_outline": "High Contrast Block Outlines", + "options.accessibility.high_contrast_block_outline.tooltip": "Enhances the block outline contrast of the targeted block.", + "options.accessibility.high_contrast.error.tooltip": "High Contrast resource pack is not available.", + "options.accessibility.high_contrast.tooltip": "Enhances the contrast of UI elements.", + "options.accessibility.link": "Accessibility Guide", + "options.accessibility.menu_background_blurriness": "Menu Background Blur", + "options.accessibility.menu_background_blurriness.tooltip": "Changes the blurriness of menu backgrounds.", + "options.accessibility.narrator_hotkey": "Narrator Hotkey", + "options.accessibility.narrator_hotkey.mac.tooltip": "Allows the Narrator to be toggled on and off with 'Cmd + B'.", + "options.accessibility.narrator_hotkey.tooltip": "Allows the Narrator to be toggled on and off with 'Ctrl + B'.", + "options.accessibility.panorama_speed": "Panorama Scroll Speed", + "options.accessibility.text_background": "Text Background", + "options.accessibility.text_background_opacity": "Text Background Opacity", + "options.accessibility.text_background.chat": "Chat", + "options.accessibility.text_background.everywhere": "Everywhere", + "options.accessibility.title": "Accessibility Settings", + "options.allowCursorChanges": "Allow Cursor Changes", + "options.allowCursorChanges.tooltip": "Allows the mouse cursor to change shape when over certain UI elements.", + "options.allowServerListing": "Allow Server Listings", + "options.allowServerListing.tooltip": "Servers may list online players as part of their public status.\nWith this option off your name will not show up in such lists.", + "options.ao": "Smooth Lighting", + "options.ao.max": "Maximum", + "options.ao.min": "Minimum", + "options.ao.off": "OFF", + "options.attack.crosshair": "Crosshair", + "options.attack.hotbar": "Hotbar", + "options.attackIndicator": "Attack Indicator", + "options.audioDevice": "Device", + "options.audioDevice.default": "System Default", + "options.autoJump": "Auto-Jump", + "options.autosaveIndicator": "Autosave Indicator", + "options.autoSuggestCommands": "Command Suggestions", + "options.biomeBlendRadius": "Biome Blend", + "options.biomeBlendRadius.1": "OFF (Fastest)", + "options.biomeBlendRadius.3": "3x3 (Fast)", + "options.biomeBlendRadius.5": "5x5 (Normal)", + "options.biomeBlendRadius.7": "7x7 (High)", + "options.biomeBlendRadius.9": "9x9 (Very High)", + "options.biomeBlendRadius.11": "11x11 (Extreme)", + "options.biomeBlendRadius.13": "13x13 (Showoff)", + "options.biomeBlendRadius.15": "15x15 (Maximum)", + "options.chat": "Chat Settings...", + "options.chat.color": "Colors", + "options.chat.delay": "Chat Delay: %s second(s)", + "options.chat.delay_none": "Chat Delay: None", + "options.chat.drafts": "Save Unsent Chats", + "options.chat.drafts.tooltip": "Unsent messages will be saved and can be sent the next time chat is opened.", + "options.chat.height.focused": "Focused Height", + "options.chat.height.unfocused": "Unfocused Height", + "options.chat.line_spacing": "Line Spacing", + "options.chat.links": "Web Links", + "options.chat.links.prompt": "Prompt on Links", + "options.chat.opacity": "Chat Text Opacity", + "options.chat.scale": "Chat Text Size", + "options.chat.title": "Chat Settings", + "options.chat.visibility": "Chat", + "options.chat.visibility.full": "Shown", + "options.chat.visibility.hidden": "Hidden", + "options.chat.visibility.system": "Commands Only", + "options.chat.width": "Width", + "options.chunks": "%s Chunks", + "options.clouds.fancy": "Fancy", + "options.clouds.fast": "Fast", + "options.controls": "Controls...", + "options.credits_and_attribution": "Credits & Attribution...", + "options.damageTiltStrength": "Damage Tilt", + "options.damageTiltStrength.tooltip": "The amount of camera shake caused by being hurt.", + "options.darkMojangStudiosBackgroundColor": "Monochrome Logo", + "options.darkMojangStudiosBackgroundColor.tooltip": "Changes the Mojang Studios loading screen background color to black.", + "options.darknessEffectScale": "Darkness Pulsing", + "options.darknessEffectScale.tooltip": "Controls how much the Darkness effect pulses when a Warden or Sculk Shrieker gives it to you.", + "options.difficulty": "Difficulty", + "options.difficulty.easy": "Easy", + "options.difficulty.easy.info": "Hostile mobs spawn but deal less damage. Hunger bar depletes and drains health down to 5 hearts.", + "options.difficulty.hard": "Hard", + "options.difficulty.hard.info": "Hostile mobs spawn and deal more damage. Hunger bar depletes and drains all health.", + "options.difficulty.hardcore": "Hardcore", + "options.difficulty.normal": "Normal", + "options.difficulty.normal.info": "Hostile mobs spawn and deal standard damage. Hunger bar depletes and drains health down to half a heart.", + "options.difficulty.online": "Server Difficulty", + "options.difficulty.peaceful": "Peaceful", + "options.difficulty.peaceful.info": "No hostile mobs and only some neutral mobs spawn. Hunger bar doesn't deplete and health replenishes over time.", + "options.directionalAudio": "Directional Audio", + "options.directionalAudio.off.tooltip": "Classic Stereo sound.", + "options.directionalAudio.on.tooltip": "Uses HRTF-based directional audio to improve the simulation of 3D sound. Requires HRTF compatible audio hardware, and is best experienced with headphones.", + "options.discrete_mouse_scroll": "Discrete Scrolling", + "options.entityDistanceScaling": "Entity Distance", + "options.entityShadows": "Entity Shadows", + "options.font": "Font Settings...", + "options.font.title": "Font Settings", + "options.forceUnicodeFont": "Force Unicode Font", + "options.fov": "FOV", + "options.fov.max": "Quake Pro", + "options.fov.min": "Normal", + "options.fovEffectScale": "FOV Effects", + "options.fovEffectScale.tooltip": "Controls how much the field of view can change with gameplay effects.", + "options.framerate": "%s fps", + "options.framerateLimit": "Max Framerate", + "options.framerateLimit.max": "Unlimited", + "options.fullscreen": "Fullscreen", + "options.fullscreen.current": "Current", + "options.fullscreen.entry": "%sx%s@%s (%sbit)", + "options.fullscreen.resolution": "Fullscreen Resolution", + "options.fullscreen.unavailable": "Setting unavailable", + "options.gamma": "Brightness", + "options.gamma.default": "Default", + "options.gamma.max": "Bright", + "options.gamma.min": "Moody", + "options.generic_value": "%s: %s", + "options.glintSpeed": "Glint Speed", + "options.glintSpeed.tooltip": "Controls how fast the visual glint shimmers across enchanted items.", + "options.glintStrength": "Glint Strength", + "options.glintStrength.tooltip": "Controls how transparent the visual glint is on enchanted items.", + "options.graphics": "Graphics", + "options.graphics.fabulous": "Fabulous!", + "options.graphics.fabulous.tooltip": "%s graphics uses screen shaders for drawing weather, clouds, and particles behind translucent blocks and water.\nThis may severely impact performance for portable devices and 4K displays.", + "options.graphics.fancy": "Fancy", + "options.graphics.fancy.tooltip": "Fancy graphics balances performance and quality for the majority of machines.\nWeather, clouds, and particles may not appear behind translucent blocks or water.", + "options.graphics.fast": "Fast", + "options.graphics.fast.tooltip": "Fast graphics reduces the amount of visible rain and snow.\nTransparency effects are disabled for various blocks such as leaves.", + "options.graphics.warning.accept": "Continue Without Support", + "options.graphics.warning.cancel": "Take Me Back", + "options.graphics.warning.message": "Your graphics device is detected as unsupported for the %s graphics option.\n\nYou may ignore this and continue, however support will not be provided for your device if you choose to use %s graphics.", + "options.graphics.warning.renderer": "Renderer detected: [%s]", + "options.graphics.warning.title": "Graphics Device Unsupported", + "options.graphics.warning.vendor": "Vendor detected: [%s]", + "options.graphics.warning.version": "OpenGL Version detected: [%s]", + "options.guiScale": "GUI Scale", + "options.guiScale.auto": "Auto", + "options.hidden": "Hidden", + "options.hideLightningFlashes": "Hide Sky Flashes", + "options.hideLightningFlashes.tooltip": "Prevents Lightning Bolts or other environmental effects from making the sky flash. The sources of flashes themselves will still be visible.", + "options.hideMatchedNames": "Hide Matched Names", + "options.hideMatchedNames.tooltip": "3rd-party Servers may send chat messages in non-standard formats.\nWith this option on, hidden players will be matched based on chat sender names.", + "options.hideSplashTexts": "Hide Splash Texts", + "options.hideSplashTexts.tooltip": "Hides the yellow splash text in the main menu.", + "options.inactivityFpsLimit": "Reduce FPS when", + "options.inactivityFpsLimit.afk": "AFK", + "options.inactivityFpsLimit.afk.tooltip": "Limits framerate to 30 when the game is not getting any player input for more than a minute. Further limits it to 10 after 9 more minutes.", + "options.inactivityFpsLimit.minimized": "Minimized", + "options.inactivityFpsLimit.minimized.tooltip": "Limits framerate only when the game window is minimized.", + "options.invertMouse": "Invert Mouse", + "options.invertMouseX": "Invert Mouse X", + "options.invertMouseY": "Invert Mouse Y", + "options.japaneseGlyphVariants": "Japanese Glyph Variants", + "options.japaneseGlyphVariants.tooltip": "Uses Japanese variants of CJK characters in the default font.", + "options.key.hold": "Hold", + "options.key.toggle": "Toggle", + "options.language": "Language...", + "options.language.title": "Language", + "options.languageAccuracyWarning": "(Language translations may not be 100%% accurate)", + "options.languageWarning": "Language translations may not be 100%% accurate", + "options.mainHand": "Main Hand", + "options.mainHand.left": "Left", + "options.mainHand.right": "Right", + "options.mipmapLevels": "Mipmap Levels", + "options.modelPart.cape": "Cape", + "options.modelPart.hat": "Hat", + "options.modelPart.jacket": "Jacket", + "options.modelPart.left_pants_leg": "Left Pant Leg", + "options.modelPart.left_sleeve": "Left Sleeve", + "options.modelPart.right_pants_leg": "Right Pant Leg", + "options.modelPart.right_sleeve": "Right Sleeve", + "options.mouse_settings": "Mouse Settings...", + "options.mouse_settings.title": "Mouse Settings", + "options.mouseWheelSensitivity": "Scroll Sensitivity", + "options.multiplayer.title": "Multiplayer Settings...", + "options.multiplier": "%sx", + "options.music_frequency": "Music Frequency", + "options.music_frequency.constant": "Constant", + "options.music_frequency.default": "Default", + "options.music_frequency.frequent": "Frequent", + "options.music_frequency.tooltip": "Changes how frequently music plays while in a game world.", + "options.narrator": "Narrator", + "options.narrator.all": "Narrates All", + "options.narrator.chat": "Narrates Chat", + "options.narrator.notavailable": "Not Available", + "options.narrator.off": "OFF", + "options.narrator.system": "Narrates System", + "options.notifications.display_time": "Notification Time", + "options.notifications.display_time.tooltip": "Affects the length of time that all notifications stay visible on the screen.", + "options.off": "OFF", + "options.off.composed": "%s: OFF", + "options.on": "ON", + "options.on.composed": "%s: ON", + "options.online": "Online...", + "options.online.title": "Online Options", + "options.onlyShowSecureChat": "Only Show Secure Chat", + "options.onlyShowSecureChat.tooltip": "Only display messages from other players that can be verified to have been sent by that player, and have not been modified.", + "options.operatorItemsTab": "Operator Items Tab", + "options.particles": "Particles", + "options.particles.all": "All", + "options.particles.decreased": "Decreased", + "options.particles.minimal": "Minimal", + "options.percent_add_value": "%s: +%s%%", + "options.percent_value": "%s: %s%%", + "options.pixel_value": "%s: %spx", + "options.prioritizeChunkUpdates": "Chunk Builder", + "options.prioritizeChunkUpdates.byPlayer": "Semi Blocking", + "options.prioritizeChunkUpdates.byPlayer.tooltip": "Some actions within a chunk will recompile the chunk immediately. This includes block placing & destroying.", + "options.prioritizeChunkUpdates.nearby": "Fully Blocking", + "options.prioritizeChunkUpdates.nearby.tooltip": "Nearby chunks are always compiled immediately. This may impact game performance when blocks are placed or destroyed.", + "options.prioritizeChunkUpdates.none": "Threaded", + "options.prioritizeChunkUpdates.none.tooltip": "Nearby chunks are compiled in parallel threads. This may result in brief visual holes when blocks are destroyed.", + "options.rawMouseInput": "Raw Input", + "options.realmsNotifications": "Realms News & Invites", + "options.realmsNotifications.tooltip": "Fetches Realms news and invites in the title screen and displays their respective icon on the Realms button.", + "options.reducedDebugInfo": "Reduced Debug Info", + "options.renderClouds": "Clouds", + "options.renderCloudsDistance": "Cloud Distance", + "options.renderDistance": "Render Distance", + "options.resourcepack": "Resource Packs...", + "options.rotateWithMinecart": "Rotate with Minecarts", + "options.rotateWithMinecart.tooltip": "Whether the player's view should rotate with a turning Minecart. Only available in worlds with the 'Minecart Improvements' experimental setting turned on.", + "options.screenEffectScale": "Distortion Effects", + "options.screenEffectScale.tooltip": "Strength of nausea and Nether portal screen distortion effects.\nAt lower values, the nausea effect is replaced with a green overlay.", + "options.sensitivity": "Sensitivity", + "options.sensitivity.max": "HYPERSPEED!!!", + "options.sensitivity.min": "*yawn*", + "options.showNowPlayingToast": "Show Music Toast", + "options.showNowPlayingToast.tooltip": "Displays a toast whenever a song starts playing. The same toast is constantly displayed in the in-game pause menu while a song is playing.", + "options.showSubtitles": "Closed Captions", + "options.showSubtitles.tooltip": "Enables captions for sounds played in the game.", + "options.simulationDistance": "Simulation Distance", + "options.skinCustomisation": "Skin Customization...", + "options.skinCustomisation.title": "Skin Customization", + "options.sounds": "Music & Sounds...", + "options.sounds.title": "Music & Sound Options", + "options.sprintWindow": "Sprint Window", + "options.sprintWindow.tooltip": "Time window in ticks where double-tapping the forward key activates sprint.", + "options.telemetry": "Telemetry Data...", + "options.telemetry.button": "Data Collection", + "options.telemetry.button.tooltip": "\"%s\" includes only the required data.\n\"%s\" includes optional, as well as the required data.", + "options.telemetry.disabled": "Telemetry is disabled.", + "options.telemetry.state.all": "All", + "options.telemetry.state.minimal": "Minimal", + "options.telemetry.state.none": "None", + "options.title": "Options", + "options.touchscreen": "Touchscreen Mode", + "options.value": "%s", + "options.video": "Video Settings...", + "options.videoTitle": "Video Settings", + "options.viewBobbing": "View Bobbing", + "options.visible": "Shown", + "options.vsync": "VSync", + "outOfMemory.message": "Minecraft has run out of memory.\n\nThis could be caused by a bug in the game or by the Java Virtual Machine not being allocated enough memory.\n\nTo prevent world corruption, the current game has quit. We've tried to free up enough memory to let you go back to the main menu and back to playing, but this may not have worked.\n\nPlease restart the game if you see this message again.", + "outOfMemory.title": "Out of memory!", + "pack.available.title": "Available", + "pack.copyFailure": "Failed to copy packs", + "pack.dropConfirm": "Do you want to add the following packs to Minecraft?", + "pack.dropInfo": "Drag and drop files into this window to add packs", + "pack.dropRejected.message": "The following entries were not valid packs and were not copied:\n %s", + "pack.dropRejected.title": "Non-pack entries", + "pack.folderInfo": "(Place pack files here)", + "pack.incompatible": "Incompatible", + "pack.incompatible.confirm.new": "This pack was made for a newer version of Minecraft and may not work correctly.", + "pack.incompatible.confirm.old": "This pack was made for an older version of Minecraft and may no longer work correctly.", + "pack.incompatible.confirm.title": "Are you sure you want to load this pack?", + "pack.incompatible.confirm.unknown": "This pack is broken or made for an unknown version of Minecraft and may not work correctly.", + "pack.incompatible.new": "(Made for a newer version of Minecraft)", + "pack.incompatible.old": "(Made for an older version of Minecraft)", + "pack.incompatible.unknown": "(Broken or incompatible)", + "pack.nameAndSource": "%s (%s)", + "pack.openFolder": "Open Pack Folder", + "pack.selected.title": "Selected", + "pack.source.builtin": "built-in", + "pack.source.feature": "feature", + "pack.source.local": "local", + "pack.source.server": "server", + "pack.source.world": "world", + "painting.dimensions": "%sx%s", + "painting.minecraft.alban.author": "Kristoffer Zetterstrand", + "painting.minecraft.alban.title": "Albanian", + "painting.minecraft.aztec.author": "Kristoffer Zetterstrand", + "painting.minecraft.aztec.title": "de_aztec", + "painting.minecraft.aztec2.author": "Kristoffer Zetterstrand", + "painting.minecraft.aztec2.title": "de_aztec", + "painting.minecraft.backyard.author": "Kristoffer Zetterstrand", + "painting.minecraft.backyard.title": "Backyard", + "painting.minecraft.baroque.author": "Sarah Boeving", + "painting.minecraft.baroque.title": "Baroque", + "painting.minecraft.bomb.author": "Kristoffer Zetterstrand", + "painting.minecraft.bomb.title": "Target Successfully Bombed", + "painting.minecraft.bouquet.author": "Kristoffer Zetterstrand", + "painting.minecraft.bouquet.title": "Bouquet", + "painting.minecraft.burning_skull.author": "Kristoffer Zetterstrand", + "painting.minecraft.burning_skull.title": "Skull On Fire", + "painting.minecraft.bust.author": "Kristoffer Zetterstrand", + "painting.minecraft.bust.title": "Bust", + "painting.minecraft.cavebird.author": "Kristoffer Zetterstrand", + "painting.minecraft.cavebird.title": "Cavebird", + "painting.minecraft.changing.author": "Kristoffer Zetterstrand", + "painting.minecraft.changing.title": "Changing", + "painting.minecraft.cotan.author": "Kristoffer Zetterstrand", + "painting.minecraft.cotan.title": "Cotán", + "painting.minecraft.courbet.author": "Kristoffer Zetterstrand", + "painting.minecraft.courbet.title": "Bonjour Monsieur Courbet", + "painting.minecraft.creebet.author": "Kristoffer Zetterstrand", + "painting.minecraft.creebet.title": "Creebet", + "painting.minecraft.dennis.author": "Sarah Boeving", + "painting.minecraft.dennis.title": "Dennis", + "painting.minecraft.donkey_kong.author": "Kristoffer Zetterstrand", + "painting.minecraft.donkey_kong.title": "Kong", + "painting.minecraft.earth.author": "Mojang", + "painting.minecraft.earth.title": "Earth", + "painting.minecraft.endboss.author": "Kristoffer Zetterstrand", + "painting.minecraft.endboss.title": "Endboss", + "painting.minecraft.fern.author": "Kristoffer Zetterstrand", + "painting.minecraft.fern.title": "Fern", + "painting.minecraft.fighters.author": "Kristoffer Zetterstrand", + "painting.minecraft.fighters.title": "Fighters", + "painting.minecraft.finding.author": "Kristoffer Zetterstrand", + "painting.minecraft.finding.title": "Finding", + "painting.minecraft.fire.author": "Mojang", + "painting.minecraft.fire.title": "Fire", + "painting.minecraft.graham.author": "Kristoffer Zetterstrand", + "painting.minecraft.graham.title": "Graham", + "painting.minecraft.humble.author": "Sarah Boeving", + "painting.minecraft.humble.title": "Humble", + "painting.minecraft.kebab.author": "Kristoffer Zetterstrand", + "painting.minecraft.kebab.title": "Kebab med tre pepperoni", + "painting.minecraft.lowmist.author": "Kristoffer Zetterstrand", + "painting.minecraft.lowmist.title": "Lowmist", + "painting.minecraft.match.author": "Kristoffer Zetterstrand", + "painting.minecraft.match.title": "Match", + "painting.minecraft.meditative.author": "Sarah Boeving", + "painting.minecraft.meditative.title": "Meditative", + "painting.minecraft.orb.author": "Kristoffer Zetterstrand", + "painting.minecraft.orb.title": "Orb", + "painting.minecraft.owlemons.author": "Kristoffer Zetterstrand", + "painting.minecraft.owlemons.title": "Owlemons", + "painting.minecraft.passage.author": "Kristoffer Zetterstrand", + "painting.minecraft.passage.title": "Passage", + "painting.minecraft.pigscene.author": "Kristoffer Zetterstrand", + "painting.minecraft.pigscene.title": "Pigscene", + "painting.minecraft.plant.author": "Kristoffer Zetterstrand", + "painting.minecraft.plant.title": "Paradisträd", + "painting.minecraft.pointer.author": "Kristoffer Zetterstrand", + "painting.minecraft.pointer.title": "Pointer", + "painting.minecraft.pond.author": "Kristoffer Zetterstrand", + "painting.minecraft.pond.title": "Pond", + "painting.minecraft.pool.author": "Kristoffer Zetterstrand", + "painting.minecraft.pool.title": "The Pool", + "painting.minecraft.prairie_ride.author": "Sarah Boeving", + "painting.minecraft.prairie_ride.title": "Prairie Ride", + "painting.minecraft.sea.author": "Kristoffer Zetterstrand", + "painting.minecraft.sea.title": "Seaside", + "painting.minecraft.skeleton.author": "Kristoffer Zetterstrand", + "painting.minecraft.skeleton.title": "Mortal Coil", + "painting.minecraft.skull_and_roses.author": "Kristoffer Zetterstrand", + "painting.minecraft.skull_and_roses.title": "Skull and Roses", + "painting.minecraft.stage.author": "Kristoffer Zetterstrand", + "painting.minecraft.stage.title": "The Stage Is Set", + "painting.minecraft.sunflowers.author": "Kristoffer Zetterstrand", + "painting.minecraft.sunflowers.title": "Sunflowers", + "painting.minecraft.sunset.author": "Kristoffer Zetterstrand", + "painting.minecraft.sunset.title": "sunset_dense", + "painting.minecraft.tides.author": "Kristoffer Zetterstrand", + "painting.minecraft.tides.title": "Tides", + "painting.minecraft.unpacked.author": "Sarah Boeving", + "painting.minecraft.unpacked.title": "Unpacked", + "painting.minecraft.void.author": "Kristoffer Zetterstrand", + "painting.minecraft.void.title": "The void", + "painting.minecraft.wanderer.author": "Kristoffer Zetterstrand", + "painting.minecraft.wanderer.title": "Wanderer", + "painting.minecraft.wasteland.author": "Kristoffer Zetterstrand", + "painting.minecraft.wasteland.title": "Wasteland", + "painting.minecraft.water.author": "Mojang", + "painting.minecraft.water.title": "Water", + "painting.minecraft.wind.author": "Mojang", + "painting.minecraft.wind.title": "Wind", + "painting.minecraft.wither.author": "Mojang", + "painting.minecraft.wither.title": "Wither", + "painting.random": "Random variant", + "parsing.bool.expected": "Expected boolean", + "parsing.bool.invalid": "Invalid boolean: expected 'true' or 'false' but found '%s'", + "parsing.double.expected": "Expected double", + "parsing.double.invalid": "Invalid double '%s'", + "parsing.expected": "Expected '%s'", + "parsing.float.expected": "Expected float", + "parsing.float.invalid": "Invalid float '%s'", + "parsing.int.expected": "Expected integer", + "parsing.int.invalid": "Invalid integer '%s'", + "parsing.long.expected": "Expected long", + "parsing.long.invalid": "Invalid long '%s'", + "parsing.quote.escape": "Invalid escape sequence '\\%s' in quoted string", + "parsing.quote.expected.end": "Unclosed quoted string", + "parsing.quote.expected.start": "Expected quote to start a string", + "particle.invalidOptions": "Can't parse particle options: %s", + "particle.notFound": "Unknown particle: %s", + "permissions.requires.entity": "An entity is required to run this command here", + "permissions.requires.player": "A player is required to run this command here", + "potion.potency.0": "", + "potion.potency.1": "II", + "potion.potency.2": "III", + "potion.potency.3": "IV", + "potion.potency.4": "V", + "potion.potency.5": "VI", + "potion.whenDrank": "When Applied:", + "potion.withAmplifier": "%s %s", + "potion.withDuration": "%s (%s)", + "predicate.unknown": "Unknown predicate: %s", + "quickplay.error.invalid_identifier": "Could not find world with the provided identifier", + "quickplay.error.realm_connect": "Could not connect to Realm", + "quickplay.error.realm_permission": "Lacking permission to connect to this Realm", + "quickplay.error.title": "Failed to Quick Play", + "realms.configuration.region_preference.automatic_owner": "Automatic (Realm owner ping)", + "realms.configuration.region_preference.automatic_player": "Automatic (first to join session)", + "realms.configuration.region.australia_east": "New South Wales, Australia", + "realms.configuration.region.australia_southeast": "Victoria, Australia", + "realms.configuration.region.brazil_south": "Brazil", + "realms.configuration.region.central_india": "India", + "realms.configuration.region.central_us": "Iowa, USA", + "realms.configuration.region.east_asia": "Hong Kong", + "realms.configuration.region.east_us": "Virginia, USA", + "realms.configuration.region.east_us_2": "North Carolina, USA", + "realms.configuration.region.france_central": "France", + "realms.configuration.region.japan_east": "Eastern Japan", + "realms.configuration.region.japan_west": "Western Japan", + "realms.configuration.region.korea_central": "South Korea", + "realms.configuration.region.north_central_us": "Illinois, USA", + "realms.configuration.region.north_europe": "Ireland", + "realms.configuration.region.south_central_us": "Texas, USA", + "realms.configuration.region.southeast_asia": "Singapore", + "realms.configuration.region.sweden_central": "Sweden", + "realms.configuration.region.uae_north": "United Arab Emirates (UAE)", + "realms.configuration.region.uk_south": "Southern England", + "realms.configuration.region.west_central_us": "Utah, USA", + "realms.configuration.region.west_europe": "Netherlands", + "realms.configuration.region.west_us": "California, USA", + "realms.configuration.region.west_us_2": "Washington, USA", + "realms.missing.snapshot.error.text": "Realms is currently not supported in snapshots", + "recipe.notFound": "Unknown recipe: %s", + "recipe.toast.description": "Check your recipe book", + "recipe.toast.title": "New Recipe(s) Unlocked!", + "record.nowPlaying": "Now Playing: %s", + "recover_world.bug_tracker": "Report a Bug", + "recover_world.button": "Attempt to Recover", + "recover_world.done.failed": "Failed to recover from previous state.", + "recover_world.done.success": "Recovery was successful!", + "recover_world.done.title": "Recovery done", + "recover_world.issue.missing_file": "Missing file", + "recover_world.issue.none": "No issues", + "recover_world.message": "The following issues occurred while trying to read world folder \"%s\".\nIt might be possible to restore the world from an older state or you can report this issue on the bug tracker.", + "recover_world.no_fallback": "No state to recover from available", + "recover_world.restore": "Attempt to Restore", + "recover_world.restoring": "Attempting to restore world...", + "recover_world.state_entry": "State from %s: ", + "recover_world.state_entry.unknown": "unknown", + "recover_world.title": "Failed to load world", + "recover_world.warning": "Failed to load world summary", + "resourcePack.broken_assets": "BROKEN ASSETS DETECTED", + "resourcepack.downloading": "Downloading Resource Pack", + "resourcePack.high_contrast.name": "High Contrast", + "resourcePack.load_fail": "Resource reload failed", + "resourcePack.programmer_art.name": "Programmer Art", + "resourcepack.progress": "Downloading file (%s MB)...", + "resourcepack.requesting": "Making Request...", + "resourcePack.runtime_failure": "Resource pack error detected", + "resourcePack.server.name": "World Specific Resources", + "resourcePack.title": "Select Resource Packs", + "resourcePack.vanilla.description": "The default look and feel of Minecraft", + "resourcePack.vanilla.name": "Default", + "screenshot.failure": "Couldn't save screenshot: %s", + "screenshot.success": "Saved screenshot as %s", + "selectServer.add": "Add Server", + "selectServer.defaultName": "Minecraft Server", + "selectServer.delete": "Delete", + "selectServer.deleteButton": "Delete", + "selectServer.deleteQuestion": "Are you sure you want to remove this server?", + "selectServer.deleteWarning": "'%s' will be lost forever! (A long time!)", + "selectServer.direct": "Direct Connection", + "selectServer.edit": "Edit", + "selectServer.hiddenAddress": "(Hidden)", + "selectServer.refresh": "Refresh", + "selectServer.select": "Join Server", + "selectWorld.access_failure": "Failed to access world", + "selectWorld.allowCommands": "Allow Cheats", + "selectWorld.allowCommands.info": "Commands like /gamemode, /experience", + "selectWorld.allowCommands.new": "Allow Commands", + "selectWorld.backupEraseCache": "Erase Cached Data", + "selectWorld.backupJoinConfirmButton": "Create Backup and Load", + "selectWorld.backupJoinSkipButton": "I know what I'm doing!", + "selectWorld.backupQuestion.customized": "Customized worlds are no longer supported", + "selectWorld.backupQuestion.downgrade": "Downgrading a world is not supported", + "selectWorld.backupQuestion.experimental": "Worlds using Experimental Settings are not supported", + "selectWorld.backupQuestion.snapshot": "Do you really want to load this world?", + "selectWorld.backupWarning.customized": "Unfortunately, we do not support customized worlds in this version of Minecraft. We can still load this world and keep everything the way it was, but any newly generated terrain will no longer be customized. We're sorry for the inconvenience!", + "selectWorld.backupWarning.downgrade": "This world was last played in version %s; you are on version %s. Downgrading a world could cause corruption - we cannot guarantee that it will load or work. If you still want to continue, please make a backup.", + "selectWorld.backupWarning.experimental": "This world uses experimental settings that could stop working at any time. We cannot guarantee it will load or work. Here be dragons!", + "selectWorld.backupWarning.snapshot": "This world was last played in version %s; you are on version %s. Please make a backup in case you experience world corruptions.", + "selectWorld.bonusItems": "Bonus Chest", + "selectWorld.cheats": "Cheats", + "selectWorld.commands": "Commands", + "selectWorld.conversion": "Must be converted!", + "selectWorld.conversion.tooltip": "This world must be opened in an older version (like 1.6.4) to be safely converted", + "selectWorld.create": "Create New World", + "selectWorld.customizeType": "Customize", + "selectWorld.data_read": "Reading world data...", + "selectWorld.dataPacks": "Data Packs", + "selectWorld.delete": "Delete", + "selectWorld.delete_failure": "Failed to delete world", + "selectWorld.deleteButton": "Delete", + "selectWorld.deleteQuestion": "Are you sure you want to delete this world?", + "selectWorld.deleteWarning": "'%s' will be lost forever! (A long time!)", + "selectWorld.edit": "Edit", + "selectWorld.edit.backup": "Make Backup", + "selectWorld.edit.backupCreated": "Backed up: %s", + "selectWorld.edit.backupFailed": "Backup failed", + "selectWorld.edit.backupFolder": "Open Backups Folder", + "selectWorld.edit.backupSize": "size: %s MB", + "selectWorld.edit.export_worldgen_settings": "Export World Generation Settings", + "selectWorld.edit.export_worldgen_settings.failure": "Export failed", + "selectWorld.edit.export_worldgen_settings.success": "Exported", + "selectWorld.edit.openFolder": "Open World Folder", + "selectWorld.edit.optimize": "Optimize World", + "selectWorld.edit.resetIcon": "Reset Icon", + "selectWorld.edit.save": "Save", + "selectWorld.edit.title": "Edit World", + "selectWorld.enterName": "World Name", + "selectWorld.enterSeed": "Seed for the world generator", + "selectWorld.experimental": "Experimental", + "selectWorld.experimental.details": "Details", + "selectWorld.experimental.details.entry": "Required experimental features: %s", + "selectWorld.experimental.details.title": "Experimental Feature Requirements", + "selectWorld.experimental.message": "Be careful!\nThis configuration requires features that are still under development. Your world might crash, break, or not work with future updates.", + "selectWorld.experimental.title": "Experimental Features Warning", + "selectWorld.experiments": "Experiments", + "selectWorld.experiments.info": "Experiments are potential new features. Be careful as things might break. Experiments can't be turned off after world creation.", + "selectWorld.futureworld.error.text": "Something went wrong while trying to load a world from a future version. This was a risky operation to begin with; sorry it didn't work.", + "selectWorld.futureworld.error.title": "An error occurred!", + "selectWorld.gameMode": "Game Mode", + "selectWorld.gameMode.adventure": "Adventure", + "selectWorld.gameMode.adventure.info": "Same as Survival Mode, but blocks can't be added or removed.", + "selectWorld.gameMode.adventure.line1": "Same as Survival Mode, but blocks can't", + "selectWorld.gameMode.adventure.line2": "be added or removed", + "selectWorld.gameMode.creative": "Creative", + "selectWorld.gameMode.creative.info": "Create, build, and explore without limits. You can fly, have endless materials, and can't be hurt by monsters.", + "selectWorld.gameMode.creative.line1": "Unlimited resources, free flying and", + "selectWorld.gameMode.creative.line2": "destroy blocks instantly", + "selectWorld.gameMode.hardcore": "Hardcore", + "selectWorld.gameMode.hardcore.info": "Survival Mode locked to 'Hard' difficulty. You can't respawn if you die.", + "selectWorld.gameMode.hardcore.line1": "Same as Survival Mode, locked at hardest", + "selectWorld.gameMode.hardcore.line2": "difficulty, and one life only", + "selectWorld.gameMode.spectator": "Spectator", + "selectWorld.gameMode.spectator.info": "You can look but don't touch.", + "selectWorld.gameMode.spectator.line1": "You can look but don't touch", + "selectWorld.gameMode.spectator.line2": "", + "selectWorld.gameMode.survival": "Survival", + "selectWorld.gameMode.survival.info": "Explore a mysterious world where you build, collect, craft, and fight monsters.", + "selectWorld.gameMode.survival.line1": "Search for resources, craft, gain", + "selectWorld.gameMode.survival.line2": "levels, health and hunger", + "selectWorld.gameRules": "Game Rules", + "selectWorld.import_worldgen_settings": "Import Settings", + "selectWorld.import_worldgen_settings.failure": "Error importing settings", + "selectWorld.import_worldgen_settings.select_file": "Select settings file (.json)", + "selectWorld.incompatible_series": "Created by an incompatible version", + "selectWorld.incompatible.description": "This world cannot be opened in this version.\nIt was last played in version %s.", + "selectWorld.incompatible.info": "Incompatible version: %s", + "selectWorld.incompatible.title": "Incompatible version", + "selectWorld.incompatible.tooltip": "This world cannot be opened because it was created by an incompatible version.", + "selectWorld.load_folder_access": "Unable to read or access folder where game worlds are saved!", + "selectWorld.loading_list": "Loading World List", + "selectWorld.locked": "Locked by another running instance of Minecraft.", + "selectWorld.mapFeatures": "Generate Structures", + "selectWorld.mapFeatures.info": "Villages, Shipwrecks, etc.", + "selectWorld.mapType": "World Type", + "selectWorld.mapType.normal": "Normal", + "selectWorld.moreWorldOptions": "More World Options...", + "selectWorld.newWorld": "New World", + "selectWorld.recreate": "Re-Create", + "selectWorld.recreate.customized.text": "Customized worlds are no longer supported in this version of Minecraft. We can try to recreate it with the same seed and properties, but any terrain customizations will be lost. We're sorry for the inconvenience!", + "selectWorld.recreate.customized.title": "Customized worlds are no longer supported", + "selectWorld.recreate.error.text": "Something went wrong while trying to recreate a world.", + "selectWorld.recreate.error.title": "An error occurred!", + "selectWorld.resource_load": "Preparing Resources...", + "selectWorld.resultFolder": "Will be saved in:", + "selectWorld.search": "search for worlds", + "selectWorld.seedInfo": "Leave blank for a random seed", + "selectWorld.select": "Play Selected World", + "selectWorld.targetFolder": "Save folder: %s", + "selectWorld.title": "Select World", + "selectWorld.tooltip.fromNewerVersion1": "World was saved in a newer version,", + "selectWorld.tooltip.fromNewerVersion2": "and loading it could cause problems!", + "selectWorld.tooltip.snapshot1": "Don't forget to back up this world", + "selectWorld.tooltip.snapshot2": "before you load it in this snapshot.", + "selectWorld.unable_to_load": "Unable to load worlds", + "selectWorld.version": "Version:", + "selectWorld.versionJoinButton": "Load Anyway", + "selectWorld.versionQuestion": "Do you really want to load this world?", + "selectWorld.versionUnknown": "unknown", + "selectWorld.versionWarning": "This world was last played in version %s and loading it in this version could cause corruption!", + "selectWorld.warning.deprecated.question": "Some features used are deprecated and will stop working in the future. Do you wish to proceed?", + "selectWorld.warning.deprecated.title": "Warning! These settings are using deprecated features", + "selectWorld.warning.experimental.question": "These settings are experimental and could one day stop working. Do you wish to proceed?", + "selectWorld.warning.experimental.title": "Warning! These settings are using experimental features", + "selectWorld.warning.lowDiskSpace.description": "There is not much space left on your device.\nRunning out of disk space while in game can lead to your world being damaged.", + "selectWorld.warning.lowDiskSpace.title": "Warning! Low disk space!", + "selectWorld.world": "World", + "sign.edit": "Edit Sign Message", + "sleep.not_possible": "No amount of rest can pass this night", + "sleep.players_sleeping": "%s/%s players sleeping", + "sleep.skipping_night": "Sleeping through this night", + "slot.only_single_allowed": "Only single slots allowed: got '%s'", + "slot.unknown": "Unknown slot '%s'", + "snbt.parser.empty_key": "Key cannot be empty", + "snbt.parser.expected_binary_numeral": "Expected a binary number", + "snbt.parser.expected_decimal_numeral": "Expected a decimal number", + "snbt.parser.expected_float_type": "Expected a floating point number", + "snbt.parser.expected_hex_escape": "Expected a character literal of length %s", + "snbt.parser.expected_hex_numeral": "Expected a hexadecimal number", + "snbt.parser.expected_integer_type": "Expected an integer number", + "snbt.parser.expected_non_negative_number": "Expected a non-negative number", + "snbt.parser.expected_number_or_boolean": "Expected a number or a boolean", + "snbt.parser.expected_string_uuid": "Expected a string representing a valid UUID", + "snbt.parser.expected_unquoted_string": "Expected a valid unquoted string", + "snbt.parser.infinity_not_allowed": "Non-finite numbers are not allowed", + "snbt.parser.invalid_array_element_type": "Invalid array element type", + "snbt.parser.invalid_character_name": "Invalid Unicode character name", + "snbt.parser.invalid_codepoint": "Invalid Unicode character value: %s", + "snbt.parser.invalid_string_contents": "Invalid string contents", + "snbt.parser.invalid_unquoted_start": "Unquoted strings can't start with digits 0-9, + or -", + "snbt.parser.leading_zero_not_allowed": "Decimal numbers can't start with 0", + "snbt.parser.no_such_operation": "No such operation: %s", + "snbt.parser.number_parse_failure": "Failed to parse number: %s", + "snbt.parser.undescore_not_allowed": "Underscore characters are not allowed at the start or end of a number", + "soundCategory.ambient": "Ambient/Environment", + "soundCategory.block": "Blocks", + "soundCategory.hostile": "Hostile Mobs", + "soundCategory.master": "Master Volume", + "soundCategory.music": "Music", + "soundCategory.neutral": "Friendly Mobs", + "soundCategory.player": "Players", + "soundCategory.record": "Jukebox/Note Blocks", + "soundCategory.ui": "UI", + "soundCategory.voice": "Narrator/Voice", + "soundCategory.weather": "Weather", + "spectatorMenu.close": "Close Menu", + "spectatorMenu.next_page": "Next Page", + "spectatorMenu.previous_page": "Previous Page", + "spectatorMenu.root.prompt": "Press a key to select a command, and again to use it.", + "spectatorMenu.team_teleport": "Teleport to Team Member", + "spectatorMenu.team_teleport.prompt": "Select a team to teleport to", + "spectatorMenu.teleport": "Teleport to Player", + "spectatorMenu.teleport.prompt": "Select a player to teleport to", + "stat_type.minecraft.broken": "Times Broken", + "stat_type.minecraft.crafted": "Times Crafted", + "stat_type.minecraft.dropped": "Dropped", + "stat_type.minecraft.killed": "You killed %s %s", + "stat_type.minecraft.killed_by": "%s killed you %s time(s)", + "stat_type.minecraft.killed_by.none": "You have never been killed by %s", + "stat_type.minecraft.killed.none": "You have never killed %s", + "stat_type.minecraft.mined": "Times Mined", + "stat_type.minecraft.picked_up": "Picked Up", + "stat_type.minecraft.used": "Times Used", + "stat.generalButton": "General", + "stat.itemsButton": "Items", + "stat.minecraft.animals_bred": "Animals Bred", + "stat.minecraft.aviate_one_cm": "Distance by Elytra", + "stat.minecraft.bell_ring": "Bells Rung", + "stat.minecraft.boat_one_cm": "Distance by Boat", + "stat.minecraft.clean_armor": "Armor Pieces Cleaned", + "stat.minecraft.clean_banner": "Banners Cleaned", + "stat.minecraft.clean_shulker_box": "Shulker Boxes Cleaned", + "stat.minecraft.climb_one_cm": "Distance Climbed", + "stat.minecraft.crouch_one_cm": "Distance Crouched", + "stat.minecraft.damage_absorbed": "Damage Absorbed", + "stat.minecraft.damage_blocked_by_shield": "Damage Blocked by Shield", + "stat.minecraft.damage_dealt": "Damage Dealt", + "stat.minecraft.damage_dealt_absorbed": "Damage Dealt (Absorbed)", + "stat.minecraft.damage_dealt_resisted": "Damage Dealt (Resisted)", + "stat.minecraft.damage_resisted": "Damage Resisted", + "stat.minecraft.damage_taken": "Damage Taken", + "stat.minecraft.deaths": "Number of Deaths", + "stat.minecraft.drop": "Items Dropped", + "stat.minecraft.eat_cake_slice": "Cake Slices Eaten", + "stat.minecraft.enchant_item": "Items Enchanted", + "stat.minecraft.fall_one_cm": "Distance Fallen", + "stat.minecraft.fill_cauldron": "Cauldrons Filled", + "stat.minecraft.fish_caught": "Fish Caught", + "stat.minecraft.fly_one_cm": "Distance Flown", + "stat.minecraft.happy_ghast_one_cm": "Distance by Happy Ghast", + "stat.minecraft.horse_one_cm": "Distance by Horse", + "stat.minecraft.inspect_dispenser": "Dispensers Searched", + "stat.minecraft.inspect_dropper": "Droppers Searched", + "stat.minecraft.inspect_hopper": "Hoppers Searched", + "stat.minecraft.interact_with_anvil": "Interactions with Anvil", + "stat.minecraft.interact_with_beacon": "Interactions with Beacon", + "stat.minecraft.interact_with_blast_furnace": "Interactions with Blast Furnace", + "stat.minecraft.interact_with_brewingstand": "Interactions with Brewing Stand", + "stat.minecraft.interact_with_campfire": "Interactions with Campfire", + "stat.minecraft.interact_with_cartography_table": "Interactions with Cartography Table", + "stat.minecraft.interact_with_crafting_table": "Interactions with Crafting Table", + "stat.minecraft.interact_with_furnace": "Interactions with Furnace", + "stat.minecraft.interact_with_grindstone": "Interactions with Grindstone", + "stat.minecraft.interact_with_lectern": "Interactions with Lectern", + "stat.minecraft.interact_with_loom": "Interactions with Loom", + "stat.minecraft.interact_with_smithing_table": "Interactions with Smithing Table", + "stat.minecraft.interact_with_smoker": "Interactions with Smoker", + "stat.minecraft.interact_with_stonecutter": "Interactions with Stonecutter", + "stat.minecraft.jump": "Jumps", + "stat.minecraft.leave_game": "Games Quit", + "stat.minecraft.minecart_one_cm": "Distance by Minecart", + "stat.minecraft.mob_kills": "Mob Kills", + "stat.minecraft.open_barrel": "Barrels Opened", + "stat.minecraft.open_chest": "Chests Opened", + "stat.minecraft.open_enderchest": "Ender Chests Opened", + "stat.minecraft.open_shulker_box": "Shulker Boxes Opened", + "stat.minecraft.pig_one_cm": "Distance by Pig", + "stat.minecraft.play_noteblock": "Note Blocks Played", + "stat.minecraft.play_record": "Music Discs Played", + "stat.minecraft.play_time": "Time Played", + "stat.minecraft.player_kills": "Player Kills", + "stat.minecraft.pot_flower": "Plants Potted", + "stat.minecraft.raid_trigger": "Raids Triggered", + "stat.minecraft.raid_win": "Raids Won", + "stat.minecraft.sleep_in_bed": "Times Slept in a Bed", + "stat.minecraft.sneak_time": "Sneak Time", + "stat.minecraft.sprint_one_cm": "Distance Sprinted", + "stat.minecraft.strider_one_cm": "Distance by Strider", + "stat.minecraft.swim_one_cm": "Distance Swum", + "stat.minecraft.talked_to_villager": "Talked to Villagers", + "stat.minecraft.target_hit": "Targets Hit", + "stat.minecraft.time_since_death": "Time Since Last Death", + "stat.minecraft.time_since_rest": "Time Since Last Rest", + "stat.minecraft.total_world_time": "Time with World Open", + "stat.minecraft.traded_with_villager": "Traded with Villagers", + "stat.minecraft.trigger_trapped_chest": "Trapped Chests Triggered", + "stat.minecraft.tune_noteblock": "Note Blocks Tuned", + "stat.minecraft.use_cauldron": "Water Taken from Cauldron", + "stat.minecraft.walk_on_water_one_cm": "Distance Walked on Water", + "stat.minecraft.walk_one_cm": "Distance Walked", + "stat.minecraft.walk_under_water_one_cm": "Distance Walked under Water", + "stat.mobsButton": "Mobs", + "stats.none": "-", + "structure_block.button.detect_size": "DETECT", + "structure_block.button.load": "LOAD", + "structure_block.button.save": "SAVE", + "structure_block.custom_data": "Custom Data Tag Name", + "structure_block.detect_size": "Detect Structure Size and Position:", + "structure_block.hover.corner": "Corner: %s", + "structure_block.hover.data": "Data: %s", + "structure_block.hover.load": "Load: %s", + "structure_block.hover.save": "Save: %s", + "structure_block.include_entities": "Include Entities:", + "structure_block.integrity": "Structure Integrity and Seed", + "structure_block.integrity.integrity": "Structure Integrity", + "structure_block.integrity.seed": "Structure Seed", + "structure_block.invalid_structure_name": "Invalid structure name '%s'", + "structure_block.load_not_found": "Structure '%s' is not available", + "structure_block.load_prepare": "Structure '%s' position prepared", + "structure_block.load_success": "Structure loaded from '%s'", + "structure_block.mode_info.corner": "Corner Mode - Placement and size marker", + "structure_block.mode_info.data": "Data Mode - Game logic marker", + "structure_block.mode_info.load": "Load Mode - Load from file", + "structure_block.mode_info.save": "Save Mode - Write to file", + "structure_block.mode.corner": "Corner", + "structure_block.mode.data": "Data", + "structure_block.mode.load": "Load", + "structure_block.mode.save": "Save", + "structure_block.position": "Relative Position", + "structure_block.position.x": "relative Position x", + "structure_block.position.y": "relative position y", + "structure_block.position.z": "relative position z", + "structure_block.save_failure": "Unable to save structure '%s'", + "structure_block.save_success": "Structure saved as '%s'", + "structure_block.show_air": "Show Invisible Blocks:", + "structure_block.show_boundingbox": "Show Bounding Box:", + "structure_block.size": "Structure Size", + "structure_block.size_failure": "Unable to detect structure size. Add corners with matching structure names", + "structure_block.size_success": "Size successfully detected for '%s'", + "structure_block.size.x": "structure size x", + "structure_block.size.y": "structure size y", + "structure_block.size.z": "structure size z", + "structure_block.strict": "Strict Placement:", + "structure_block.structure_name": "Structure Name", + "subtitles.ambient.cave": "Eerie noise", + "subtitles.ambient.sound": "Eerie noise", + "subtitles.block.amethyst_block.chime": "Amethyst chimes", + "subtitles.block.amethyst_block.resonate": "Amethyst resonates", + "subtitles.block.anvil.destroy": "Anvil destroyed", + "subtitles.block.anvil.land": "Anvil landed", + "subtitles.block.anvil.use": "Anvil used", + "subtitles.block.barrel.close": "Barrel closes", + "subtitles.block.barrel.open": "Barrel opens", + "subtitles.block.beacon.activate": "Beacon activates", + "subtitles.block.beacon.ambient": "Beacon hums", + "subtitles.block.beacon.deactivate": "Beacon deactivates", + "subtitles.block.beacon.power_select": "Beacon power selected", + "subtitles.block.beehive.drip": "Honey drips", + "subtitles.block.beehive.enter": "Bee enters hive", + "subtitles.block.beehive.exit": "Bee leaves hive", + "subtitles.block.beehive.shear": "Shears scrape", + "subtitles.block.beehive.work": "Bees work", + "subtitles.block.bell.resonate": "Bell resonates", + "subtitles.block.bell.use": "Bell rings", + "subtitles.block.big_dripleaf.tilt_down": "Dripleaf tilts down", + "subtitles.block.big_dripleaf.tilt_up": "Dripleaf tilts up", + "subtitles.block.blastfurnace.fire_crackle": "Blast Furnace crackles", + "subtitles.block.brewing_stand.brew": "Brewing Stand bubbles", + "subtitles.block.bubble_column.bubble_pop": "Bubbles pop", + "subtitles.block.bubble_column.upwards_ambient": "Bubbles flow", + "subtitles.block.bubble_column.upwards_inside": "Bubbles woosh", + "subtitles.block.bubble_column.whirlpool_ambient": "Bubbles whirl", + "subtitles.block.bubble_column.whirlpool_inside": "Bubbles zoom", + "subtitles.block.button.click": "Button clicks", + "subtitles.block.cake.add_candle": "Cake squishes", + "subtitles.block.campfire.crackle": "Campfire crackles", + "subtitles.block.candle.crackle": "Candle crackles", + "subtitles.block.candle.extinguish": "Candle extinguishes", + "subtitles.block.chest.close": "Chest closes", + "subtitles.block.chest.locked": "Chest locked", + "subtitles.block.chest.open": "Chest opens", + "subtitles.block.chorus_flower.death": "Chorus Flower withers", + "subtitles.block.chorus_flower.grow": "Chorus Flower grows", + "subtitles.block.comparator.click": "Comparator clicks", + "subtitles.block.composter.empty": "Composter emptied", + "subtitles.block.composter.fill": "Composter filled", + "subtitles.block.composter.ready": "Composter composts", + "subtitles.block.conduit.activate": "Conduit activates", + "subtitles.block.conduit.ambient": "Conduit pulses", + "subtitles.block.conduit.attack.target": "Conduit attacks", + "subtitles.block.conduit.deactivate": "Conduit deactivates", + "subtitles.block.copper_bulb.turn_off": "Copper Bulb turns off", + "subtitles.block.copper_bulb.turn_on": "Copper Bulb turns on", + "subtitles.block.copper_chest.close": "Chest closes", + "subtitles.block.copper_chest.open": "Chest opens", + "subtitles.block.copper_trapdoor.close": "Trapdoor closes", + "subtitles.block.copper_trapdoor.open": "Trapdoor opens", + "subtitles.block.crafter.craft": "Crafter crafts", + "subtitles.block.crafter.fail": "Crafter fails crafting", + "subtitles.block.creaking_heart.hurt": "Creaking Heart grumbles", + "subtitles.block.creaking_heart.idle": "Eerie noise", + "subtitles.block.creaking_heart.spawn": "Creaking Heart awakens", + "subtitles.block.deadbush.idle": "Dry sounds", + "subtitles.block.decorated_pot.insert": "Decorated Pot fills", + "subtitles.block.decorated_pot.insert_fail": "Decorated Pot wobbles", + "subtitles.block.decorated_pot.shatter": "Decorated Pot shatters", + "subtitles.block.dispenser.dispense": "Dispensed item", + "subtitles.block.dispenser.fail": "Dispenser failed", + "subtitles.block.door.toggle": "Door creaks", + "subtitles.block.dried_ghast.ambient": "Sounds of dryness", + "subtitles.block.dried_ghast.ambient_water": "Dried Ghast rehydrates", + "subtitles.block.dried_ghast.place_in_water": "Dried Ghast soaks", + "subtitles.block.dried_ghast.transition": "Dried Ghast feels better", + "subtitles.block.dry_grass.ambient": "Windy sounds", + "subtitles.block.enchantment_table.use": "Enchanting Table used", + "subtitles.block.end_portal_frame.fill": "Eye of Ender attaches", + "subtitles.block.end_portal.spawn": "End Portal opens", + "subtitles.block.eyeblossom.close": "Eyeblossom closes", + "subtitles.block.eyeblossom.idle": "Eyeblossom whispers", + "subtitles.block.eyeblossom.open": "Eyeblossom opens", + "subtitles.block.fence_gate.toggle": "Fence Gate creaks", + "subtitles.block.fire.ambient": "Fire crackles", + "subtitles.block.fire.extinguish": "Fire extinguished", + "subtitles.block.firefly_bush.idle": "Fireflies buzz", + "subtitles.block.frogspawn.hatch": "Tadpole hatches", + "subtitles.block.furnace.fire_crackle": "Furnace crackles", + "subtitles.block.generic.break": "Block broken", + "subtitles.block.generic.fall": "Something falls on a block", + "subtitles.block.generic.footsteps": "Footsteps", + "subtitles.block.generic.hit": "Block breaking", + "subtitles.block.generic.place": "Block placed", + "subtitles.block.grindstone.use": "Grindstone used", + "subtitles.block.growing_plant.crop": "Plant cropped", + "subtitles.block.hanging_sign.waxed_interact_fail": "Sign wobbles", + "subtitles.block.honey_block.slide": "Sliding down a honey block", + "subtitles.block.iron_trapdoor.close": "Trapdoor closes", + "subtitles.block.iron_trapdoor.open": "Trapdoor opens", + "subtitles.block.lava.ambient": "Lava pops", + "subtitles.block.lava.extinguish": "Lava hisses", + "subtitles.block.lever.click": "Lever clicks", + "subtitles.block.note_block.note": "Note Block plays", + "subtitles.block.pale_hanging_moss.idle": "Eerie noise", + "subtitles.block.piston.move": "Piston moves", + "subtitles.block.pointed_dripstone.drip_lava": "Lava drips", + "subtitles.block.pointed_dripstone.drip_lava_into_cauldron": "Lava drips into Cauldron", + "subtitles.block.pointed_dripstone.drip_water": "Water drips", + "subtitles.block.pointed_dripstone.drip_water_into_cauldron": "Water drips into Cauldron", + "subtitles.block.pointed_dripstone.land": "Stalactite crashes down", + "subtitles.block.portal.ambient": "Portal whooshes", + "subtitles.block.portal.travel": "Portal noise fades", + "subtitles.block.portal.trigger": "Portal noise intensifies", + "subtitles.block.pressure_plate.click": "Pressure Plate clicks", + "subtitles.block.pumpkin.carve": "Shears carve", + "subtitles.block.redstone_torch.burnout": "Torch fizzes", + "subtitles.block.respawn_anchor.ambient": "Respawn Anchor whooshes", + "subtitles.block.respawn_anchor.charge": "Respawn Anchor is charged", + "subtitles.block.respawn_anchor.deplete": "Respawn Anchor depletes", + "subtitles.block.respawn_anchor.set_spawn": "Respawn Anchor sets spawn", + "subtitles.block.sand.idle": "Sandy sounds", + "subtitles.block.sand.wind": "Windy sounds", + "subtitles.block.sculk_catalyst.bloom": "Sculk Catalyst blooms", + "subtitles.block.sculk_sensor.clicking": "Sculk Sensor clicks", + "subtitles.block.sculk_sensor.clicking_stop": "Sculk Sensor stops clicking", + "subtitles.block.sculk_shrieker.shriek": "Sculk Shrieker shrieks", + "subtitles.block.sculk.charge": "Sculk bubbles", + "subtitles.block.sculk.spread": "Sculk spreads", + "subtitles.block.shelf.activate": "Shelf activates", + "subtitles.block.shelf.deactivate": "Shelf deactivates", + "subtitles.block.shelf.multi_swap": "Items swap", + "subtitles.block.shelf.place_item": "Item placed", + "subtitles.block.shelf.single_swap": "Item swaps", + "subtitles.block.shelf.take_item": "Item taken", + "subtitles.block.shulker_box.close": "Shulker box closes", + "subtitles.block.shulker_box.open": "Shulker box opens", + "subtitles.block.sign.waxed_interact_fail": "Sign wobbles", + "subtitles.block.smithing_table.use": "Smithing Table used", + "subtitles.block.smoker.smoke": "Smoker smokes", + "subtitles.block.sniffer_egg.crack": "Sniffer Egg cracks", + "subtitles.block.sniffer_egg.hatch": "Sniffer Egg hatches", + "subtitles.block.sniffer_egg.plop": "Sniffer plops", + "subtitles.block.sponge.absorb": "Sponge sucks", + "subtitles.block.sweet_berry_bush.pick_berries": "Berries pop", + "subtitles.block.trapdoor.close": "Trapdoor closes", + "subtitles.block.trapdoor.open": "Trapdoor opens", + "subtitles.block.trapdoor.toggle": "Trapdoor creaks", + "subtitles.block.trial_spawner.about_to_spawn_item": "Ominous item prepares", + "subtitles.block.trial_spawner.ambient": "Trial Spawner crackles", + "subtitles.block.trial_spawner.ambient_charged": "Ominous crackling", + "subtitles.block.trial_spawner.ambient_ominous": "Ominous crackling", + "subtitles.block.trial_spawner.charge_activate": "Omen engulfs Trial Spawner", + "subtitles.block.trial_spawner.close_shutter": "Trial Spawner closes", + "subtitles.block.trial_spawner.detect_player": "Trial Spawner charges up", + "subtitles.block.trial_spawner.eject_item": "Trial Spawner ejects items", + "subtitles.block.trial_spawner.ominous_activate": "Omen engulfs Trial Spawner", + "subtitles.block.trial_spawner.open_shutter": "Trial Spawner opens", + "subtitles.block.trial_spawner.spawn_item": "Ominous item drops", + "subtitles.block.trial_spawner.spawn_item_begin": "Ominous item appears", + "subtitles.block.trial_spawner.spawn_mob": "Trial Spawner spawns a mob", + "subtitles.block.tripwire.attach": "Tripwire attaches", + "subtitles.block.tripwire.click": "Tripwire clicks", + "subtitles.block.tripwire.detach": "Tripwire detaches", + "subtitles.block.vault.activate": "Vault ignites", + "subtitles.block.vault.ambient": "Vault crackles", + "subtitles.block.vault.close_shutter": "Vault closes", + "subtitles.block.vault.deactivate": "Vault extinguishes", + "subtitles.block.vault.eject_item": "Vault ejects item", + "subtitles.block.vault.insert_item": "Vault unlocks", + "subtitles.block.vault.insert_item_fail": "Vault rejects item", + "subtitles.block.vault.open_shutter": "Vault opens", + "subtitles.block.vault.reject_rewarded_player": "Vault rejects player", + "subtitles.block.water.ambient": "Water flows", + "subtitles.block.wet_sponge.dries": "Sponge dries", + "subtitles.chiseled_bookshelf.insert": "Book placed", + "subtitles.chiseled_bookshelf.insert_enchanted": "Enchanted Book placed", + "subtitles.chiseled_bookshelf.take": "Book taken", + "subtitles.chiseled_bookshelf.take_enchanted": "Enchanted Book taken", + "subtitles.enchant.thorns.hit": "Thorns prick", + "subtitles.entity.allay.ambient_with_item": "Allay seeks", + "subtitles.entity.allay.ambient_without_item": "Allay yearns", + "subtitles.entity.allay.death": "Allay dies", + "subtitles.entity.allay.hurt": "Allay hurts", + "subtitles.entity.allay.item_given": "Allay chortles", + "subtitles.entity.allay.item_taken": "Allay allays", + "subtitles.entity.allay.item_thrown": "Allay tosses", + "subtitles.entity.armadillo.ambient": "Armadillo grunts", + "subtitles.entity.armadillo.brush": "Scute is brushed off", + "subtitles.entity.armadillo.death": "Armadillo dies", + "subtitles.entity.armadillo.eat": "Armadillo eats", + "subtitles.entity.armadillo.hurt": "Armadillo hurts", + "subtitles.entity.armadillo.hurt_reduced": "Armadillo shields itself", + "subtitles.entity.armadillo.land": "Armadillo lands", + "subtitles.entity.armadillo.peek": "Armadillo peeks", + "subtitles.entity.armadillo.roll": "Armadillo rolls up", + "subtitles.entity.armadillo.scute_drop": "Armadillo sheds scute", + "subtitles.entity.armadillo.unroll_finish": "Armadillo unrolls", + "subtitles.entity.armadillo.unroll_start": "Armadillo peeks", + "subtitles.entity.armor_stand.fall": "Something fell", + "subtitles.entity.arrow.hit": "Arrow hits", + "subtitles.entity.arrow.hit_player": "Player hit", + "subtitles.entity.arrow.shoot": "Arrow fired", + "subtitles.entity.axolotl.attack": "Axolotl attacks", + "subtitles.entity.axolotl.death": "Axolotl dies", + "subtitles.entity.axolotl.hurt": "Axolotl hurts", + "subtitles.entity.axolotl.idle_air": "Axolotl chirps", + "subtitles.entity.axolotl.idle_water": "Axolotl chirps", + "subtitles.entity.axolotl.splash": "Axolotl splashes", + "subtitles.entity.axolotl.swim": "Axolotl swims", + "subtitles.entity.bat.ambient": "Bat screeches", + "subtitles.entity.bat.death": "Bat dies", + "subtitles.entity.bat.hurt": "Bat hurts", + "subtitles.entity.bat.takeoff": "Bat takes off", + "subtitles.entity.bee.ambient": "Bee buzzes", + "subtitles.entity.bee.death": "Bee dies", + "subtitles.entity.bee.hurt": "Bee hurts", + "subtitles.entity.bee.loop": "Bee buzzes", + "subtitles.entity.bee.loop_aggressive": "Bee buzzes angrily", + "subtitles.entity.bee.pollinate": "Bee buzzes happily", + "subtitles.entity.bee.sting": "Bee stings", + "subtitles.entity.blaze.ambient": "Blaze breathes", + "subtitles.entity.blaze.burn": "Blaze crackles", + "subtitles.entity.blaze.death": "Blaze dies", + "subtitles.entity.blaze.hurt": "Blaze hurts", + "subtitles.entity.blaze.shoot": "Blaze shoots", + "subtitles.entity.boat.paddle_land": "Rowing", + "subtitles.entity.boat.paddle_water": "Rowing", + "subtitles.entity.bogged.ambient": "Bogged rattles", + "subtitles.entity.bogged.death": "Bogged dies", + "subtitles.entity.bogged.hurt": "Bogged hurts", + "subtitles.entity.breeze.charge": "Breeze charges", + "subtitles.entity.breeze.death": "Breeze dies", + "subtitles.entity.breeze.deflect": "Breeze deflects", + "subtitles.entity.breeze.hurt": "Breeze hurts", + "subtitles.entity.breeze.idle_air": "Breeze flies", + "subtitles.entity.breeze.idle_ground": "Breeze whirs", + "subtitles.entity.breeze.inhale": "Breeze inhales", + "subtitles.entity.breeze.jump": "Breeze jumps", + "subtitles.entity.breeze.land": "Breeze lands", + "subtitles.entity.breeze.shoot": "Breeze shoots", + "subtitles.entity.breeze.slide": "Breeze slides", + "subtitles.entity.breeze.whirl": "Breeze whirls", + "subtitles.entity.breeze.wind_burst": "Wind Charge bursts", + "subtitles.entity.camel.ambient": "Camel grunts", + "subtitles.entity.camel.dash": "Camel yeets", + "subtitles.entity.camel.dash_ready": "Camel recovers", + "subtitles.entity.camel.death": "Camel dies", + "subtitles.entity.camel.eat": "Camel eats", + "subtitles.entity.camel.hurt": "Camel hurts", + "subtitles.entity.camel.saddle": "Saddle equips", + "subtitles.entity.camel.sit": "Camel sits down", + "subtitles.entity.camel.stand": "Camel stands up", + "subtitles.entity.camel.step": "Camel steps", + "subtitles.entity.camel.step_sand": "Camel sands", + "subtitles.entity.cat.ambient": "Cat meows", + "subtitles.entity.cat.beg_for_food": "Cat begs", + "subtitles.entity.cat.death": "Cat dies", + "subtitles.entity.cat.eat": "Cat eats", + "subtitles.entity.cat.hiss": "Cat hisses", + "subtitles.entity.cat.hurt": "Cat hurts", + "subtitles.entity.cat.purr": "Cat purrs", + "subtitles.entity.chicken.ambient": "Chicken clucks", + "subtitles.entity.chicken.death": "Chicken dies", + "subtitles.entity.chicken.egg": "Chicken plops", + "subtitles.entity.chicken.hurt": "Chicken hurts", + "subtitles.entity.cod.death": "Cod dies", + "subtitles.entity.cod.flop": "Cod flops", + "subtitles.entity.cod.hurt": "Cod hurts", + "subtitles.entity.copper_golem_become_statue": "Copper Golem is petrified", + "subtitles.entity.copper_golem_oxidized.death": "Copper Golem dies", + "subtitles.entity.copper_golem_oxidized.hurt": "Copper Golem hurts", + "subtitles.entity.copper_golem_oxidized.spin": "Copper Golem's head spins", + "subtitles.entity.copper_golem_weathered.death": "Copper Golem dies", + "subtitles.entity.copper_golem_weathered.hurt": "Copper Golem hurts", + "subtitles.entity.copper_golem_weathered.spin": "Copper Golem's head spins", + "subtitles.entity.copper_golem.death": "Copper Golem dies", + "subtitles.entity.copper_golem.hurt": "Copper Golem hurts", + "subtitles.entity.copper_golem.item_drop": "Copper Golem is placing an item", + "subtitles.entity.copper_golem.item_no_drop": "Copper Golem can't place item", + "subtitles.entity.copper_golem.no_item_get": "Copper Golem is picking up item", + "subtitles.entity.copper_golem.no_item_no_get": "Copper Golem can't pick up item", + "subtitles.entity.copper_golem.spawn": "Copper Golem appears", + "subtitles.entity.copper_golem.spin": "Copper Golem's head spins", + "subtitles.entity.cow.ambient": "Cow moos", + "subtitles.entity.cow.death": "Cow dies", + "subtitles.entity.cow.hurt": "Cow hurts", + "subtitles.entity.cow.milk": "Cow gets milked", + "subtitles.entity.creaking.activate": "Creaking watches", + "subtitles.entity.creaking.ambient": "Creaking creaks", + "subtitles.entity.creaking.attack": "Creaking attacks", + "subtitles.entity.creaking.deactivate": "Creaking calms", + "subtitles.entity.creaking.death": "Creaking crumbles", + "subtitles.entity.creaking.freeze": "Creaking stops", + "subtitles.entity.creaking.spawn": "Creaking manifests", + "subtitles.entity.creaking.sway": "Creaking is hit", + "subtitles.entity.creaking.twitch": "Creaking twitches", + "subtitles.entity.creaking.unfreeze": "Creaking moves", + "subtitles.entity.creeper.death": "Creeper dies", + "subtitles.entity.creeper.hurt": "Creeper hurts", + "subtitles.entity.creeper.primed": "Creeper hisses", + "subtitles.entity.dolphin.ambient": "Dolphin chirps", + "subtitles.entity.dolphin.ambient_water": "Dolphin whistles", + "subtitles.entity.dolphin.attack": "Dolphin attacks", + "subtitles.entity.dolphin.death": "Dolphin dies", + "subtitles.entity.dolphin.eat": "Dolphin eats", + "subtitles.entity.dolphin.hurt": "Dolphin hurts", + "subtitles.entity.dolphin.jump": "Dolphin jumps", + "subtitles.entity.dolphin.play": "Dolphin plays", + "subtitles.entity.dolphin.splash": "Dolphin splashes", + "subtitles.entity.dolphin.swim": "Dolphin swims", + "subtitles.entity.donkey.ambient": "Donkey hee-haws", + "subtitles.entity.donkey.angry": "Donkey neighs", + "subtitles.entity.donkey.chest": "Donkey Chest equips", + "subtitles.entity.donkey.death": "Donkey dies", + "subtitles.entity.donkey.eat": "Donkey eats", + "subtitles.entity.donkey.hurt": "Donkey hurts", + "subtitles.entity.donkey.jump": "Donkey jumps", + "subtitles.entity.drowned.ambient": "Drowned gurgles", + "subtitles.entity.drowned.ambient_water": "Drowned gurgles", + "subtitles.entity.drowned.death": "Drowned dies", + "subtitles.entity.drowned.hurt": "Drowned hurts", + "subtitles.entity.drowned.shoot": "Drowned throws Trident", + "subtitles.entity.drowned.step": "Drowned steps", + "subtitles.entity.drowned.swim": "Drowned swims", + "subtitles.entity.egg.throw": "Egg flies", + "subtitles.entity.elder_guardian.ambient": "Elder Guardian moans", + "subtitles.entity.elder_guardian.ambient_land": "Elder Guardian flaps", + "subtitles.entity.elder_guardian.curse": "Elder Guardian curses", + "subtitles.entity.elder_guardian.death": "Elder Guardian dies", + "subtitles.entity.elder_guardian.flop": "Elder Guardian flops", + "subtitles.entity.elder_guardian.hurt": "Elder Guardian hurts", + "subtitles.entity.ender_dragon.ambient": "Dragon roars", + "subtitles.entity.ender_dragon.death": "Dragon dies", + "subtitles.entity.ender_dragon.flap": "Dragon flaps", + "subtitles.entity.ender_dragon.growl": "Dragon growls", + "subtitles.entity.ender_dragon.hurt": "Dragon hurts", + "subtitles.entity.ender_dragon.shoot": "Dragon shoots", + "subtitles.entity.ender_eye.death": "Eye of Ender falls", + "subtitles.entity.ender_eye.launch": "Eye of Ender shoots", + "subtitles.entity.ender_pearl.throw": "Ender Pearl flies", + "subtitles.entity.enderman.ambient": "Enderman vwoops", + "subtitles.entity.enderman.death": "Enderman dies", + "subtitles.entity.enderman.hurt": "Enderman hurts", + "subtitles.entity.enderman.scream": "Enderman screams", + "subtitles.entity.enderman.stare": "Enderman cries out", + "subtitles.entity.enderman.teleport": "Enderman teleports", + "subtitles.entity.endermite.ambient": "Endermite scuttles", + "subtitles.entity.endermite.death": "Endermite dies", + "subtitles.entity.endermite.hurt": "Endermite hurts", + "subtitles.entity.evoker_fangs.attack": "Fangs snap", + "subtitles.entity.evoker.ambient": "Evoker murmurs", + "subtitles.entity.evoker.cast_spell": "Evoker casts spell", + "subtitles.entity.evoker.celebrate": "Evoker cheers", + "subtitles.entity.evoker.death": "Evoker dies", + "subtitles.entity.evoker.hurt": "Evoker hurts", + "subtitles.entity.evoker.prepare_attack": "Evoker prepares attack", + "subtitles.entity.evoker.prepare_summon": "Evoker prepares summoning", + "subtitles.entity.evoker.prepare_wololo": "Evoker prepares charming", + "subtitles.entity.experience_orb.pickup": "Experience gained", + "subtitles.entity.firework_rocket.blast": "Firework blasts", + "subtitles.entity.firework_rocket.launch": "Firework launches", + "subtitles.entity.firework_rocket.twinkle": "Firework twinkles", + "subtitles.entity.fish.swim": "Splashes", + "subtitles.entity.fishing_bobber.retrieve": "Bobber retrieved", + "subtitles.entity.fishing_bobber.splash": "Fishing Bobber splashes", + "subtitles.entity.fishing_bobber.throw": "Bobber thrown", + "subtitles.entity.fox.aggro": "Fox angers", + "subtitles.entity.fox.ambient": "Fox squeaks", + "subtitles.entity.fox.bite": "Fox bites", + "subtitles.entity.fox.death": "Fox dies", + "subtitles.entity.fox.eat": "Fox eats", + "subtitles.entity.fox.hurt": "Fox hurts", + "subtitles.entity.fox.screech": "Fox screeches", + "subtitles.entity.fox.sleep": "Fox snores", + "subtitles.entity.fox.sniff": "Fox sniffs", + "subtitles.entity.fox.spit": "Fox spits", + "subtitles.entity.fox.teleport": "Fox teleports", + "subtitles.entity.frog.ambient": "Frog croaks", + "subtitles.entity.frog.death": "Frog dies", + "subtitles.entity.frog.eat": "Frog eats", + "subtitles.entity.frog.hurt": "Frog hurts", + "subtitles.entity.frog.lay_spawn": "Frog lays spawn", + "subtitles.entity.frog.long_jump": "Frog jumps", + "subtitles.entity.generic.big_fall": "Something fell", + "subtitles.entity.generic.burn": "Burning", + "subtitles.entity.generic.death": "Dying", + "subtitles.entity.generic.drink": "Sipping", + "subtitles.entity.generic.eat": "Eating", + "subtitles.entity.generic.explode": "Explosion", + "subtitles.entity.generic.extinguish_fire": "Fire extinguishes", + "subtitles.entity.generic.hurt": "Something hurts", + "subtitles.entity.generic.small_fall": "Something trips", + "subtitles.entity.generic.splash": "Splashing", + "subtitles.entity.generic.swim": "Swimming", + "subtitles.entity.generic.wind_burst": "Wind Charge bursts", + "subtitles.entity.ghast.ambient": "Ghast cries", + "subtitles.entity.ghast.death": "Ghast dies", + "subtitles.entity.ghast.hurt": "Ghast hurts", + "subtitles.entity.ghast.shoot": "Ghast shoots", + "subtitles.entity.ghastling.ambient": "Ghastling coos", + "subtitles.entity.ghastling.death": "Ghastling dies", + "subtitles.entity.ghastling.hurt": "Ghastling hurts", + "subtitles.entity.ghastling.spawn": "Ghastling appears", + "subtitles.entity.glow_item_frame.add_item": "Glow Item Frame fills", + "subtitles.entity.glow_item_frame.break": "Glow Item Frame broken", + "subtitles.entity.glow_item_frame.place": "Glow Item Frame placed", + "subtitles.entity.glow_item_frame.remove_item": "Glow Item Frame empties", + "subtitles.entity.glow_item_frame.rotate_item": "Glow Item Frame clicks", + "subtitles.entity.glow_squid.ambient": "Glow Squid swims", + "subtitles.entity.glow_squid.death": "Glow Squid dies", + "subtitles.entity.glow_squid.hurt": "Glow Squid hurts", + "subtitles.entity.glow_squid.squirt": "Glow Squid shoots ink", + "subtitles.entity.goat.ambient": "Goat bleats", + "subtitles.entity.goat.death": "Goat dies", + "subtitles.entity.goat.eat": "Goat eats", + "subtitles.entity.goat.horn_break": "Goat Horn breaks off", + "subtitles.entity.goat.hurt": "Goat hurts", + "subtitles.entity.goat.long_jump": "Goat leaps", + "subtitles.entity.goat.milk": "Goat gets milked", + "subtitles.entity.goat.prepare_ram": "Goat stomps", + "subtitles.entity.goat.ram_impact": "Goat rams", + "subtitles.entity.goat.screaming.ambient": "Goat bellows", + "subtitles.entity.goat.step": "Goat steps", + "subtitles.entity.guardian.ambient": "Guardian moans", + "subtitles.entity.guardian.ambient_land": "Guardian flaps", + "subtitles.entity.guardian.attack": "Guardian shoots", + "subtitles.entity.guardian.death": "Guardian dies", + "subtitles.entity.guardian.flop": "Guardian flops", + "subtitles.entity.guardian.hurt": "Guardian hurts", + "subtitles.entity.happy_ghast.ambient": "Happy Ghast croons", + "subtitles.entity.happy_ghast.death": "Happy Ghast dies", + "subtitles.entity.happy_ghast.equip": "Harness equips", + "subtitles.entity.happy_ghast.harness_goggles_down": "Happy Ghast is ready", + "subtitles.entity.happy_ghast.harness_goggles_up": "Happy Ghast stops", + "subtitles.entity.happy_ghast.hurt": "Happy Ghast hurts", + "subtitles.entity.happy_ghast.unequip": "Harness unequips", + "subtitles.entity.hoglin.ambient": "Hoglin growls", + "subtitles.entity.hoglin.angry": "Hoglin growls angrily", + "subtitles.entity.hoglin.attack": "Hoglin attacks", + "subtitles.entity.hoglin.converted_to_zombified": "Hoglin converts to Zoglin", + "subtitles.entity.hoglin.death": "Hoglin dies", + "subtitles.entity.hoglin.hurt": "Hoglin hurts", + "subtitles.entity.hoglin.retreat": "Hoglin retreats", + "subtitles.entity.hoglin.step": "Hoglin steps", + "subtitles.entity.horse.ambient": "Horse neighs", + "subtitles.entity.horse.angry": "Horse neighs", + "subtitles.entity.horse.armor": "Horse armor equips", + "subtitles.entity.horse.breathe": "Horse breathes", + "subtitles.entity.horse.death": "Horse dies", + "subtitles.entity.horse.eat": "Horse eats", + "subtitles.entity.horse.gallop": "Horse gallops", + "subtitles.entity.horse.hurt": "Horse hurts", + "subtitles.entity.horse.jump": "Horse jumps", + "subtitles.entity.horse.saddle": "Saddle equips", + "subtitles.entity.husk.ambient": "Husk groans", + "subtitles.entity.husk.converted_to_zombie": "Husk converts to Zombie", + "subtitles.entity.husk.death": "Husk dies", + "subtitles.entity.husk.hurt": "Husk hurts", + "subtitles.entity.illusioner.ambient": "Illusioner murmurs", + "subtitles.entity.illusioner.cast_spell": "Illusioner casts spell", + "subtitles.entity.illusioner.death": "Illusioner dies", + "subtitles.entity.illusioner.hurt": "Illusioner hurts", + "subtitles.entity.illusioner.mirror_move": "Illusioner displaces", + "subtitles.entity.illusioner.prepare_blindness": "Illusioner prepares blindness", + "subtitles.entity.illusioner.prepare_mirror": "Illusioner prepares mirror image", + "subtitles.entity.iron_golem.attack": "Iron Golem attacks", + "subtitles.entity.iron_golem.damage": "Iron Golem breaks", + "subtitles.entity.iron_golem.death": "Iron Golem dies", + "subtitles.entity.iron_golem.hurt": "Iron Golem hurts", + "subtitles.entity.iron_golem.repair": "Iron Golem repaired", + "subtitles.entity.item_frame.add_item": "Item Frame fills", + "subtitles.entity.item_frame.break": "Item Frame broken", + "subtitles.entity.item_frame.place": "Item Frame placed", + "subtitles.entity.item_frame.remove_item": "Item Frame empties", + "subtitles.entity.item_frame.rotate_item": "Item Frame clicks", + "subtitles.entity.item.break": "Item breaks", + "subtitles.entity.item.pickup": "Item plops", + "subtitles.entity.leash_knot.break": "Leash Knot broken", + "subtitles.entity.leash_knot.place": "Leash Knot tied", + "subtitles.entity.lightning_bolt.impact": "Lightning strikes", + "subtitles.entity.lightning_bolt.thunder": "Thunder roars", + "subtitles.entity.llama.ambient": "Llama bleats", + "subtitles.entity.llama.angry": "Llama bleats angrily", + "subtitles.entity.llama.chest": "Llama Chest equips", + "subtitles.entity.llama.death": "Llama dies", + "subtitles.entity.llama.eat": "Llama eats", + "subtitles.entity.llama.hurt": "Llama hurts", + "subtitles.entity.llama.spit": "Llama spits", + "subtitles.entity.llama.step": "Llama steps", + "subtitles.entity.llama.swag": "Llama is decorated", + "subtitles.entity.magma_cube.death": "Magma Cube dies", + "subtitles.entity.magma_cube.hurt": "Magma Cube hurts", + "subtitles.entity.magma_cube.squish": "Magma Cube squishes", + "subtitles.entity.minecart.inside": "Minecart jangles", + "subtitles.entity.minecart.inside_underwater": "Minecart jangles underwater", + "subtitles.entity.minecart.riding": "Minecart rolls", + "subtitles.entity.mooshroom.convert": "Mooshroom transforms", + "subtitles.entity.mooshroom.eat": "Mooshroom eats", + "subtitles.entity.mooshroom.milk": "Mooshroom gets milked", + "subtitles.entity.mooshroom.suspicious_milk": "Mooshroom gets milked suspiciously", + "subtitles.entity.mule.ambient": "Mule hee-haws", + "subtitles.entity.mule.angry": "Mule neighs", + "subtitles.entity.mule.chest": "Mule Chest equips", + "subtitles.entity.mule.death": "Mule dies", + "subtitles.entity.mule.eat": "Mule eats", + "subtitles.entity.mule.hurt": "Mule hurts", + "subtitles.entity.mule.jump": "Mule jumps", + "subtitles.entity.painting.break": "Painting broken", + "subtitles.entity.painting.place": "Painting placed", + "subtitles.entity.panda.aggressive_ambient": "Panda huffs", + "subtitles.entity.panda.ambient": "Panda pants", + "subtitles.entity.panda.bite": "Panda bites", + "subtitles.entity.panda.cant_breed": "Panda bleats", + "subtitles.entity.panda.death": "Panda dies", + "subtitles.entity.panda.eat": "Panda eats", + "subtitles.entity.panda.hurt": "Panda hurts", + "subtitles.entity.panda.pre_sneeze": "Panda's nose tickles", + "subtitles.entity.panda.sneeze": "Panda sneezes", + "subtitles.entity.panda.step": "Panda steps", + "subtitles.entity.panda.worried_ambient": "Panda whimpers", + "subtitles.entity.parrot.ambient": "Parrot talks", + "subtitles.entity.parrot.death": "Parrot dies", + "subtitles.entity.parrot.eats": "Parrot eats", + "subtitles.entity.parrot.fly": "Parrot flutters", + "subtitles.entity.parrot.hurts": "Parrot hurts", + "subtitles.entity.parrot.imitate.blaze": "Parrot breathes", + "subtitles.entity.parrot.imitate.bogged": "Parrot rattles", + "subtitles.entity.parrot.imitate.breeze": "Parrot whirs", + "subtitles.entity.parrot.imitate.creaking": "Parrot creaks", + "subtitles.entity.parrot.imitate.creeper": "Parrot hisses", + "subtitles.entity.parrot.imitate.drowned": "Parrot gurgles", + "subtitles.entity.parrot.imitate.elder_guardian": "Parrot moans", + "subtitles.entity.parrot.imitate.ender_dragon": "Parrot roars", + "subtitles.entity.parrot.imitate.endermite": "Parrot scuttles", + "subtitles.entity.parrot.imitate.evoker": "Parrot murmurs", + "subtitles.entity.parrot.imitate.ghast": "Parrot cries", + "subtitles.entity.parrot.imitate.guardian": "Parrot moans", + "subtitles.entity.parrot.imitate.hoglin": "Parrot growls", + "subtitles.entity.parrot.imitate.husk": "Parrot groans", + "subtitles.entity.parrot.imitate.illusioner": "Parrot murmurs", + "subtitles.entity.parrot.imitate.magma_cube": "Parrot squishes", + "subtitles.entity.parrot.imitate.phantom": "Parrot screeches", + "subtitles.entity.parrot.imitate.piglin": "Parrot snorts", + "subtitles.entity.parrot.imitate.piglin_brute": "Parrot snorts", + "subtitles.entity.parrot.imitate.pillager": "Parrot murmurs", + "subtitles.entity.parrot.imitate.ravager": "Parrot grunts", + "subtitles.entity.parrot.imitate.shulker": "Parrot lurks", + "subtitles.entity.parrot.imitate.silverfish": "Parrot hisses", + "subtitles.entity.parrot.imitate.skeleton": "Parrot rattles", + "subtitles.entity.parrot.imitate.slime": "Parrot squishes", + "subtitles.entity.parrot.imitate.spider": "Parrot hisses", + "subtitles.entity.parrot.imitate.stray": "Parrot rattles", + "subtitles.entity.parrot.imitate.vex": "Parrot vexes", + "subtitles.entity.parrot.imitate.vindicator": "Parrot mutters", + "subtitles.entity.parrot.imitate.warden": "Parrot whines", + "subtitles.entity.parrot.imitate.witch": "Parrot giggles", + "subtitles.entity.parrot.imitate.wither": "Parrot angers", + "subtitles.entity.parrot.imitate.wither_skeleton": "Parrot rattles", + "subtitles.entity.parrot.imitate.zoglin": "Parrot growls", + "subtitles.entity.parrot.imitate.zombie": "Parrot groans", + "subtitles.entity.parrot.imitate.zombie_villager": "Parrot groans", + "subtitles.entity.phantom.ambient": "Phantom screeches", + "subtitles.entity.phantom.bite": "Phantom bites", + "subtitles.entity.phantom.death": "Phantom dies", + "subtitles.entity.phantom.flap": "Phantom flaps", + "subtitles.entity.phantom.hurt": "Phantom hurts", + "subtitles.entity.phantom.swoop": "Phantom swoops", + "subtitles.entity.pig.ambient": "Pig oinks", + "subtitles.entity.pig.death": "Pig dies", + "subtitles.entity.pig.hurt": "Pig hurts", + "subtitles.entity.pig.saddle": "Saddle equips", + "subtitles.entity.piglin_brute.ambient": "Piglin Brute snorts", + "subtitles.entity.piglin_brute.angry": "Piglin Brute snorts angrily", + "subtitles.entity.piglin_brute.converted_to_zombified": "Piglin Brute converts to Zombified Piglin", + "subtitles.entity.piglin_brute.death": "Piglin Brute dies", + "subtitles.entity.piglin_brute.hurt": "Piglin Brute hurts", + "subtitles.entity.piglin_brute.step": "Piglin Brute steps", + "subtitles.entity.piglin.admiring_item": "Piglin admires item", + "subtitles.entity.piglin.ambient": "Piglin snorts", + "subtitles.entity.piglin.angry": "Piglin snorts angrily", + "subtitles.entity.piglin.celebrate": "Piglin celebrates", + "subtitles.entity.piglin.converted_to_zombified": "Piglin converts to Zombified Piglin", + "subtitles.entity.piglin.death": "Piglin dies", + "subtitles.entity.piglin.hurt": "Piglin hurts", + "subtitles.entity.piglin.jealous": "Piglin snorts enviously", + "subtitles.entity.piglin.retreat": "Piglin retreats", + "subtitles.entity.piglin.step": "Piglin steps", + "subtitles.entity.pillager.ambient": "Pillager murmurs", + "subtitles.entity.pillager.celebrate": "Pillager cheers", + "subtitles.entity.pillager.death": "Pillager dies", + "subtitles.entity.pillager.hurt": "Pillager hurts", + "subtitles.entity.player.attack.crit": "Critical attack", + "subtitles.entity.player.attack.knockback": "Knockback attack", + "subtitles.entity.player.attack.strong": "Strong attack", + "subtitles.entity.player.attack.sweep": "Sweeping attack", + "subtitles.entity.player.attack.weak": "Weak attack", + "subtitles.entity.player.burp": "Burp", + "subtitles.entity.player.death": "Player dies", + "subtitles.entity.player.freeze_hurt": "Player freezes", + "subtitles.entity.player.hurt": "Player hurts", + "subtitles.entity.player.hurt_drown": "Player drowning", + "subtitles.entity.player.hurt_on_fire": "Player burns", + "subtitles.entity.player.levelup": "Player dings", + "subtitles.entity.player.teleport": "Player teleports", + "subtitles.entity.polar_bear.ambient": "Polar Bear groans", + "subtitles.entity.polar_bear.ambient_baby": "Baby Polar Bear hums", + "subtitles.entity.polar_bear.death": "Polar Bear dies", + "subtitles.entity.polar_bear.hurt": "Polar Bear hurts", + "subtitles.entity.polar_bear.warning": "Polar Bear roars", + "subtitles.entity.potion.splash": "Bottle smashes", + "subtitles.entity.potion.throw": "Bottle thrown", + "subtitles.entity.puffer_fish.blow_out": "Pufferfish deflates", + "subtitles.entity.puffer_fish.blow_up": "Pufferfish inflates", + "subtitles.entity.puffer_fish.death": "Pufferfish dies", + "subtitles.entity.puffer_fish.flop": "Pufferfish flops", + "subtitles.entity.puffer_fish.hurt": "Pufferfish hurts", + "subtitles.entity.puffer_fish.sting": "Pufferfish stings", + "subtitles.entity.rabbit.ambient": "Rabbit squeaks", + "subtitles.entity.rabbit.attack": "Rabbit attacks", + "subtitles.entity.rabbit.death": "Rabbit dies", + "subtitles.entity.rabbit.hurt": "Rabbit hurts", + "subtitles.entity.rabbit.jump": "Rabbit hops", + "subtitles.entity.ravager.ambient": "Ravager grunts", + "subtitles.entity.ravager.attack": "Ravager bites", + "subtitles.entity.ravager.celebrate": "Ravager cheers", + "subtitles.entity.ravager.death": "Ravager dies", + "subtitles.entity.ravager.hurt": "Ravager hurts", + "subtitles.entity.ravager.roar": "Ravager roars", + "subtitles.entity.ravager.step": "Ravager steps", + "subtitles.entity.ravager.stunned": "Ravager stunned", + "subtitles.entity.salmon.death": "Salmon dies", + "subtitles.entity.salmon.flop": "Salmon flops", + "subtitles.entity.salmon.hurt": "Salmon hurts", + "subtitles.entity.sheep.ambient": "Sheep baahs", + "subtitles.entity.sheep.death": "Sheep dies", + "subtitles.entity.sheep.hurt": "Sheep hurts", + "subtitles.entity.shulker_bullet.hit": "Shulker Bullet explodes", + "subtitles.entity.shulker_bullet.hurt": "Shulker Bullet breaks", + "subtitles.entity.shulker.ambient": "Shulker lurks", + "subtitles.entity.shulker.close": "Shulker closes", + "subtitles.entity.shulker.death": "Shulker dies", + "subtitles.entity.shulker.hurt": "Shulker hurts", + "subtitles.entity.shulker.open": "Shulker opens", + "subtitles.entity.shulker.shoot": "Shulker shoots", + "subtitles.entity.shulker.teleport": "Shulker teleports", + "subtitles.entity.silverfish.ambient": "Silverfish hisses", + "subtitles.entity.silverfish.death": "Silverfish dies", + "subtitles.entity.silverfish.hurt": "Silverfish hurts", + "subtitles.entity.skeleton_horse.ambient": "Skeleton Horse cries", + "subtitles.entity.skeleton_horse.death": "Skeleton Horse dies", + "subtitles.entity.skeleton_horse.hurt": "Skeleton Horse hurts", + "subtitles.entity.skeleton_horse.jump_water": "Skeleton Horse jumps", + "subtitles.entity.skeleton_horse.swim": "Skeleton Horse swims", + "subtitles.entity.skeleton.ambient": "Skeleton rattles", + "subtitles.entity.skeleton.converted_to_stray": "Skeleton converts to Stray", + "subtitles.entity.skeleton.death": "Skeleton dies", + "subtitles.entity.skeleton.hurt": "Skeleton hurts", + "subtitles.entity.skeleton.shoot": "Skeleton shoots", + "subtitles.entity.slime.attack": "Slime attacks", + "subtitles.entity.slime.death": "Slime dies", + "subtitles.entity.slime.hurt": "Slime hurts", + "subtitles.entity.slime.squish": "Slime squishes", + "subtitles.entity.sniffer.death": "Sniffer dies", + "subtitles.entity.sniffer.digging": "Sniffer digs", + "subtitles.entity.sniffer.digging_stop": "Sniffer stands up", + "subtitles.entity.sniffer.drop_seed": "Sniffer drops seed", + "subtitles.entity.sniffer.eat": "Sniffer eats", + "subtitles.entity.sniffer.egg_crack": "Sniffer Egg cracks", + "subtitles.entity.sniffer.egg_hatch": "Sniffer Egg hatches", + "subtitles.entity.sniffer.happy": "Sniffer delights", + "subtitles.entity.sniffer.hurt": "Sniffer hurts", + "subtitles.entity.sniffer.idle": "Sniffer grunts", + "subtitles.entity.sniffer.scenting": "Sniffer scents", + "subtitles.entity.sniffer.searching": "Sniffer searches", + "subtitles.entity.sniffer.sniffing": "Sniffer sniffs", + "subtitles.entity.sniffer.step": "Sniffer steps", + "subtitles.entity.snow_golem.death": "Snow Golem dies", + "subtitles.entity.snow_golem.hurt": "Snow Golem hurts", + "subtitles.entity.snowball.throw": "Snowball flies", + "subtitles.entity.spider.ambient": "Spider hisses", + "subtitles.entity.spider.death": "Spider dies", + "subtitles.entity.spider.hurt": "Spider hurts", + "subtitles.entity.squid.ambient": "Squid swims", + "subtitles.entity.squid.death": "Squid dies", + "subtitles.entity.squid.hurt": "Squid hurts", + "subtitles.entity.squid.squirt": "Squid shoots ink", + "subtitles.entity.stray.ambient": "Stray rattles", + "subtitles.entity.stray.death": "Stray dies", + "subtitles.entity.stray.hurt": "Stray hurts", + "subtitles.entity.strider.death": "Strider dies", + "subtitles.entity.strider.eat": "Strider eats", + "subtitles.entity.strider.happy": "Strider warbles", + "subtitles.entity.strider.hurt": "Strider hurts", + "subtitles.entity.strider.idle": "Strider chirps", + "subtitles.entity.strider.retreat": "Strider retreats", + "subtitles.entity.tadpole.death": "Tadpole dies", + "subtitles.entity.tadpole.flop": "Tadpole flops", + "subtitles.entity.tadpole.grow_up": "Tadpole grows up", + "subtitles.entity.tadpole.hurt": "Tadpole hurts", + "subtitles.entity.tnt.primed": "TNT fizzes", + "subtitles.entity.tropical_fish.death": "Tropical Fish dies", + "subtitles.entity.tropical_fish.flop": "Tropical Fish flops", + "subtitles.entity.tropical_fish.hurt": "Tropical Fish hurts", + "subtitles.entity.turtle.ambient_land": "Turtle chirps", + "subtitles.entity.turtle.death": "Turtle dies", + "subtitles.entity.turtle.death_baby": "Baby Turtle dies", + "subtitles.entity.turtle.egg_break": "Turtle Egg breaks", + "subtitles.entity.turtle.egg_crack": "Turtle Egg cracks", + "subtitles.entity.turtle.egg_hatch": "Turtle Egg hatches", + "subtitles.entity.turtle.hurt": "Turtle hurts", + "subtitles.entity.turtle.hurt_baby": "Baby Turtle hurts", + "subtitles.entity.turtle.lay_egg": "Turtle lays egg", + "subtitles.entity.turtle.shamble": "Turtle shambles", + "subtitles.entity.turtle.shamble_baby": "Baby Turtle shambles", + "subtitles.entity.turtle.swim": "Turtle swims", + "subtitles.entity.vex.ambient": "Vex vexes", + "subtitles.entity.vex.charge": "Vex shrieks", + "subtitles.entity.vex.death": "Vex dies", + "subtitles.entity.vex.hurt": "Vex hurts", + "subtitles.entity.villager.ambient": "Villager mumbles", + "subtitles.entity.villager.celebrate": "Villager cheers", + "subtitles.entity.villager.death": "Villager dies", + "subtitles.entity.villager.hurt": "Villager hurts", + "subtitles.entity.villager.no": "Villager disagrees", + "subtitles.entity.villager.trade": "Villager trades", + "subtitles.entity.villager.work_armorer": "Armorer works", + "subtitles.entity.villager.work_butcher": "Butcher works", + "subtitles.entity.villager.work_cartographer": "Cartographer works", + "subtitles.entity.villager.work_cleric": "Cleric works", + "subtitles.entity.villager.work_farmer": "Farmer works", + "subtitles.entity.villager.work_fisherman": "Fisherman works", + "subtitles.entity.villager.work_fletcher": "Fletcher works", + "subtitles.entity.villager.work_leatherworker": "Leatherworker works", + "subtitles.entity.villager.work_librarian": "Librarian works", + "subtitles.entity.villager.work_mason": "Mason works", + "subtitles.entity.villager.work_shepherd": "Shepherd works", + "subtitles.entity.villager.work_toolsmith": "Toolsmith works", + "subtitles.entity.villager.work_weaponsmith": "Weaponsmith works", + "subtitles.entity.villager.yes": "Villager agrees", + "subtitles.entity.vindicator.ambient": "Vindicator mutters", + "subtitles.entity.vindicator.celebrate": "Vindicator cheers", + "subtitles.entity.vindicator.death": "Vindicator dies", + "subtitles.entity.vindicator.hurt": "Vindicator hurts", + "subtitles.entity.wandering_trader.ambient": "Wandering Trader mumbles", + "subtitles.entity.wandering_trader.death": "Wandering Trader dies", + "subtitles.entity.wandering_trader.disappeared": "Wandering Trader disappears", + "subtitles.entity.wandering_trader.drink_milk": "Wandering Trader drinks milk", + "subtitles.entity.wandering_trader.drink_potion": "Wandering Trader drinks potion", + "subtitles.entity.wandering_trader.hurt": "Wandering Trader hurts", + "subtitles.entity.wandering_trader.no": "Wandering Trader disagrees", + "subtitles.entity.wandering_trader.reappeared": "Wandering Trader appears", + "subtitles.entity.wandering_trader.trade": "Wandering Trader trades", + "subtitles.entity.wandering_trader.yes": "Wandering Trader agrees", + "subtitles.entity.warden.agitated": "Warden groans angrily", + "subtitles.entity.warden.ambient": "Warden whines", + "subtitles.entity.warden.angry": "Warden rages", + "subtitles.entity.warden.attack_impact": "Warden lands hit", + "subtitles.entity.warden.death": "Warden dies", + "subtitles.entity.warden.dig": "Warden digs", + "subtitles.entity.warden.emerge": "Warden emerges", + "subtitles.entity.warden.heartbeat": "Warden's heart beats", + "subtitles.entity.warden.hurt": "Warden hurts", + "subtitles.entity.warden.listening": "Warden takes notice", + "subtitles.entity.warden.listening_angry": "Warden takes notice angrily", + "subtitles.entity.warden.nearby_close": "Warden approaches", + "subtitles.entity.warden.nearby_closer": "Warden advances", + "subtitles.entity.warden.nearby_closest": "Warden draws close", + "subtitles.entity.warden.roar": "Warden roars", + "subtitles.entity.warden.sniff": "Warden sniffs", + "subtitles.entity.warden.sonic_boom": "Warden booms", + "subtitles.entity.warden.sonic_charge": "Warden charges", + "subtitles.entity.warden.step": "Warden steps", + "subtitles.entity.warden.tendril_clicks": "Warden's tendrils click", + "subtitles.entity.wind_charge.throw": "Wind Charge flies", + "subtitles.entity.wind_charge.wind_burst": "Wind Charge bursts", + "subtitles.entity.witch.ambient": "Witch giggles", + "subtitles.entity.witch.celebrate": "Witch cheers", + "subtitles.entity.witch.death": "Witch dies", + "subtitles.entity.witch.drink": "Witch drinks", + "subtitles.entity.witch.hurt": "Witch hurts", + "subtitles.entity.witch.throw": "Witch throws", + "subtitles.entity.wither_skeleton.ambient": "Wither Skeleton rattles", + "subtitles.entity.wither_skeleton.death": "Wither Skeleton dies", + "subtitles.entity.wither_skeleton.hurt": "Wither Skeleton hurts", + "subtitles.entity.wither.ambient": "Wither angers", + "subtitles.entity.wither.death": "Wither dies", + "subtitles.entity.wither.hurt": "Wither hurts", + "subtitles.entity.wither.shoot": "Wither attacks", + "subtitles.entity.wither.spawn": "Wither released", + "subtitles.entity.wolf.ambient": "Wolf pants", + "subtitles.entity.wolf.bark": "Wolf barks", + "subtitles.entity.wolf.death": "Wolf dies", + "subtitles.entity.wolf.growl": "Wolf growls", + "subtitles.entity.wolf.hurt": "Wolf hurts", + "subtitles.entity.wolf.pant": "Wolf pants", + "subtitles.entity.wolf.shake": "Wolf shakes", + "subtitles.entity.wolf.whine": "Wolf whines", + "subtitles.entity.zoglin.ambient": "Zoglin growls", + "subtitles.entity.zoglin.angry": "Zoglin growls angrily", + "subtitles.entity.zoglin.attack": "Zoglin attacks", + "subtitles.entity.zoglin.death": "Zoglin dies", + "subtitles.entity.zoglin.hurt": "Zoglin hurts", + "subtitles.entity.zoglin.step": "Zoglin steps", + "subtitles.entity.zombie_horse.ambient": "Zombie Horse cries", + "subtitles.entity.zombie_horse.death": "Zombie Horse dies", + "subtitles.entity.zombie_horse.hurt": "Zombie Horse hurts", + "subtitles.entity.zombie_villager.ambient": "Zombie Villager groans", + "subtitles.entity.zombie_villager.converted": "Zombie Villager vociferates", + "subtitles.entity.zombie_villager.cure": "Zombie Villager snuffles", + "subtitles.entity.zombie_villager.death": "Zombie Villager dies", + "subtitles.entity.zombie_villager.hurt": "Zombie Villager hurts", + "subtitles.entity.zombie.ambient": "Zombie groans", + "subtitles.entity.zombie.attack_wooden_door": "Door shakes", + "subtitles.entity.zombie.break_wooden_door": "Door breaks", + "subtitles.entity.zombie.converted_to_drowned": "Zombie converts to Drowned", + "subtitles.entity.zombie.death": "Zombie dies", + "subtitles.entity.zombie.destroy_egg": "Turtle Egg stomped", + "subtitles.entity.zombie.hurt": "Zombie hurts", + "subtitles.entity.zombie.infect": "Zombie infects", + "subtitles.entity.zombified_piglin.ambient": "Zombified Piglin grunts", + "subtitles.entity.zombified_piglin.angry": "Zombified Piglin grunts angrily", + "subtitles.entity.zombified_piglin.death": "Zombified Piglin dies", + "subtitles.entity.zombified_piglin.hurt": "Zombified Piglin hurts", + "subtitles.event.mob_effect.bad_omen": "Omen takes hold", + "subtitles.event.mob_effect.raid_omen": "Raid looms nearby", + "subtitles.event.mob_effect.trial_omen": "Ominous trial looms nearby", + "subtitles.event.raid.horn": "Ominous horn blares", + "subtitles.item.armor.equip": "Gear equips", + "subtitles.item.armor.equip_chain": "Chain armor jingles", + "subtitles.item.armor.equip_copper": "Copper armor clonks", + "subtitles.item.armor.equip_diamond": "Diamond armor clangs", + "subtitles.item.armor.equip_elytra": "Elytra rustle", + "subtitles.item.armor.equip_gold": "Gold armor clinks", + "subtitles.item.armor.equip_iron": "Iron armor clanks", + "subtitles.item.armor.equip_leather": "Leather armor rustles", + "subtitles.item.armor.equip_netherite": "Netherite armor clanks", + "subtitles.item.armor.equip_turtle": "Turtle Shell thunks", + "subtitles.item.armor.equip_wolf": "Wolf Armor is fastened", + "subtitles.item.armor.unequip_wolf": "Wolf Armor snips away", + "subtitles.item.axe.scrape": "Axe scrapes", + "subtitles.item.axe.strip": "Axe strips", + "subtitles.item.axe.wax_off": "Wax off", + "subtitles.item.bone_meal.use": "Bone Meal crinkles", + "subtitles.item.book.page_turn": "Page rustles", + "subtitles.item.book.put": "Book thumps", + "subtitles.item.bottle.empty": "Bottle empties", + "subtitles.item.bottle.fill": "Bottle fills", + "subtitles.item.brush.brushing.generic": "Brushing", + "subtitles.item.brush.brushing.gravel": "Brushing Gravel", + "subtitles.item.brush.brushing.gravel.complete": "Brushing Gravel completed", + "subtitles.item.brush.brushing.sand": "Brushing Sand", + "subtitles.item.brush.brushing.sand.complete": "Brushing Sand completed", + "subtitles.item.bucket.empty": "Bucket empties", + "subtitles.item.bucket.fill": "Bucket fills", + "subtitles.item.bucket.fill_axolotl": "Axolotl scooped", + "subtitles.item.bucket.fill_fish": "Fish captured", + "subtitles.item.bucket.fill_tadpole": "Tadpole captured", + "subtitles.item.bundle.drop_contents": "Bundle empties", + "subtitles.item.bundle.insert": "Item packed", + "subtitles.item.bundle.insert_fail": "Bundle full", + "subtitles.item.bundle.remove_one": "Item unpacked", + "subtitles.item.chorus_fruit.teleport": "Player teleports", + "subtitles.item.crop.plant": "Crop planted", + "subtitles.item.crossbow.charge": "Crossbow charges up", + "subtitles.item.crossbow.hit": "Arrow hits", + "subtitles.item.crossbow.load": "Crossbow loads", + "subtitles.item.crossbow.shoot": "Crossbow fires", + "subtitles.item.dye.use": "Dye stains", + "subtitles.item.elytra.flying": "Swoosh", + "subtitles.item.firecharge.use": "Fireball whooshes", + "subtitles.item.flintandsteel.use": "Flint and Steel click", + "subtitles.item.glow_ink_sac.use": "Glow Ink Sac splotches", + "subtitles.item.goat_horn.play": "Goat Horn plays", + "subtitles.item.hoe.till": "Hoe tills", + "subtitles.item.honey_bottle.drink": "Gulping", + "subtitles.item.honeycomb.wax_on": "Wax on", + "subtitles.item.horse_armor.unequip": "Horse Armor snips away", + "subtitles.item.ink_sac.use": "Ink Sac splotches", + "subtitles.item.lead.break": "Lead snaps", + "subtitles.item.lead.tied": "Lead tied", + "subtitles.item.lead.untied": "Lead untied", + "subtitles.item.llama_carpet.unequip": "Carpet snips away", + "subtitles.item.lodestone_compass.lock": "Lodestone Compass locks onto Lodestone", + "subtitles.item.mace.smash_air": "Mace smashes", + "subtitles.item.mace.smash_ground": "Mace smashes", + "subtitles.item.nether_wart.plant": "Crop planted", + "subtitles.item.ominous_bottle.dispose": "Bottle breaks", + "subtitles.item.saddle.unequip": "Saddle snips away", + "subtitles.item.shears.shear": "Shears click", + "subtitles.item.shears.snip": "Shears snip", + "subtitles.item.shield.block": "Shield blocks", + "subtitles.item.shovel.flatten": "Shovel flattens", + "subtitles.item.spyglass.stop_using": "Spyglass retracts", + "subtitles.item.spyglass.use": "Spyglass expands", + "subtitles.item.totem.use": "Totem activates", + "subtitles.item.trident.hit": "Trident stabs", + "subtitles.item.trident.hit_ground": "Trident vibrates", + "subtitles.item.trident.return": "Trident returns", + "subtitles.item.trident.riptide": "Trident zooms", + "subtitles.item.trident.throw": "Trident clangs", + "subtitles.item.trident.thunder": "Trident thunder cracks", + "subtitles.item.wolf_armor.break": "Wolf Armor breaks", + "subtitles.item.wolf_armor.crack": "Wolf Armor cracks", + "subtitles.item.wolf_armor.damage": "Wolf Armor takes damage", + "subtitles.item.wolf_armor.repair": "Wolf Armor is repaired", + "subtitles.particle.soul_escape": "Soul escapes", + "subtitles.ui.cartography_table.take_result": "Map drawn", + "subtitles.ui.hud.bubble_pop": "Breath meter dropping", + "subtitles.ui.loom.take_result": "Loom used", + "subtitles.ui.stonecutter.take_result": "Stonecutter used", + "subtitles.weather.end_flash": "End Flash rumbles", + "subtitles.weather.rain": "Rain falls", + "symlink_warning.message": "Loading worlds from folders with symbolic links can be unsafe if you don't know exactly what you are doing. Please visit %s to learn more.", + "symlink_warning.message.pack": "Loading packs with symbolic links can be unsafe if you don't know exactly what you are doing. Please visit %s to learn more.", + "symlink_warning.message.world": "Loading worlds from folders with symbolic links can be unsafe if you don't know exactly what you are doing. Please visit %s to learn more.", + "symlink_warning.more_info": "More Information", + "symlink_warning.title": "World folder contains symbolic links", + "symlink_warning.title.pack": "Added pack(s) contain(s) symbolic links", + "symlink_warning.title.world": "The world folder contains symbolic links", + "team.collision.always": "Always", + "team.collision.never": "Never", + "team.collision.pushOtherTeams": "Push other teams", + "team.collision.pushOwnTeam": "Push own team", + "team.notFound": "Unknown team '%s'", + "team.visibility.always": "Always", + "team.visibility.hideForOtherTeams": "Hide for other teams", + "team.visibility.hideForOwnTeam": "Hide for own team", + "team.visibility.never": "Never", + "telemetry_info.button.give_feedback": "Give Feedback", + "telemetry_info.button.privacy_statement": "Privacy Statement", + "telemetry_info.button.show_data": "View My Data", + "telemetry_info.opt_in.description": "I consent to sending optional telemetry data", + "telemetry_info.property_title": "Included Data", + "telemetry_info.screen.description": "Collecting this data helps us improve Minecraft by guiding us in directions that are relevant to our players.\nYou can also send in additional feedback to help us keep improving Minecraft.", + "telemetry_info.screen.title": "Telemetry Data Collection", + "telemetry.event.advancement_made.description": "Understanding the context behind receiving an advancement can help us better understand and improve the progression of the game.", + "telemetry.event.advancement_made.title": "Advancement Made", + "telemetry.event.game_load_times.description": "This event can help us figure out where startup performance improvements are needed by measuring the execution times of the startup phases.", + "telemetry.event.game_load_times.title": "Game Load Times", + "telemetry.event.optional": "%s (Optional)", + "telemetry.event.optional.disabled": "%s (Optional) - Disabled", + "telemetry.event.performance_metrics.description": "Knowing the overall performance profile of Minecraft helps us tune and optimize the game for a wide range of machine specifications and operating systems. \nGame version is included to help us compare the performance profile for new versions of Minecraft.", + "telemetry.event.performance_metrics.title": "Performance Metrics", + "telemetry.event.required": "%s (Required)", + "telemetry.event.world_load_times.description": "It's important for us to understand how long it takes to join a world, and how that changes over time. For example, when we add new features or do larger technical changes, we need to see what impact that had on load times.", + "telemetry.event.world_load_times.title": "World Load Times", + "telemetry.event.world_loaded.description": "Knowing how players play Minecraft (such as Game Mode, client or server modded, and game version) allows us to focus game updates to improve the areas that players care about most.\nThe World Loaded event is paired with the World Unloaded event to calculate how long the play session has lasted.", + "telemetry.event.world_loaded.title": "World Loaded", + "telemetry.event.world_unloaded.description": "This event is paired with the World Loaded event to calculate how long the world session has lasted.\nThe duration (in seconds and ticks) is measured when a world session has ended (quitting to title, disconnecting from a server).", + "telemetry.event.world_unloaded.title": "World Unloaded", + "telemetry.property.advancement_game_time.title": "Game Time (Ticks)", + "telemetry.property.advancement_id.title": "Advancement ID", + "telemetry.property.client_id.title": "Client ID", + "telemetry.property.client_modded.title": "Client Modded", + "telemetry.property.dedicated_memory_kb.title": "Dedicated Memory (kB)", + "telemetry.property.event_timestamp_utc.title": "Event Timestamp (UTC)", + "telemetry.property.frame_rate_samples.title": "Frame Rate Samples (FPS)", + "telemetry.property.game_mode.title": "Game Mode", + "telemetry.property.game_version.title": "Game Version", + "telemetry.property.launcher_name.title": "Launcher Name", + "telemetry.property.load_time_bootstrap_ms.title": "Bootstrap Time (Milliseconds)", + "telemetry.property.load_time_loading_overlay_ms.title": "Time in Loading Screen (Milliseconds)", + "telemetry.property.load_time_pre_window_ms.title": "Time Before Window Opens (Milliseconds)", + "telemetry.property.load_time_total_time_ms.title": "Total Load Time (Milliseconds)", + "telemetry.property.minecraft_session_id.title": "Minecraft Session ID", + "telemetry.property.new_world.title": "New World", + "telemetry.property.number_of_samples.title": "Sample Count", + "telemetry.property.operating_system.title": "Operating System", + "telemetry.property.opt_in.title": "Opt-In", + "telemetry.property.platform.title": "Platform", + "telemetry.property.realms_map_content.title": "Realms Map Content (Minigame Name)", + "telemetry.property.render_distance.title": "Render Distance", + "telemetry.property.render_time_samples.title": "Render Time Samples", + "telemetry.property.seconds_since_load.title": "Time Since Load (Seconds)", + "telemetry.property.server_modded.title": "Server Modded", + "telemetry.property.server_type.title": "Server Type", + "telemetry.property.ticks_since_load.title": "Time Since Load (Ticks)", + "telemetry.property.used_memory_samples.title": "Used Random Access Memory", + "telemetry.property.user_id.title": "User ID", + "telemetry.property.world_load_time_ms.title": "World Load Time (Milliseconds)", + "telemetry.property.world_session_id.title": "World Session ID", + "test_block.error.missing": "Test structure missing %s block", + "test_block.error.too_many": "Too many %s blocks", + "test_block.invalid_timeout": "Invalid timeout (%s) - must be a positive number of ticks", + "test_block.message": "Message:", + "test_block.mode_info.accept": "Accept Mode - Accept success for (part of) a test", + "test_block.mode_info.fail": "Fail Mode - Fail the test", + "test_block.mode_info.log": "Log Mode - Log a message", + "test_block.mode_info.start": "Start Mode - The starting point for a test", + "test_block.mode.accept": "Accept", + "test_block.mode.fail": "Fail", + "test_block.mode.log": "Log", + "test_block.mode.start": "Start", + "test_instance_block.entities": "Entities:", + "test_instance_block.error.no_test": "Unable to run test instance at %s, %s, %s since it has an undefined test", + "test_instance_block.error.no_test_structure": "Unable to run test instance at %s, %s, %s since it has no test structure", + "test_instance_block.error.unable_to_save": "Unable to save test structure template for test instance at %s, %s, %s", + "test_instance_block.invalid": "[invalid]", + "test_instance_block.reset_success": "Reset succeeded for test: %s", + "test_instance_block.rotation": "Rotation:", + "test_instance_block.size": "Test Structure Size", + "test_instance_block.starting": "Starting test %s", + "test_instance_block.test_id": "Test Instance ID", + "test_instance.action.reset": "Reset and Load", + "test_instance.action.run": "Load and Run", + "test_instance.action.save": "Save Structure", + "test_instance.description.batch": "Environment: %s", + "test_instance.description.failed": "Failed: %s", + "test_instance.description.function": "Function: %s", + "test_instance.description.invalid_id": "Invalid test ID", + "test_instance.description.no_test": "No such test", + "test_instance.description.structure": "Structure: %s", + "test_instance.description.type": "Type: %s", + "test_instance.type.block_based": "Block-Based Test", + "test_instance.type.function": "Built-in Function Test", + "test.error.block_property_mismatch": "Expected property %s to be %s: was %s", + "test.error.block_property_missing": "Block property missing. Expected property %s to be %s", + "test.error.entity_property": "Entity %s failed test: %s", + "test.error.entity_property_details": "Entity %s failed test: %s. Expected %s: was %s", + "test.error.expected_block": "Expected block %s: got %s", + "test.error.expected_block_tag": "Expected block in #%s: got %s", + "test.error.expected_container_contents": "Container should contain: %s", + "test.error.expected_container_contents_single": "Container should contain a single: %s", + "test.error.expected_empty_container": "Container should be empty", + "test.error.expected_entity": "Expected %s", + "test.error.expected_entity_around": "Expected %s to exist around %s, %s, %s", + "test.error.expected_entity_count": "Expected %s entities of type %s: found %s", + "test.error.expected_entity_data": "Expected entity data to be %s: was %s", + "test.error.expected_entity_data_predicate": "Entity data mismatch for %s", + "test.error.expected_entity_effect": "Expected %s to have effect %s %s", + "test.error.expected_entity_having": "Entity inventory should contain %s", + "test.error.expected_entity_holding": "Entity should be holding %s", + "test.error.expected_entity_in_test": "Expected %s to exist in test", + "test.error.expected_entity_not_touching": "Did not expect %s touching %s, %s, %s (relative: %s, %s, %s)", + "test.error.expected_entity_touching": "Expected %s touching %s, %s, %s (relative: %s, %s, %s)", + "test.error.expected_item": "Expected item of type %s", + "test.error.expected_items_count": "Expected %s items of type %s: found %s", + "test.error.fail": "Fail conditions met", + "test.error.invalid_block_type": "Unexpected block type found: %s", + "test.error.missing_block_entity": "Missing block entity", + "test.error.position": "%s at %s, %s, %s (relative: %s, %s, %s) on tick %s", + "test.error.sequence.condition_already_triggered": "Condition already triggered at %s", + "test.error.sequence.condition_not_triggered": "Condition not triggered", + "test.error.sequence.invalid_tick": "Succeeded in invalid tick: expected %s", + "test.error.sequence.not_completed": "Test timed out before sequence completed", + "test.error.set_biome": "Failed to set biome for test", + "test.error.spawn_failure": "Failed to create entity %s", + "test.error.state_not_equal": "Incorrect state. Expected %s: was %s", + "test.error.structure.failure": "Failed to place test structure for %s", + "test.error.tick": "%s on tick %s", + "test.error.ticking_without_structure": "Ticking test before placing structure", + "test.error.timeout.no_result": "Didn't succeed or fail within %s ticks", + "test.error.timeout.no_sequences_finished": "No sequences finished within %s ticks", + "test.error.too_many_entities": "Expected only one %s to exist around %s, %s, %s but found %s", + "test.error.unexpected_block": "Did not expect block to be %s", + "test.error.unexpected_entity": "Did not expect %s to exist", + "test.error.unexpected_item": "Did not expect item of type %s", + "test.error.unknown": "Unknown internal error: %s", + "test.error.value_not_equal": "Expected %s to be %s: was %s", + "test.error.wrong_block_entity": "Wrong block entity type: %s", + "title.32bit.deprecation": "32-bit system detected: this may prevent you from playing in the future as a 64-bit system will be required!", + "title.32bit.deprecation.realms": "Minecraft will soon require a 64-bit system, which will prevent you from playing or using Realms on this device. You will need to manually cancel any Realms subscription.", + "title.32bit.deprecation.realms.check": "Do not show this screen again", + "title.32bit.deprecation.realms.header": "32-bit system detected", + "title.credits": "Copyright Mojang AB. Do not distribute!", + "title.multiplayer.disabled": "Multiplayer is disabled. Please check your Microsoft account settings.", + "title.multiplayer.disabled.banned.name": "You must change your name before you can play online", + "title.multiplayer.disabled.banned.permanent": "Your account is permanently suspended from online play", + "title.multiplayer.disabled.banned.temporary": "Your account is temporarily suspended from online play", + "title.multiplayer.lan": "Multiplayer (LAN)", + "title.multiplayer.other": "Multiplayer (3rd-party Server)", + "title.multiplayer.realms": "Multiplayer (Realms)", + "title.singleplayer": "Singleplayer", + "translation.test.args": "%s %s", + "translation.test.complex": "Prefix, %s%2$s again %s and %1$s lastly %s and also %1$s again!", + "translation.test.escape": "%%s %%%s %%%%s %%%%%s", + "translation.test.invalid": "hi %", + "translation.test.invalid2": "hi % s", + "translation.test.none": "Hello, world!", + "translation.test.world": "world", + "trim_material.minecraft.amethyst": "Amethyst Material", + "trim_material.minecraft.copper": "Copper Material", + "trim_material.minecraft.diamond": "Diamond Material", + "trim_material.minecraft.emerald": "Emerald Material", + "trim_material.minecraft.gold": "Gold Material", + "trim_material.minecraft.iron": "Iron Material", + "trim_material.minecraft.lapis": "Lapis Material", + "trim_material.minecraft.netherite": "Netherite Material", + "trim_material.minecraft.quartz": "Quartz Material", + "trim_material.minecraft.redstone": "Redstone Material", + "trim_material.minecraft.resin": "Resin Material", + "trim_pattern.minecraft.bolt": "Bolt Armor Trim", + "trim_pattern.minecraft.coast": "Coast Armor Trim", + "trim_pattern.minecraft.dune": "Dune Armor Trim", + "trim_pattern.minecraft.eye": "Eye Armor Trim", + "trim_pattern.minecraft.flow": "Flow Armor Trim", + "trim_pattern.minecraft.host": "Host Armor Trim", + "trim_pattern.minecraft.raiser": "Raiser Armor Trim", + "trim_pattern.minecraft.rib": "Rib Armor Trim", + "trim_pattern.minecraft.sentry": "Sentry Armor Trim", + "trim_pattern.minecraft.shaper": "Shaper Armor Trim", + "trim_pattern.minecraft.silence": "Silence Armor Trim", + "trim_pattern.minecraft.snout": "Snout Armor Trim", + "trim_pattern.minecraft.spire": "Spire Armor Trim", + "trim_pattern.minecraft.tide": "Tide Armor Trim", + "trim_pattern.minecraft.vex": "Vex Armor Trim", + "trim_pattern.minecraft.ward": "Ward Armor Trim", + "trim_pattern.minecraft.wayfinder": "Wayfinder Armor Trim", + "trim_pattern.minecraft.wild": "Wild Armor Trim", + "tutorial.bundleInsert.description": "Right Click to add items", + "tutorial.bundleInsert.title": "Use a Bundle", + "tutorial.craft_planks.description": "The recipe book can help", + "tutorial.craft_planks.title": "Craft wooden planks", + "tutorial.find_tree.description": "Punch it to collect wood", + "tutorial.find_tree.title": "Find a tree", + "tutorial.look.description": "Use your mouse to turn", + "tutorial.look.title": "Look around", + "tutorial.move.description": "Jump with %s", + "tutorial.move.title": "Move with %s, %s, %s and %s", + "tutorial.open_inventory.description": "Press %s", + "tutorial.open_inventory.title": "Open your inventory", + "tutorial.punch_tree.description": "Hold down %s", + "tutorial.punch_tree.title": "Destroy the tree", + "tutorial.socialInteractions.description": "Press %s to open", + "tutorial.socialInteractions.title": "Social Interactions", + "upgrade.minecraft.netherite_upgrade": "Netherite Upgrade" +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_button.json new file mode 100644 index 000000000..e3ee4499a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_button_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_button_inventory.json new file mode 100644 index 000000000..0b50c6259 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_button_pressed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_button_pressed.json new file mode 100644 index 000000000..486e6edd6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_left.json new file mode 100644 index 000000000..aeab9dd0c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/acacia_door_bottom", + "top": "minecraft:block/acacia_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_left_open.json new file mode 100644 index 000000000..0e71dd585 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/acacia_door_bottom", + "top": "minecraft:block/acacia_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_right.json new file mode 100644 index 000000000..d4f4be3e7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/acacia_door_bottom", + "top": "minecraft:block/acacia_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_right_open.json new file mode 100644 index 000000000..c39619d16 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/acacia_door_bottom", + "top": "minecraft:block/acacia_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_top_left.json new file mode 100644 index 000000000..ba9356a01 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/acacia_door_bottom", + "top": "minecraft:block/acacia_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_top_left_open.json new file mode 100644 index 000000000..a279c8a47 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/acacia_door_bottom", + "top": "minecraft:block/acacia_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_top_right.json new file mode 100644 index 000000000..751739267 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/acacia_door_bottom", + "top": "minecraft:block/acacia_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_top_right_open.json new file mode 100644 index 000000000..dc29f13a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/acacia_door_bottom", + "top": "minecraft:block/acacia_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_gate.json new file mode 100644 index 000000000..f121a1830 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_open.json new file mode 100644 index 000000000..28fe835ed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_wall.json new file mode 100644 index 000000000..0ac31d077 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_wall_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_wall_open.json new file mode 100644 index 000000000..2ea84d226 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_inventory.json new file mode 100644 index 000000000..1300a2337 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_post.json new file mode 100644 index 000000000..96e4d4449 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_side.json new file mode 100644 index 000000000..9d7c83ea4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_hanging_sign.json new file mode 100644 index 000000000..9d088d111 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_leaves.json new file mode 100644 index 000000000..9d1d8e16c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/acacia_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_log.json new file mode 100644 index 000000000..6eab23b0c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/acacia_log_top", + "side": "minecraft:block/acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_log_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_log_horizontal.json new file mode 100644 index 000000000..c0ff6ac49 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/acacia_log_top", + "side": "minecraft:block/acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_planks.json new file mode 100644 index 000000000..5efe51c0b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_pressure_plate.json new file mode 100644 index 000000000..8c40c47bc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_pressure_plate_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_pressure_plate_down.json new file mode 100644 index 000000000..b437bc261 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_sapling.json new file mode 100644 index 000000000..ea6fd73b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/acacia_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf.json new file mode 100644 index 000000000..abcf33667 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_body", + "textures": { + "all": "minecraft:block/acacia_shelf", + "particle": "minecraft:block/stripped_acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_center.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_center.json new file mode 100644 index 000000000..fc1956f8d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_center.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_center", + "textures": { + "all": "minecraft:block/acacia_shelf", + "particle": "minecraft:block/stripped_acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_inventory.json new file mode 100644 index 000000000..68bdd5b9c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_inventory.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_inventory", + "textures": { + "all": "minecraft:block/acacia_shelf", + "particle": "minecraft:block/stripped_acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_left.json new file mode 100644 index 000000000..df5b2770c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_left", + "textures": { + "all": "minecraft:block/acacia_shelf", + "particle": "minecraft:block/stripped_acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_right.json new file mode 100644 index 000000000..29852132c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_right", + "textures": { + "all": "minecraft:block/acacia_shelf", + "particle": "minecraft:block/stripped_acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_unconnected.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_unconnected.json new file mode 100644 index 000000000..772123a2e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_unconnected.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unconnected", + "textures": { + "all": "minecraft:block/acacia_shelf", + "particle": "minecraft:block/stripped_acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_unpowered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_unpowered.json new file mode 100644 index 000000000..68312be2f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_shelf_unpowered.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unpowered", + "textures": { + "all": "minecraft:block/acacia_shelf", + "particle": "minecraft:block/stripped_acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_sign.json new file mode 100644 index 000000000..700d9b8a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_slab.json new file mode 100644 index 000000000..b8d31c827 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/acacia_planks", + "side": "minecraft:block/acacia_planks", + "top": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_slab_top.json new file mode 100644 index 000000000..a2995410c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/acacia_planks", + "side": "minecraft:block/acacia_planks", + "top": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_stairs.json new file mode 100644 index 000000000..fee16e55c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/acacia_planks", + "side": "minecraft:block/acacia_planks", + "top": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_stairs_inner.json new file mode 100644 index 000000000..323018d55 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/acacia_planks", + "side": "minecraft:block/acacia_planks", + "top": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_stairs_outer.json new file mode 100644 index 000000000..a4978fbd9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/acacia_planks", + "side": "minecraft:block/acacia_planks", + "top": "minecraft:block/acacia_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_bottom.json new file mode 100644 index 000000000..38bd46e27 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/acacia_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_open.json new file mode 100644 index 000000000..de4be4d52 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/acacia_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_top.json new file mode 100644 index 000000000..4f5124098 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/acacia_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_wood.json new file mode 100644 index 000000000..2ef9da9ca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/acacia_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/acacia_log", + "side": "minecraft:block/acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail.json new file mode 100644 index 000000000..fbb2f56c8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/rail_flat", + "textures": { + "rail": "minecraft:block/activator_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail_on.json new file mode 100644 index 000000000..770a3bf5d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail_on.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/rail_flat", + "textures": { + "rail": "minecraft:block/activator_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail_on_raised_ne.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail_on_raised_ne.json new file mode 100644 index 000000000..9d82f7b68 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail_on_raised_ne.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_ne", + "textures": { + "rail": "minecraft:block/activator_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail_on_raised_sw.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail_on_raised_sw.json new file mode 100644 index 000000000..43c773a1a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail_on_raised_sw.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_sw", + "textures": { + "rail": "minecraft:block/activator_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail_raised_ne.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail_raised_ne.json new file mode 100644 index 000000000..d953b0888 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail_raised_ne.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_ne", + "textures": { + "rail": "minecraft:block/activator_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail_raised_sw.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail_raised_sw.json new file mode 100644 index 000000000..9b8c8587c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/activator_rail_raised_sw.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_sw", + "textures": { + "rail": "minecraft:block/activator_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/air.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/air.json new file mode 100644 index 000000000..e7062e637 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/air.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:missingno" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/allium.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/allium.json new file mode 100644 index 000000000..3c13827ca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/allium.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/allium" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/amethyst_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/amethyst_block.json new file mode 100644 index 000000000..3e0a7f7f1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/amethyst_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/amethyst_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/amethyst_cluster.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/amethyst_cluster.json new file mode 100644 index 000000000..6f2e0497a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/amethyst_cluster.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/amethyst_cluster" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ancient_debris.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ancient_debris.json new file mode 100644 index 000000000..d16af45fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ancient_debris.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/ancient_debris_top", + "side": "minecraft:block/ancient_debris_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite.json new file mode 100644 index 000000000..3f9f0234e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_slab.json new file mode 100644 index 000000000..07f6eadea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/andesite", + "side": "minecraft:block/andesite", + "top": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_slab_top.json new file mode 100644 index 000000000..705a7db4c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/andesite", + "side": "minecraft:block/andesite", + "top": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_stairs.json new file mode 100644 index 000000000..63a4fc953 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/andesite", + "side": "minecraft:block/andesite", + "top": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_stairs_inner.json new file mode 100644 index 000000000..b0f469a19 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/andesite", + "side": "minecraft:block/andesite", + "top": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_stairs_outer.json new file mode 100644 index 000000000..e823edcfe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/andesite", + "side": "minecraft:block/andesite", + "top": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_wall_inventory.json new file mode 100644 index 000000000..1c61acfd7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_wall_post.json new file mode 100644 index 000000000..6c117e6f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_wall_side.json new file mode 100644 index 000000000..8dfcd81bc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_wall_side_tall.json new file mode 100644 index 000000000..f4075f2ac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/andesite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/anvil.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/anvil.json new file mode 100644 index 000000000..dc9d25556 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/anvil.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_anvil", + "textures": { + "top": "minecraft:block/anvil_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/attached_melon_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/attached_melon_stem.json new file mode 100644 index 000000000..1ebaf505f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/attached_melon_stem.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/stem_fruit", + "textures": { + "stem": "minecraft:block/melon_stem", + "upperstem": "minecraft:block/attached_melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/attached_pumpkin_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/attached_pumpkin_stem.json new file mode 100644 index 000000000..0a7c5692a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/attached_pumpkin_stem.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/stem_fruit", + "textures": { + "stem": "minecraft:block/pumpkin_stem", + "upperstem": "minecraft:block/attached_pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/azalea.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/azalea.json new file mode 100644 index 000000000..61f668539 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/azalea.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_azalea", + "textures": { + "side": "minecraft:block/azalea_side", + "top": "minecraft:block/azalea_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/azalea_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/azalea_leaves.json new file mode 100644 index 000000000..4c6814a55 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/azalea_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/azalea_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/azure_bluet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/azure_bluet.json new file mode 100644 index 000000000..35cac69ed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/azure_bluet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/azure_bluet" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo1_age0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo1_age0.json new file mode 100644 index 000000000..0f5244e5b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo1_age0.json @@ -0,0 +1,19 @@ +{ + "textures": { + "all": "block/bamboo_stalk", + "particle": "block/bamboo_stalk" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "down": { "uv": [ 13, 4, 15, 6 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 13, 0, 15, 2], "texture": "#all", "cullface": "up" }, + "north": { "uv": [ 0, 0, 2, 16 ], "texture": "#all" }, + "south": { "uv": [ 0, 0, 2, 16 ], "texture": "#all" }, + "west": { "uv": [ 0, 0, 2, 16 ], "texture": "#all" }, + "east": { "uv": [ 0, 0, 2, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo1_age1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo1_age1.json new file mode 100644 index 000000000..d121263fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo1_age1.json @@ -0,0 +1,19 @@ +{ + "textures": { + "all": "block/bamboo_stalk", + "particle": "block/bamboo_stalk" + }, + "elements": [ + { "from": [ 6.5, 0, 6.5 ], + "to": [ 9.5, 16, 9.5 ], + "faces": { + "down": { "uv": [ 13, 4, 16, 7 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 13, 0, 16, 3 ], "texture": "#all", "cullface": "up" }, + "north": { "uv": [ 0, 0, 3, 16 ], "texture": "#all" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#all" }, + "west": { "uv": [ 0, 0, 3, 16 ], "texture": "#all" }, + "east": { "uv": [ 0, 0, 3, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo2_age0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo2_age0.json new file mode 100644 index 000000000..bc6e56c64 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo2_age0.json @@ -0,0 +1,19 @@ +{ + "textures": { + "all": "block/bamboo_stalk", + "particle": "block/bamboo_stalk" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "down": { "uv": [ 13, 4, 15, 6 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 13, 0, 15, 2], "texture": "#all", "cullface": "up" }, + "north": { "uv": [ 3, 0, 5, 16 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 5, 16 ], "texture": "#all" }, + "west": { "uv": [ 3, 0, 5, 16 ], "texture": "#all" }, + "east": { "uv": [ 3, 0, 5, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo2_age1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo2_age1.json new file mode 100644 index 000000000..55b2f4d19 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo2_age1.json @@ -0,0 +1,19 @@ +{ + "textures": { + "all": "block/bamboo_stalk", + "particle": "block/bamboo_stalk" + }, + "elements": [ + { "from": [ 6.5, 0, 6.5 ], + "to": [ 9.5, 16, 9.5 ], + "faces": { + "down": { "uv": [ 13, 4, 16, 7 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 13, 0, 16, 3 ], "texture": "#all", "cullface": "up" }, + "north": { "uv": [ 3, 0, 6, 16 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 6, 16 ], "texture": "#all" }, + "west": { "uv": [ 3, 0, 6, 16 ], "texture": "#all" }, + "east": { "uv": [ 3, 0, 6, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo3_age0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo3_age0.json new file mode 100644 index 000000000..d72b3e645 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo3_age0.json @@ -0,0 +1,19 @@ +{ + "textures": { + "all": "block/bamboo_stalk", + "particle": "block/bamboo_stalk" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "down": { "uv": [ 13, 4, 15, 6 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 13, 0, 15, 2], "texture": "#all", "cullface": "up" }, + "north": { "uv": [ 6, 0, 8, 16 ], "texture": "#all" }, + "south": { "uv": [ 6, 0, 8, 16 ], "texture": "#all" }, + "west": { "uv": [ 6, 0, 8, 16 ], "texture": "#all" }, + "east": { "uv": [ 6, 0, 8, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo3_age1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo3_age1.json new file mode 100644 index 000000000..499cd02e6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo3_age1.json @@ -0,0 +1,19 @@ +{ + "textures": { + "all": "block/bamboo_stalk", + "particle": "block/bamboo_stalk" + }, + "elements": [ + { "from": [ 6.5, 0, 6.5 ], + "to": [ 9.5, 16, 9.5 ], + "faces": { + "down": { "uv": [ 13, 4, 16, 7 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 13, 0, 16, 3 ], "texture": "#all", "cullface": "up" }, + "north": { "uv": [ 6, 0, 9, 16 ], "texture": "#all" }, + "south": { "uv": [ 6, 0, 9, 16 ], "texture": "#all" }, + "west": { "uv": [ 6, 0, 9, 16 ], "texture": "#all" }, + "east": { "uv": [ 6, 0, 9, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo4_age0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo4_age0.json new file mode 100644 index 000000000..cc9c1dcce --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo4_age0.json @@ -0,0 +1,19 @@ +{ + "textures": { + "all": "block/bamboo_stalk", + "particle": "block/bamboo_stalk" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "down": { "uv": [ 13, 4, 15, 6 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 13, 0, 15, 2], "texture": "#all", "cullface": "up" }, + "north": { "uv": [ 9, 0, 11, 16 ], "texture": "#all" }, + "south": { "uv": [ 9, 0, 11, 16 ], "texture": "#all" }, + "west": { "uv": [ 9, 0, 11, 16 ], "texture": "#all" }, + "east": { "uv": [ 9, 0, 11, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo4_age1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo4_age1.json new file mode 100644 index 000000000..4b8b86813 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo4_age1.json @@ -0,0 +1,19 @@ +{ + "textures": { + "all": "block/bamboo_stalk", + "particle": "block/bamboo_stalk" + }, + "elements": [ + { "from": [ 6.5, 0, 6.5 ], + "to": [ 9.5, 16, 9.5 ], + "faces": { + "down": { "uv": [ 13, 4, 16, 7 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 13, 0, 16, 3 ], "texture": "#all", "cullface": "up" }, + "north": { "uv": [ 9, 0, 12, 16 ], "texture": "#all" }, + "south": { "uv": [ 9, 0, 12, 16 ], "texture": "#all" }, + "west": { "uv": [ 9, 0, 12, 16 ], "texture": "#all" }, + "east": { "uv": [ 9, 0, 12, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_block.json new file mode 100644 index 000000000..6fa86028b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_block.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/bamboo_block_top", + "side": "minecraft:block/bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_block_x.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_block_x.json new file mode 100644 index 000000000..8b66c3fc4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_block_x.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_x", + "textures": { + "end": "minecraft:block/bamboo_block_top", + "side": "minecraft:block/bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_block_y.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_block_y.json new file mode 100644 index 000000000..a904e2837 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_block_y.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_y", + "textures": { + "end": "minecraft:block/bamboo_block_top", + "side": "minecraft:block/bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_block_z.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_block_z.json new file mode 100644 index 000000000..60e8c019a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_block_z.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_z", + "textures": { + "end": "minecraft:block/bamboo_block_top", + "side": "minecraft:block/bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_button.json new file mode 100644 index 000000000..b63d5bd34 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_button_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_button_inventory.json new file mode 100644 index 000000000..ad8122643 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_button_pressed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_button_pressed.json new file mode 100644 index 000000000..198214028 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_left.json new file mode 100644 index 000000000..3a17d2379 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/bamboo_door_bottom", + "top": "minecraft:block/bamboo_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_left_open.json new file mode 100644 index 000000000..c91079595 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/bamboo_door_bottom", + "top": "minecraft:block/bamboo_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_right.json new file mode 100644 index 000000000..09cd69042 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/bamboo_door_bottom", + "top": "minecraft:block/bamboo_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_right_open.json new file mode 100644 index 000000000..d869d65a7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/bamboo_door_bottom", + "top": "minecraft:block/bamboo_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_top_left.json new file mode 100644 index 000000000..0ce32f122 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/bamboo_door_bottom", + "top": "minecraft:block/bamboo_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_top_left_open.json new file mode 100644 index 000000000..05e969efe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/bamboo_door_bottom", + "top": "minecraft:block/bamboo_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_top_right.json new file mode 100644 index 000000000..a6a21e9cf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/bamboo_door_bottom", + "top": "minecraft:block/bamboo_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_top_right_open.json new file mode 100644 index 000000000..782f4af6a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/bamboo_door_bottom", + "top": "minecraft:block/bamboo_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate.json new file mode 100644 index 000000000..8a5d91aa5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_custom_fence_gate", + "textures": { + "particle": "minecraft:block/bamboo_fence_gate_particle", + "texture": "minecraft:block/bamboo_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_open.json new file mode 100644 index 000000000..046ad1eaa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_custom_fence_gate_open", + "textures": { + "particle": "minecraft:block/bamboo_fence_gate_particle", + "texture": "minecraft:block/bamboo_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_wall.json new file mode 100644 index 000000000..43bb833ae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_wall.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_custom_fence_gate_wall", + "textures": { + "particle": "minecraft:block/bamboo_fence_gate_particle", + "texture": "minecraft:block/bamboo_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_wall_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_wall_open.json new file mode 100644 index 000000000..ab15a5104 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_gate_wall_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_custom_fence_gate_wall_open", + "textures": { + "particle": "minecraft:block/bamboo_fence_gate_particle", + "texture": "minecraft:block/bamboo_fence_gate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_inventory.json new file mode 100644 index 000000000..87d9cb925 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/custom_fence_inventory", + "textures": { + "texture": "minecraft:block/bamboo_fence" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_post.json new file mode 100644 index 000000000..66e8880fd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/custom_fence_post", + "textures": { + "particle": "minecraft:block/bamboo_fence_particle", + "texture": "minecraft:block/bamboo_fence" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_east.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_east.json new file mode 100644 index 000000000..4d70eb37e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_east.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/custom_fence_side_east", + "textures": { + "texture": "minecraft:block/bamboo_fence" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_north.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_north.json new file mode 100644 index 000000000..56d48e47c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_north.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/custom_fence_side_north", + "textures": { + "texture": "minecraft:block/bamboo_fence" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_south.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_south.json new file mode 100644 index 000000000..7dbf5975a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_south.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/custom_fence_side_south", + "textures": { + "texture": "minecraft:block/bamboo_fence" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_west.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_west.json new file mode 100644 index 000000000..0d4106583 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_fence_side_west.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/custom_fence_side_west", + "textures": { + "texture": "minecraft:block/bamboo_fence" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_hanging_sign.json new file mode 100644 index 000000000..00c837bfb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_large_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_large_leaves.json new file mode 100644 index 000000000..3ddead94f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_large_leaves.json @@ -0,0 +1,25 @@ +{ + "ambientocclusion": false, + "textures": { + "texture": "block/bamboo_large_leaves", + "particle": "block/bamboo_large_leaves" + }, + "elements": [ + { "from": [ 0.8, 0, 8 ], + "to": [ 15.2, 16, 8 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 } + } + }, + { "from": [ 8, 0, 0.8 ], + "to": [ 8, 16, 15.2 ], + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic.json new file mode 100644 index 000000000..7432c9896 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/bamboo_mosaic" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_slab.json new file mode 100644 index 000000000..02ceb8fa2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/bamboo_mosaic", + "side": "minecraft:block/bamboo_mosaic", + "top": "minecraft:block/bamboo_mosaic" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_slab_top.json new file mode 100644 index 000000000..7be74a485 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/bamboo_mosaic", + "side": "minecraft:block/bamboo_mosaic", + "top": "minecraft:block/bamboo_mosaic" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs.json new file mode 100644 index 000000000..6a8a99d36 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/bamboo_mosaic", + "side": "minecraft:block/bamboo_mosaic", + "top": "minecraft:block/bamboo_mosaic" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs_inner.json new file mode 100644 index 000000000..02edfd751 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/bamboo_mosaic", + "side": "minecraft:block/bamboo_mosaic", + "top": "minecraft:block/bamboo_mosaic" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs_outer.json new file mode 100644 index 000000000..64b61b656 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_mosaic_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/bamboo_mosaic", + "side": "minecraft:block/bamboo_mosaic", + "top": "minecraft:block/bamboo_mosaic" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_planks.json new file mode 100644 index 000000000..670a66f9f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_pressure_plate.json new file mode 100644 index 000000000..ea2b50d8e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_pressure_plate_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_pressure_plate_down.json new file mode 100644 index 000000000..54a332808 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_sapling.json new file mode 100644 index 000000000..f658e68ea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/bamboo_stage0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf.json new file mode 100644 index 000000000..6811ea516 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_body", + "textures": { + "all": "minecraft:block/bamboo_shelf", + "particle": "minecraft:block/stripped_bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_center.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_center.json new file mode 100644 index 000000000..d16d1d6ca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_center.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_center", + "textures": { + "all": "minecraft:block/bamboo_shelf", + "particle": "minecraft:block/stripped_bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_inventory.json new file mode 100644 index 000000000..760cf5c67 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_inventory.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_inventory", + "textures": { + "all": "minecraft:block/bamboo_shelf", + "particle": "minecraft:block/stripped_bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_left.json new file mode 100644 index 000000000..ef6c5f36e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_left", + "textures": { + "all": "minecraft:block/bamboo_shelf", + "particle": "minecraft:block/stripped_bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_right.json new file mode 100644 index 000000000..cf2564749 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_right", + "textures": { + "all": "minecraft:block/bamboo_shelf", + "particle": "minecraft:block/stripped_bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_unconnected.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_unconnected.json new file mode 100644 index 000000000..d21fe50b4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_unconnected.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unconnected", + "textures": { + "all": "minecraft:block/bamboo_shelf", + "particle": "minecraft:block/stripped_bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_unpowered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_unpowered.json new file mode 100644 index 000000000..d9c68dce7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_shelf_unpowered.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unpowered", + "textures": { + "all": "minecraft:block/bamboo_shelf", + "particle": "minecraft:block/stripped_bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_sign.json new file mode 100644 index 000000000..00c837bfb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_slab.json new file mode 100644 index 000000000..569c1847f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/bamboo_planks", + "side": "minecraft:block/bamboo_planks", + "top": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_slab_top.json new file mode 100644 index 000000000..04e017fca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/bamboo_planks", + "side": "minecraft:block/bamboo_planks", + "top": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_small_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_small_leaves.json new file mode 100644 index 000000000..c21694ea0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_small_leaves.json @@ -0,0 +1,25 @@ +{ + "ambientocclusion": false, + "textures": { + "texture": "block/bamboo_small_leaves", + "particle": "block/bamboo_small_leaves" + }, + "elements": [ + { "from": [ 0.8, 0, 8 ], + "to": [ 15.2, 16, 8 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 } + } + }, + { "from": [ 8, 0, 0.8 ], + "to": [ 8, 16, 15.2 ], + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_stairs.json new file mode 100644 index 000000000..ed8578fbb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/bamboo_planks", + "side": "minecraft:block/bamboo_planks", + "top": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_stairs_inner.json new file mode 100644 index 000000000..c4c2c4b4a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/bamboo_planks", + "side": "minecraft:block/bamboo_planks", + "top": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_stairs_outer.json new file mode 100644 index 000000000..4cd653007 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/bamboo_planks", + "side": "minecraft:block/bamboo_planks", + "top": "minecraft:block/bamboo_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_bottom.json new file mode 100644 index 000000000..d7925a41e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/bamboo_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_open.json new file mode 100644 index 000000000..abbece260 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/bamboo_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_top.json new file mode 100644 index 000000000..778861d07 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bamboo_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/bamboo_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/banner.json new file mode 100644 index 000000000..9406a8491 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/banner.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/barrel.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/barrel.json new file mode 100644 index 000000000..cff930084 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/barrel.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/barrel_bottom", + "side": "minecraft:block/barrel_side", + "top": "minecraft:block/barrel_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/barrel_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/barrel_open.json new file mode 100644 index 000000000..c7d013e7b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/barrel_open.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/barrel_bottom", + "side": "minecraft:block/barrel_side", + "top": "minecraft:block/barrel_top_open" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/barrier.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/barrier.json new file mode 100644 index 000000000..7d855f501 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/barrier.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/barrier" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/basalt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/basalt.json new file mode 100644 index 000000000..9a43b3d70 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/basalt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/basalt_top", + "side": "minecraft:block/basalt_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beacon.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beacon.json new file mode 100644 index 000000000..de4bca2e1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beacon.json @@ -0,0 +1,46 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/glass", + "glass": "block/glass", + "obsidian": "block/obsidian", + "beacon": "block/beacon" + }, + "elements": [ + { "__comment": "Glass shell", + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#glass" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#glass" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#glass" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#glass" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#glass" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#glass" } + } + }, + { "__comment": "Obsidian base", + "from": [ 2, 0.1, 2 ], + "to": [ 14, 3, 14 ], + "faces": { + "down": { "uv": [ 2, 2, 14, 14 ], "texture": "#obsidian" }, + "up": { "uv": [ 2, 2, 14, 14 ], "texture": "#obsidian" }, + "north": { "uv": [ 2, 13, 14, 16 ], "texture": "#obsidian" }, + "south": { "uv": [ 2, 13, 14, 16 ], "texture": "#obsidian" }, + "west": { "uv": [ 2, 13, 14, 16 ], "texture": "#obsidian" }, + "east": { "uv": [ 2, 13, 14, 16 ], "texture": "#obsidian" } + } + }, + { "__comment": "Inner beacon texture", + "from": [ 3, 3, 3 ], + "to": [ 13, 14, 13 ], + "faces": { + "down": { "uv": [ 3, 3, 13, 13 ], "texture": "#beacon" }, + "up": { "uv": [ 3, 3, 13, 13 ], "texture": "#beacon" }, + "north": { "uv": [ 3, 2, 13, 13 ], "texture": "#beacon" }, + "south": { "uv": [ 3, 2, 13, 13 ], "texture": "#beacon" }, + "west": { "uv": [ 3, 2, 13, 13 ], "texture": "#beacon" }, + "east": { "uv": [ 3, 2, 13, 13 ], "texture": "#beacon" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bed.json new file mode 100644 index 000000000..9406a8491 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bed.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bedrock.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bedrock.json new file mode 100644 index 000000000..adc6359e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bedrock.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/bedrock" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bedrock_mirrored.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bedrock_mirrored.json new file mode 100644 index 000000000..a75ef1fbf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bedrock_mirrored.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_mirrored_all", + "textures": { + "all": "minecraft:block/bedrock" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bee_nest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bee_nest.json new file mode 100644 index 000000000..ac0aa6236 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bee_nest.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/orientable_with_bottom", + "textures": { + "bottom": "minecraft:block/bee_nest_bottom", + "front": "minecraft:block/bee_nest_front", + "particle": "minecraft:block/bee_nest_side", + "side": "minecraft:block/bee_nest_side", + "top": "minecraft:block/bee_nest_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bee_nest_empty.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bee_nest_empty.json new file mode 100644 index 000000000..ac0aa6236 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bee_nest_empty.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/orientable_with_bottom", + "textures": { + "bottom": "minecraft:block/bee_nest_bottom", + "front": "minecraft:block/bee_nest_front", + "particle": "minecraft:block/bee_nest_side", + "side": "minecraft:block/bee_nest_side", + "top": "minecraft:block/bee_nest_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bee_nest_honey.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bee_nest_honey.json new file mode 100644 index 000000000..25850dbf4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bee_nest_honey.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/orientable_with_bottom", + "textures": { + "bottom": "minecraft:block/bee_nest_bottom", + "front": "minecraft:block/bee_nest_front_honey", + "particle": "minecraft:block/bee_nest_side", + "side": "minecraft:block/bee_nest_side", + "top": "minecraft:block/bee_nest_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beehive.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beehive.json new file mode 100644 index 000000000..4c875e63a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beehive.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/orientable_with_bottom", + "textures": { + "bottom": "minecraft:block/beehive_end", + "front": "minecraft:block/beehive_front", + "particle": "minecraft:block/beehive_side", + "side": "minecraft:block/beehive_side", + "top": "minecraft:block/beehive_end" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beehive_empty.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beehive_empty.json new file mode 100644 index 000000000..4c875e63a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beehive_empty.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/orientable_with_bottom", + "textures": { + "bottom": "minecraft:block/beehive_end", + "front": "minecraft:block/beehive_front", + "particle": "minecraft:block/beehive_side", + "side": "minecraft:block/beehive_side", + "top": "minecraft:block/beehive_end" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beehive_honey.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beehive_honey.json new file mode 100644 index 000000000..1973867cd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beehive_honey.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/orientable_with_bottom", + "textures": { + "bottom": "minecraft:block/beehive_end", + "front": "minecraft:block/beehive_front_honey", + "particle": "minecraft:block/beehive_side", + "side": "minecraft:block/beehive_side", + "top": "minecraft:block/beehive_end" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beetroots_stage0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beetroots_stage0.json new file mode 100644 index 000000000..47fbf6f82 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beetroots_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/beetroots_stage0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beetroots_stage1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beetroots_stage1.json new file mode 100644 index 000000000..06177c9c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beetroots_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/beetroots_stage1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beetroots_stage2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beetroots_stage2.json new file mode 100644 index 000000000..d843c09d2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beetroots_stage2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/beetroots_stage2" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beetroots_stage3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beetroots_stage3.json new file mode 100644 index 000000000..3fa2170b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/beetroots_stage3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/beetroots_stage3" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bell_between_walls.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bell_between_walls.json new file mode 100644 index 000000000..8e7903f36 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bell_between_walls.json @@ -0,0 +1,20 @@ +{ + "textures": { + "particle": "block/bell_bottom", + "bar": "block/dark_oak_planks" + }, + "elements": [ + { + "from": [ 0, 13, 7 ], + "to": [ 16, 15, 9 ], + "faces": { + "north": { "uv": [ 2, 2, 14, 4 ], "texture": "#bar" }, + "east": { "uv": [ 5, 4, 7, 6 ], "texture": "#bar", "cullface": "east" }, + "south": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" }, + "west": { "uv": [ 5, 4, 7, 6 ], "texture": "#bar", "cullface": "west" }, + "up": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" }, + "down": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bell_ceiling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bell_ceiling.json new file mode 100644 index 000000000..a105fb98a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bell_ceiling.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "block/bell_bottom", + "bar": "block/dark_oak_planks" + }, + "elements": [ + { + "from": [ 7, 13, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "north": {"uv": [ 7, 2, 9, 5 ], "texture": "#bar" }, + "east": {"uv": [ 1, 2, 3, 5 ], "texture": "#bar" }, + "south": {"uv": [ 6, 2, 8, 5 ], "texture": "#bar" }, + "west": {"uv": [ 4, 2, 6, 5 ], "texture": "#bar" }, + "up": {"uv": [ 1, 3, 3, 5 ], "texture": "#bar", "cullface": "up" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bell_floor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bell_floor.json new file mode 100644 index 000000000..c2abfcbd5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bell_floor.json @@ -0,0 +1,43 @@ +{ + "textures": { + "particle": "block/bell_bottom", + "bar": "block/dark_oak_planks", + "post": "block/stone" + }, + "elements": [ + { + "from": [ 2, 13, 7 ], + "to": [ 14, 15, 9 ], + "faces": { + "north": { "uv": [ 2, 2, 14, 4 ], "texture": "#bar" }, + "south": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" }, + "up": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" }, + "down": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" } + } + }, + { + "from": [ 14, 0, 6 ], + "to": [ 16, 16, 10 ], + "faces": { + "north": { "uv": [ 0, 1, 2, 16 ], "texture": "#post" }, + "east": { "uv": [ 0, 1, 4, 16 ], "texture": "#post" }, + "south": { "uv": [ 0, 1, 2, 16 ], "texture": "#post" }, + "west": { "uv": [ 0, 1, 4, 16 ], "texture": "#post" }, + "up": { "uv": [ 0, 0, 2, 4 ], "texture": "#post", "cullface": "up" }, + "down": { "uv": [ 0, 0, 2, 4 ], "texture": "#post", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 6 ], + "to": [ 2, 16, 10 ], + "faces": { + "north": { "uv": [ 0, 1, 2, 16 ], "texture": "#post" }, + "east": { "uv": [ 0, 1, 4, 16 ], "texture": "#post" }, + "south": { "uv": [ 0, 1, 2, 16 ], "texture": "#post" }, + "west": { "uv": [ 0, 1, 4, 16 ], "texture": "#post" }, + "up": { "uv": [ 0, 0, 2, 4 ], "texture": "#post","cullface": "up" }, + "down": { "uv": [ 0, 0, 2, 4 ], "texture": "#post", "cullface": "down" } + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bell_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bell_wall.json new file mode 100644 index 000000000..92927bd25 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bell_wall.json @@ -0,0 +1,20 @@ +{ + "textures": { + "particle": "block/bell_bottom", + "bar": "block/dark_oak_planks" + }, + "elements": [ + { + "from": [ 3, 13, 7 ], + "to": [ 16, 15, 9 ], + "faces": { + "north": { "uv": [ 2, 2, 14, 4 ], "texture": "#bar" }, + "east": { "uv": [ 5, 4, 7, 6 ], "texture": "#bar", "cullface": "east" }, + "south": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" }, + "west": { "uv": [ 5, 4, 7, 6 ], "texture": "#bar" }, + "up": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" }, + "down": { "uv": [ 2, 3, 14, 5 ], "texture": "#bar" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/big_dripleaf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/big_dripleaf.json new file mode 100644 index 000000000..edd3947a8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/big_dripleaf.json @@ -0,0 +1,62 @@ +{ + "parent": "block/block", + "textures": { + "top": "minecraft:block/big_dripleaf_top", + "stem": "minecraft:block/big_dripleaf_stem", + "side": "minecraft:block/big_dripleaf_side", + "tip": "minecraft:block/big_dripleaf_tip", + "particle": "block/big_dripleaf_top" + }, + "elements": [ + { "from": [ 0, 15, 0 ], + "to": [ 16, 15, 16 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#top" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" } + } + }, + { "from": [ 0, 11, 0 ], + "to": [ 16, 15, 0.002 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 4 ], "texture": "#tip", "cullface": "north" }, + "south": { "uv": [ 16, 0, 0, 4 ], "texture": "#tip" } + } + }, + { "from": [ 0, 11, 0 ], + "to": [ 0.002, 15, 16 ], + "shade": false, + "faces": { + "east": { "uv": [ 16, 0, 0, 4 ], "texture": "#side" }, + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "cullface": "west" } + } + }, + { "from": [ 15.998, 11, 0 ], + "to": [ 16, 15, 16 ], + "shade": false, + "faces": { + "east": { "uv": [ 16, 0, 0, 4 ], "texture": "#side", "cullface": "east" }, + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#side" } + } + }, + { "from": [ 5, 0, 12 ], + "to": [ 11, 15, 12 ], + "rotation": { "origin": [ 8, 8, 12 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" }, + "south": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" } + } + }, + { "from": [ 5, 0, 12 ], + "to": [ 11, 15, 12 ], + "rotation": { "origin": [ 8, 8, 12 ], "axis": "y", "angle": -45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" }, + "south": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/big_dripleaf_full_tilt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/big_dripleaf_full_tilt.json new file mode 100644 index 000000000..e0ebb6d30 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/big_dripleaf_full_tilt.json @@ -0,0 +1,66 @@ +{ + "parent": "block/block", + "textures": { + "top": "minecraft:block/big_dripleaf_top", + "stem": "minecraft:block/big_dripleaf_stem", + "side": "minecraft:block/big_dripleaf_side", + "tip": "minecraft:block/big_dripleaf_tip", + "particle": "block/big_dripleaf_top" + }, + "elements": [ + { "from": [ 0, 15, 0 ], + "to": [ 16, 15, 16 ], + "rotation": { "origin": [ 8, 15, 16 ], "axis": "x", "angle": -45 }, + "shade": false, + "faces": { + "down": { "uv": [ 16, 16, 0, 0 ], "texture": "#top" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" } + } + }, + { "from": [ 0, 11, 0 ], + "to": [ 16, 15, 0 ], + "rotation": { "origin": [ 8, 15, 16 ], "axis": "x", "angle": -45 }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 4 ], "texture": "#tip" }, + "south": { "uv": [ 0, 0, 16, 4 ], "texture": "#tip" } + } + }, + { "from": [ 0, 11, 0 ], + "to": [ 0.002, 15, 16 ], + "rotation": { "origin": [ 8, 15, 16 ], "axis": "x", "angle": -45 }, + "shade": false, + "faces": { + "east": { "uv": [ 16, 0, 0, 4 ], "texture": "#side" }, + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "cullface": "west" } + } + }, + { "from": [ 15.998, 11, 0 ], + "to": [ 16, 15, 16 ], + "rotation": { "origin": [ 8, 15, 16 ], "axis": "x", "angle": -45 }, + "shade": false, + "faces": { + "east": { "uv": [ 16, 0, 0, 4 ], "texture": "#side", "cullface": "east" }, + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#side" } + } + }, + { "from": [ 5, 0, 12 ], + "to": [ 11, 15, 12 ], + "rotation": { "origin": [ 8, 8, 12 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" }, + "south": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" } + } + }, + { "from": [ 5, 0, 12 ], + "to": [ 11, 15, 12 ], + "rotation": { "origin": [ 8, 8, 12 ], "axis": "y", "angle": -45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" }, + "south": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/big_dripleaf_partial_tilt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/big_dripleaf_partial_tilt.json new file mode 100644 index 000000000..27950f59c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/big_dripleaf_partial_tilt.json @@ -0,0 +1,66 @@ +{ + "parent": "block/block", + "textures": { + "top": "minecraft:block/big_dripleaf_top", + "stem": "minecraft:block/big_dripleaf_stem", + "side": "minecraft:block/big_dripleaf_side", + "tip": "minecraft:block/big_dripleaf_tip", + "particle": "block/big_dripleaf_top" + }, + "elements": [ + { "from": [ 0, 15, 0 ], + "to": [ 16, 15, 16 ], + "rotation": { "origin": [ 8, 15, 16 ], "axis": "x", "angle": -22.5 }, + "shade": false, + "faces": { + "down": { "uv": [ 16, 16, 0, 0 ], "texture": "#top" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" } + } + }, + { "from": [ 0, 11, 0 ], + "to": [ 16, 15, 0 ], + "rotation": { "origin": [ 8, 15, 16 ], "axis": "x", "angle": -22.5 }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 4 ], "texture": "#tip" }, + "south": { "uv": [ 0, 0, 16, 4 ], "texture": "#tip" } + } + }, + { "from": [ 0, 11, 0 ], + "to": [ 0.002, 15, 16 ], + "rotation": { "origin": [ 8, 15, 16 ], "axis": "x", "angle": -22.5 }, + "shade": false, + "faces": { + "east": { "uv": [ 16, 0, 0, 4 ], "texture": "#side" }, + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "cullface": "west" } + } + }, + { "from": [ 15.998, 11, 0 ], + "to": [ 16, 15, 16 ], + "rotation": { "origin": [ 8, 15, 16 ], "axis": "x", "angle": -22.5 }, + "shade": false, + "faces": { + "east": { "uv": [ 16, 0, 0, 4 ], "texture": "#side", "cullface": "east" }, + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#side" } + } + }, + { "from": [ 5, 0, 12 ], + "to": [ 11, 15, 12 ], + "rotation": { "origin": [ 8, 8, 12 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" }, + "south": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" } + } + }, + { "from": [ 5, 0, 12 ], + "to": [ 11, 15, 12 ], + "rotation": { "origin": [ 8, 8, 12 ], "axis": "y", "angle": -45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" }, + "south": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/big_dripleaf_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/big_dripleaf_stem.json new file mode 100644 index 000000000..a40caefc3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/big_dripleaf_stem.json @@ -0,0 +1,27 @@ +{ + "parent": "block/block", + "textures": { + "stem": "block/big_dripleaf_stem", + "particle": "block/big_dripleaf_stem" + }, + "elements": [ + { "from": [ 5, 0, 12 ], + "to": [ 11, 16, 12 ], + "rotation": { "origin": [ 8, 8, 12 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" }, + "south": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" } + } + }, + { "from": [ 5, 0, 12 ], + "to": [ 11, 16, 12 ], + "rotation": { "origin": [ 8, 8, 12 ], "axis": "y", "angle": -45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" }, + "south": { "uv": [ 3, 0, 14, 16 ], "texture": "#stem" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_button.json new file mode 100644 index 000000000..751b7e916 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_button_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_button_inventory.json new file mode 100644 index 000000000..1f6420f5e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_button_pressed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_button_pressed.json new file mode 100644 index 000000000..e9438da29 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_bottom_left.json new file mode 100644 index 000000000..3195b3170 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/birch_door_bottom", + "top": "minecraft:block/birch_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_bottom_left_open.json new file mode 100644 index 000000000..57a880742 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/birch_door_bottom", + "top": "minecraft:block/birch_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_bottom_right.json new file mode 100644 index 000000000..f53cfdc45 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/birch_door_bottom", + "top": "minecraft:block/birch_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_bottom_right_open.json new file mode 100644 index 000000000..cd3b6b1a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/birch_door_bottom", + "top": "minecraft:block/birch_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_top_left.json new file mode 100644 index 000000000..2d337e0ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/birch_door_bottom", + "top": "minecraft:block/birch_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_top_left_open.json new file mode 100644 index 000000000..82c4d8f59 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/birch_door_bottom", + "top": "minecraft:block/birch_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_top_right.json new file mode 100644 index 000000000..953abe7f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/birch_door_bottom", + "top": "minecraft:block/birch_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_top_right_open.json new file mode 100644 index 000000000..982e3ca4d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/birch_door_bottom", + "top": "minecraft:block/birch_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_gate.json new file mode 100644 index 000000000..2e0e15669 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_gate_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_gate_open.json new file mode 100644 index 000000000..db6f4a89f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_gate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_gate_wall.json new file mode 100644 index 000000000..5402b037b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_gate_wall_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_gate_wall_open.json new file mode 100644 index 000000000..442138c09 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_inventory.json new file mode 100644 index 000000000..4ef0bc094 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_post.json new file mode 100644 index 000000000..83661438f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_side.json new file mode 100644 index 000000000..f5a12c9f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_hanging_sign.json new file mode 100644 index 000000000..53f27ad57 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_leaves.json new file mode 100644 index 000000000..6f7f331c3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/birch_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_log.json new file mode 100644 index 000000000..5d43e85c1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/birch_log_top", + "side": "minecraft:block/birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_log_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_log_horizontal.json new file mode 100644 index 000000000..ce988a8e6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/birch_log_top", + "side": "minecraft:block/birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_planks.json new file mode 100644 index 000000000..de6d17576 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_pressure_plate.json new file mode 100644 index 000000000..8df007e96 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_pressure_plate_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_pressure_plate_down.json new file mode 100644 index 000000000..4b36009ea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_sapling.json new file mode 100644 index 000000000..274a3afa2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/birch_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf.json new file mode 100644 index 000000000..4af8443e5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_body", + "textures": { + "all": "minecraft:block/birch_shelf", + "particle": "minecraft:block/stripped_birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_center.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_center.json new file mode 100644 index 000000000..847ec4f54 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_center.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_center", + "textures": { + "all": "minecraft:block/birch_shelf", + "particle": "minecraft:block/stripped_birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_inventory.json new file mode 100644 index 000000000..b129ad861 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_inventory.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_inventory", + "textures": { + "all": "minecraft:block/birch_shelf", + "particle": "minecraft:block/stripped_birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_left.json new file mode 100644 index 000000000..e48f0e2a0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_left", + "textures": { + "all": "minecraft:block/birch_shelf", + "particle": "minecraft:block/stripped_birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_right.json new file mode 100644 index 000000000..0c80b6e4e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_right", + "textures": { + "all": "minecraft:block/birch_shelf", + "particle": "minecraft:block/stripped_birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_unconnected.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_unconnected.json new file mode 100644 index 000000000..d38597952 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_unconnected.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unconnected", + "textures": { + "all": "minecraft:block/birch_shelf", + "particle": "minecraft:block/stripped_birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_unpowered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_unpowered.json new file mode 100644 index 000000000..0e01584b7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_shelf_unpowered.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unpowered", + "textures": { + "all": "minecraft:block/birch_shelf", + "particle": "minecraft:block/stripped_birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_sign.json new file mode 100644 index 000000000..2bfa5bcfe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_slab.json new file mode 100644 index 000000000..c7fd05bc3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/birch_planks", + "side": "minecraft:block/birch_planks", + "top": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_slab_top.json new file mode 100644 index 000000000..dbde21ef9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/birch_planks", + "side": "minecraft:block/birch_planks", + "top": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_stairs.json new file mode 100644 index 000000000..e7d798fc4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/birch_planks", + "side": "minecraft:block/birch_planks", + "top": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_stairs_inner.json new file mode 100644 index 000000000..347cdb1ef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/birch_planks", + "side": "minecraft:block/birch_planks", + "top": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_stairs_outer.json new file mode 100644 index 000000000..2c1faa60a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/birch_planks", + "side": "minecraft:block/birch_planks", + "top": "minecraft:block/birch_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_trapdoor_bottom.json new file mode 100644 index 000000000..0aa6e6ab5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/birch_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_trapdoor_open.json new file mode 100644 index 000000000..041ad1780 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/birch_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_trapdoor_top.json new file mode 100644 index 000000000..838e5cff6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/birch_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_wood.json new file mode 100644 index 000000000..ab78963a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/birch_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/birch_log", + "side": "minecraft:block/birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_cake.json new file mode 100644 index 000000000..84aa73b9b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/black_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_cake_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_cake_lit.json new file mode 100644 index 000000000..8b688c4ed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/black_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_four_candles.json new file mode 100644 index 000000000..e9f31ad5f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/black_candle", + "particle": "minecraft:block/black_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_four_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_four_candles_lit.json new file mode 100644 index 000000000..6c3d27421 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/black_candle_lit", + "particle": "minecraft:block/black_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_one_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_one_candle.json new file mode 100644 index 000000000..9bcb8eedc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/black_candle", + "particle": "minecraft:block/black_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_one_candle_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_one_candle_lit.json new file mode 100644 index 000000000..e04d7b15b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/black_candle_lit", + "particle": "minecraft:block/black_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_three_candles.json new file mode 100644 index 000000000..31b82ceee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/black_candle", + "particle": "minecraft:block/black_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_three_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_three_candles_lit.json new file mode 100644 index 000000000..31693bb4d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/black_candle_lit", + "particle": "minecraft:block/black_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_two_candles.json new file mode 100644 index 000000000..298bd70a3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/black_candle", + "particle": "minecraft:block/black_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_two_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_two_candles_lit.json new file mode 100644 index 000000000..5ad49a083 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/black_candle_lit", + "particle": "minecraft:block/black_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_carpet.json new file mode 100644 index 000000000..a89fa4812 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/black_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_concrete.json new file mode 100644 index 000000000..a2748b557 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/black_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_concrete_powder.json new file mode 100644 index 000000000..633743510 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/black_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_glazed_terracotta.json new file mode 100644 index 000000000..f973bbba2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/black_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_shulker_box.json new file mode 100644 index 000000000..0e74df954 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/black_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass.json new file mode 100644 index 000000000..5d66a695a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/black_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_noside.json new file mode 100644 index 000000000..bc943b0a7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/black_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..3d66b75f9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/black_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_post.json new file mode 100644 index 000000000..629860453 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/black_stained_glass_pane_top", + "pane": "minecraft:block/black_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_side.json new file mode 100644 index 000000000..d0d90d10a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/black_stained_glass_pane_top", + "pane": "minecraft:block/black_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..7c4e7c977 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/black_stained_glass_pane_top", + "pane": "minecraft:block/black_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_terracotta.json new file mode 100644 index 000000000..a8ff478c2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/black_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_wool.json new file mode 100644 index 000000000..7fea63ff5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/black_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/black_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone.json new file mode 100644 index 000000000..d6e7b5852 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/blackstone_top", + "side": "minecraft:block/blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_slab.json new file mode 100644 index 000000000..f4f7fe888 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/blackstone_top", + "side": "minecraft:block/blackstone", + "top": "minecraft:block/blackstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_slab_top.json new file mode 100644 index 000000000..7ffe490e4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/blackstone_top", + "side": "minecraft:block/blackstone", + "top": "minecraft:block/blackstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_stairs.json new file mode 100644 index 000000000..15a8eefd2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/blackstone_top", + "side": "minecraft:block/blackstone", + "top": "minecraft:block/blackstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_stairs_inner.json new file mode 100644 index 000000000..ff1597db8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/blackstone_top", + "side": "minecraft:block/blackstone", + "top": "minecraft:block/blackstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_stairs_outer.json new file mode 100644 index 000000000..130777e4e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/blackstone_top", + "side": "minecraft:block/blackstone", + "top": "minecraft:block/blackstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_wall_inventory.json new file mode 100644 index 000000000..6e8029cef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_wall_post.json new file mode 100644 index 000000000..a2b66ca3d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_wall_side.json new file mode 100644 index 000000000..152d2fe4f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_wall_side_tall.json new file mode 100644 index 000000000..3a6622549 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blackstone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blast_furnace.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blast_furnace.json new file mode 100644 index 000000000..8c8aa4501 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blast_furnace.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "front": "minecraft:block/blast_furnace_front", + "side": "minecraft:block/blast_furnace_side", + "top": "minecraft:block/blast_furnace_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blast_furnace_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blast_furnace_on.json new file mode 100644 index 000000000..4d14c0be8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blast_furnace_on.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "front": "minecraft:block/blast_furnace_front_on", + "side": "minecraft:block/blast_furnace_side", + "top": "minecraft:block/blast_furnace_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/block.json new file mode 100644 index 000000000..f9c725599 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/block.json @@ -0,0 +1,40 @@ +{ + "gui_light": "side", + "display": { + "gui": { + "rotation": [ 30, 225, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 3, 0], + "scale":[ 0.25, 0.25, 0.25 ] + }, + "fixed": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.5, 0.5, 0.5 ] + }, + "on_shelf": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ] + }, + "thirdperson_righthand": { + "rotation": [ 75, 45, 0 ], + "translation": [ 0, 2.5, 0], + "scale": [ 0.375, 0.375, 0.375 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 45, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.40, 0.40, 0.40 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 225, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.40, 0.40, 0.40 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_cake.json new file mode 100644 index 000000000..c6ffe7206 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/blue_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_cake_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_cake_lit.json new file mode 100644 index 000000000..515e258d7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/blue_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_four_candles.json new file mode 100644 index 000000000..31d0de83f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/blue_candle", + "particle": "minecraft:block/blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_four_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_four_candles_lit.json new file mode 100644 index 000000000..b71df39ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/blue_candle_lit", + "particle": "minecraft:block/blue_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_one_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_one_candle.json new file mode 100644 index 000000000..dc89790e5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/blue_candle", + "particle": "minecraft:block/blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_one_candle_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_one_candle_lit.json new file mode 100644 index 000000000..b3410f675 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/blue_candle_lit", + "particle": "minecraft:block/blue_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_three_candles.json new file mode 100644 index 000000000..e9527b984 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/blue_candle", + "particle": "minecraft:block/blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_three_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_three_candles_lit.json new file mode 100644 index 000000000..992be450a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/blue_candle_lit", + "particle": "minecraft:block/blue_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_two_candles.json new file mode 100644 index 000000000..efc0f7a27 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/blue_candle", + "particle": "minecraft:block/blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_two_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_two_candles_lit.json new file mode 100644 index 000000000..22ab088f0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/blue_candle_lit", + "particle": "minecraft:block/blue_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_carpet.json new file mode 100644 index 000000000..be41fd875 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/blue_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_concrete.json new file mode 100644 index 000000000..b2423fb60 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/blue_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_concrete_powder.json new file mode 100644 index 000000000..7ceaeb510 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/blue_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_glazed_terracotta.json new file mode 100644 index 000000000..ecb17356b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/blue_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_ice.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_ice.json new file mode 100644 index 000000000..9164aee5f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_ice.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/blue_ice" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_orchid.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_orchid.json new file mode 100644 index 000000000..a7f9b4b26 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_orchid.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/blue_orchid" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_shulker_box.json new file mode 100644 index 000000000..29b739d85 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/blue_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass.json new file mode 100644 index 000000000..e372ce34e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_noside.json new file mode 100644 index 000000000..fa1dd06d2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..70faad046 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_post.json new file mode 100644 index 000000000..6c778945f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/blue_stained_glass_pane_top", + "pane": "minecraft:block/blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_side.json new file mode 100644 index 000000000..e88321ef7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/blue_stained_glass_pane_top", + "pane": "minecraft:block/blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..b891c7179 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/blue_stained_glass_pane_top", + "pane": "minecraft:block/blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_terracotta.json new file mode 100644 index 000000000..ead569747 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/blue_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_wool.json new file mode 100644 index 000000000..4fb7fa5b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/blue_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/blue_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bone_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bone_block.json new file mode 100644 index 000000000..f6594f0d3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bone_block.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/bone_block_top", + "side": "minecraft:block/bone_block_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bookshelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bookshelf.json new file mode 100644 index 000000000..c095a7d7e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bookshelf.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/oak_planks", + "side": "minecraft:block/bookshelf" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brain_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brain_coral.json new file mode 100644 index 000000000..308083fc1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brain_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/brain_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brain_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brain_coral_block.json new file mode 100644 index 000000000..6e7ddb618 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brain_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/brain_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brain_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brain_coral_fan.json new file mode 100644 index 000000000..a2128699c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brain_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/brain_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brain_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brain_coral_wall_fan.json new file mode 100644 index 000000000..20b561031 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brain_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/brain_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand.json new file mode 100644 index 000000000..809d3d88b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand.json @@ -0,0 +1,53 @@ +{ + "textures": { + "particle": "block/brewing_stand", + "base": "block/brewing_stand_base", + "stand": "block/brewing_stand" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 14, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 9 ], "texture": "#stand" }, + "up": { "uv": [ 7, 7, 9, 9 ], "texture": "#stand" }, + "north": { "uv": [ 7, 2, 9, 16 ], "texture": "#stand" }, + "south": { "uv": [ 7, 2, 9, 16 ], "texture": "#stand" }, + "west": { "uv": [ 7, 2, 9, 16 ], "texture": "#stand" }, + "east": { "uv": [ 7, 2, 9, 16 ], "texture": "#stand" } + } + }, + { "from": [ 9, 0, 5 ], + "to": [ 15, 2, 11 ], + "faces": { + "down": { "uv": [ 9, 5, 15, 11 ], "texture": "#base", "cullface": "down" }, + "up": { "uv": [ 9, 5, 15, 11 ], "texture": "#base" }, + "north": { "uv": [ 9, 14, 15, 16 ], "texture": "#base" }, + "south": { "uv": [ 9, 14, 15, 16 ], "texture": "#base" }, + "west": { "uv": [ 5, 14, 11, 16 ], "texture": "#base" }, + "east": { "uv": [ 5, 14, 11, 16 ], "texture": "#base" } + } + }, + { "from": [ 1, 0, 1 ], + "to": [ 7, 2, 7 ], + "faces": { + "down": { "uv": [ 1, 1, 7, 7 ], "texture": "#base", "cullface": "down" }, + "up": { "uv": [ 1, 1, 7, 7 ], "texture": "#base" }, + "north": { "uv": [ 1, 14, 7, 16 ], "texture": "#base" }, + "south": { "uv": [ 1, 14, 7, 16 ], "texture": "#base" }, + "west": { "uv": [ 1, 14, 7, 16 ], "texture": "#base" }, + "east": { "uv": [ 1, 14, 7, 16 ], "texture": "#base" } + } + }, + { "from": [ 1, 0, 9 ], + "to": [ 7, 2, 15 ], + "faces": { + "down": { "uv": [ 1, 9, 7, 15 ], "texture": "#base", "cullface": "down" }, + "up": { "uv": [ 1, 9, 7, 15 ], "texture": "#base" }, + "north": { "uv": [ 1, 14, 7, 16 ], "texture": "#base" }, + "south": { "uv": [ 1, 14, 7, 16 ], "texture": "#base" }, + "west": { "uv": [ 9, 14, 15, 16 ], "texture": "#base" }, + "east": { "uv": [ 9, 14, 15, 16 ], "texture": "#base" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle0.json new file mode 100644 index 000000000..012ffa85e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle0.json @@ -0,0 +1,15 @@ +{ + "textures": { + "particle": "block/brewing_stand", + "stand": "block/brewing_stand" + }, + "elements": [ + { "from": [ 8, 0, 8 ], + "to": [ 16, 16, 8 ], + "faces": { + "north": { "uv": [ 0, 0, 8, 16 ], "texture": "#stand" }, + "south": { "uv": [ 8, 0, 0, 16 ], "texture": "#stand" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle1.json new file mode 100644 index 000000000..9e989cdee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle1.json @@ -0,0 +1,20 @@ +{ + "textures": { + "particle": "block/brewing_stand", + "stand": "block/brewing_stand" + }, + "elements": [ + { "from": [ -0.41, 0, 8 ], + "to": [ 7.59, 16, 8 ], + "rotation": { + "origin": [ 8, 8, 8 ], + "axis": "y", + "angle": -45 + }, + "faces": { + "north": { "uv": [ 8, 0, 0, 16 ], "texture": "#stand" }, + "south": { "uv": [ 0, 0, 8, 16 ], "texture": "#stand" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle2.json new file mode 100644 index 000000000..4796f71fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_bottle2.json @@ -0,0 +1,20 @@ +{ + "textures": { + "particle": "block/brewing_stand", + "stand": "block/brewing_stand" + }, + "elements": [ + { "from": [ -0.41, 0, 8 ], + "to": [ 7.59, 16, 8 ], + "rotation": { + "origin": [ 8, 8, 8 ], + "axis": "y", + "angle": 45 + }, + "faces": { + "north": { "uv": [ 8, 0, 0, 16 ], "texture": "#stand" }, + "south": { "uv": [ 0, 0, 8, 16 ], "texture": "#stand" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_empty0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_empty0.json new file mode 100644 index 000000000..a99c90ccd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_empty0.json @@ -0,0 +1,15 @@ +{ + "textures": { + "particle": "block/brewing_stand", + "stand": "block/brewing_stand" + }, + "elements": [ + { "from": [ 8, 0, 8 ], + "to": [ 16, 16, 8 ], + "faces": { + "north": { "uv": [ 16, 0, 8, 16 ], "texture": "#stand" }, + "south": { "uv": [ 8, 0, 16, 16 ], "texture": "#stand" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_empty1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_empty1.json new file mode 100644 index 000000000..0936497ac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_empty1.json @@ -0,0 +1,20 @@ +{ + "textures": { + "particle": "block/brewing_stand", + "stand": "block/brewing_stand" + }, + "elements": [ + { "from": [ -0.41, 0, 8 ], + "to": [ 7.59, 16, 8 ], + "rotation": { + "origin": [ 8, 8, 8 ], + "axis": "y", + "angle": -45 + }, + "faces": { + "north": { "uv": [ 8, 0, 16, 16 ], "texture": "#stand" }, + "south": { "uv": [ 16, 0, 8, 16 ], "texture": "#stand" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_empty2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_empty2.json new file mode 100644 index 000000000..50b948d07 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brewing_stand_empty2.json @@ -0,0 +1,20 @@ +{ + "textures": { + "particle": "block/brewing_stand", + "stand": "block/brewing_stand" + }, + "elements": [ + { "from": [ -0.41, 0, 8 ], + "to": [ 7.59, 16, 8 ], + "rotation": { + "origin": [ 8, 8, 8 ], + "axis": "y", + "angle": 45 + }, + "faces": { + "north": { "uv": [ 8, 0, 16, 16 ], "texture": "#stand" }, + "south": { "uv": [ 16, 0, 8, 16 ], "texture": "#stand" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_slab.json new file mode 100644 index 000000000..d068166aa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/bricks", + "side": "minecraft:block/bricks", + "top": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_slab_top.json new file mode 100644 index 000000000..1e68c3b7a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/bricks", + "side": "minecraft:block/bricks", + "top": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_stairs.json new file mode 100644 index 000000000..675b07750 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/bricks", + "side": "minecraft:block/bricks", + "top": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_stairs_inner.json new file mode 100644 index 000000000..737219ad2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/bricks", + "side": "minecraft:block/bricks", + "top": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_stairs_outer.json new file mode 100644 index 000000000..977459dd7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/bricks", + "side": "minecraft:block/bricks", + "top": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_wall_inventory.json new file mode 100644 index 000000000..5d6f8a8f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_wall_post.json new file mode 100644 index 000000000..5d343dfe2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_wall_side.json new file mode 100644 index 000000000..94872eff5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_wall_side_tall.json new file mode 100644 index 000000000..798399827 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bricks.json new file mode 100644 index 000000000..b3d7b55b5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_cake.json new file mode 100644 index 000000000..baf53dddd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/brown_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_cake_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_cake_lit.json new file mode 100644 index 000000000..cdb2b4918 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/brown_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_four_candles.json new file mode 100644 index 000000000..a203e8f7f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/brown_candle", + "particle": "minecraft:block/brown_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_four_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_four_candles_lit.json new file mode 100644 index 000000000..3fb0766dd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/brown_candle_lit", + "particle": "minecraft:block/brown_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_one_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_one_candle.json new file mode 100644 index 000000000..24d97d5a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/brown_candle", + "particle": "minecraft:block/brown_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_one_candle_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_one_candle_lit.json new file mode 100644 index 000000000..571ef6e35 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/brown_candle_lit", + "particle": "minecraft:block/brown_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_three_candles.json new file mode 100644 index 000000000..a0ff176ac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/brown_candle", + "particle": "minecraft:block/brown_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_three_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_three_candles_lit.json new file mode 100644 index 000000000..5a51f463f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/brown_candle_lit", + "particle": "minecraft:block/brown_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_two_candles.json new file mode 100644 index 000000000..aaa9dca04 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/brown_candle", + "particle": "minecraft:block/brown_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_two_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_two_candles_lit.json new file mode 100644 index 000000000..6cae28b41 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/brown_candle_lit", + "particle": "minecraft:block/brown_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_carpet.json new file mode 100644 index 000000000..1befa6252 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/brown_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_concrete.json new file mode 100644 index 000000000..217098d98 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/brown_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_concrete_powder.json new file mode 100644 index 000000000..d095ddf0a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/brown_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_glazed_terracotta.json new file mode 100644 index 000000000..4d70d0adf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/brown_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_mushroom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_mushroom.json new file mode 100644 index 000000000..488139305 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_mushroom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/brown_mushroom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_mushroom_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_mushroom_block.json new file mode 100644 index 000000000..5ce72be64 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_mushroom_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_single_face", + "textures": { + "texture": "minecraft:block/brown_mushroom_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_mushroom_block_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_mushroom_block_inventory.json new file mode 100644 index 000000000..8062fcee8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_mushroom_block_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/brown_mushroom_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_shulker_box.json new file mode 100644 index 000000000..b7118090d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/brown_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass.json new file mode 100644 index 000000000..cb8975b29 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/brown_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_noside.json new file mode 100644 index 000000000..3b43194ef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/brown_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..594f3059a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/brown_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_post.json new file mode 100644 index 000000000..0299f4362 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/brown_stained_glass_pane_top", + "pane": "minecraft:block/brown_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_side.json new file mode 100644 index 000000000..5e06559fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/brown_stained_glass_pane_top", + "pane": "minecraft:block/brown_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..c5cc30eb0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/brown_stained_glass_pane_top", + "pane": "minecraft:block/brown_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_terracotta.json new file mode 100644 index 000000000..4bbb7fe74 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/brown_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_wool.json new file mode 100644 index 000000000..25c884291 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/brown_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/brown_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bubble_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bubble_coral.json new file mode 100644 index 000000000..b0f75a330 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bubble_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/bubble_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bubble_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bubble_coral_block.json new file mode 100644 index 000000000..fc5708cdb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bubble_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/bubble_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bubble_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bubble_coral_fan.json new file mode 100644 index 000000000..5f6d2d2b4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bubble_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/bubble_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bubble_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bubble_coral_wall_fan.json new file mode 100644 index 000000000..b13aa967f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bubble_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/bubble_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/budding_amethyst.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/budding_amethyst.json new file mode 100644 index 000000000..48efc25ad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/budding_amethyst.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/budding_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bush.json new file mode 100644 index 000000000..e58ffca26 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/bush.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/bush" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/button.json new file mode 100644 index 000000000..b3dc8a56e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/button.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 5, 0, 6 ], + "to": [ 11, 2, 10 ], + "faces": { + "down": { "uv": [ 5, 6, 11, 10 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 5, 6, 11, 10 ], "texture": "#texture" }, + "north": { "uv": [ 5, 14, 11, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5, 14, 11, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6, 14, 10, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6, 14, 10, 16 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/button_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/button_inventory.json new file mode 100644 index 000000000..7a13742db --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/button_inventory.json @@ -0,0 +1,18 @@ +{ "parent": "block/block", + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 5, 6, 6 ], + "to": [ 11, 10, 10 ], + "faces": { + "down": { "uv": [ 5, 6, 11, 10 ], "texture": "#texture" }, + "up": { "uv": [ 5, 10, 11, 6 ], "texture": "#texture" }, + "north": { "uv": [ 5, 12, 11, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5, 12, 11, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6, 12, 10, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6, 12, 10, 16 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/button_pressed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/button_pressed.json new file mode 100644 index 000000000..a4da58f6a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/button_pressed.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 5, 0, 6 ], + "to": [ 11, 1.02, 10 ], + "faces": { + "down": { "uv": [ 5, 6, 11, 10 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 5, 6, 11, 10 ], "texture": "#texture" }, + "north": { "uv": [ 5, 14, 11, 15 ], "texture": "#texture" }, + "south": { "uv": [ 5, 14, 11, 15 ], "texture": "#texture" }, + "west": { "uv": [ 6, 14, 10, 15 ], "texture": "#texture" }, + "east": { "uv": [ 6, 14, 10, 15 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cactus.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cactus.json new file mode 100644 index 000000000..d8e205478 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cactus.json @@ -0,0 +1,31 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/cactus_side", + "bottom": "block/cactus_bottom", + "top": "block/cactus_top", + "side": "block/cactus_side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "up" } + } + }, + { "from": [ 0, 0, 1 ], + "to": [ 16, 16, 15 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#side" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#side" } + } + }, + { "from": [ 1, 0, 0 ], + "to": [ 15, 16, 16 ], + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#side" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cactus_flower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cactus_flower.json new file mode 100644 index 000000000..541d458c3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cactus_flower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/cactus_flower" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake.json new file mode 100644 index 000000000..1bc93473e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake.json @@ -0,0 +1,21 @@ +{ + "textures": { + "particle": "block/cake_side", + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "side": "block/cake_side" + }, + "elements": [ + { "from": [ 1, 0, 1 ], + "to": [ 15, 8, 15 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice1.json new file mode 100644 index 000000000..ca6d8d85e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice1.json @@ -0,0 +1,22 @@ +{ + "textures": { + "particle": "block/cake_side", + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { "from": [ 3, 0, 1 ], + "to": [ 15, 8, 15 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#inside" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice2.json new file mode 100644 index 000000000..7714c0d09 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice2.json @@ -0,0 +1,22 @@ +{ + "textures": { + "particle": "block/cake_side", + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { "from": [ 5, 0, 1 ], + "to": [ 15, 8, 15 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#inside" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice3.json new file mode 100644 index 000000000..8d45a88a7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice3.json @@ -0,0 +1,22 @@ +{ + "textures": { + "particle": "block/cake_side", + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { "from": [ 7, 0, 1 ], + "to": [ 15, 8, 15 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#inside" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice4.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice4.json new file mode 100644 index 000000000..00bab48eb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice4.json @@ -0,0 +1,22 @@ +{ + "textures": { + "particle": "block/cake_side", + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { "from": [ 9, 0, 1 ], + "to": [ 15, 8, 15 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#inside" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice5.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice5.json new file mode 100644 index 000000000..518af8385 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice5.json @@ -0,0 +1,22 @@ +{ + "textures": { + "particle": "block/cake_side", + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { "from": [ 11, 0, 1 ], + "to": [ 15, 8, 15 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#inside" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice6.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice6.json new file mode 100644 index 000000000..97151ba5f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cake_slice6.json @@ -0,0 +1,22 @@ +{ + "textures": { + "particle": "block/cake_side", + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "side": "block/cake_side", + "inside": "block/cake_inner" + }, + "elements": [ + { "from": [ 13, 0, 1 ], + "to": [ 15, 8, 15 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#inside" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/calcite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/calcite.json new file mode 100644 index 000000000..1bb92ad4e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/calcite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/calcite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor.json new file mode 100644 index 000000000..97b007ac4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor.json @@ -0,0 +1,100 @@ +{ + "parent": "block/block", + "gui_light": "front", + "display": { + "gui": { + "rotation": [ 30, 45, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "head": { + "rotation": [ 0, -180, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ] + }, + "thirdperson_lefthand": { + "rotation": [ 75, -45, 0 ], + "translation": [ 0, 2.5, 0], + "scale": [ 0.375, 0.375, 0.375 ] + } + }, + "textures": { + "amethyst": "block/calibrated_sculk_sensor_amethyst", + "bottom": "block/sculk_sensor_bottom", + "side": "block/sculk_sensor_side", + "calibrated_side": "block/calibrated_sculk_sensor_input_side", + "tendrils": "block/sculk_sensor_tendril_inactive", + "top": "block/calibrated_sculk_sensor_top", + "particle": "block/sculk_sensor_bottom" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 8, 16], + "faces": { + "north": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "north"}, + "east": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "east"}, + "south": {"uv": [0, 8, 16, 16], "texture": "#calibrated_side", "cullface": "south"}, + "west": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#top"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [-1, 8, 3], + "to": [7, 16, 3], + "rotation": {"angle": 45, "axis": "y", "origin": [3, 12, 3]}, + "faces": { + "north": {"uv": [4, 8, 12, 16], "texture": "#tendrils" }, + "south": {"uv": [12, 8, 4, 16], "texture": "#tendrils" } + } + }, + { + "from": [9, 8, 3], + "to": [17, 16, 3], + "rotation": {"angle": -45, "axis": "y", "origin": [13, 12, 3]}, + "faces": { + "north": {"uv": [12, 8, 4, 16], "texture": "#tendrils" }, + "south": {"uv": [4, 8, 12, 16], "texture": "#tendrils" } + } + }, + { + "from": [9, 8, 13], + "to": [17, 16, 13], + "rotation": {"angle": 45, "axis": "y", "origin": [13, 12, 13]}, + "faces": { + "north": {"uv": [12, 8, 4, 16], "texture": "#tendrils" }, + "south": {"uv": [4, 8, 12, 16], "texture": "#tendrils" } + } + }, + { + "from": [-1, 8, 13], + "to": [7, 16, 13], + "rotation": {"angle": -45, "axis": "y", "origin": [3, 12, 13]}, + "faces": { + "north": {"uv": [4, 8, 12, 16], "texture": "#tendrils" }, + "south": {"uv": [12, 8, 4, 16], "texture": "#tendrils" } + } + }, + { + "from": [8, 8, 0], + "to": [8, 20, 16], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 9, 8], "rescale": true}, + "shade": false, + "faces": { + "east": {"uv": [0, 4, 16, 16], "texture": "#amethyst"}, + "west": {"uv": [0, 4, 16, 16], "texture": "#amethyst"} + } + }, + { + "from": [0, 8, 8], + "to": [16, 20, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 9, 8], "rescale": true}, + "shade": false, + "faces": { + "north": {"uv": [0, 4, 16, 16], "texture": "#amethyst"}, + "south": {"uv": [0, 4, 16, 16], "texture": "#amethyst"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor_active.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor_active.json new file mode 100644 index 000000000..e43241c59 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor_active.json @@ -0,0 +1,6 @@ +{ + "parent": "block/calibrated_sculk_sensor", + "textures": { + "tendrils": "block/sculk_sensor_tendril_active" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor_inactive.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor_inactive.json new file mode 100644 index 000000000..4976cf8b0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/calibrated_sculk_sensor_inactive.json @@ -0,0 +1,6 @@ +{ + "parent": "block/calibrated_sculk_sensor", + "textures": { + "tendrils": "block/sculk_sensor_tendril_inactive" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/campfire.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/campfire.json new file mode 100644 index 000000000..ff5db784e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/campfire.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_campfire", + "textures": { + "fire": "minecraft:block/campfire_fire", + "lit_log": "minecraft:block/campfire_log_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/campfire_off.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/campfire_off.json new file mode 100644 index 000000000..9dc54761d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/campfire_off.json @@ -0,0 +1,74 @@ +{ + "parent": "block/block", + "display": { + "head": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 10.5, 0 ], + "scale":[ 1, 1, 1 ] + } + }, + "textures": { + "particle": "block/campfire_log", + "log": "block/campfire_log" + }, + "elements": [ + { + "from": [ 1, 0, 0 ], + "to": [ 5, 4, 16 ], + "faces": { + "north": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "north" }, + "east": { "uv": [ 0, 1, 16, 5 ], "texture": "#log" }, + "south": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "south" }, + "west": { "uv": [ 16, 0, 0, 4 ], "texture": "#log" }, + "up": { "uv": [ 0, 0, 16, 4 ], "rotation": 90, "texture": "#log" }, + "down": { "uv": [ 0, 0, 16, 4 ], "rotation": 90, "texture": "#log", "cullface": "down" } + } + }, + { + "from": [ 0, 3, 11 ], + "to": [ 16, 7, 15 ], + "faces": { + "north": { "uv": [ 16, 0, 0, 4 ], "texture": "#log" }, + "east": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "east" }, + "south": { "uv": [ 0, 0, 16, 4 ], "texture": "#log" }, + "west": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "west" }, + "up": { "uv": [ 0, 0, 16, 4 ], "rotation": 180, "texture": "#log" }, + "down": { "uv": [ 0, 0, 16, 4 ], "texture": "#log" } + } + }, + { + "from": [ 11, 0, 0 ], + "to": [ 15, 4, 16 ], + "faces": { + "north": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "north" }, + "east": { "uv": [ 0, 0, 16, 4 ], "texture": "#log" }, + "south": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "south" }, + "west": { "uv": [ 16, 1, 0, 5 ], "texture": "#log" }, + "up": { "uv": [ 0, 0, 16, 4 ], "rotation": 90, "texture": "#log" }, + "down": { "uv": [ 0, 0, 16, 4 ], "rotation": 90, "texture": "#log", "cullface": "down" } + } + }, + { + "from": [ 0, 3, 1 ], + "to": [ 16, 7, 5 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 4 ], "texture": "#log" }, + "east": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "east" }, + "south": { "uv": [ 16, 0, 0, 4 ], "texture": "#log" }, + "west": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "west" }, + "up": { "uv": [ 0, 0, 16, 4 ], "rotation": 180, "texture": "#log" }, + "down": { "uv": [ 0, 0, 16, 4 ], "texture": "#log" } + } + }, + { + "from": [ 5, 0, 0 ], + "to": [ 11, 1, 16 ], + "faces": { + "north": {"uv": [ 0, 15, 6, 16 ], "texture": "#log", "cullface": "north" }, + "south": {"uv": [ 10, 15, 16, 16 ], "texture": "#log", "cullface": "south" }, + "up": {"uv": [ 0, 8, 16, 14 ], "rotation": 90, "texture": "#log" }, + "down": {"uv": [ 0, 8, 16, 14 ], "rotation": 90, "texture": "#log", "cullface": "down" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_cake.json new file mode 100644 index 000000000..56b23bf19 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_cake_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_cake_lit.json new file mode 100644 index 000000000..a0c980086 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_four_candles.json new file mode 100644 index 000000000..90eb7a433 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/candle", + "particle": "minecraft:block/candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_four_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_four_candles_lit.json new file mode 100644 index 000000000..00070da2f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/candle_lit", + "particle": "minecraft:block/candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_one_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_one_candle.json new file mode 100644 index 000000000..36c9b7672 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/candle", + "particle": "minecraft:block/candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_one_candle_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_one_candle_lit.json new file mode 100644 index 000000000..c66fbdad2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/candle_lit", + "particle": "minecraft:block/candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_three_candles.json new file mode 100644 index 000000000..b40569167 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/candle", + "particle": "minecraft:block/candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_three_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_three_candles_lit.json new file mode 100644 index 000000000..e706c7bd6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/candle_lit", + "particle": "minecraft:block/candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_two_candles.json new file mode 100644 index 000000000..cda5223f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/candle", + "particle": "minecraft:block/candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_two_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_two_candles_lit.json new file mode 100644 index 000000000..5c3618b17 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/candle_lit", + "particle": "minecraft:block/candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carpet.json new file mode 100644 index 000000000..b52a11054 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carpet.json @@ -0,0 +1,19 @@ +{ + "parent": "block/thin_block", + "textures": { + "particle": "#wool" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 1, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#wool", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#wool" }, + "north": { "uv": [ 0, 15, 16, 16 ], "texture": "#wool", "cullface": "north" }, + "south": { "uv": [ 0, 15, 16, 16 ], "texture": "#wool", "cullface": "south" }, + "west": { "uv": [ 0, 15, 16, 16 ], "texture": "#wool", "cullface": "west" }, + "east": { "uv": [ 0, 15, 16, 16 ], "texture": "#wool", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carrots_stage0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carrots_stage0.json new file mode 100644 index 000000000..f1dcc6e64 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carrots_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/carrots_stage0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carrots_stage1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carrots_stage1.json new file mode 100644 index 000000000..dda9356ea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carrots_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/carrots_stage1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carrots_stage2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carrots_stage2.json new file mode 100644 index 000000000..ffc0a5596 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carrots_stage2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/carrots_stage2" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carrots_stage3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carrots_stage3.json new file mode 100644 index 000000000..aeb7406a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carrots_stage3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/carrots_stage3" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cartography_table.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cartography_table.json new file mode 100644 index 000000000..770c10613 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cartography_table.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "down": "minecraft:block/dark_oak_planks", + "east": "minecraft:block/cartography_table_side3", + "north": "minecraft:block/cartography_table_side3", + "particle": "minecraft:block/cartography_table_side3", + "south": "minecraft:block/cartography_table_side1", + "up": "minecraft:block/cartography_table_top", + "west": "minecraft:block/cartography_table_side2" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carved_pumpkin.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carved_pumpkin.json new file mode 100644 index 000000000..69975acec --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/carved_pumpkin.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "front": "minecraft:block/carved_pumpkin", + "side": "minecraft:block/pumpkin_side", + "top": "minecraft:block/pumpkin_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cauldron.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cauldron.json new file mode 100644 index 000000000..788da3e14 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cauldron.json @@ -0,0 +1,148 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cauldron_side", + "top": "block/cauldron_top", + "bottom": "block/cauldron_bottom", + "side": "block/cauldron_side", + "inside": "block/cauldron_inner" + }, + "elements": [ + { + "from": [ 0, 3, 0 ], + "to": [ 2, 16, 16 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 2 ], + "to": [ 14, 4, 14 ], + "faces": { + "up": { "texture": "#inside" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 14, 3, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 0 ], + "to": [ 14, 16, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 14 ], + "to": [ 14, 16, 16 ], + "faces": { + "north": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 0, 0, 0 ], + "to": [ 4, 3, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 2 ], + "to": [ 2, 3, 4 ], + "faces": { + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 12, 0, 0 ], + "to": [ 16, 3, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 14, 0, 2 ], + "to": [ 16, 3, 4 ], + "faces": { + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 14 ], + "to": [ 4, 3, 16 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 12 ], + "to": [ 2, 3, 14 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 12, 0, 14 ], + "to": [ 16, 3, 16 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 14, 0, 12 ], + "to": [ 16, 3, 14 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cave_vines.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cave_vines.json new file mode 100644 index 000000000..96aafbf7c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cave_vines.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/cave_vines" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cave_vines_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cave_vines_lit.json new file mode 100644 index 000000000..55dd17a5f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cave_vines_lit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/cave_vines_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cave_vines_plant.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cave_vines_plant.json new file mode 100644 index 000000000..c0eb5e115 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cave_vines_plant.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/cave_vines_plant" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cave_vines_plant_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cave_vines_plant_lit.json new file mode 100644 index 000000000..e6d54de05 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cave_vines_plant_lit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/cave_vines_plant_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chain.json new file mode 100644 index 000000000..56d42c1e5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chain.json @@ -0,0 +1,29 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/chain", + "all": "block/chain" + }, + "elements": [ + { + "from": [ 6.5, 0, 8 ], + "to": [ 9.5, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45}, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#all" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#all" } + } + }, + { + "from": [ 8, 0, 6.5 ], + "to": [ 8, 16, 9.5 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45}, + "shade": false, + "faces": { + "west": { "uv": [ 6, 0, 3, 16 ], "texture": "#all" }, + "east": { "uv": [ 3, 0, 6, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chain_command_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chain_command_block.json new file mode 100644 index 000000000..bdb3d96ef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chain_command_block.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_command_block", + "textures": { + "back": "minecraft:block/chain_command_block_back", + "front": "minecraft:block/chain_command_block_front", + "side": "minecraft:block/chain_command_block_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chain_command_block_conditional.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chain_command_block_conditional.json new file mode 100644 index 000000000..ebde0eea8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chain_command_block_conditional.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_command_block", + "textures": { + "back": "minecraft:block/chain_command_block_back", + "front": "minecraft:block/chain_command_block_front", + "side": "minecraft:block/chain_command_block_conditional" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_button.json new file mode 100644 index 000000000..4c064ed8b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_button_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_button_inventory.json new file mode 100644 index 000000000..01ff173a3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_button_pressed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_button_pressed.json new file mode 100644 index 000000000..a2f61179e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_left.json new file mode 100644 index 000000000..e0222a5d6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/cherry_door_bottom", + "top": "minecraft:block/cherry_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_left_open.json new file mode 100644 index 000000000..b89b5f1d2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/cherry_door_bottom", + "top": "minecraft:block/cherry_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_right.json new file mode 100644 index 000000000..81de9910a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/cherry_door_bottom", + "top": "minecraft:block/cherry_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_right_open.json new file mode 100644 index 000000000..8418377be --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/cherry_door_bottom", + "top": "minecraft:block/cherry_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_top_left.json new file mode 100644 index 000000000..c2e28c4e6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/cherry_door_bottom", + "top": "minecraft:block/cherry_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_top_left_open.json new file mode 100644 index 000000000..bedf29f58 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/cherry_door_bottom", + "top": "minecraft:block/cherry_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_top_right.json new file mode 100644 index 000000000..c5daf1b11 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/cherry_door_bottom", + "top": "minecraft:block/cherry_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_top_right_open.json new file mode 100644 index 000000000..9b83a413f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/cherry_door_bottom", + "top": "minecraft:block/cherry_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_gate.json new file mode 100644 index 000000000..677178b41 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_open.json new file mode 100644 index 000000000..36fbcb38c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_wall.json new file mode 100644 index 000000000..7e1af4407 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_wall_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_wall_open.json new file mode 100644 index 000000000..537d8dec1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_inventory.json new file mode 100644 index 000000000..a4a3b42d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_post.json new file mode 100644 index 000000000..ef669564d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_side.json new file mode 100644 index 000000000..63a0c0642 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_hanging_sign.json new file mode 100644 index 000000000..fd3dc826e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_leaves.json new file mode 100644 index 000000000..1a87b03e1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/cherry_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_log.json new file mode 100644 index 000000000..d63b1d098 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/cherry_log_top", + "side": "minecraft:block/cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_log_x.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_log_x.json new file mode 100644 index 000000000..168310ec1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_log_x.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_x", + "textures": { + "end": "minecraft:block/cherry_log_top", + "side": "minecraft:block/cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_log_y.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_log_y.json new file mode 100644 index 000000000..9d83df748 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_log_y.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_y", + "textures": { + "end": "minecraft:block/cherry_log_top", + "side": "minecraft:block/cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_log_z.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_log_z.json new file mode 100644 index 000000000..15a529b37 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_log_z.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_z", + "textures": { + "end": "minecraft:block/cherry_log_top", + "side": "minecraft:block/cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_planks.json new file mode 100644 index 000000000..dd0b35902 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_pressure_plate.json new file mode 100644 index 000000000..d25b89dfa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_pressure_plate_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_pressure_plate_down.json new file mode 100644 index 000000000..0e9c0625f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_sapling.json new file mode 100644 index 000000000..a566dacdd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/cherry_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf.json new file mode 100644 index 000000000..bcfecb2b5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_body", + "textures": { + "all": "minecraft:block/cherry_shelf", + "particle": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_center.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_center.json new file mode 100644 index 000000000..1eead8881 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_center.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_center", + "textures": { + "all": "minecraft:block/cherry_shelf", + "particle": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_inventory.json new file mode 100644 index 000000000..cb74115e7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_inventory.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_inventory", + "textures": { + "all": "minecraft:block/cherry_shelf", + "particle": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_left.json new file mode 100644 index 000000000..3b201cad6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_left", + "textures": { + "all": "minecraft:block/cherry_shelf", + "particle": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_right.json new file mode 100644 index 000000000..8d242ca41 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_right", + "textures": { + "all": "minecraft:block/cherry_shelf", + "particle": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_unconnected.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_unconnected.json new file mode 100644 index 000000000..51c6be237 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_unconnected.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unconnected", + "textures": { + "all": "minecraft:block/cherry_shelf", + "particle": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_unpowered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_unpowered.json new file mode 100644 index 000000000..a6631e12d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_shelf_unpowered.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unpowered", + "textures": { + "all": "minecraft:block/cherry_shelf", + "particle": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_sign.json new file mode 100644 index 000000000..3165e0892 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_slab.json new file mode 100644 index 000000000..a47748843 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/cherry_planks", + "side": "minecraft:block/cherry_planks", + "top": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_slab_top.json new file mode 100644 index 000000000..4c8f8a224 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/cherry_planks", + "side": "minecraft:block/cherry_planks", + "top": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_stairs.json new file mode 100644 index 000000000..1e0a17a9e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/cherry_planks", + "side": "minecraft:block/cherry_planks", + "top": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_stairs_inner.json new file mode 100644 index 000000000..0c4f7a42c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/cherry_planks", + "side": "minecraft:block/cherry_planks", + "top": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_stairs_outer.json new file mode 100644 index 000000000..ce1dce980 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/cherry_planks", + "side": "minecraft:block/cherry_planks", + "top": "minecraft:block/cherry_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_bottom.json new file mode 100644 index 000000000..3efdd1846 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/cherry_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_open.json new file mode 100644 index 000000000..6a5dc8697 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/cherry_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_top.json new file mode 100644 index 000000000..c74af6283 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/cherry_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_wood.json new file mode 100644 index 000000000..dbe5274e4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cherry_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/cherry_log", + "side": "minecraft:block/cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chest.json new file mode 100644 index 000000000..9406a8491 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chest.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chipped_anvil.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chipped_anvil.json new file mode 100644 index 000000000..57719879c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chipped_anvil.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_anvil", + "textures": { + "top": "minecraft:block/chipped_anvil_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf.json new file mode 100644 index 000000000..a9bda72e1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf.json @@ -0,0 +1,22 @@ +{ + "parent": "block/block", + "textures": { + "top": "block/chiseled_bookshelf_top", + "side": "block/chiseled_bookshelf_side", + "particle": "#top" + }, + "elements": [ + { + "name": "chiseled_bookshelf_body", + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "east": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "south"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#top", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#top", "cullface": "down"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_left.json new file mode 100644 index 000000000..1d68ce3b8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_left.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_bottom_left", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_empty" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_mid.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_mid.json new file mode 100644 index 000000000..b3a2dc572 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_mid.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_bottom_mid", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_empty" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_right.json new file mode 100644 index 000000000..8fb59f5ed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_bottom_right.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_bottom_right", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_empty" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_left.json new file mode 100644 index 000000000..2b9817062 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_left.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_top_left", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_empty" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_mid.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_mid.json new file mode 100644 index 000000000..19f44bc16 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_mid.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_top_mid", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_empty" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_right.json new file mode 100644 index 000000000..778d8873b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_empty_slot_top_right.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_top_right", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_empty" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_inventory.json new file mode 100644 index 000000000..81cf4e910 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_inventory.json @@ -0,0 +1,24 @@ +{ + "parent": "block/block", + "textures": { + "top": "block/chiseled_bookshelf_top", + "side": "block/chiseled_bookshelf_side", + "front": "block/chiseled_bookshelf_empty", + "particle": "#top" + }, + "elements": [ + { + "name": "chiseled_bookshelf_body", + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#front"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#side"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#side"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#side"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#top"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#top"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_left.json new file mode 100644 index 000000000..69046e17d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_left.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_bottom_left", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_occupied" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_mid.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_mid.json new file mode 100644 index 000000000..f7b23147a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_mid.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_bottom_mid", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_occupied" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_right.json new file mode 100644 index 000000000..4d7ce5bc7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_bottom_right.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_bottom_right", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_occupied" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_left.json new file mode 100644 index 000000000..85331c01d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_left.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_top_left", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_occupied" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_mid.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_mid.json new file mode 100644 index 000000000..058eefc5b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_mid.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_top_mid", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_occupied" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_right.json new file mode 100644 index 000000000..d71c97ce7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_bookshelf_occupied_slot_top_right.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chiseled_bookshelf_slot_top_right", + "textures": { + "texture": "minecraft:block/chiseled_bookshelf_occupied" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_copper.json new file mode 100644 index 000000000..5baeb4402 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/chiseled_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_deepslate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_deepslate.json new file mode 100644 index 000000000..727cdc98c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_deepslate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/chiseled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_nether_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_nether_bricks.json new file mode 100644 index 000000000..c66e73c6c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_nether_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/chiseled_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_polished_blackstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_polished_blackstone.json new file mode 100644 index 000000000..4b0db517c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_polished_blackstone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/chiseled_polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_quartz_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_quartz_block.json new file mode 100644 index 000000000..562af81e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_quartz_block.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/chiseled_quartz_block_top", + "side": "minecraft:block/chiseled_quartz_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_red_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_red_sandstone.json new file mode 100644 index 000000000..d33075b1e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_red_sandstone.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/chiseled_red_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_resin_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_resin_bricks.json new file mode 100644 index 000000000..16b8f9af1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_resin_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/chiseled_resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_sandstone.json new file mode 100644 index 000000000..3ce228591 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_sandstone.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/sandstone_top", + "side": "minecraft:block/chiseled_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_stone_bricks.json new file mode 100644 index 000000000..6bbb7c88a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_stone_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/chiseled_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_tuff.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_tuff.json new file mode 100644 index 000000000..0ff4bbdc4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_tuff.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/chiseled_tuff_top", + "side": "minecraft:block/chiseled_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_tuff_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_tuff_bricks.json new file mode 100644 index 000000000..94accd403 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chiseled_tuff_bricks.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/chiseled_tuff_bricks_top", + "side": "minecraft:block/chiseled_tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_flower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_flower.json new file mode 100644 index 000000000..bec10d070 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_flower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chorus_flower", + "textures": { + "texture": "minecraft:block/chorus_flower" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_flower_dead.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_flower_dead.json new file mode 100644 index 000000000..10519e8aa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_flower_dead.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chorus_flower", + "textures": { + "texture": "minecraft:block/chorus_flower_dead" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant.json new file mode 100644 index 000000000..a69496700 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant.json @@ -0,0 +1,80 @@ +{ "parent": "block/block", + "textures": { + "texture": "block/chorus_plant", + "inside": "block/chorus_plant", + "particle": "block/chorus_plant" + }, + "elements": [ + { "from": [ 2, 14, 2 ], + "to": [ 14, 16, 14 ], + "faces": { + "up": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture", "cullface":"up" }, + "north": { "uv": [ 2, 0, 14, 2 ], "texture": "#texture", "cullface":"up" }, + "south": { "uv": [ 2, 0, 14, 2 ], "texture": "#texture", "cullface":"up" }, + "west": { "uv": [ 2, 0, 14, 2 ], "texture": "#texture", "cullface":"up" }, + "east": { "uv": [ 2, 0, 14, 2 ], "texture": "#texture", "cullface":"up" } + } + }, + { "from": [ 0, 2, 2 ], + "to": [ 2, 14, 14 ], + "faces": { + "down": { "uv": [ 16, 14, 14, 2 ], "texture": "#texture", "cullface":"west" }, + "up": { "uv": [ 0, 2, 2, 14 ], "texture": "#texture", "cullface":"west" }, + "north": { "uv": [ 14, 2, 16, 14 ], "texture": "#texture", "cullface":"west" }, + "south": { "uv": [ 0, 2, 2, 14 ], "texture": "#texture", "cullface":"west" }, + "west": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture", "cullface":"west" } + } + }, + { "from": [ 2, 2, 0 ], + "to": [ 14, 14, 2 ], + "faces": { + "down": { "uv": [ 14, 2, 2, 0 ], "texture": "#texture", "cullface":"north" }, + "up": { "uv": [ 2, 0, 14, 2 ], "texture": "#texture", "cullface":"north" }, + "north": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture", "cullface":"north" }, + "west": { "uv": [ 0, 2, 2, 14 ], "texture": "#texture", "cullface":"north" }, + "east": { "uv": [ 14, 2, 16, 14 ], "texture": "#texture", "cullface":"north" } + } + }, + { "from": [ 2, 2, 14 ], + "to": [ 14, 14, 16 ], + "faces": { + "down": { "uv": [ 14, 16, 2, 14 ], "texture": "#texture", "cullface":"south" }, + "up": { "uv": [ 2, 14, 14, 16 ], "texture": "#texture", "cullface":"south" }, + "south": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture", "cullface":"south" }, + "west": { "uv": [ 14, 2, 16, 14 ], "texture": "#texture", "cullface":"south" }, + "east": { "uv": [ 0, 2, 2, 14 ], "texture": "#texture", "cullface":"south" } + } + }, + { "from": [ 14, 2, 2 ], + "to": [ 16, 14, 14 ], + "faces": { + "down": { "uv": [ 2, 14, 0, 2 ], "texture": "#texture", "cullface":"east" }, + "up": { "uv": [ 14, 2, 16, 14 ], "texture": "#texture", "cullface":"east" }, + "north": { "uv": [ 0, 2, 2, 14 ], "texture": "#texture", "cullface":"east" }, + "south": { "uv": [ 14, 2, 16, 14 ], "texture": "#texture", "cullface":"east" }, + "east": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture", "cullface":"east" } + } + }, + { "from": [ 2, 0, 2 ], + "to": [ 14, 2, 14 ], + "faces": { + "down": { "uv": [ 14, 14, 2, 2 ], "texture": "#texture", "cullface":"down" }, + "north": { "uv": [ 2, 14, 14, 16 ], "texture": "#texture", "cullface":"down" }, + "south": { "uv": [ 2, 14, 14, 16 ], "texture": "#texture", "cullface":"down" }, + "west": { "uv": [ 2, 14, 14, 16 ], "texture": "#texture", "cullface":"down" }, + "east": { "uv": [ 2, 14, 14, 16 ], "texture": "#texture", "cullface":"down" } + } + }, + { "from": [ 2, 2, 2 ], + "to": [ 14, 14, 14 ], + "faces": { + "down": { "uv": [ 14, 14, 2, 2 ], "texture": "#inside" }, + "up": { "uv": [ 2, 2, 14, 14 ], "texture": "#inside" }, + "north": { "uv": [ 2, 2, 14, 14 ], "texture": "#inside" }, + "south": { "uv": [ 2, 2, 14, 14 ], "texture": "#inside" }, + "west": { "uv": [ 2, 2, 14, 14 ], "texture": "#inside" }, + "east": { "uv": [ 2, 2, 14, 14 ], "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant_noside.json new file mode 100644 index 000000000..e7e60ce68 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant_noside.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "texture": "block/chorus_plant", + "inside": "block/chorus_plant", + "particle": "block/chorus_plant" + }, + "elements": [ + { "from": [ 4, 4, 4 ], + "to": [ 12, 12, 12 ], + "faces": { + "north": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant_noside1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant_noside1.json new file mode 100644 index 000000000..f3fed503e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant_noside1.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": false, + "textures": { + "texture": "block/chorus_plant", + "inside": "block/chorus_plant", + "particle": "block/chorus_plant" + }, + "elements": [ + { "from": [ 4, 4, 4 ], + "to": [ 12, 12, 12 ], + "faces": { + "north": { "texture": "#inside" } + } + }, + { "from": [ 4, 4, 3 ], + "to": [ 12, 12, 4 ], + "faces": { + "down": { "texture": "#texture" }, + "up": { "texture": "#texture" }, + "north": { "texture": "#texture" }, + "west": { "texture": "#texture" }, + "east": { "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant_noside2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant_noside2.json new file mode 100644 index 000000000..e2627b9a4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant_noside2.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": false, + "textures": { + "texture": "block/chorus_plant", + "inside": "block/chorus_plant", + "particle": "block/chorus_plant" + }, + "elements": [ + { "from": [ 4, 4, 4 ], + "to": [ 12, 12, 12 ], + "faces": { + "north": { "texture": "#inside" } + } + }, + { "from": [ 5, 5, 2 ], + "to": [ 11, 11, 4 ], + "faces": { + "down": { "texture": "#texture" }, + "up": { "texture": "#texture" }, + "north": { "texture": "#texture" }, + "west": { "texture": "#texture" }, + "east": { "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant_noside3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant_noside3.json new file mode 100644 index 000000000..f3fed503e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant_noside3.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": false, + "textures": { + "texture": "block/chorus_plant", + "inside": "block/chorus_plant", + "particle": "block/chorus_plant" + }, + "elements": [ + { "from": [ 4, 4, 4 ], + "to": [ 12, 12, 12 ], + "faces": { + "north": { "texture": "#inside" } + } + }, + { "from": [ 4, 4, 3 ], + "to": [ 12, 12, 4 ], + "faces": { + "down": { "texture": "#texture" }, + "up": { "texture": "#texture" }, + "north": { "texture": "#texture" }, + "west": { "texture": "#texture" }, + "east": { "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant_side.json new file mode 100644 index 000000000..e8117d244 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/chorus_plant_side.json @@ -0,0 +1,20 @@ +{ + "ambientocclusion": false, + "textures": { + "texture": "block/chorus_plant", + "inside": "block/chorus_plant", + "particle": "block/chorus_plant" + }, + "elements": [ + { "from": [ 4, 4, 0 ], + "to": [ 12, 12, 4 ], + "faces": { + "down": { "texture": "#texture" }, + "up": { "texture": "#texture" }, + "north": { "texture": "#texture", "cullface":"north" }, + "west": { "texture": "#texture" }, + "east": { "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/clay.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/clay.json new file mode 100644 index 000000000..3e478cd7d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/clay.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/clay" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/closed_eyeblossom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/closed_eyeblossom.json new file mode 100644 index 000000000..a99d9a519 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/closed_eyeblossom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/closed_eyeblossom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/coal_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/coal_block.json new file mode 100644 index 000000000..9b1077f15 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/coal_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/coal_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/coal_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/coal_ore.json new file mode 100644 index 000000000..ef7b15411 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/coal_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/coal_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/coarse_dirt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/coarse_dirt.json new file mode 100644 index 000000000..2ecdb0d00 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/coarse_dirt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/coarse_dirt" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate.json new file mode 100644 index 000000000..bd99551da --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_slab.json new file mode 100644 index 000000000..92d335956 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/cobbled_deepslate", + "side": "minecraft:block/cobbled_deepslate", + "top": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_slab_top.json new file mode 100644 index 000000000..34da6b495 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/cobbled_deepslate", + "side": "minecraft:block/cobbled_deepslate", + "top": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs.json new file mode 100644 index 000000000..1ee791149 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/cobbled_deepslate", + "side": "minecraft:block/cobbled_deepslate", + "top": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs_inner.json new file mode 100644 index 000000000..17ea76115 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/cobbled_deepslate", + "side": "minecraft:block/cobbled_deepslate", + "top": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs_outer.json new file mode 100644 index 000000000..966d357d0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/cobbled_deepslate", + "side": "minecraft:block/cobbled_deepslate", + "top": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_inventory.json new file mode 100644 index 000000000..e7e2c31ad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_post.json new file mode 100644 index 000000000..6a6f6480b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_side.json new file mode 100644 index 000000000..082cacc34 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_side_tall.json new file mode 100644 index 000000000..7e841daf2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobbled_deepslate_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/cobbled_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone.json new file mode 100644 index 000000000..ab65fe908 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_slab.json new file mode 100644 index 000000000..8d65dd371 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/cobblestone", + "side": "minecraft:block/cobblestone", + "top": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_slab_top.json new file mode 100644 index 000000000..4caccc35c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/cobblestone", + "side": "minecraft:block/cobblestone", + "top": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_stairs.json new file mode 100644 index 000000000..feae9865e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/cobblestone", + "side": "minecraft:block/cobblestone", + "top": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_stairs_inner.json new file mode 100644 index 000000000..36f2f799e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/cobblestone", + "side": "minecraft:block/cobblestone", + "top": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_stairs_outer.json new file mode 100644 index 000000000..77c9fa479 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/cobblestone", + "side": "minecraft:block/cobblestone", + "top": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_wall_inventory.json new file mode 100644 index 000000000..3145d2deb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_wall_post.json new file mode 100644 index 000000000..7f47c03ff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_wall_side.json new file mode 100644 index 000000000..f0eabd2b3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_wall_side_tall.json new file mode 100644 index 000000000..d6f662562 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobweb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobweb.json new file mode 100644 index 000000000..0520c950f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cobweb.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/cobweb" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cocoa_stage0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cocoa_stage0.json new file mode 100644 index 000000000..9870dd80f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cocoa_stage0.json @@ -0,0 +1,27 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cocoa_stage0", + "cocoa": "block/cocoa_stage0" + }, + "elements": [ + { "from": [ 6, 7, 11 ], + "to": [ 10, 12, 15 ], + "faces": { + "down": { "uv": [ 0, 0, 4, 4 ], "texture": "#cocoa" }, + "up": { "uv": [ 0, 0, 4, 4 ], "texture": "#cocoa" }, + "north": { "uv": [ 11, 4, 15, 9 ], "texture": "#cocoa" }, + "south": { "uv": [ 11, 4, 15, 9 ], "texture": "#cocoa" }, + "west": { "uv": [ 11, 4, 15, 9 ], "texture": "#cocoa" }, + "east": { "uv": [ 11, 4, 15, 9 ], "texture": "#cocoa" } + } + }, + { "from": [ 8, 12, 12 ], + "to": [ 8, 16, 16 ], + "faces": { + "west": { "uv": [ 12, 0, 16, 4 ], "texture": "#cocoa" }, + "east": { "uv": [ 16, 0, 12, 4 ], "texture": "#cocoa" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cocoa_stage1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cocoa_stage1.json new file mode 100644 index 000000000..22d12d8d2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cocoa_stage1.json @@ -0,0 +1,27 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cocoa_stage1", + "cocoa": "block/cocoa_stage1" + }, + "elements": [ + { "from": [ 5, 5, 9 ], + "to": [ 11, 12, 15 ], + "faces": { + "down": { "uv": [ 0, 0, 6, 6 ], "texture": "#cocoa" }, + "up": { "uv": [ 0, 0, 6, 6 ], "texture": "#cocoa" }, + "north": { "uv": [ 9, 4, 15, 11 ], "texture": "#cocoa" }, + "south": { "uv": [ 9, 4, 15, 11 ], "texture": "#cocoa" }, + "west": { "uv": [ 9, 4, 15, 11 ], "texture": "#cocoa" }, + "east": { "uv": [ 9, 4, 15, 11 ], "texture": "#cocoa" } + } + }, + { "from": [ 8, 12, 12 ], + "to": [ 8, 16, 16 ], + "faces": { + "west": { "uv": [ 12, 0, 16, 4 ], "texture": "#cocoa" }, + "east": { "uv": [ 16, 0, 12, 4 ], "texture": "#cocoa" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cocoa_stage2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cocoa_stage2.json new file mode 100644 index 000000000..ad93432a9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cocoa_stage2.json @@ -0,0 +1,29 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cocoa_stage2", + "cocoa": "block/cocoa_stage2" + }, + "elements": [ + { + "from": [ 4, 3, 7 ], + "to": [ 12, 12, 15 ], + "faces": { + "up": { "uv": [ 0, 0, 8, 8 ], "texture": "#cocoa" }, + "down": { "uv": [ 0, 0, 8, 8 ], "texture": "#cocoa" }, + "north": { "uv": [ 8, 4, 16, 13 ], "texture": "#cocoa" }, + "south": { "uv": [ 8, 4, 16, 13 ], "texture": "#cocoa" }, + "west": { "uv": [ 8, 4, 16, 13 ], "texture": "#cocoa" }, + "east": { "uv": [ 8, 4, 16, 13 ], "texture": "#cocoa" } + } + }, + { + "from": [ 8, 12, 12 ], + "to": [ 8, 16, 16 ], + "faces": { + "east": { "uv": [ 16, 0, 12, 4 ], "texture": "#cocoa" }, + "west": { "uv": [ 12, 0, 16, 4 ], "texture": "#cocoa" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/command_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/command_block.json new file mode 100644 index 000000000..598a427c7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/command_block.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_command_block", + "textures": { + "back": "minecraft:block/command_block_back", + "front": "minecraft:block/command_block_front", + "side": "minecraft:block/command_block_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/command_block_conditional.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/command_block_conditional.json new file mode 100644 index 000000000..f489842d5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/command_block_conditional.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_command_block", + "textures": { + "back": "minecraft:block/command_block_back", + "front": "minecraft:block/command_block_front", + "side": "minecraft:block/command_block_conditional" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/comparator.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/comparator.json new file mode 100644 index 000000000..d886187cb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/comparator.json @@ -0,0 +1,53 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/comparator", + "slab": "block/smooth_stone", + "top": "block/comparator", + "unlit": "block/redstone_torch_off", + "lit": "block/redstone_torch" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 4, 2, 11 ], + "to": [ 6, 7, 13 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + }, + { "from": [ 10, 2, 11 ], + "to": [ 12, 7, 13 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 5, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 9 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 9 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 9 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 9 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/comparator_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/comparator_on.json new file mode 100644 index 000000000..00133846d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/comparator_on.json @@ -0,0 +1,151 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/comparator_on", + "slab": "block/smooth_stone", + "top": "block/comparator_on", + "unlit": "block/redstone_torch_off", + "lit": "block/redstone_torch" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 4, 2, 11 ], + "to": [ 6, 7, 13 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 5, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 9 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 9 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 9 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 9 ], "texture": "#unlit" } + } + }, + { "from": [ 10, 2, 11 ], + "to": [ 12, 7, 13 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 1.5, 10.5 ], + "to": [ 6.5, 4.5, 13.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 7.5, 10.5 ], + "to": [ 6.5, 10.5, 13.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 7.5 ], + "to": [ 6.5, 7.5, 10.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 13.5 ], + "to": [ 6.5, 7.5, 16.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 0.5, 4.5, 10.5 ], + "to": [ 3.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 10.5 ], + "to": [ 9.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 1.5, 10.5 ], + "to": [ 12.5, 4.5, 13.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 7.5, 10.5 ], + "to": [ 12.5, 10.5, 13.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 7.5 ], + "to": [ 12.5, 7.5, 10.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 13.5 ], + "to": [ 12.5, 7.5, 16.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 10.5 ], + "to": [ 9.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 12.5, 4.5, 10.5 ], + "to": [ 15.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/comparator_on_subtract.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/comparator_on_subtract.json new file mode 100644 index 000000000..7d86c2ba1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/comparator_on_subtract.json @@ -0,0 +1,200 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/comparator_on", + "slab": "block/smooth_stone", + "top": "block/comparator_on", + "unlit": "block/redstone_torch_off", + "lit": "block/redstone_torch" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 5, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 9 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 9 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 9 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 9 ], "texture": "#lit" } + } + }, + { "from": [ 4, 2, 11 ], + "to": [ 6, 7, 13 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { "from": [ 10, 2, 11 ], + "to": [ 12, 7, 13 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 1.5, 10.5 ], + "to": [ 6.5, 4.5, 13.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 7.5, 10.5 ], + "to": [ 6.5, 10.5, 13.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 7.5 ], + "to": [ 6.5, 7.5, 10.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 13.5 ], + "to": [ 6.5, 7.5, 16.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 0.5, 4.5, 10.5 ], + "to": [ 3.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 10.5 ], + "to": [ 9.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 1.5, 10.5 ], + "to": [ 12.5, 4.5, 13.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 7.5, 10.5 ], + "to": [ 12.5, 10.5, 13.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 7.5 ], + "to": [ 12.5, 7.5, 10.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 13.5 ], + "to": [ 12.5, 7.5, 16.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 10.5 ], + "to": [ 9.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 12.5, 4.5, 10.5 ], + "to": [ 15.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, -0.5, 1.5 ], + "to": [ 9.5, 2.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 5.5, 1.5 ], + "to": [ 9.5, 8.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 2.5, -1.5 ], + "to": [ 9.5, 5.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 2.5, 4.5 ], + "to": [ 9.5, 5.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 2.5, 1.5 ], + "to": [ 6.5, 5.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 2.5, 1.5 ], + "to": [ 12.5, 5.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/comparator_subtract.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/comparator_subtract.json new file mode 100644 index 000000000..1119d3702 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/comparator_subtract.json @@ -0,0 +1,102 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/comparator", + "slab": "block/smooth_stone", + "top": "block/comparator", + "unlit": "block/redstone_torch_off", + "lit": "block/redstone_torch" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 4, 2, 11 ], + "to": [ 6, 7, 13 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + }, + { "from": [ 10, 2, 11 ], + "to": [ 12, 7, 13 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 5, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 9 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 9 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 9 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 9 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, -0.5, 1.5 ], + "to": [ 9.5, 2.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 5.5, 1.5 ], + "to": [ 9.5, 8.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 2.5, -1.5 ], + "to": [ 9.5, 5.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 2.5, 4.5 ], + "to": [ 9.5, 5.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 2.5, 1.5 ], + "to": [ 6.5, 5.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 2.5, 1.5 ], + "to": [ 12.5, 5.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 5, 7, 6 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter.json new file mode 100644 index 000000000..9650f777a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter.json @@ -0,0 +1,55 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/composter_side", + "top": "block/composter_top", + "bottom": "block/composter_bottom", + "side": "block/composter_side", + "inside": "block/composter_bottom" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "up": { "texture": "#inside" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { "from": [ 0, 0, 0 ], + "to": [ 2, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "east": { "texture": "#side" } + } + }, + { "from": [ 14, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 2, 0, 0 ], + "to": [ 14, 16, 2 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side" } + } + }, + { "from": [ 2, 0, 14 ], + "to": [ 14, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents1.json new file mode 100644 index 000000000..fe6c8504a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents1.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "block/composter_compost", + "inside": "block/composter_compost" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 14, 3, 14 ], + "faces": { + "up": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents2.json new file mode 100644 index 000000000..b5cc54c46 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents2.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "block/composter_compost", + "inside": "block/composter_compost" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 14, 5, 14 ], + "faces": { + "up": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents3.json new file mode 100644 index 000000000..4c3cdc108 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents3.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "block/composter_compost", + "inside": "block/composter_compost" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 14, 7, 14 ], + "faces": { + "up": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents4.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents4.json new file mode 100644 index 000000000..48e0456f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents4.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "block/composter_compost", + "inside": "block/composter_compost" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 14, 9, 14 ], + "faces": { + "up": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents5.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents5.json new file mode 100644 index 000000000..21e4b3035 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents5.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "block/composter_compost", + "inside": "block/composter_compost" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 14, 11, 14 ], + "faces": { + "up": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents6.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents6.json new file mode 100644 index 000000000..12b655168 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents6.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "block/composter_compost", + "inside": "block/composter_compost" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 14, 13, 14 ], + "faces": { + "up": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents7.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents7.json new file mode 100644 index 000000000..b135ad12c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents7.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "block/composter_compost", + "inside": "block/composter_compost" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 14, 15, 14 ], + "faces": { + "up": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents_ready.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents_ready.json new file mode 100644 index 000000000..63744ccac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/composter_contents_ready.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "block/composter_compost", + "inside": "block/composter_ready" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 14, 15, 14 ], + "faces": { + "up": { "texture": "#inside" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/conduit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/conduit.json new file mode 100644 index 000000000..5abfb3b65 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/conduit.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/conduit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_cap.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_cap.json new file mode 100644 index 000000000..b0326c83b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_cap.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_cap", + "textures": { + "bars": "minecraft:block/copper_bars", + "edge": "minecraft:block/copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_cap_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_cap_alt.json new file mode 100644 index 000000000..5b9d78279 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_cap_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_cap_alt", + "textures": { + "bars": "minecraft:block/copper_bars", + "edge": "minecraft:block/copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_post.json new file mode 100644 index 000000000..72ee29066 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_post", + "textures": { + "bars": "minecraft:block/copper_bars", + "edge": "minecraft:block/copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_post_ends.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_post_ends.json new file mode 100644 index 000000000..9067cf2a4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_post_ends.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_post_ends", + "textures": { + "bars": "minecraft:block/copper_bars", + "edge": "minecraft:block/copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_side.json new file mode 100644 index 000000000..a682eb300 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_side", + "textures": { + "bars": "minecraft:block/copper_bars", + "edge": "minecraft:block/copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_side_alt.json new file mode 100644 index 000000000..42d6ff561 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bars_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_side_alt", + "textures": { + "bars": "minecraft:block/copper_bars", + "edge": "minecraft:block/copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_block.json new file mode 100644 index 000000000..aae715995 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/copper_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bulb.json new file mode 100644 index 000000000..187e3d102 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bulb.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/copper_bulb" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bulb_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bulb_lit.json new file mode 100644 index 000000000..6921fec73 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bulb_lit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/copper_bulb_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bulb_lit_powered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bulb_lit_powered.json new file mode 100644 index 000000000..1edad4142 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bulb_lit_powered.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/copper_bulb_lit_powered" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bulb_powered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bulb_powered.json new file mode 100644 index 000000000..4fb2ec8f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_bulb_powered.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/copper_bulb_powered" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_chain.json new file mode 100644 index 000000000..3459633db --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_chain.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chain", + "textures": { + "texture": "minecraft:block/copper_chain" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_chest.json new file mode 100644 index 000000000..8fa0027ab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_chest.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/copper_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_bottom_left.json new file mode 100644 index 000000000..c3bba7859 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/copper_door_bottom", + "top": "minecraft:block/copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_bottom_left_open.json new file mode 100644 index 000000000..6fc748904 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/copper_door_bottom", + "top": "minecraft:block/copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_bottom_right.json new file mode 100644 index 000000000..dfdbe7132 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/copper_door_bottom", + "top": "minecraft:block/copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_bottom_right_open.json new file mode 100644 index 000000000..7494e6ff7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/copper_door_bottom", + "top": "minecraft:block/copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_top_left.json new file mode 100644 index 000000000..d76e7b1ce --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/copper_door_bottom", + "top": "minecraft:block/copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_top_left_open.json new file mode 100644 index 000000000..c198f40a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/copper_door_bottom", + "top": "minecraft:block/copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_top_right.json new file mode 100644 index 000000000..519aa170e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/copper_door_bottom", + "top": "minecraft:block/copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_top_right_open.json new file mode 100644 index 000000000..2850bad0c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/copper_door_bottom", + "top": "minecraft:block/copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_golem_statue.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_golem_statue.json new file mode 100644 index 000000000..8fa0027ab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_golem_statue.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/copper_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_grate.json new file mode 100644 index 000000000..c2a308b1a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_grate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/copper_grate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_lantern.json new file mode 100644 index 000000000..7e7db7f91 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_lantern", + "textures": { + "lantern": "minecraft:block/copper_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_lantern_hanging.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_lantern_hanging.json new file mode 100644 index 000000000..e0ed78375 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_lantern_hanging.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_hanging_lantern", + "textures": { + "lantern": "minecraft:block/copper_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_ore.json new file mode 100644 index 000000000..193dd9695 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/copper_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_torch.json new file mode 100644 index 000000000..b561671ce --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_torch", + "textures": { + "torch": "minecraft:block/copper_torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_trapdoor_bottom.json new file mode 100644 index 000000000..2816eca70 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_trapdoor_open.json new file mode 100644 index 000000000..f4d3a9dce --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_open", + "textures": { + "texture": "minecraft:block/copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_trapdoor_top.json new file mode 100644 index 000000000..b673c9e71 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_top", + "textures": { + "texture": "minecraft:block/copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_wall_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_wall_torch.json new file mode 100644 index 000000000..3b74b0f3c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/copper_wall_torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_torch_wall", + "textures": { + "torch": "minecraft:block/copper_torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/coral_fan.json new file mode 100644 index 000000000..e28dd67b0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/coral_fan.json @@ -0,0 +1,44 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#fan" + }, + "elements": [ + { "from": [ 8, 0, 0 ], + "to": [ 24, 0, 16 ], + "rotation": { "origin": [ 8, 0, 0 ], "axis": "z", "angle": 22.5, "rescale": false }, + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#fan", "rotation": 90 }, + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#fan", "rotation": 270 } + } + }, + { "from": [ -8, 0, 0 ], + "to": [ 8, 0, 16 ], + "rotation": { "origin": [ 8, 0, 0 ], "axis": "z", "angle": -22.5, "rescale": false }, + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#fan", "rotation": 270 }, + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#fan", "rotation": 90 } + } + }, + { "from": [ 0, 0, 8 ], + "to": [ 16, 0, 24 ], + "rotation": { "origin": [ 0, 0, 8 ], "axis": "x", "angle": -22.5, "rescale": false }, + "shade": false, + "faces": { + "up": { "uv": [ 16, 16, 0, 0 ], "texture": "#fan" }, + "down": { "uv": [ 16, 0, 0, 16 ], "texture": "#fan" } + } + }, + { "from": [ 0, 0, -8 ], + "to": [ 16, 0, 8 ], + "rotation": { "origin": [ 0, 0, 8 ], "axis": "x", "angle": 22.5, "rescale": false }, + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#fan" }, + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#fan" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/coral_wall_fan.json new file mode 100644 index 000000000..eafe1f8fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/coral_wall_fan.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#fan" + }, + "elements": [ + { "from": [ 0, 8, 0 ], + "to": [ 16, 8, 16 ], + "rotation": { "origin": [ 8, 8, 14 ], "axis": "x", "angle": 22.5, "rescale": true }, + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#fan" }, + "down": { "uv": [ 16, 16, 0, 0 ], "texture": "#fan" } + } + }, + { "from": [ 0, 8, 0 ], + "to": [ 16, 8, 16 ], + "rotation": { "origin": [ 8, 8, 14 ], "axis": "x", "angle": -22.5, "rescale": true }, + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#fan" }, + "down": { "uv": [ 16, 16, 0, 0 ], "texture": "#fan" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cornflower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cornflower.json new file mode 100644 index 000000000..01ec1857c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cornflower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/cornflower" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cracked_deepslate_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cracked_deepslate_bricks.json new file mode 100644 index 000000000..255278670 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cracked_deepslate_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cracked_deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cracked_deepslate_tiles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cracked_deepslate_tiles.json new file mode 100644 index 000000000..264f80946 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cracked_deepslate_tiles.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cracked_deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cracked_nether_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cracked_nether_bricks.json new file mode 100644 index 000000000..403c18f01 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cracked_nether_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cracked_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cracked_polished_blackstone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cracked_polished_blackstone_bricks.json new file mode 100644 index 000000000..e36eda13d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cracked_polished_blackstone_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cracked_polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cracked_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cracked_stone_bricks.json new file mode 100644 index 000000000..8628046d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cracked_stone_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cracked_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crafter.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crafter.json new file mode 100644 index 000000000..71e56849d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crafter.json @@ -0,0 +1,26 @@ +{ + "parent": "block/block", + "textures": { + "bottom": "block/crafter_bottom", + "top": "block/crafter_top", + "north": "block/crafter_north", + "south": "block/crafter_south", + "west": "block/crafter_west", + "east": "block/crafter_east", + "particle": "#north" + }, + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "rotation": 180, "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#north", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#south", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#west", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#east", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crafter_crafting.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crafter_crafting.json new file mode 100644 index 000000000..134a00dc0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crafter_crafting.json @@ -0,0 +1,9 @@ +{ + "parent": "block/crafter_triggered", + "textures": { + "top": "block/crafter_top_crafting", + "north": "block/crafter_north_crafting", + "east": "block/crafter_east_crafting", + "west": "block/crafter_west_crafting" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crafter_crafting_triggered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crafter_crafting_triggered.json new file mode 100644 index 000000000..86e293ab0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crafter_crafting_triggered.json @@ -0,0 +1,3 @@ +{ + "parent": "block/crafter_crafting" +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crafter_triggered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crafter_triggered.json new file mode 100644 index 000000000..3a66caf4a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crafter_triggered.json @@ -0,0 +1,9 @@ +{ + "parent": "block/crafter", + "textures": { + "top": "block/crafter_top_triggered", + "south": "block/crafter_south_triggered", + "west": "block/crafter_west_triggered", + "east": "block/crafter_east_triggered" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crafting_table.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crafting_table.json new file mode 100644 index 000000000..aa056b15e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crafting_table.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "down": "minecraft:block/oak_planks", + "east": "minecraft:block/crafting_table_side", + "north": "minecraft:block/crafting_table_front", + "particle": "minecraft:block/crafting_table_front", + "south": "minecraft:block/crafting_table_side", + "up": "minecraft:block/crafting_table_top", + "west": "minecraft:block/crafting_table_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart.json new file mode 100644 index 000000000..e40768a20 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/creaking_heart_top", + "side": "minecraft:block/creaking_heart" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart_awake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart_awake.json new file mode 100644 index 000000000..75db0a2f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart_awake.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/creaking_heart_top_awake", + "side": "minecraft:block/creaking_heart_awake" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart_awake_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart_awake_horizontal.json new file mode 100644 index 000000000..b4e45301d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart_awake_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/creaking_heart_top_awake", + "side": "minecraft:block/creaking_heart_awake" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart_dormant.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart_dormant.json new file mode 100644 index 000000000..6ae07d240 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart_dormant.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/creaking_heart_top_dormant", + "side": "minecraft:block/creaking_heart_dormant" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart_dormant_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart_dormant_horizontal.json new file mode 100644 index 000000000..acb48037a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart_dormant_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/creaking_heart_top_dormant", + "side": "minecraft:block/creaking_heart_dormant" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart_horizontal.json new file mode 100644 index 000000000..475abb74f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/creaking_heart_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/creaking_heart_top", + "side": "minecraft:block/creaking_heart" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_button.json new file mode 100644 index 000000000..c57c4255d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_button_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_button_inventory.json new file mode 100644 index 000000000..06d1baa2a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_button_pressed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_button_pressed.json new file mode 100644 index 000000000..2ba39bd93 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_left.json new file mode 100644 index 000000000..34db06cb5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/crimson_door_bottom", + "top": "minecraft:block/crimson_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_left_open.json new file mode 100644 index 000000000..a241d7e43 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/crimson_door_bottom", + "top": "minecraft:block/crimson_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_right.json new file mode 100644 index 000000000..5bcd78db2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/crimson_door_bottom", + "top": "minecraft:block/crimson_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_right_open.json new file mode 100644 index 000000000..9f24750f3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/crimson_door_bottom", + "top": "minecraft:block/crimson_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_top_left.json new file mode 100644 index 000000000..597111a8e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/crimson_door_bottom", + "top": "minecraft:block/crimson_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_top_left_open.json new file mode 100644 index 000000000..ed8885797 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/crimson_door_bottom", + "top": "minecraft:block/crimson_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_top_right.json new file mode 100644 index 000000000..c033de2f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/crimson_door_bottom", + "top": "minecraft:block/crimson_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_top_right_open.json new file mode 100644 index 000000000..c9d96fd93 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/crimson_door_bottom", + "top": "minecraft:block/crimson_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_gate.json new file mode 100644 index 000000000..6599c50b7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_open.json new file mode 100644 index 000000000..9777833a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_wall.json new file mode 100644 index 000000000..b3704b27d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_wall_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_wall_open.json new file mode 100644 index 000000000..5ba60043c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_inventory.json new file mode 100644 index 000000000..16f625d5c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_post.json new file mode 100644 index 000000000..f5f146589 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_side.json new file mode 100644 index 000000000..627657641 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fungus.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fungus.json new file mode 100644 index 000000000..351e2bce1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_fungus.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/crimson_fungus" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_hanging_sign.json new file mode 100644 index 000000000..5eeafe7d7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_hyphae.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_hyphae.json new file mode 100644 index 000000000..43c990a58 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_hyphae.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/crimson_stem", + "side": "minecraft:block/crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_nylium.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_nylium.json new file mode 100644 index 000000000..00ac27b19 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_nylium.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/netherrack", + "side": "minecraft:block/crimson_nylium_side", + "top": "minecraft:block/crimson_nylium" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_planks.json new file mode 100644 index 000000000..9bf1ea137 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_pressure_plate.json new file mode 100644 index 000000000..6d6a22658 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_pressure_plate_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_pressure_plate_down.json new file mode 100644 index 000000000..df5febdd2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_roots.json new file mode 100644 index 000000000..5bf542bc6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_roots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/crimson_roots" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf.json new file mode 100644 index 000000000..bd0137837 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_body", + "textures": { + "all": "minecraft:block/crimson_shelf", + "particle": "minecraft:block/stripped_crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_center.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_center.json new file mode 100644 index 000000000..b1412cb27 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_center.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_center", + "textures": { + "all": "minecraft:block/crimson_shelf", + "particle": "minecraft:block/stripped_crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_inventory.json new file mode 100644 index 000000000..7ccc51d09 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_inventory.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_inventory", + "textures": { + "all": "minecraft:block/crimson_shelf", + "particle": "minecraft:block/stripped_crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_left.json new file mode 100644 index 000000000..2614a3f44 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_left", + "textures": { + "all": "minecraft:block/crimson_shelf", + "particle": "minecraft:block/stripped_crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_right.json new file mode 100644 index 000000000..6f318f045 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_right", + "textures": { + "all": "minecraft:block/crimson_shelf", + "particle": "minecraft:block/stripped_crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_unconnected.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_unconnected.json new file mode 100644 index 000000000..8c36d577c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_unconnected.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unconnected", + "textures": { + "all": "minecraft:block/crimson_shelf", + "particle": "minecraft:block/stripped_crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_unpowered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_unpowered.json new file mode 100644 index 000000000..35f5b6599 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_shelf_unpowered.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unpowered", + "textures": { + "all": "minecraft:block/crimson_shelf", + "particle": "minecraft:block/stripped_crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_sign.json new file mode 100644 index 000000000..1b9953d8d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_slab.json new file mode 100644 index 000000000..42f7e0882 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/crimson_planks", + "side": "minecraft:block/crimson_planks", + "top": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_slab_top.json new file mode 100644 index 000000000..ce0342320 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/crimson_planks", + "side": "minecraft:block/crimson_planks", + "top": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_stairs.json new file mode 100644 index 000000000..d12e043bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/crimson_planks", + "side": "minecraft:block/crimson_planks", + "top": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_stairs_inner.json new file mode 100644 index 000000000..9eb4b2768 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/crimson_planks", + "side": "minecraft:block/crimson_planks", + "top": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_stairs_outer.json new file mode 100644 index 000000000..ab3b02fb1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/crimson_planks", + "side": "minecraft:block/crimson_planks", + "top": "minecraft:block/crimson_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_stem.json new file mode 100644 index 000000000..c8f5c7849 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_stem.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/crimson_stem_top", + "side": "minecraft:block/crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_bottom.json new file mode 100644 index 000000000..b83e4bbc8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/crimson_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_open.json new file mode 100644 index 000000000..ad3d11e08 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/crimson_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_top.json new file mode 100644 index 000000000..2b8e4d9f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crimson_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/crimson_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crop.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crop.json new file mode 100644 index 000000000..1afe355cd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crop.json @@ -0,0 +1,40 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#crop" + }, + "elements": [ + { "from": [ 4, -1, 0 ], + "to": [ 4, 15, 16 ], + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#crop" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#crop" } + } + }, + { "from": [ 12, -1, 0 ], + "to": [ 12, 15, 16 ], + "shade": false, + "faces": { + "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#crop" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#crop" } + } + }, + { "from": [ 0, -1, 4 ], + "to": [ 16, 15, 4 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#crop" }, + "south": { "uv": [ 16, 0, 0, 16 ], "texture": "#crop" } + } + }, + { "from": [ 0, -1, 12 ], + "to": [ 16, 15, 12 ], + "shade": false, + "faces": { + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#crop" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#crop" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cross.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cross.json new file mode 100644 index 000000000..37c8b09f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cross.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#cross" + }, + "elements": [ + { "from": [ 0.8, 0, 8 ], + "to": [ 15.2, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" } + } + }, + { "from": [ 8, 0, 0.8 ], + "to": [ 8, 16, 15.2 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cross_emissive.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cross_emissive.json new file mode 100644 index 000000000..d8fe3490e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cross_emissive.json @@ -0,0 +1,46 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#cross" + }, + "elements": [ + { "from": [ 0.8, 0, 8 ], + "to": [ 15.2, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" } + } + }, + { "from": [ 8, 0, 0.8 ], + "to": [ 8, 16, 15.2 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" } + } + }, + { "from": [ 0.8, 0, 8 ], + "to": [ 15.2, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "light_emission": 15, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross_emissive" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross_emissive" } + } + }, + { "from": [ 8, 0, 0.8 ], + "to": [ 8, 16, 15.2 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "light_emission": 15, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross_emissive" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross_emissive" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crying_obsidian.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crying_obsidian.json new file mode 100644 index 000000000..95991746e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/crying_obsidian.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/crying_obsidian" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube.json new file mode 100644 index 000000000..1b9780b47 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube.json @@ -0,0 +1,16 @@ +{ + "parent": "block/block", + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "cullface": "down" }, + "up": { "texture": "#up", "cullface": "up" }, + "north": { "texture": "#north", "cullface": "north" }, + "south": { "texture": "#south", "cullface": "south" }, + "west": { "texture": "#west", "cullface": "west" }, + "east": { "texture": "#east", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_all.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_all.json new file mode 100644 index 000000000..fa2f9e776 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_all.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube", + "textures": { + "particle": "#all", + "down": "#all", + "up": "#all", + "north": "#all", + "east": "#all", + "south": "#all", + "west": "#all" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_all_inner_faces.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_all_inner_faces.json new file mode 100644 index 000000000..e119a568d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_all_inner_faces.json @@ -0,0 +1,29 @@ +{ + "parent": "block/cube_all", + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#all", "cullface": "north"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#all", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#all", "cullface": "south"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#all", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#all", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [15.998, 0.002, 0.002], + "to": [0.002, 15.998, 15.998], + "faces": { + "north": {"uv": [16, 0, 0, 16], "texture": "#all", "cullface": "south"}, + "east": {"uv": [16, 0, 0, 16], "texture": "#all", "cullface": "west"}, + "south": {"uv": [16, 0, 0, 16], "texture": "#all", "cullface": "north"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#all", "cullface": "east"}, + "up": {"uv": [16, 0, 0, 16], "texture": "#all", "cullface": "up"}, + "down": {"uv": [16, 0, 0, 16], "texture": "#all", "cullface": "down"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_bottom_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_bottom_top.json new file mode 100644 index 000000000..4c6105978 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_bottom_top.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube", + "textures": { + "particle": "#side", + "down": "#bottom", + "up": "#top", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_bottom_top_inner_faces.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_bottom_top_inner_faces.json new file mode 100644 index 000000000..cf842fef4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_bottom_top_inner_faces.json @@ -0,0 +1,29 @@ +{ + "parent": "block/cube_bottom_top", + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "north"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "south"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#top", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [15.998, 0.002, 0.002], + "to": [0.002, 15.998, 15.998], + "faces": { + "north": {"uv": [16, 0, 0, 16], "texture": "#side", "cullface": "south"}, + "east": {"uv": [16, 0, 0, 16], "texture": "#side", "cullface": "west"}, + "south": {"uv": [16, 0, 0, 16], "texture": "#side", "cullface": "north"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#side", "cullface": "east"}, + "up": {"uv": [16, 0, 0, 16], "texture": "#top", "cullface": "up"}, + "down": {"uv": [16, 0, 0, 16], "texture": "#bottom", "cullface": "down"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column.json new file mode 100644 index 000000000..358b9847e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube", + "textures": { + "particle": "#side", + "down": "#end", + "up": "#end", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column_horizontal.json new file mode 100644 index 000000000..713dd8196 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column_horizontal.json @@ -0,0 +1,25 @@ +{ + "parent": "block/block", + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "cullface": "down" }, + "up": { "texture": "#up", "rotation": 180, "cullface": "up" }, + "north": { "texture": "#north", "cullface": "north" }, + "south": { "texture": "#south", "cullface": "south" }, + "west": { "texture": "#west", "cullface": "west" }, + "east": { "texture": "#east", "cullface": "east" } + } + } + ], + "textures": { + "particle": "#side", + "down": "#end", + "up": "#end", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column_mirrored.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column_mirrored.json new file mode 100644 index 000000000..610cbd9b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column_mirrored.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube_mirrored", + "textures": { + "particle": "#side", + "down": "#end", + "up": "#end", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_x.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_x.json new file mode 100644 index 000000000..1c367156b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_x.json @@ -0,0 +1,26 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "rotation": 90, "cullface": "down" }, + "up": { "texture": "#up", "rotation": 90, "cullface": "up" }, + "north": { "texture": "#north", "rotation": 90, "cullface": "north" }, + "south": { "texture": "#south", "rotation": 90, "cullface": "south" }, + "west": { "texture": "#west", "cullface": "west" }, + "east": { "texture": "#east", "cullface": "east" } + } + } + ], + "textures": { + "particle": "#side", + "down": "#side", + "up": "#side", + "north": "#side", + "east": "#end", + "south": "#side", + "west": "#end" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_y.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_y.json new file mode 100644 index 000000000..8fc6e9dd1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_y.json @@ -0,0 +1,26 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "cullface": "down" }, + "up": { "texture": "#up", "cullface": "up" }, + "north": { "texture": "#north", "cullface": "north" }, + "south": { "texture": "#south", "cullface": "south" }, + "west": { "texture": "#west", "cullface": "west" }, + "east": { "texture": "#east", "cullface": "east" } + } + } + ], + "textures": { + "particle": "#side", + "down": "#end", + "up": "#end", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_z.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_z.json new file mode 100644 index 000000000..b227129fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_column_uv_locked_z.json @@ -0,0 +1,26 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "cullface": "down" }, + "up": { "texture": "#up", "cullface": "up" }, + "north": { "texture": "#north", "cullface": "north" }, + "south": { "texture": "#south", "cullface": "south" }, + "west": { "texture": "#west", "rotation": 90, "cullface": "west" }, + "east": { "texture": "#east", "rotation": 90, "cullface": "east" } + } + } + ], + "textures": { + "particle": "#side", + "down": "#side", + "up": "#side", + "north": "#end", + "east": "#side", + "south": "#end", + "west": "#side" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_directional.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_directional.json new file mode 100644 index 000000000..09fadd01e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_directional.json @@ -0,0 +1,16 @@ +{ + "parent": "block/block", + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "cullface": "down", "rotation": 180 }, + "up": { "texture": "#up", "cullface": "up" }, + "north": { "texture": "#north", "cullface": "north" }, + "south": { "texture": "#south", "cullface": "south" }, + "west": { "texture": "#west", "cullface": "west", "rotation": 270 }, + "east": { "texture": "#east", "cullface": "east", "rotation": 90 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_mirrored.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_mirrored.json new file mode 100644 index 000000000..38f44bda1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_mirrored.json @@ -0,0 +1,15 @@ +{ + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [16, 0, 0, 16], "texture": "#down", "cullface": "down" }, + "up": { "uv": [16, 0, 0, 16], "texture": "#up", "cullface": "up" }, + "north": { "uv": [16, 0, 0, 16], "texture": "#north", "cullface": "north" }, + "south": { "uv": [16, 0, 0, 16], "texture": "#south", "cullface": "south" }, + "west": { "uv": [16, 0, 0, 16], "texture": "#west", "cullface": "west" }, + "east": { "uv": [16, 0, 0, 16], "texture": "#east", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_mirrored_all.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_mirrored_all.json new file mode 100644 index 000000000..75743f20b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_mirrored_all.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube_mirrored", + "textures": { + "particle": "#all", + "down": "#all", + "up": "#all", + "north": "#all", + "east": "#all", + "south": "#all", + "west": "#all" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_north_west_mirrored.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_north_west_mirrored.json new file mode 100644 index 000000000..de5abeac0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_north_west_mirrored.json @@ -0,0 +1,15 @@ +{ + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "cullface": "down" }, + "up": { "texture": "#up", "cullface": "up" }, + "north": { "uv": [16, 0, 0, 16], "texture": "#north", "cullface": "north" }, + "south": { "texture": "#south", "cullface": "south" }, + "west": { "uv": [16, 0, 0, 16], "texture": "#west", "cullface": "west" }, + "east": { "texture": "#east", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_north_west_mirrored_all.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_north_west_mirrored_all.json new file mode 100644 index 000000000..74034ca54 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_north_west_mirrored_all.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube_north_west_mirrored", + "textures": { + "particle": "#all", + "down": "#all", + "up": "#all", + "north": "#all", + "east": "#all", + "south": "#all", + "west": "#all" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_top.json new file mode 100644 index 000000000..a0c1d5695 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cube_top.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube", + "textures": { + "particle": "#side", + "down": "#side", + "up": "#top", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_inventory.json new file mode 100644 index 000000000..f76cc70ea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_inventory.json @@ -0,0 +1,113 @@ +{ + "parent": "block/block", + "display": { + "gui": { + "rotation": [ 30, 135, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "fixed": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.5, 0.5, 0.5 ] + }, + "on_shelf": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ] + } + }, + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 6, 0, 0 ], + "to": [ 10, 16, 4 ], + "faces": { + "north": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "south": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "west": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "up": {"uv": [4, 0, 8, 4], "texture": "#texture"}, + "down": {"uv": [4, 0, 8, 4], "texture": "#texture", "cullface": "down"} + }, + "__comment": "Left post" + }, + { "from": [ 6, 0, 12 ], + "to": [ 10, 16, 16 ], + "faces": { + "north": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "south": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "west": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "up": {"uv": [4, 0, 8, 4], "texture": "#texture"}, + "down": {"uv": [4, 0, 8, 4], "texture": "#texture", "cullface": "down"} + }, + "__comment": "Right post" + }, + { "from": [ 7, 12, 4 ], + "to": [ 9, 15, 12 ], + "faces": { + "east": {"uv": [8, 0, 16, 3], "texture": "#texture"}, + "west": {"uv": [8, 0, 16, 3], "texture": "#texture"}, + "up": {"uv": [11, 7, 13, 15], "texture": "#texture"}, + "down": {"uv": [11, 15, 13, 7], "texture": "#texture"} + }, + "__comment": "Top bar" + }, + { "from": [ 7, 12, -2 ], + "to": [ 9, 15, 0 ], + "faces": { + "north": {"uv": [13, 4, 15, 7], "texture": "#texture"}, + "east": {"uv": [8, 0, 10, 3], "texture": "#texture"}, + "west": {"uv": [8, 0, 10, 3], "texture": "#texture"}, + "up": {"uv": [11, 7, 13, 9], "texture": "#texture"}, + "down": {"uv": [11, 7, 13, 9], "texture": "#texture"} + }, + "__comment": "Top bar left" + }, + { "from": [ 7, 12, 16 ], + "to": [ 9, 15, 18 ], + "faces": { + "east": {"uv": [14, 0, 16, 3], "texture": "#texture"}, + "south": {"uv": [13, 4, 15, 7], "texture": "#texture"}, + "west": {"uv": [14, 0, 16, 3], "texture": "#texture"}, + "up": {"uv": [11, 13, 13, 15], "texture": "#texture"}, + "down": {"uv": [11, 13, 13, 15], "texture": "#texture"} + }, + "__comment": "Top bar right" + }, + { "from": [ 7, 6, 4 ], + "to": [ 9, 9, 12 ], + "faces": { + "east": {"uv": [8, 0, 16, 3], "texture": "#texture"}, + "west": {"uv": [8, 0, 16, 3], "texture": "#texture"}, + "up": {"uv": [11, 7, 13, 15], "texture": "#texture"}, + "down": {"uv": [11, 15, 13, 7], "texture": "#texture"} + }, + "__comment": "Lower bar" + }, + { "from": [ 7, 6, -2 ], + "to": [ 9, 9, 0 ], + "faces": { + "north": {"uv": [13, 4, 15, 7], "texture": "#texture"}, + "east": {"uv": [8, 0, 10, 3], "texture": "#texture"}, + "west": {"uv": [8, 0, 10, 3], "texture": "#texture"}, + "up": {"uv": [11, 13, 13, 15], "texture": "#texture"}, + "down": {"uv": [11, 13, 13, 15], "texture": "#texture"} + }, + "__comment": "Lower bar left" + }, + { "from": [ 7, 6, 16 ], + "to": [ 9, 9, 18 ], + "faces": { + "east": {"uv": [14, 0, 16, 3], "texture": "#texture"}, + "south": {"uv": [13, 4, 15, 7], "texture": "#texture"}, + "west": {"uv": [14, 0, 16, 3], "texture": "#texture"}, + "up": {"uv": [11, 13, 13, 15], "texture": "#texture"}, + "down": {"uv": [11, 13, 13, 15], "texture": "#texture"} + }, + "__comment": "Lower bar right" + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_post.json new file mode 100644 index 000000000..1ba56583b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_post.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "#particle" + }, + "elements": [ + { "from": [ 6, 0, 6 ], + "to": [ 10, 16, 10 ], + "faces": { + "up": {"uv": [4, 0, 8, 4], "texture": "#texture", "cullface": "up"}, + "down": {"uv": [4, 0, 8, 4], "texture": "#texture", "cullface": "down"}, + "north": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "south": {"uv": [0, 0, 4, 16], "texture": "#texture"}, + "west": {"uv": [0, 0, 4, 16], "texture": "#texture"} + }, + "__comment": "Center post special" + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_side_east.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_side_east.json new file mode 100644 index 000000000..9a4bc2de7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_side_east.json @@ -0,0 +1,39 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "name": "top bar", + "from": [7, 12, 7], + "to": [16, 15, 9], + "faces": { + "north": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "east": {"uv": [13, 4, 15, 7], "texture": "#texture", "cullface": "east"}, + "south": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "up": {"uv": [13, 7, 15, 16], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [13, 7, 15, 16], "rotation": 90, "texture": "#texture"} + } + }, + { + "name": "lower bar", + "from": [7, 6, 7], + "to": [16, 9, 9], + "faces": { + "north": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "east": {"uv": [13, 4, 15, 7], "texture": "#texture", "cullface": "east"}, + "south": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "up": {"uv": [13, 7, 15, 16], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [13, 7, 15, 16], "rotation": 90, "texture": "#texture"} + } + } + ], + "groups": [ + { + "name": "east", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1] + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_side_north.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_side_north.json new file mode 100644 index 000000000..a99e18202 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_side_north.json @@ -0,0 +1,39 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "name": "top bar", + "from": [7, 12, 0], + "to": [9, 15, 9], + "faces": { + "north": {"uv": [13, 4, 15, 7], "rotation": 180, "texture": "#texture", "cullface": "north"}, + "east": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "west": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "up": {"uv": [13, 7, 15, 16], "texture": "#texture"}, + "down": {"uv": [13, 7, 15, 16], "texture": "#texture"} + } + }, + { + "name": "lower bar", + "from": [7, 6, 0], + "to": [9, 9, 9], + "faces": { + "north": {"uv": [13, 4, 15, 7], "rotation": 180, "texture": "#texture", "cullface": "north"}, + "east": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "west": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "up": {"uv": [13, 7, 15, 16], "texture": "#texture"}, + "down": {"uv": [13, 7, 15, 16], "texture": "#texture"} + } + } + ], + "groups": [ + { + "name": "north", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1] + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_side_south.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_side_south.json new file mode 100644 index 000000000..9c7c46691 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_side_south.json @@ -0,0 +1,39 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "name": "top bar", + "from": [7, 12, 7], + "to": [9, 15, 16], + "faces": { + "east": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "south": {"uv": [13, 4, 15, 7], "texture": "#texture", "cullface": "south"}, + "west": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "up": {"uv": [13, 7, 15, 16], "texture": "#texture"}, + "down": {"uv": [13, 7, 15, 16], "texture": "#texture"} + } + }, + { + "name": "lower bar", + "from": [7, 6, 7], + "to": [9, 9, 16], + "faces": { + "east": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "south": {"uv": [13, 4, 15, 7], "texture": "#texture", "cullface": "south"}, + "west": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "up": {"uv": [13, 7, 15, 16], "texture": "#texture"}, + "down": {"uv": [13, 7, 15, 16], "texture": "#texture"} + } + } + ], + "groups": [ + { + "name": "south", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1] + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_side_west.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_side_west.json new file mode 100644 index 000000000..8bca73fee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/custom_fence_side_west.json @@ -0,0 +1,39 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "name": "top bar", + "from": [0, 12, 7], + "to": [9, 15, 9], + "faces": { + "north": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "south": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "west": {"uv": [15, 4, 13, 7], "texture": "#texture", "cullface": "west"}, + "up": {"uv": [13, 7, 15, 16], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [13, 7, 15, 16], "rotation": 90, "texture": "#texture"} + } + }, + { + "name": "lower bar", + "from": [0, 6, 7], + "to": [9, 9, 9], + "faces": { + "north": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "south": {"uv": [4, 4, 13, 7], "texture": "#texture"}, + "west": {"uv": [15, 4, 13, 7], "texture": "#texture", "cullface": "west"}, + "up": {"uv": [13, 7, 15, 16], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [13, 7, 15, 16], "rotation": 90, "texture": "#texture"} + } + } + ], + "groups": [ + { + "name": "west", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1] + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper.json new file mode 100644 index 000000000..46385a557 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper_slab.json new file mode 100644 index 000000000..45106b89d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/cut_copper", + "side": "minecraft:block/cut_copper", + "top": "minecraft:block/cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper_slab_top.json new file mode 100644 index 000000000..23e57a773 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/cut_copper", + "side": "minecraft:block/cut_copper", + "top": "minecraft:block/cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper_stairs.json new file mode 100644 index 000000000..4365a0a7a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/cut_copper", + "side": "minecraft:block/cut_copper", + "top": "minecraft:block/cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper_stairs_inner.json new file mode 100644 index 000000000..922bb2c10 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/cut_copper", + "side": "minecraft:block/cut_copper", + "top": "minecraft:block/cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper_stairs_outer.json new file mode 100644 index 000000000..3f2f77a3f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_copper_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/cut_copper", + "side": "minecraft:block/cut_copper", + "top": "minecraft:block/cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_red_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_red_sandstone.json new file mode 100644 index 000000000..120aff8fa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_red_sandstone.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/cut_red_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_red_sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_red_sandstone_slab.json new file mode 100644 index 000000000..dae7dcdd0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_red_sandstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/cut_red_sandstone", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_red_sandstone_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_red_sandstone_slab_top.json new file mode 100644 index 000000000..808ca3090 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_red_sandstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/cut_red_sandstone", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_sandstone.json new file mode 100644 index 000000000..00a391fcb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_sandstone.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/sandstone_top", + "side": "minecraft:block/cut_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_sandstone_slab.json new file mode 100644 index 000000000..ff33c6d71 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_sandstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/sandstone_top", + "side": "minecraft:block/cut_sandstone", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_sandstone_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_sandstone_slab_top.json new file mode 100644 index 000000000..3a0088147 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cut_sandstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/sandstone_top", + "side": "minecraft:block/cut_sandstone", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_cake.json new file mode 100644 index 000000000..81f1a771f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/cyan_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_cake_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_cake_lit.json new file mode 100644 index 000000000..26a307753 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/cyan_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_four_candles.json new file mode 100644 index 000000000..aba78b65a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/cyan_candle", + "particle": "minecraft:block/cyan_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_four_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_four_candles_lit.json new file mode 100644 index 000000000..94c037b5c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/cyan_candle_lit", + "particle": "minecraft:block/cyan_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_one_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_one_candle.json new file mode 100644 index 000000000..3f4cd5dde --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/cyan_candle", + "particle": "minecraft:block/cyan_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_one_candle_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_one_candle_lit.json new file mode 100644 index 000000000..26f7b1fca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/cyan_candle_lit", + "particle": "minecraft:block/cyan_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_three_candles.json new file mode 100644 index 000000000..46e57b1a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/cyan_candle", + "particle": "minecraft:block/cyan_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_three_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_three_candles_lit.json new file mode 100644 index 000000000..8547cf3f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/cyan_candle_lit", + "particle": "minecraft:block/cyan_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_two_candles.json new file mode 100644 index 000000000..420a7e65a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/cyan_candle", + "particle": "minecraft:block/cyan_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_two_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_two_candles_lit.json new file mode 100644 index 000000000..26e076f1d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/cyan_candle_lit", + "particle": "minecraft:block/cyan_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_carpet.json new file mode 100644 index 000000000..65c4e3309 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/cyan_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_concrete.json new file mode 100644 index 000000000..4972d16fa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cyan_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_concrete_powder.json new file mode 100644 index 000000000..0043a499f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cyan_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_glazed_terracotta.json new file mode 100644 index 000000000..19e3f7059 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/cyan_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_shulker_box.json new file mode 100644 index 000000000..748f7d9fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/cyan_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass.json new file mode 100644 index 000000000..7966749e9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cyan_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_noside.json new file mode 100644 index 000000000..c3caf2eff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/cyan_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..596a41aad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/cyan_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_post.json new file mode 100644 index 000000000..bc0b9cd3c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/cyan_stained_glass_pane_top", + "pane": "minecraft:block/cyan_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_side.json new file mode 100644 index 000000000..c407e0f02 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/cyan_stained_glass_pane_top", + "pane": "minecraft:block/cyan_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..81ebdce73 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/cyan_stained_glass_pane_top", + "pane": "minecraft:block/cyan_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_terracotta.json new file mode 100644 index 000000000..bbf073e15 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cyan_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_wool.json new file mode 100644 index 000000000..d686a2408 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/cyan_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/cyan_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/damaged_anvil.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/damaged_anvil.json new file mode 100644 index 000000000..33ea477ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/damaged_anvil.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_anvil", + "textures": { + "top": "minecraft:block/damaged_anvil_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dandelion.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dandelion.json new file mode 100644 index 000000000..1b23461ea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dandelion.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/dandelion" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_button.json new file mode 100644 index 000000000..9a8ceb0e7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_button_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_button_inventory.json new file mode 100644 index 000000000..682f7e70c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_button_pressed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_button_pressed.json new file mode 100644 index 000000000..9212bf495 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_left.json new file mode 100644 index 000000000..cfce70fea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/dark_oak_door_bottom", + "top": "minecraft:block/dark_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_left_open.json new file mode 100644 index 000000000..8becfb430 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/dark_oak_door_bottom", + "top": "minecraft:block/dark_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_right.json new file mode 100644 index 000000000..8b1767ef2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/dark_oak_door_bottom", + "top": "minecraft:block/dark_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_right_open.json new file mode 100644 index 000000000..6073ce092 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/dark_oak_door_bottom", + "top": "minecraft:block/dark_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_left.json new file mode 100644 index 000000000..d9ef9961a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/dark_oak_door_bottom", + "top": "minecraft:block/dark_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_left_open.json new file mode 100644 index 000000000..d74cf9210 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/dark_oak_door_bottom", + "top": "minecraft:block/dark_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_right.json new file mode 100644 index 000000000..bb9eb3bcd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/dark_oak_door_bottom", + "top": "minecraft:block/dark_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_right_open.json new file mode 100644 index 000000000..0dfa837f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/dark_oak_door_bottom", + "top": "minecraft:block/dark_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate.json new file mode 100644 index 000000000..d6cd9106c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_open.json new file mode 100644 index 000000000..5ab6d1bc5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_wall.json new file mode 100644 index 000000000..5e372cce4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_wall_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_wall_open.json new file mode 100644 index 000000000..81181a3e9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_inventory.json new file mode 100644 index 000000000..34976cb64 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_post.json new file mode 100644 index 000000000..7ddb63e0b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_side.json new file mode 100644 index 000000000..6db6293c5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_hanging_sign.json new file mode 100644 index 000000000..a5e7ec1c8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_leaves.json new file mode 100644 index 000000000..c5a0ee7c5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/dark_oak_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_log.json new file mode 100644 index 000000000..0a8759501 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/dark_oak_log_top", + "side": "minecraft:block/dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_log_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_log_horizontal.json new file mode 100644 index 000000000..044f4d5ae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/dark_oak_log_top", + "side": "minecraft:block/dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_planks.json new file mode 100644 index 000000000..443669e91 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_pressure_plate.json new file mode 100644 index 000000000..cae875a73 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_pressure_plate_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_pressure_plate_down.json new file mode 100644 index 000000000..8effed633 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_sapling.json new file mode 100644 index 000000000..bc9e95327 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/dark_oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf.json new file mode 100644 index 000000000..b743c9820 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_body", + "textures": { + "all": "minecraft:block/dark_oak_shelf", + "particle": "minecraft:block/stripped_dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_center.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_center.json new file mode 100644 index 000000000..adc7dfcdb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_center.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_center", + "textures": { + "all": "minecraft:block/dark_oak_shelf", + "particle": "minecraft:block/stripped_dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_inventory.json new file mode 100644 index 000000000..7927e2012 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_inventory.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_inventory", + "textures": { + "all": "minecraft:block/dark_oak_shelf", + "particle": "minecraft:block/stripped_dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_left.json new file mode 100644 index 000000000..b3d7c9034 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_left", + "textures": { + "all": "minecraft:block/dark_oak_shelf", + "particle": "minecraft:block/stripped_dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_right.json new file mode 100644 index 000000000..50c989ccb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_right", + "textures": { + "all": "minecraft:block/dark_oak_shelf", + "particle": "minecraft:block/stripped_dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_unconnected.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_unconnected.json new file mode 100644 index 000000000..fada102d5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_unconnected.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unconnected", + "textures": { + "all": "minecraft:block/dark_oak_shelf", + "particle": "minecraft:block/stripped_dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_unpowered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_unpowered.json new file mode 100644 index 000000000..84aedfbf2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_shelf_unpowered.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unpowered", + "textures": { + "all": "minecraft:block/dark_oak_shelf", + "particle": "minecraft:block/stripped_dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_sign.json new file mode 100644 index 000000000..52cfc99c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_slab.json new file mode 100644 index 000000000..ac8790791 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/dark_oak_planks", + "side": "minecraft:block/dark_oak_planks", + "top": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_slab_top.json new file mode 100644 index 000000000..de4e78be4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/dark_oak_planks", + "side": "minecraft:block/dark_oak_planks", + "top": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_stairs.json new file mode 100644 index 000000000..4c73a828d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/dark_oak_planks", + "side": "minecraft:block/dark_oak_planks", + "top": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_stairs_inner.json new file mode 100644 index 000000000..b7472cbf2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/dark_oak_planks", + "side": "minecraft:block/dark_oak_planks", + "top": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_stairs_outer.json new file mode 100644 index 000000000..edf1bd2cb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/dark_oak_planks", + "side": "minecraft:block/dark_oak_planks", + "top": "minecraft:block/dark_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_bottom.json new file mode 100644 index 000000000..332c78b6c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/dark_oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_open.json new file mode 100644 index 000000000..911cfb109 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_open", + "textures": { + "texture": "minecraft:block/dark_oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_top.json new file mode 100644 index 000000000..442332025 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_top", + "textures": { + "texture": "minecraft:block/dark_oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_wood.json new file mode 100644 index 000000000..ac9cad058 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_oak_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/dark_oak_log", + "side": "minecraft:block/dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine.json new file mode 100644 index 000000000..545193a6e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dark_prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine_slab.json new file mode 100644 index 000000000..850650925 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/dark_prismarine", + "side": "minecraft:block/dark_prismarine", + "top": "minecraft:block/dark_prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine_slab_top.json new file mode 100644 index 000000000..52491c02d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/dark_prismarine", + "side": "minecraft:block/dark_prismarine", + "top": "minecraft:block/dark_prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs.json new file mode 100644 index 000000000..745331ec5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/dark_prismarine", + "side": "minecraft:block/dark_prismarine", + "top": "minecraft:block/dark_prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs_inner.json new file mode 100644 index 000000000..16fa45610 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/dark_prismarine", + "side": "minecraft:block/dark_prismarine", + "top": "minecraft:block/dark_prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs_outer.json new file mode 100644 index 000000000..16f91d74a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dark_prismarine_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/dark_prismarine", + "side": "minecraft:block/dark_prismarine", + "top": "minecraft:block/dark_prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/daylight_detector.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/daylight_detector.json new file mode 100644 index 000000000..51e46c1ae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/daylight_detector.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_daylight_detector", + "textures": { + "side": "minecraft:block/daylight_detector_side", + "top": "minecraft:block/daylight_detector_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/daylight_detector_inverted.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/daylight_detector_inverted.json new file mode 100644 index 000000000..861c143f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/daylight_detector_inverted.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_daylight_detector", + "textures": { + "side": "minecraft:block/daylight_detector_side", + "top": "minecraft:block/daylight_detector_inverted_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_brain_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_brain_coral.json new file mode 100644 index 000000000..b6ddeefd8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_brain_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/dead_brain_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_brain_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_brain_coral_block.json new file mode 100644 index 000000000..d81ec7534 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_brain_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dead_brain_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_brain_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_brain_coral_fan.json new file mode 100644 index 000000000..e9bc5a209 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_brain_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/dead_brain_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_brain_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_brain_coral_wall_fan.json new file mode 100644 index 000000000..6c25874d7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_brain_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/dead_brain_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_bubble_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_bubble_coral.json new file mode 100644 index 000000000..62708cfcf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_bubble_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/dead_bubble_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_block.json new file mode 100644 index 000000000..53b476448 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dead_bubble_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_fan.json new file mode 100644 index 000000000..4f104c5a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/dead_bubble_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_wall_fan.json new file mode 100644 index 000000000..e9f9688a0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_bubble_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/dead_bubble_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_bush.json new file mode 100644 index 000000000..01573a5c6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_bush.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/dead_bush" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_fire_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_fire_coral.json new file mode 100644 index 000000000..8121184ac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_fire_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/dead_fire_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_fire_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_fire_coral_block.json new file mode 100644 index 000000000..a49a17a29 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_fire_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dead_fire_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_fire_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_fire_coral_fan.json new file mode 100644 index 000000000..7eb4884d9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_fire_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/dead_fire_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_fire_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_fire_coral_wall_fan.json new file mode 100644 index 000000000..62abee0ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_fire_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/dead_fire_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_horn_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_horn_coral.json new file mode 100644 index 000000000..ea1fb3896 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_horn_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/dead_horn_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_horn_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_horn_coral_block.json new file mode 100644 index 000000000..6e6505d93 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_horn_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dead_horn_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_horn_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_horn_coral_fan.json new file mode 100644 index 000000000..0a14c1c6c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_horn_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/dead_horn_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_horn_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_horn_coral_wall_fan.json new file mode 100644 index 000000000..e303e9677 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_horn_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/dead_horn_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_sea_pickle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_sea_pickle.json new file mode 100644 index 000000000..ce3ee6ebc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_sea_pickle.json @@ -0,0 +1,27 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/sea_pickle", + "all": "block/sea_pickle" + }, + "elements": [ + { "from": [ 6, 0, 6 ], + "to": [ 10, 6, 10 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 6, 5.95, 6 ], + "to": [ 10, 5.95, 10 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_tube_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_tube_coral.json new file mode 100644 index 000000000..568dd7cbe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_tube_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/dead_tube_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_tube_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_tube_coral_block.json new file mode 100644 index 000000000..7768abbf0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_tube_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dead_tube_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_tube_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_tube_coral_fan.json new file mode 100644 index 000000000..31080a1b7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_tube_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/dead_tube_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_tube_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_tube_coral_wall_fan.json new file mode 100644 index 000000000..20dab6c1f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dead_tube_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/dead_tube_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/decorated_pot.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/decorated_pot.json new file mode 100644 index 000000000..1456e72d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/decorated_pot.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate.json new file mode 100644 index 000000000..dff2a5c69 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/deepslate_top", + "side": "minecraft:block/deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_slab.json new file mode 100644 index 000000000..4c5bf8791 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/deepslate_bricks", + "side": "minecraft:block/deepslate_bricks", + "top": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_slab_top.json new file mode 100644 index 000000000..5e520e6b3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/deepslate_bricks", + "side": "minecraft:block/deepslate_bricks", + "top": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs.json new file mode 100644 index 000000000..ccdee8b3a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/deepslate_bricks", + "side": "minecraft:block/deepslate_bricks", + "top": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs_inner.json new file mode 100644 index 000000000..9cee383db --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/deepslate_bricks", + "side": "minecraft:block/deepslate_bricks", + "top": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs_outer.json new file mode 100644 index 000000000..4350eda85 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/deepslate_bricks", + "side": "minecraft:block/deepslate_bricks", + "top": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_inventory.json new file mode 100644 index 000000000..742243242 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_post.json new file mode 100644 index 000000000..0497e7b6e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_side.json new file mode 100644 index 000000000..c927a7b5e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_side_tall.json new file mode 100644 index 000000000..8674f91eb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_bricks.json new file mode 100644 index 000000000..cebe5470a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_coal_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_coal_ore.json new file mode 100644 index 000000000..808803b3f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_coal_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_coal_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_copper_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_copper_ore.json new file mode 100644 index 000000000..50e3a6228 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_copper_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_copper_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_diamond_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_diamond_ore.json new file mode 100644 index 000000000..eea2f4ba8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_diamond_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_diamond_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_emerald_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_emerald_ore.json new file mode 100644 index 000000000..47ccf6d85 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_emerald_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_emerald_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_gold_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_gold_ore.json new file mode 100644 index 000000000..6111c16f1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_gold_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_gold_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_iron_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_iron_ore.json new file mode 100644 index 000000000..fd7a8e485 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_iron_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_iron_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_lapis_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_lapis_ore.json new file mode 100644 index 000000000..fa19ebab4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_lapis_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_lapis_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_mirrored.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_mirrored.json new file mode 100644 index 000000000..12a83f215 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_mirrored.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_mirrored", + "textures": { + "end": "minecraft:block/deepslate_top", + "side": "minecraft:block/deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_redstone_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_redstone_ore.json new file mode 100644 index 000000000..ff45a3c05 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_redstone_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_redstone_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_slab.json new file mode 100644 index 000000000..a5acbda97 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/deepslate_tiles", + "side": "minecraft:block/deepslate_tiles", + "top": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_slab_top.json new file mode 100644 index 000000000..aa3cc4cc1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/deepslate_tiles", + "side": "minecraft:block/deepslate_tiles", + "top": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs.json new file mode 100644 index 000000000..0048204b0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/deepslate_tiles", + "side": "minecraft:block/deepslate_tiles", + "top": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs_inner.json new file mode 100644 index 000000000..1cd46771b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/deepslate_tiles", + "side": "minecraft:block/deepslate_tiles", + "top": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs_outer.json new file mode 100644 index 000000000..87b9eba65 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/deepslate_tiles", + "side": "minecraft:block/deepslate_tiles", + "top": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_inventory.json new file mode 100644 index 000000000..7ee2ba1bd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_post.json new file mode 100644 index 000000000..bb6f0b947 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_side.json new file mode 100644 index 000000000..6e27c7b95 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_side_tall.json new file mode 100644 index 000000000..fd638ff86 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tiles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tiles.json new file mode 100644 index 000000000..91ff5fcef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/deepslate_tiles.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_tiles" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail.json new file mode 100644 index 000000000..22b668267 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/rail_flat", + "textures": { + "rail": "minecraft:block/detector_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail_on.json new file mode 100644 index 000000000..0cba22b8a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail_on.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/rail_flat", + "textures": { + "rail": "minecraft:block/detector_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail_on_raised_ne.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail_on_raised_ne.json new file mode 100644 index 000000000..fe6bd149d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail_on_raised_ne.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_ne", + "textures": { + "rail": "minecraft:block/detector_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail_on_raised_sw.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail_on_raised_sw.json new file mode 100644 index 000000000..656151703 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail_on_raised_sw.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_sw", + "textures": { + "rail": "minecraft:block/detector_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail_raised_ne.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail_raised_ne.json new file mode 100644 index 000000000..9128675b4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail_raised_ne.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_ne", + "textures": { + "rail": "minecraft:block/detector_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail_raised_sw.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail_raised_sw.json new file mode 100644 index 000000000..74ee588f9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/detector_rail_raised_sw.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_sw", + "textures": { + "rail": "minecraft:block/detector_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diamond_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diamond_block.json new file mode 100644 index 000000000..a021068b0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diamond_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/diamond_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diamond_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diamond_ore.json new file mode 100644 index 000000000..ca8480e52 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diamond_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/diamond_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite.json new file mode 100644 index 000000000..9f1f6eba3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_slab.json new file mode 100644 index 000000000..651005b5e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/diorite", + "side": "minecraft:block/diorite", + "top": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_slab_top.json new file mode 100644 index 000000000..e97d4da12 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/diorite", + "side": "minecraft:block/diorite", + "top": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_stairs.json new file mode 100644 index 000000000..122797452 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/diorite", + "side": "minecraft:block/diorite", + "top": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_stairs_inner.json new file mode 100644 index 000000000..ced839df7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/diorite", + "side": "minecraft:block/diorite", + "top": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_stairs_outer.json new file mode 100644 index 000000000..5f0b32fba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/diorite", + "side": "minecraft:block/diorite", + "top": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_wall_inventory.json new file mode 100644 index 000000000..9e364aa88 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_wall_post.json new file mode 100644 index 000000000..7f1611018 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_wall_side.json new file mode 100644 index 000000000..633d2539a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_wall_side_tall.json new file mode 100644 index 000000000..0e5ea70f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/diorite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dirt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dirt.json new file mode 100644 index 000000000..047941382 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dirt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dirt" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dirt_path.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dirt_path.json new file mode 100644 index 000000000..95c880dbe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dirt_path.json @@ -0,0 +1,21 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/dirt", + "top": "block/dirt_path_top", + "side": "block/dirt_path_side", + "bottom": "block/dirt" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 15, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 1, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 1, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 1, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 1, 16, 16 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dispenser.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dispenser.json new file mode 100644 index 000000000..321e6bca6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dispenser.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "front": "minecraft:block/dispenser_front", + "side": "minecraft:block/furnace_side", + "top": "minecraft:block/furnace_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dispenser_vertical.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dispenser_vertical.json new file mode 100644 index 000000000..7b681162a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dispenser_vertical.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/orientable_vertical", + "textures": { + "front": "minecraft:block/dispenser_front_vertical", + "side": "minecraft:block/furnace_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_bottom_left.json new file mode 100644 index 000000000..5eef3f89c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_bottom_left.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#bottom" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 3, 16, 16 ], + "faces": { + "down": { "uv": [ 16, 13, 0, 16 ], "texture": "#bottom", "cullface": "down", "rotation": 90 }, + "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#bottom", "cullface": "north" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#bottom", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "west" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#bottom" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_bottom_left_open.json new file mode 100644 index 000000000..2c30d11a8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_bottom_left_open.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#bottom" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 3, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 16, 13 ], "texture": "#bottom", "cullface": "down", "rotation": 90 }, + "north": { "uv": [ 0, 0, 3, 16 ], "texture": "#bottom", "cullface": "north" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#bottom", "cullface": "south" }, + "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#bottom", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_bottom_right.json new file mode 100644 index 000000000..69f4df6ef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_bottom_right.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#bottom" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 3, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 13, 16, 16 ], "texture": "#bottom", "cullface": "down", "rotation": 90 }, + "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#bottom", "cullface": "north" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#bottom", "cullface": "south" }, + "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#bottom", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_bottom_right_open.json new file mode 100644 index 000000000..a0388a41f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_bottom_right_open.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#bottom" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 3, 16, 16 ], + "faces": { + "down": { "uv": [ 16, 16, 0, 13 ], "texture": "#bottom", "cullface": "down", "rotation": 90 }, + "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#bottom", "cullface": "north" }, + "south": { "uv": [ 3, 0, 0, 16 ], "texture": "#bottom", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "west" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#bottom" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_top_left.json new file mode 100644 index 000000000..46358e197 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_top_left.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#top" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 3, 16, 16 ], + "faces": { + "up": { "uv": [ 0, 3, 16, 0 ], "texture": "#top", "cullface": "up", "rotation": 90 }, + "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#top", "cullface": "north" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#top", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "west" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#top" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_top_left_open.json new file mode 100644 index 000000000..e63fb2be3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_top_left_open.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#top" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 3, 16, 16 ], + "faces": { + "up": { "uv": [ 0, 3, 16, 0 ], "texture": "#top", "cullface": "up", "rotation": 270 }, + "north": { "uv": [ 0, 0, 3, 16 ], "texture": "#top", "cullface": "north" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#top", "cullface": "south" }, + "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#top", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_top_right.json new file mode 100644 index 000000000..891d8510b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_top_right.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#top" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 3, 16, 16 ], + "faces": { + "up": { "uv": [ 0, 0, 16, 3 ], "texture": "#top", "cullface": "up", "rotation": 270 }, + "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#top", "cullface": "north" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#top", "cullface": "south" }, + "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#top", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_top_right_open.json new file mode 100644 index 000000000..99baffebc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/door_top_right_open.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#top" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 3, 16, 16 ], + "faces": { + "up": { "uv": [ 0, 0, 16, 3 ], "texture": "#top", "cullface": "up", "rotation": 90 }, + "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#top", "cullface": "north" }, + "south": { "uv": [ 3, 0, 0, 16 ], "texture": "#top", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "west" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#top" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dragon_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dragon_egg.json new file mode 100644 index 000000000..042d4ebed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dragon_egg.json @@ -0,0 +1,79 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/dragon_egg", + "all": "block/dragon_egg" + }, + "elements": [ + { + "from": [6, 15, 6], + "to": [10, 16, 10], + "faces": { + "north": {"uv": [6, 0, 10, 1], "texture": "#all"}, + "east": {"uv": [6, 0, 10, 1], "texture": "#all"}, + "south": {"uv": [6, 0, 10, 1], "texture": "#all"}, + "west": {"uv": [6, 0, 10, 1], "texture": "#all"}, + "up": {"uv": [6, 6, 10, 10], "texture": "#all", "cullface": "up"} + } + }, + { + "from": [5, 14, 5], + "to": [11, 15, 11], + "faces": { + "north": {"uv": [5, 1, 11, 2], "texture": "#all"}, + "east": {"uv": [5, 1, 11, 2], "texture": "#all"}, + "south": {"uv": [5, 1, 11, 2], "texture": "#all"}, + "west": {"uv": [5, 1, 11, 2], "texture": "#all"}, + "up": {"uv": [5, 5, 11, 11], "texture": "#all"} + } + }, + { + "from": [4, 13, 4], + "to": [12, 14, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, + "faces": { + "north": {"uv": [4, 2, 12, 3], "texture": "#all"}, + "east": {"uv": [4, 2, 12, 3], "texture": "#all"}, + "south": {"uv": [4, 2, 12, 3], "texture": "#all"}, + "west": {"uv": [4, 2, 12, 3], "texture": "#all"}, + "up": {"uv": [4, 4, 12, 12], "texture": "#all"} + } + }, + { + "from": [3, 0, 3], + "to": [13, 13, 13], + "faces": { + "north": {"uv": [3, 3, 13, 16], "texture": "#all"}, + "east": {"uv": [3, 3, 13, 16], "texture": "#all"}, + "south": {"uv": [3, 3, 13, 16], "texture": "#all"}, + "west": {"uv": [3, 3, 13, 16], "texture": "#all"}, + "up": {"uv": [3, 3, 13, 13], "texture": "#all"}, + "down": {"uv": [3, 3, 13, 13], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [2, 1, 2], + "to": [14, 11, 14], + "faces": { + "north": {"uv": [2, 5, 14, 15], "texture": "#all"}, + "east": {"uv": [2, 5, 14, 15], "texture": "#all"}, + "south": {"uv": [2, 5, 14, 15], "texture": "#all"}, + "west": {"uv": [2, 5, 14, 15], "texture": "#all"}, + "up": {"uv": [2, 2, 14, 14], "texture": "#all"}, + "down": {"uv": [2, 2, 14, 14], "texture": "#all"} + } + }, + { + "from": [1, 3, 1], + "to": [15, 8, 15], + "faces": { + "north": {"uv": [1, 8, 15, 13], "texture": "#all"}, + "east": {"uv": [1, 8, 15, 13], "texture": "#all"}, + "south": {"uv": [1, 8, 15, 13], "texture": "#all"}, + "west": {"uv": [1, 8, 15, 13], "texture": "#all"}, + "up": {"uv": [1, 1, 15, 15], "texture": "#all"}, + "down": {"uv": [1, 1, 15, 15], "texture": "#all"} + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_ghast.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_ghast.json new file mode 100644 index 000000000..d145c579c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_ghast.json @@ -0,0 +1,110 @@ +{ + "parent": "block/block", + "display": { + "gui": { + "rotation": [30, 225, 0], + "translation": [0.4, 1.6, 0], + "scale": [0.8, 0.8, 0.8] + } + }, + "elements": [ + { + "name": "body", + "from": [3, 0, 3], + "to": [13, 10, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [11, 0, 11]}, + "faces": { + "north": {"uv": [0, 0, 10, 10], "texture": "#north"}, + "east": {"uv": [0, 0, 10, 10], "texture": "#east"}, + "south": {"uv": [0, 0, 10, 10], "texture": "#south"}, + "west": {"uv": [0, 0, 10, 10], "texture": "#west"}, + "up": {"uv": [0, 0, 10, 10], "rotation": 180, "texture": "#top"}, + "down": {"uv": [10, 0, 0, 10], "texture": "#bottom", "cullface": "down"} + } + }, + { + "name": "left_tent_1", + "from": [0, 0, 5], + "to": [3, 1, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 13]}, + "faces": { + "north": {"uv": [1, 1.5, 2.5, 2], "texture": "#tentacles"}, + "east": {"uv": [0, 1.5, 1, 2], "texture": "#tentacles"}, + "south": {"uv": [3.5, 1.5, 5, 2], "texture": "#tentacles"}, + "west": {"uv": [2.5, 1.5, 3.5, 2], "texture": "#tentacles", "cullface": "west"}, + "up": {"uv": [2.5, 1.5, 1.5, 0], "rotation": 90, "texture": "#tentacles"}, + "down": {"uv": [2.5, 1.5, 3.5, 0], "rotation": 90, "texture": "#tentacles", "cullface": "down"} + } + }, + { + "name": "left_tent_2", + "from": [0, 0, 9], + "to": [3, 1, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 17]}, + "faces": { + "north": {"uv": [1, 3.5, 2.5, 4], "texture": "#tentacles"}, + "east": {"uv": [0, 3.5, 1, 4], "texture": "#tentacles"}, + "south": {"uv": [3.5, 3.5, 5, 4], "texture": "#tentacles"}, + "west": {"uv": [2.5, 3.5, 3.5, 4], "texture": "#tentacles", "cullface": "west"}, + "up": {"uv": [2.5, 3.5, 1.5, 2], "rotation": 90, "texture": "#tentacles"}, + "down": {"uv": [2.5, 3.5, 3.5, 2], "rotation": 90, "texture": "#tentacles", "cullface": "down"} + } + }, + { + "name": "right_tent_1", + "from": [13, 0, 5], + "to": [16, 1, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 13]}, + "faces": { + "north": {"uv": [2.5, 7.5, 1, 8], "texture": "#tentacles"}, + "east": {"uv": [3.5, 7.5, 2.5, 8], "texture": "#tentacles", "cullface": "east"}, + "south": {"uv": [5, 7.5, 3.5, 8], "texture": "#tentacles"}, + "west": {"uv": [1, 7.5, 0, 8], "texture": "#tentacles"}, + "up": {"uv": [2.5, 6, 1.5, 7.5], "rotation": 90, "texture": "#tentacles"}, + "down": {"uv": [2.5, 6, 3.5, 7.5], "rotation": 90, "texture": "#tentacles", "cullface": "down"} + } + }, + { + "name": "right_tent_2", + "from": [13, 0, 9], + "to": [16, 1, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 17]}, + "faces": { + "north": {"uv": [2.5, 5.5, 1, 6], "texture": "#tentacles"}, + "east": {"uv": [3.5, 5.5, 2.5, 6], "texture": "#tentacles", "cullface": "east"}, + "south": {"uv": [5, 5.5, 3.5, 6], "texture": "#tentacles"}, + "west": {"uv": [1, 5.5, 0, 6], "texture": "#tentacles"}, + "up": {"uv": [2.5, 4, 1.5, 5.5], "rotation": 90, "texture": "#tentacles"}, + "down": {"uv": [2.5, 4, 3.5, 5.5], "rotation": 90, "texture": "#tentacles", "cullface": "down"} + } + }, + { + "name": "back_tent_2", + "from": [9, 0, 13], + "to": [11, 1, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [10.5, 0.5, 14.5]}, + "faces": { + "north": {"uv": [6, 2.5, 5, 3], "texture": "#tentacles"}, + "east": {"uv": [7.5, 2.5, 6, 3], "texture": "#tentacles"}, + "south": {"uv": [8.5, 2.5, 7.5, 3], "texture": "#tentacles", "cullface": "south"}, + "west": {"uv": [10, 2.5, 8.5, 3], "texture": "#tentacles"}, + "up": {"uv": [6, 2.5, 7.5, 1.5], "rotation": 90, "texture": "#tentacles"}, + "down": {"uv": [7.5, 1.5, 9, 2.5], "rotation": 270, "texture": "#tentacles", "cullface": "down"} + } + }, + { + "name": "back_tent_1", + "from": [5, 0, 13], + "to": [7, 1, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [5.5, 0.5, 14.5]}, + "faces": { + "north": {"uv": [6, 1, 5, 1.5], "texture": "#tentacles"}, + "east": {"uv": [7.5, 1, 6, 1.5], "texture": "#tentacles"}, + "south": {"uv": [8.5, 1, 7.5, 1.5], "texture": "#tentacles", "cullface": "south" }, + "west": {"uv": [10, 1, 8.5, 1.5], "texture": "#tentacles"}, + "up": {"uv": [6, 1, 7.5, 0], "rotation": 90, "texture": "#tentacles"}, + "down": {"uv": [7.5, 0, 9, 1], "rotation": 270, "texture": "#tentacles", "cullface": "down"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_0.json new file mode 100644 index 000000000..7862b6056 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_0.json @@ -0,0 +1,13 @@ +{ + "parent": "minecraft:block/dried_ghast", + "textures": { + "bottom": "minecraft:block/dried_ghast_hydration_0_bottom", + "east": "minecraft:block/dried_ghast_hydration_0_east", + "north": "minecraft:block/dried_ghast_hydration_0_north", + "particle": "minecraft:block/dried_ghast_hydration_0_north", + "south": "minecraft:block/dried_ghast_hydration_0_south", + "tentacles": "minecraft:block/dried_ghast_hydration_0_tentacles", + "top": "minecraft:block/dried_ghast_hydration_0_top", + "west": "minecraft:block/dried_ghast_hydration_0_west" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_1.json new file mode 100644 index 000000000..82cf1092a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_1.json @@ -0,0 +1,13 @@ +{ + "parent": "minecraft:block/dried_ghast", + "textures": { + "bottom": "minecraft:block/dried_ghast_hydration_1_bottom", + "east": "minecraft:block/dried_ghast_hydration_1_east", + "north": "minecraft:block/dried_ghast_hydration_1_north", + "particle": "minecraft:block/dried_ghast_hydration_1_north", + "south": "minecraft:block/dried_ghast_hydration_1_south", + "tentacles": "minecraft:block/dried_ghast_hydration_1_tentacles", + "top": "minecraft:block/dried_ghast_hydration_1_top", + "west": "minecraft:block/dried_ghast_hydration_1_west" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_2.json new file mode 100644 index 000000000..6af95c385 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_2.json @@ -0,0 +1,13 @@ +{ + "parent": "minecraft:block/dried_ghast", + "textures": { + "bottom": "minecraft:block/dried_ghast_hydration_2_bottom", + "east": "minecraft:block/dried_ghast_hydration_2_east", + "north": "minecraft:block/dried_ghast_hydration_2_north", + "particle": "minecraft:block/dried_ghast_hydration_2_north", + "south": "minecraft:block/dried_ghast_hydration_2_south", + "tentacles": "minecraft:block/dried_ghast_hydration_2_tentacles", + "top": "minecraft:block/dried_ghast_hydration_2_top", + "west": "minecraft:block/dried_ghast_hydration_2_west" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_3.json new file mode 100644 index 000000000..3d2812b18 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_ghast_hydration_3.json @@ -0,0 +1,13 @@ +{ + "parent": "minecraft:block/dried_ghast", + "textures": { + "bottom": "minecraft:block/dried_ghast_hydration_3_bottom", + "east": "minecraft:block/dried_ghast_hydration_3_east", + "north": "minecraft:block/dried_ghast_hydration_3_north", + "particle": "minecraft:block/dried_ghast_hydration_3_north", + "south": "minecraft:block/dried_ghast_hydration_3_south", + "tentacles": "minecraft:block/dried_ghast_hydration_3_tentacles", + "top": "minecraft:block/dried_ghast_hydration_3_top", + "west": "minecraft:block/dried_ghast_hydration_3_west" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_kelp_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_kelp_block.json new file mode 100644 index 000000000..4d76967ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dried_kelp_block.json @@ -0,0 +1,25 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/dried_kelp_side", + "down": "block/dried_kelp_bottom", + "up": "block/dried_kelp_top", + "north": "block/dried_kelp_side", + "east": "block/dried_kelp_side", + "south": "block/dried_kelp_side", + "west": "block/dried_kelp_side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "cullface": "down" }, + "up": { "texture": "#up", "cullface": "up" }, + "north": { "texture": "#north", "cullface": "north" }, + "south": { "uv": [16, 0, 0, 16], "texture": "#south", "cullface": "south" }, + "west": { "texture": "#west", "cullface": "west" }, + "east": { "uv": [16, 0, 0, 16], "texture": "#east", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dripstone_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dripstone_block.json new file mode 100644 index 000000000..7c1da3f2d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dripstone_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/dripstone_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dropper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dropper.json new file mode 100644 index 000000000..f2bdc53b4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dropper.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "front": "minecraft:block/dropper_front", + "side": "minecraft:block/furnace_side", + "top": "minecraft:block/furnace_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dropper_vertical.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dropper_vertical.json new file mode 100644 index 000000000..98c24a7af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/dropper_vertical.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/orientable_vertical", + "textures": { + "front": "minecraft:block/dropper_front_vertical", + "side": "minecraft:block/furnace_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/emerald_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/emerald_block.json new file mode 100644 index 000000000..ae7a4f4cd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/emerald_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/emerald_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/emerald_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/emerald_ore.json new file mode 100644 index 000000000..b71c29b87 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/emerald_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/emerald_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/enchanting_table.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/enchanting_table.json new file mode 100644 index 000000000..404ca9a3d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/enchanting_table.json @@ -0,0 +1,21 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/enchanting_table_bottom", + "bottom": "block/enchanting_table_bottom", + "top": "block/enchanting_table_top", + "side": "block/enchanting_table_side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 12, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 4, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 4, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 4, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 4, 16, 16 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_gateway.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_gateway.json new file mode 100644 index 000000000..ae6b33b2d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_gateway.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/obsidian" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_portal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_portal.json new file mode 100644 index 000000000..ae6b33b2d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_portal.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/obsidian" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_portal_frame.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_portal_frame.json new file mode 100644 index 000000000..ac716efd0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_portal_frame.json @@ -0,0 +1,21 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/end_portal_frame_side", + "bottom": "block/end_stone", + "top": "block/end_portal_frame_top", + "side": "block/end_portal_frame_side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 13, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 3, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 3, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 3, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 3, 16, 16 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_portal_frame_filled.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_portal_frame_filled.json new file mode 100644 index 000000000..b3ed9297b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_portal_frame_filled.json @@ -0,0 +1,32 @@ +{ + "textures": { + "particle": "block/end_portal_frame_side", + "bottom": "block/end_stone", + "top": "block/end_portal_frame_top", + "side": "block/end_portal_frame_side", + "eye": "block/end_portal_frame_eye" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 13, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 3, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 3, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 3, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 3, 16, 16 ], "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 4, 13, 4 ], + "to": [ 12, 16, 12 ], + "faces": { + "up": { "uv": [ 4, 4, 12, 12 ], "texture": "#eye", "cullface": "up" }, + "north": { "uv": [ 4, 0, 12, 3 ], "texture": "#eye" }, + "south": { "uv": [ 4, 0, 12, 3 ], "texture": "#eye" }, + "west": { "uv": [ 4, 0, 12, 3 ], "texture": "#eye" }, + "east": { "uv": [ 4, 0, 12, 3 ], "texture": "#eye" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_rod.json new file mode 100644 index 000000000..aeb57d0b7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_rod.json @@ -0,0 +1,43 @@ +{ "parent": "block/block", + "display": { + "head": { + "rotation": [ -60, 0, 0 ], + "translation": [ 0, 5, -9], + "scale":[ 1, 1, 1] + }, + "thirdperson_righthand": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 0, 0], + "scale": [ 0.375, 0.375, 0.375 ] + } + }, + "textures": { + "end_rod": "block/end_rod", + "particle": "block/end_rod" + }, + "elements": [ + { + "from": [ 6, 0, 6 ], + "to": [ 10, 1, 10 ], + "faces": { + "down": { "uv": [ 6, 6, 2, 2 ], "texture": "#end_rod", "cullface": "down" }, + "up": { "uv": [ 2, 2, 6, 6 ], "texture": "#end_rod" }, + "north": { "uv": [ 2, 6, 6, 7 ], "texture": "#end_rod" }, + "south": { "uv": [ 2, 6, 6, 7 ], "texture": "#end_rod" }, + "west": { "uv": [ 2, 6, 6, 7 ], "texture": "#end_rod" }, + "east": { "uv": [ 2, 6, 6, 7 ], "texture": "#end_rod" } + } + }, + { + "from": [ 7, 1, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "up": { "uv": [ 2, 0, 4, 2 ], "texture": "#end_rod", "cullface": "up" }, + "north": { "uv": [ 0, 0, 2, 15 ], "texture": "#end_rod" }, + "south": { "uv": [ 0, 0, 2, 15 ], "texture": "#end_rod" }, + "west": { "uv": [ 0, 0, 2, 15 ], "texture": "#end_rod" }, + "east": { "uv": [ 0, 0, 2, 15 ], "texture": "#end_rod" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone.json new file mode 100644 index 000000000..b3cc680e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/end_stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_slab.json new file mode 100644 index 000000000..0526c4897 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/end_stone_bricks", + "side": "minecraft:block/end_stone_bricks", + "top": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_slab_top.json new file mode 100644 index 000000000..5794a6523 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/end_stone_bricks", + "side": "minecraft:block/end_stone_bricks", + "top": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs.json new file mode 100644 index 000000000..c20d2d758 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/end_stone_bricks", + "side": "minecraft:block/end_stone_bricks", + "top": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs_inner.json new file mode 100644 index 000000000..3bea77e98 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/end_stone_bricks", + "side": "minecraft:block/end_stone_bricks", + "top": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs_outer.json new file mode 100644 index 000000000..7c2bb688a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/end_stone_bricks", + "side": "minecraft:block/end_stone_bricks", + "top": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_inventory.json new file mode 100644 index 000000000..8d84ef2c7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_post.json new file mode 100644 index 000000000..fba19f84e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_side.json new file mode 100644 index 000000000..be12a31bc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_side_tall.json new file mode 100644 index 000000000..ba695b27e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_bricks.json new file mode 100644 index 000000000..fd288c3d4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/end_stone_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/end_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ender_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ender_chest.json new file mode 100644 index 000000000..ae6b33b2d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ender_chest.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/obsidian" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_chiseled_copper.json new file mode 100644 index 000000000..fca515bc1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_chiseled_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper.json new file mode 100644 index 000000000..8d02db6df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/exposed_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_cap.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_cap.json new file mode 100644 index 000000000..e6f05d247 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_cap.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_cap", + "textures": { + "bars": "minecraft:block/exposed_copper_bars", + "edge": "minecraft:block/exposed_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_cap_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_cap_alt.json new file mode 100644 index 000000000..4ec7ba3f8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_cap_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_cap_alt", + "textures": { + "bars": "minecraft:block/exposed_copper_bars", + "edge": "minecraft:block/exposed_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_post.json new file mode 100644 index 000000000..209cfb7e8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_post", + "textures": { + "bars": "minecraft:block/exposed_copper_bars", + "edge": "minecraft:block/exposed_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_post_ends.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_post_ends.json new file mode 100644 index 000000000..1d0bbd36d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_post_ends.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_post_ends", + "textures": { + "bars": "minecraft:block/exposed_copper_bars", + "edge": "minecraft:block/exposed_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_side.json new file mode 100644 index 000000000..b45bbdbed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_side", + "textures": { + "bars": "minecraft:block/exposed_copper_bars", + "edge": "minecraft:block/exposed_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_side_alt.json new file mode 100644 index 000000000..474901cf8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bars_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_side_alt", + "textures": { + "bars": "minecraft:block/exposed_copper_bars", + "edge": "minecraft:block/exposed_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb.json new file mode 100644 index 000000000..001281312 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/exposed_copper_bulb" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_lit.json new file mode 100644 index 000000000..6916e3936 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_lit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/exposed_copper_bulb_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_lit_powered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_lit_powered.json new file mode 100644 index 000000000..be6af2746 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_lit_powered.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/exposed_copper_bulb_lit_powered" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_powered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_powered.json new file mode 100644 index 000000000..1e508f6dc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_bulb_powered.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/exposed_copper_bulb_powered" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_chain.json new file mode 100644 index 000000000..132ca143f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_chain.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chain", + "textures": { + "texture": "minecraft:block/exposed_copper_chain" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_chest.json new file mode 100644 index 000000000..746419c5a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_chest.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/exposed_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_left.json new file mode 100644 index 000000000..1ff28c824 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/exposed_copper_door_bottom", + "top": "minecraft:block/exposed_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_left_open.json new file mode 100644 index 000000000..ab8778180 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/exposed_copper_door_bottom", + "top": "minecraft:block/exposed_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_right.json new file mode 100644 index 000000000..788ea381c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/exposed_copper_door_bottom", + "top": "minecraft:block/exposed_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_right_open.json new file mode 100644 index 000000000..a20476148 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/exposed_copper_door_bottom", + "top": "minecraft:block/exposed_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_left.json new file mode 100644 index 000000000..8ef26e343 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/exposed_copper_door_bottom", + "top": "minecraft:block/exposed_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_left_open.json new file mode 100644 index 000000000..55548218e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/exposed_copper_door_bottom", + "top": "minecraft:block/exposed_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_right.json new file mode 100644 index 000000000..5f407c5a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/exposed_copper_door_bottom", + "top": "minecraft:block/exposed_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_right_open.json new file mode 100644 index 000000000..f3979d86e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/exposed_copper_door_bottom", + "top": "minecraft:block/exposed_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_golem_statue.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_golem_statue.json new file mode 100644 index 000000000..746419c5a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_golem_statue.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/exposed_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_grate.json new file mode 100644 index 000000000..13639fcbb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_grate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/exposed_copper_grate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_lantern.json new file mode 100644 index 000000000..71274f3e9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_lantern", + "textures": { + "lantern": "minecraft:block/exposed_copper_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_lantern_hanging.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_lantern_hanging.json new file mode 100644 index 000000000..ea987574e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_lantern_hanging.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_hanging_lantern", + "textures": { + "lantern": "minecraft:block/exposed_copper_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_bottom.json new file mode 100644 index 000000000..9c90e497f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/exposed_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_open.json new file mode 100644 index 000000000..495a451f0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_open", + "textures": { + "texture": "minecraft:block/exposed_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_top.json new file mode 100644 index 000000000..d8e48aebe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_copper_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_top", + "textures": { + "texture": "minecraft:block/exposed_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper.json new file mode 100644 index 000000000..42cfd595f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/exposed_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_slab.json new file mode 100644 index 000000000..c736183ea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/exposed_cut_copper", + "side": "minecraft:block/exposed_cut_copper", + "top": "minecraft:block/exposed_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_slab_top.json new file mode 100644 index 000000000..42f73316a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/exposed_cut_copper", + "side": "minecraft:block/exposed_cut_copper", + "top": "minecraft:block/exposed_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs.json new file mode 100644 index 000000000..c9a3eb69f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/exposed_cut_copper", + "side": "minecraft:block/exposed_cut_copper", + "top": "minecraft:block/exposed_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs_inner.json new file mode 100644 index 000000000..d232176ae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/exposed_cut_copper", + "side": "minecraft:block/exposed_cut_copper", + "top": "minecraft:block/exposed_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs_outer.json new file mode 100644 index 000000000..02dea0cf1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_cut_copper_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/exposed_cut_copper", + "side": "minecraft:block/exposed_cut_copper", + "top": "minecraft:block/exposed_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_lightning_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_lightning_rod.json new file mode 100644 index 000000000..896cd397f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/exposed_lightning_rod.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_lightning_rod", + "textures": { + "texture": "minecraft:block/exposed_lightning_rod" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/farmland.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/farmland.json new file mode 100644 index 000000000..6fb9a895b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/farmland.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_farmland", + "textures": { + "dirt": "minecraft:block/dirt", + "top": "minecraft:block/farmland" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/farmland_moist.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/farmland_moist.json new file mode 100644 index 000000000..4ef2e24b4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/farmland_moist.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_farmland", + "textures": { + "dirt": "minecraft:block/dirt", + "top": "minecraft:block/farmland_moist" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fence_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fence_inventory.json new file mode 100644 index 000000000..49ee95ee2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fence_inventory.json @@ -0,0 +1,112 @@ +{ "parent": "block/block", + "display": { + "gui": { + "rotation": [ 30, 135, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "fixed": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.5, 0.5, 0.5 ] + }, + "on_shelf": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ] + } + }, + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 6, 0, 0 ], + "to": [ 10, 16, 4 ], + "faces": { + "down": { "uv": [ 6, 0, 10, 4 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 6, 0, 10, 4 ], "texture": "#texture" }, + "north": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }, + "west": { "uv": [ 0, 0, 4, 16 ], "texture": "#texture" }, + "east": { "uv": [ 0, 0, 4, 16 ], "texture": "#texture" } + }, + "__comment": "Left post" + }, + { "from": [ 6, 0, 12 ], + "to": [ 10, 16, 16 ], + "faces": { + "down": { "uv": [ 6, 12, 10, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 6, 12, 10, 16 ], "texture": "#texture" }, + "north": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }, + "west": { "uv": [ 12, 0, 16, 16 ], "texture": "#texture" }, + "east": { "uv": [ 12, 0, 16, 16 ], "texture": "#texture" } + }, + "__comment": "Right post" + }, + { "from": [ 7, 12, 0 ], + "to": [ 9, 15, 16 ], + "faces": { + "down": { "uv": [ 7, 0, 9, 16 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 0, 1, 16, 4 ], "texture": "#texture" }, + "east": { "uv": [ 0, 1, 16, 4 ], "texture": "#texture" } + }, + "__comment": "Top bar" + }, + { "from": [ 7, 12, -2 ], + "to": [ 9, 15, 0 ], + "faces": { + "down": { "uv": [ 7, 0, 9, 2 ], "texture": "#texture" }, + "up": { "uv": [ 7, 14, 9, 16 ], "texture": "#texture" }, + "north": { "uv": [ 7, 1, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 14, 1, 16, 4 ], "texture": "#texture" }, + "east": { "uv": [ 0, 1, 2, 4 ], "texture": "#texture" } + }, + "__comment": "Top bar left" + }, + { "from": [ 7, 12, 16 ], + "to": [ 9, 15, 18 ], + "faces": { + "down": { "uv": [ 7, 14, 9, 16 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 9, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7, 1, 9, 4 ], "texture": "#texture" }, + "west": { "uv": [ 0, 1, 2, 4 ], "texture": "#texture" }, + "east": { "uv": [ 14, 1, 16, 4 ], "texture": "#texture" } + }, + "__comment": "Top bar right" + }, + { "from": [ 7, 6, 0 ], + "to": [ 9, 9, 16 ], + "faces": { + "down": { "uv": [ 7, 0, 9, 16 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 0, 7, 16, 10 ], "texture": "#texture" }, + "east": { "uv": [ 0, 7, 16, 10 ], "texture": "#texture" } + }, + "__comment": "Lower bar" + }, + { "from": [ 7, 6, -2 ], + "to": [ 9, 9, 0 ], + "faces": { + "down": { "uv": [ 7, 0, 9, 2 ], "texture": "#texture" }, + "up": { "uv": [ 7, 14, 9, 16 ], "texture": "#texture" }, + "north": { "uv": [ 7, 7, 9, 10 ], "texture": "#texture" }, + "west": { "uv": [ 14, 7, 16, 10 ], "texture": "#texture" }, + "east": { "uv": [ 0, 7, 2, 10 ], "texture": "#texture" } + }, + "__comment": "Lower bar left" + }, + { "from": [ 7, 6, 16 ], + "to": [ 9, 9, 18 ], + "faces": { + "down": { "uv": [ 7, 14, 9, 16 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 9, 2 ], "texture": "#texture" }, + "south": { "uv": [ 7, 7, 9, 10 ], "texture": "#texture" }, + "west": { "uv": [ 0, 7, 2, 10 ], "texture": "#texture" }, + "east": { "uv": [ 14, 7, 16, 10 ], "texture": "#texture" } + }, + "__comment": "Lower bar right" + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fence_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fence_post.json new file mode 100644 index 000000000..4f6a74386 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fence_post.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 6, 0, 6 ], + "to": [ 10, 16, 10 ], + "faces": { + "down": { "uv": [ 6, 6, 10, 10 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#texture", "cullface": "up" }, + "north": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }, + "south": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }, + "west": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" } + }, + "__comment": "Center post" + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fence_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fence_side.json new file mode 100644 index 000000000..7145349ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fence_side.json @@ -0,0 +1,29 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 7, 12, 0 ], + "to": [ 9, 15, 9 ], + "faces": { + "down": { "uv": [ 7, 0, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 1, 9, 4 ], "texture": "#texture", "cullface": "north" }, + "west": { "uv": [ 0, 1, 9, 4 ], "texture": "#texture" }, + "east": { "uv": [ 0, 1, 9, 4 ], "texture": "#texture" } + }, + "__comment": "top bar" + }, + { "from": [ 7, 6, 0 ], + "to": [ 9, 9, 9 ], + "faces": { + "down": { "uv": [ 7, 0, 9, 9 ], "texture": "#texture" }, + "up": { "uv": [ 7, 0, 9, 9 ], "texture": "#texture" }, + "north": { "uv": [ 7, 7, 9, 10 ], "texture": "#texture", "cullface": "north" }, + "west": { "uv": [ 0, 7, 9, 10 ], "texture": "#texture" }, + "east": { "uv": [ 0, 7, 9, 10 ], "texture": "#texture" } + }, + "__comment": "lower bar" + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fern.json new file mode 100644 index 000000000..69449f649 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/fern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_coral.json new file mode 100644 index 000000000..0eaf71ddd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/fire_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_coral_block.json new file mode 100644 index 000000000..ad084a771 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/fire_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_coral_fan.json new file mode 100644 index 000000000..4aec8dd13 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/fire_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_coral_wall_fan.json new file mode 100644 index 000000000..07546a42d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/fire_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_floor0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_floor0.json new file mode 100644 index 000000000..f137115df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_floor0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_floor", + "textures": { + "fire": "minecraft:block/fire_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_floor1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_floor1.json new file mode 100644 index 000000000..1822fe756 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_floor1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_floor", + "textures": { + "fire": "minecraft:block/fire_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_side0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_side0.json new file mode 100644 index 000000000..4ae905086 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_side0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_side", + "textures": { + "fire": "minecraft:block/fire_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_side1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_side1.json new file mode 100644 index 000000000..021602cd9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_side1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_side", + "textures": { + "fire": "minecraft:block/fire_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_side_alt0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_side_alt0.json new file mode 100644 index 000000000..13e9e56b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_side_alt0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_side_alt", + "textures": { + "fire": "minecraft:block/fire_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_side_alt1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_side_alt1.json new file mode 100644 index 000000000..d8a8550b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_side_alt1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_side_alt", + "textures": { + "fire": "minecraft:block/fire_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_up0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_up0.json new file mode 100644 index 000000000..ebae15a61 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_up0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_up", + "textures": { + "fire": "minecraft:block/fire_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_up1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_up1.json new file mode 100644 index 000000000..b80f0ebd2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_up1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_up", + "textures": { + "fire": "minecraft:block/fire_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_up_alt0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_up_alt0.json new file mode 100644 index 000000000..8925e2f0f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_up_alt0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_up_alt", + "textures": { + "fire": "minecraft:block/fire_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_up_alt1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_up_alt1.json new file mode 100644 index 000000000..696f351c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fire_up_alt1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_up_alt", + "textures": { + "fire": "minecraft:block/fire_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/firefly_bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/firefly_bush.json new file mode 100644 index 000000000..668f253c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/firefly_bush.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cross_emissive", + "textures": { + "cross": "minecraft:block/firefly_bush", + "cross_emissive": "minecraft:block/firefly_bush_emissive" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fletching_table.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fletching_table.json new file mode 100644 index 000000000..7921725c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/fletching_table.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "down": "minecraft:block/birch_planks", + "east": "minecraft:block/fletching_table_side", + "north": "minecraft:block/fletching_table_front", + "particle": "minecraft:block/fletching_table_front", + "south": "minecraft:block/fletching_table_front", + "up": "minecraft:block/fletching_table_top", + "west": "minecraft:block/fletching_table_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flower_pot.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flower_pot.json new file mode 100644 index 000000000..45c7a75b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flower_pot.json @@ -0,0 +1,57 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/flower_pot", + "flowerpot": "block/flower_pot", + "dirt": "block/dirt" + }, + "elements": [ + { "from": [ 5, 0, 5 ], + "to": [ 6, 6, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 10, 0, 5 ], + "to": [ 11, 6, 11 ], + "faces": { + "down": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 5 ], + "to": [ 10, 6, 6 ], + "faces": { + "down": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 10 ], + "to": [ 10, 6, 11 ], + "faces": { + "down": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 6 ], + "to": [ 10, 4, 10 ], + "faces": { + "down": { "uv": [ 6, 12, 10, 16 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#dirt" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flower_pot_cross.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flower_pot_cross.json new file mode 100644 index 000000000..05d1cbe23 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flower_pot_cross.json @@ -0,0 +1,75 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/flower_pot", + "flowerpot": "block/flower_pot", + "dirt": "block/dirt" + }, + "elements": [ + { "from": [ 5, 0, 5 ], + "to": [ 6, 6, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 10, 0, 5 ], + "to": [ 11, 6, 11 ], + "faces": { + "down": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 5 ], + "to": [ 10, 6, 6 ], + "faces": { + "down": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 10 ], + "to": [ 10, 6, 11 ], + "faces": { + "down": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 6 ], + "to": [ 10, 4, 10 ], + "faces": { + "down": { "uv": [ 6, 12, 10, 16 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#dirt" } + } + }, + { "from": [ 2.6, 4, 8 ], + "to": [ 13.4, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" } + } + }, + { "from": [ 8, 4, 2.6 ], + "to": [ 8, 16, 13.4 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flower_pot_cross_emissive.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flower_pot_cross_emissive.json new file mode 100644 index 000000000..e8fd2d535 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flower_pot_cross_emissive.json @@ -0,0 +1,95 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/flower_pot", + "flowerpot": "block/flower_pot", + "dirt": "block/dirt" + }, + "elements": [ + { "from": [ 5, 0, 5 ], + "to": [ 6, 6, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 10, 0, 5 ], + "to": [ 11, 6, 11 ], + "faces": { + "down": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 5 ], + "to": [ 10, 6, 6 ], + "faces": { + "down": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 10 ], + "to": [ 10, 6, 11 ], + "faces": { + "down": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 6 ], + "to": [ 10, 4, 10 ], + "faces": { + "down": { "uv": [ 6, 12, 10, 16 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#dirt" } + } + }, + { "from": [ 2.6, 4, 8 ], + "to": [ 13.4, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" } + } + }, + { "from": [ 8, 4, 2.6 ], + "to": [ 8, 16, 13.4 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" } + } + }, + { "from": [ 2.6, 4, 8 ], + "to": [ 13.4, 16, 8 ], + "light_emission": 15, + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross_emissive" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross_emissive" } + } + }, + { "from": [ 8, 4, 2.6 ], + "to": [ 8, 16, 13.4 ], + "light_emission": 15, + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross_emissive" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross_emissive" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowerbed_1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowerbed_1.json new file mode 100644 index 000000000..5b7ba90df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowerbed_1.json @@ -0,0 +1,70 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#flowerbed" + }, + "elements": [ + { + "from": [0, 2.99, 0], + "to": [8, 2.99, 8], + "faces": { + "up": {"uv": [0, 0, 8, 8], "texture": "#flowerbed"}, + "down": {"uv": [0, 8, 8, 0], "texture": "#flowerbed"} + } + }, + { + "from": [4.25, 0, -2.6], + "to": [4.25, 2.99, -1.6], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "east": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1}, + "west": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [3.75, 0, -2.1], + "to": [4.75, 2.99, -2.1], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1}, + "south": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [4.9, 0, 2.3], + "to": [4.9, 2.99, 3.3], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "east": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1}, + "west": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [4.4, 0, 2.8], + "to": [5.4, 2.99, 2.8], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1}, + "south": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [9.15, 0, -0.45], + "to": [9.15, 2.99, 0.55], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "east": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1}, + "west": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [8.65, 0, 0.05], + "to": [9.65, 2.99, 0.05], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1}, + "south": {"uv": [0, 4, 1, 7], "texture": "#stem", "tintindex": 1} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowerbed_2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowerbed_2.json new file mode 100644 index 000000000..de654b86c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowerbed_2.json @@ -0,0 +1,42 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#flowerbed" + }, + "elements": [ + { + "from": [0, 1, 8], + "to": [8, 1, 16], + "faces": { + "up": {"uv": [0, 8, 8, 16], "texture": "#flowerbed"}, + "down": {"uv": [0, 16, 8, 8], "texture": "#flowerbed"} + } + }, + { + "from": [0, 1, 8], + "to": [8, 1, 16], + "faces": { + "up": {"uv": [0, 8, 8, 16], "texture": "#flowerbed"}, + "down": {"uv": [0, 16, 8, 8], "texture": "#flowerbed"} + } + }, + { + "from": [10.15, 0, 5.25], + "to": [11.15, 1, 5.25], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 6, 1, 7], "texture": "#stem", "tintindex": 1}, + "south": {"uv": [0, 6, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [10.65, 0, 4.75], + "to": [10.65, 1, 5.75], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 1]}, + "faces": { + "east": {"uv": [0, 6, 1, 7], "texture": "#stem", "tintindex": 1}, + "west": {"uv": [0, 6, 1, 7], "texture": "#stem", "tintindex": 1} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowerbed_3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowerbed_3.json new file mode 100644 index 000000000..1d3ba0fc2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowerbed_3.json @@ -0,0 +1,70 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#flowerbed" + }, + "elements": [ + { + "from": [8, 2, 8], + "to": [16, 2, 16], + "faces": { + "up": {"uv": [8, 8, 16, 16], "texture": "#flowerbed"}, + "down": {"uv": [8, 16, 16, 8], "texture": "#flowerbed"} + } + }, + { + "from": [17.65, 0, 1.9], + "to": [18.65, 2, 1.9], + "rotation": {"angle": -45, "axis": "y", "origin": [0.5, 0, 0.5]}, + "faces": { + "north": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1}, + "south": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [18.15, 0, 1.4], + "to": [18.15, 2, 2.4], + "rotation": {"angle": -45, "axis": "y", "origin": [0.5, 0, 0.5]}, + "faces": { + "east": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1}, + "west": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [17.65, 0, -3.35], + "to": [17.65, 2, -2.35], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "east": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1}, + "west": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [17.15, 0, -2.85], + "to": [18.15, 2, -2.85], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1}, + "south": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [13.4, 0, -0.5], + "to": [13.4, 2, 0.5], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "east": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1}, + "west": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [12.9, 0, 0], + "to": [13.9, 2, 0], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1}, + "south": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowerbed_4.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowerbed_4.json new file mode 100644 index 000000000..3559fe2f8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowerbed_4.json @@ -0,0 +1,34 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#flowerbed" + }, + "elements": [ + { + "from": [8, 2, 0], + "to": [16, 2, 8], + "faces": { + "up": {"uv": [8, 0, 16, 8], "texture": "#flowerbed"}, + "down": {"uv": [8, 8, 16, 0], "texture": "#flowerbed"} + } + }, + { + "from": [12.4, 0, -7.7], + "to": [12.4, 2, -6.7], + "rotation": {"angle": -45, "axis": "y", "origin": [-1, 0, -3]}, + "faces": { + "east": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1}, + "west": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1} + } + }, + { + "from": [11.9, 0, -7.2], + "to": [12.9, 2, -7.2], + "rotation": {"angle": -45, "axis": "y", "origin": [-1, 0, -3]}, + "faces": { + "north": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1}, + "south": {"uv": [0, 5, 1, 7], "texture": "#stem", "tintindex": 1} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowering_azalea.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowering_azalea.json new file mode 100644 index 000000000..65ac15ab9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowering_azalea.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_azalea", + "textures": { + "side": "minecraft:block/flowering_azalea_side", + "top": "minecraft:block/flowering_azalea_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowering_azalea_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowering_azalea_leaves.json new file mode 100644 index 000000000..f5caf1d7d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/flowering_azalea_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/flowering_azalea_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/four_dead_sea_pickles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/four_dead_sea_pickles.json new file mode 100644 index 000000000..5b5b0e7b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/four_dead_sea_pickles.json @@ -0,0 +1,84 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/sea_pickle", + "all": "block/sea_pickle" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 6, 6, 6 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 2, 5.95, 2 ], + "to": [ 6, 5.95, 6 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 9, 0, 10 ], + "to": [ 13, 4, 14 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 9 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 9 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 9 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 9 ], "texture": "#all" } + } + }, + { + "from": [ 9, 3.95, 10 ], + "to": [ 13, 3.95, 14 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 9, 0, 2 ], + "to": [ 13, 6, 6 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 9, 5.95, 2 ], + "to": [ 13, 5.95, 6 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 2, 0, 8 ], + "to": [ 6, 7, 12 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 12 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 12 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 12 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 12 ], "texture": "#all" } + } + }, + { + "from": [ 2, 6.95, 8 ], + "to": [ 6, 6.95, 12 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/four_sea_pickles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/four_sea_pickles.json new file mode 100644 index 000000000..a9480d941 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/four_sea_pickles.json @@ -0,0 +1,164 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/sea_pickle", + "all": "block/sea_pickle" + }, + "elements": [ + { "from": [ 2, 0, 2 ], + "to": [ 6, 6, 6 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 2, 5.95, 2 ], + "to": [ 6, 5.95, 6 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 9, 0, 10 ], + "to": [ 13, 4, 14 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 9 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 9 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 9 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 9 ], "texture": "#all" } + } + }, + { + "from": [ 9, 3.95, 10 ], + "to": [ 13, 3.95, 14 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 9, 0, 2 ], + "to": [ 13, 6, 6 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 9, 5.95, 2 ], + "to": [ 13, 5.95, 6 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 2, 0, 8 ], + "to": [ 6, 7, 12 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 12 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 12 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 12 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 12 ], "texture": "#all" } + } + }, + { + "from": [ 2, 6.95, 8 ], + "to": [ 6, 6.95, 12 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 3.5, 5.2, 4 ], + "to": [ 4.5, 8.7, 4 ], + "rotation": { "origin": [ 4, 8, 4 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 4, 5.2, 3.5 ], + "to": [ 4, 8.7, 4.5 ], + "rotation": { "origin": [ 4, 8, 4 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + }, + { + "from": [ 10.5, 3.2, 12 ], + "to": [ 11.5, 6.7, 12 ], + "rotation": { "origin": [ 11, 8, 12 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 11, 3.2, 11.5 ], + "to": [ 11, 6.7, 12.5 ], + "rotation": { "origin": [ 11, 8, 12 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + }, + { + "from": [ 10.5, 5.2, 4 ], + "to": [ 11.5, 8.7, 4 ], + "rotation": { "origin": [ 11, 8, 4 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 11, 5.2, 3.5 ], + "to": [ 11, 8.7, 4.5 ], + "rotation": { "origin": [ 11, 8, 4 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + }, + { + "from": [ 3.5, 6.2, 10 ], + "to": [ 4.5, 9.7, 10 ], + "rotation": { "origin": [ 4, 8, 10 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 4, 6.2, 9.5 ], + "to": [ 4, 9.7, 10.5 ], + "rotation": { "origin": [ 4, 8, 10 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/four_slightly_cracked_turtle_eggs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/four_slightly_cracked_turtle_eggs.json new file mode 100644 index 000000000..fc2286aa7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/four_slightly_cracked_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_four_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg_slightly_cracked" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/four_turtle_eggs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/four_turtle_eggs.json new file mode 100644 index 000000000..895069343 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/four_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_four_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/four_very_cracked_turtle_eggs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/four_very_cracked_turtle_eggs.json new file mode 100644 index 000000000..6d6a8a6d1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/four_very_cracked_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_four_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg_very_cracked" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/frogspawn.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/frogspawn.json new file mode 100644 index 000000000..fb730c6f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/frogspawn.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/frogspawn", + "texture": "block/frogspawn" + }, + "elements": [ + { "from": [ 0, 0.25, 0 ], + "to": [ 16, 0.25, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/frosted_ice_0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/frosted_ice_0.json new file mode 100644 index 000000000..1873bb833 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/frosted_ice_0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/frosted_ice_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/frosted_ice_1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/frosted_ice_1.json new file mode 100644 index 000000000..ada6d7cf9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/frosted_ice_1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/frosted_ice_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/frosted_ice_2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/frosted_ice_2.json new file mode 100644 index 000000000..f97882c6f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/frosted_ice_2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/frosted_ice_2" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/frosted_ice_3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/frosted_ice_3.json new file mode 100644 index 000000000..330bb943f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/frosted_ice_3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/frosted_ice_3" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/furnace.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/furnace.json new file mode 100644 index 000000000..9603b454d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/furnace.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "front": "minecraft:block/furnace_front", + "side": "minecraft:block/furnace_side", + "top": "minecraft:block/furnace_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/furnace_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/furnace_on.json new file mode 100644 index 000000000..37c4d3941 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/furnace_on.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "front": "minecraft:block/furnace_front_on", + "side": "minecraft:block/furnace_side", + "top": "minecraft:block/furnace_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gilded_blackstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gilded_blackstone.json new file mode 100644 index 000000000..088b2170e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gilded_blackstone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gilded_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass.json new file mode 100644 index 000000000..4c193d189 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass_pane_noside.json new file mode 100644 index 000000000..dc01ef004 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass_pane_noside_alt.json new file mode 100644 index 000000000..f0151c1ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass_pane_post.json new file mode 100644 index 000000000..6067b6a8c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/glass_pane_top", + "pane": "minecraft:block/glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass_pane_side.json new file mode 100644 index 000000000..0b03be05e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/glass_pane_top", + "pane": "minecraft:block/glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass_pane_side_alt.json new file mode 100644 index 000000000..e8bd700f9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/glass_pane_top", + "pane": "minecraft:block/glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glow_item_frame.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glow_item_frame.json new file mode 100644 index 000000000..d465e3966 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glow_item_frame.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_item_frame", + "textures": { + "particle": "block/birch_planks", + "wood": "block/birch_planks", + "back": "block/glow_item_frame" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glow_item_frame_map.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glow_item_frame_map.json new file mode 100644 index 000000000..0f8f9623b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glow_item_frame_map.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_item_frame_map", + "textures": { + "particle": "block/birch_planks", + "wood": "block/birch_planks", + "back": "block/glow_item_frame" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glow_lichen.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glow_lichen.json new file mode 100644 index 000000000..4bc0ff696 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glow_lichen.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/glow_lichen", + "glow_lichen": "block/glow_lichen" + }, + "elements": [ + { "from": [ 0, 0, 0.1 ], + "to": [ 16, 16, 0.1 ], + "faces": { + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#glow_lichen" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow_lichen" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glowstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glowstone.json new file mode 100644 index 000000000..64b05023d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/glowstone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/glowstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gold_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gold_block.json new file mode 100644 index 000000000..e4cf5eceb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gold_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gold_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gold_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gold_ore.json new file mode 100644 index 000000000..e330e8234 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gold_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gold_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite.json new file mode 100644 index 000000000..def59d00c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_slab.json new file mode 100644 index 000000000..937bb638a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/granite", + "side": "minecraft:block/granite", + "top": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_slab_top.json new file mode 100644 index 000000000..fcf5f0922 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/granite", + "side": "minecraft:block/granite", + "top": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_stairs.json new file mode 100644 index 000000000..240f8e179 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/granite", + "side": "minecraft:block/granite", + "top": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_stairs_inner.json new file mode 100644 index 000000000..34977cbb1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/granite", + "side": "minecraft:block/granite", + "top": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_stairs_outer.json new file mode 100644 index 000000000..6bfbf03c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/granite", + "side": "minecraft:block/granite", + "top": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_wall_inventory.json new file mode 100644 index 000000000..4fd63ac1f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_wall_post.json new file mode 100644 index 000000000..896a06a4c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_wall_side.json new file mode 100644 index 000000000..28bd6f3bd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_wall_side_tall.json new file mode 100644 index 000000000..b995d75c3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/granite_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/grass_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/grass_block.json new file mode 100644 index 000000000..94c521cb2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/grass_block.json @@ -0,0 +1,31 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/dirt", + "bottom": "block/dirt", + "top": "block/grass_block_top", + "side": "block/grass_block_side", + "overlay": "block/grass_block_side_overlay" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "up", "tintindex": 0 }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#overlay", "tintindex": 0, "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#overlay", "tintindex": 0, "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#overlay", "tintindex": 0, "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#overlay", "tintindex": 0, "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/grass_block_snow.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/grass_block_snow.json new file mode 100644 index 000000000..2bf4bbaad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/grass_block_snow.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/dirt", + "particle": "minecraft:block/dirt", + "side": "minecraft:block/grass_block_snow", + "top": "minecraft:block/grass_block_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gravel.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gravel.json new file mode 100644 index 000000000..ed35aa8b9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gravel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gravel" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_cake.json new file mode 100644 index 000000000..e78d12b93 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/gray_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_cake_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_cake_lit.json new file mode 100644 index 000000000..041054f5a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/gray_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_four_candles.json new file mode 100644 index 000000000..88fc63be6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/gray_candle", + "particle": "minecraft:block/gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_four_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_four_candles_lit.json new file mode 100644 index 000000000..543b0ab1b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/gray_candle_lit", + "particle": "minecraft:block/gray_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_one_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_one_candle.json new file mode 100644 index 000000000..4bd2420c3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/gray_candle", + "particle": "minecraft:block/gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_one_candle_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_one_candle_lit.json new file mode 100644 index 000000000..ab6af17e4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/gray_candle_lit", + "particle": "minecraft:block/gray_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_three_candles.json new file mode 100644 index 000000000..62903c456 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/gray_candle", + "particle": "minecraft:block/gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_three_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_three_candles_lit.json new file mode 100644 index 000000000..73d97d572 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/gray_candle_lit", + "particle": "minecraft:block/gray_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_two_candles.json new file mode 100644 index 000000000..8ad7e5ea5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/gray_candle", + "particle": "minecraft:block/gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_two_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_two_candles_lit.json new file mode 100644 index 000000000..c3e0cb065 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/gray_candle_lit", + "particle": "minecraft:block/gray_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_carpet.json new file mode 100644 index 000000000..1924a401d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/gray_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_concrete.json new file mode 100644 index 000000000..12c16a3b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gray_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_concrete_powder.json new file mode 100644 index 000000000..69ca2d0c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gray_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_glazed_terracotta.json new file mode 100644 index 000000000..4b8e268b7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/gray_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_shulker_box.json new file mode 100644 index 000000000..93cae9908 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/gray_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass.json new file mode 100644 index 000000000..4255772ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_noside.json new file mode 100644 index 000000000..5ee05c4d0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..4ea84aa64 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_post.json new file mode 100644 index 000000000..7c762cff2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/gray_stained_glass_pane_top", + "pane": "minecraft:block/gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_side.json new file mode 100644 index 000000000..e1bb68e78 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/gray_stained_glass_pane_top", + "pane": "minecraft:block/gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..d0f02e679 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/gray_stained_glass_pane_top", + "pane": "minecraft:block/gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_terracotta.json new file mode 100644 index 000000000..eae31cf97 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gray_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_wool.json new file mode 100644 index 000000000..26140233f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/gray_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/gray_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_cake.json new file mode 100644 index 000000000..803748943 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/green_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_cake_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_cake_lit.json new file mode 100644 index 000000000..bfe09f036 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/green_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_four_candles.json new file mode 100644 index 000000000..747a90255 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/green_candle", + "particle": "minecraft:block/green_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_four_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_four_candles_lit.json new file mode 100644 index 000000000..94d44e01d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/green_candle_lit", + "particle": "minecraft:block/green_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_one_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_one_candle.json new file mode 100644 index 000000000..d1c0549e5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/green_candle", + "particle": "minecraft:block/green_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_one_candle_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_one_candle_lit.json new file mode 100644 index 000000000..fc34dc9ac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/green_candle_lit", + "particle": "minecraft:block/green_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_three_candles.json new file mode 100644 index 000000000..74af5d17c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/green_candle", + "particle": "minecraft:block/green_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_three_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_three_candles_lit.json new file mode 100644 index 000000000..2afade3fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/green_candle_lit", + "particle": "minecraft:block/green_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_two_candles.json new file mode 100644 index 000000000..ab72a4be7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/green_candle", + "particle": "minecraft:block/green_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_two_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_two_candles_lit.json new file mode 100644 index 000000000..505c16ed5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/green_candle_lit", + "particle": "minecraft:block/green_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_carpet.json new file mode 100644 index 000000000..8d253d4bc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/green_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_concrete.json new file mode 100644 index 000000000..98a35206f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/green_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_concrete_powder.json new file mode 100644 index 000000000..b783da037 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/green_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_glazed_terracotta.json new file mode 100644 index 000000000..5238d5d31 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/green_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_shulker_box.json new file mode 100644 index 000000000..7b07e6401 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/green_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass.json new file mode 100644 index 000000000..9eb3adad4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/green_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_noside.json new file mode 100644 index 000000000..3b91e355a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/green_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..1791ed8f3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/green_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_post.json new file mode 100644 index 000000000..0406b265b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/green_stained_glass_pane_top", + "pane": "minecraft:block/green_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_side.json new file mode 100644 index 000000000..313b79501 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/green_stained_glass_pane_top", + "pane": "minecraft:block/green_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..61ee696d7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/green_stained_glass_pane_top", + "pane": "minecraft:block/green_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_terracotta.json new file mode 100644 index 000000000..8c1390074 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/green_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_wool.json new file mode 100644 index 000000000..79b5a21f1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/green_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/green_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/grindstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/grindstone.json new file mode 100644 index 000000000..cc5e0f1f9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/grindstone.json @@ -0,0 +1,68 @@ +{ + "parent": "block/block", + "textures": { + "pivot": "block/grindstone_pivot", + "round": "block/grindstone_round", + "side": "block/grindstone_side", + "particle": "block/grindstone_side", + "leg": "block/dark_oak_log" + }, + "elements": [ + { + "from": [12, 0, 6], + "to": [14, 7, 10], + "faces": { + "north": {"uv": [2, 9, 4, 16], "texture": "#leg"}, + "east": {"uv": [10, 16, 6, 9], "texture": "#leg"}, + "south": {"uv": [12, 9, 14, 16], "texture": "#leg"}, + "west": {"uv": [6, 9, 10, 16], "texture": "#leg"}, + "down": {"uv": [12, 6, 14, 10], "texture": "#leg", "cullface": "down" } + } + }, + { + "from": [2, 0, 6], + "to": [4, 7, 10], + "faces": { + "north": {"uv": [12, 9, 14, 16], "texture": "#leg"}, + "east": {"uv": [10, 16, 6, 9], "texture": "#leg"}, + "south": {"uv": [2, 9, 4, 16], "texture": "#leg"}, + "west": {"uv": [6, 9, 10, 16], "texture": "#leg"}, + "down": {"uv": [2, 6, 4, 10], "texture": "#leg", "cullface": "down"} + } + }, + { + "from": [12, 7, 5], + "to": [14, 13, 11], + "faces": { + "north": {"uv": [6, 0, 8, 6], "texture": "#pivot"}, + "east": {"uv": [0, 0, 6, 6], "texture": "#pivot"}, + "south": {"uv": [6, 0, 8, 6], "texture": "#pivot"}, + "up": {"uv": [8, 0, 10, 6], "texture": "#pivot"}, + "down": {"uv": [8, 0, 10, 6], "texture": "#pivot"} + } + }, + { + "from": [2, 7, 5], + "to": [4, 13, 11], + "faces": { + "north": {"uv": [6, 0, 8, 6], "texture": "#pivot"}, + "south": {"uv": [6, 0, 8, 6], "texture": "#pivot"}, + "west": {"uv": [0, 0, 6, 6], "texture": "#pivot"}, + "up": {"uv": [8, 0, 10, 6], "texture": "#pivot"}, + "down": {"uv": [8, 0, 10, 6], "texture": "#pivot"} + } + }, + { + "from": [4, 4, 2], + "to": [12, 16, 14], + "faces": { + "north": {"uv": [0, 0, 8, 12], "texture": "#round"}, + "east": {"uv": [0, 0, 12, 12], "texture": "#side"}, + "south": {"uv": [0, 0, 8, 12], "texture": "#round"}, + "west": {"uv": [0, 0, 12, 12], "texture": "#side"}, + "up": {"uv": [0, 0, 8, 12], "texture": "#round", "cullface": "up" }, + "down": {"uv": [0, 0, 8, 12], "texture": "#round"} + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/hanging_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/hanging_roots.json new file mode 100644 index 000000000..1c979695c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/hanging_roots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/hanging_roots" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/hay_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/hay_block.json new file mode 100644 index 000000000..6c0c225b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/hay_block.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/hay_block_top", + "side": "minecraft:block/hay_block_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/hay_block_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/hay_block_horizontal.json new file mode 100644 index 000000000..6e7df90b5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/hay_block_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/hay_block_top", + "side": "minecraft:block/hay_block_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/heavy_core.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/heavy_core.json new file mode 100644 index 000000000..d1f5161eb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/heavy_core.json @@ -0,0 +1,44 @@ +{ + "display": { + "gui": { + "rotation": [ 30, 225, 0 ], + "translation": [ 0, 3, 0], + "scale":[ 1, 1, 1 ] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 3, 0], + "scale":[ 0.5, 0.5, 0.5 ] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 4, 0], + "scale":[ 1, 1, 1 ] + }, + "thirdperson_righthand": { + "rotation": [ 45, 45, 0 ], + "translation": [ 0, 3, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + } + }, + "texture_size": [16, 16], + "textures": { + "all": "block/heavy_core", + "particle": "block/heavy_core" + }, + "elements": [ + { + "name": "heavy_core", + "from": [4, 0, 4], + "to": [12, 8, 12], + "faces": { + "north": {"uv": [0, 8, 8, 16], "texture": "all"}, + "east": {"uv": [0, 8, 8, 16], "texture": "all"}, + "south": {"uv": [0, 8, 8, 16], "texture": "all"}, + "west": {"uv": [0, 8, 8, 16], "texture": "all"}, + "up": {"uv": [0, 0, 8, 8], "texture": "all"}, + "down": {"uv": [8, 0, 16, 8], "texture": "all"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/heavy_weighted_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/heavy_weighted_pressure_plate.json new file mode 100644 index 000000000..d0dd064df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/heavy_weighted_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/iron_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/heavy_weighted_pressure_plate_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/heavy_weighted_pressure_plate_down.json new file mode 100644 index 000000000..dae1bb484 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/heavy_weighted_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/iron_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/honey_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/honey_block.json new file mode 100644 index 000000000..d3dd49f99 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/honey_block.json @@ -0,0 +1,33 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/honey_block_top", + "down": "block/honey_block_bottom", + "up": "block/honey_block_top", + "side": "block/honey_block_side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#down", "cullface": "down" }, + "up": { "texture": "#down", "cullface": "up" }, + "north": { "texture": "#down", "cullface": "north" }, + "south": { "texture": "#down", "cullface": "south" }, + "west": { "texture": "#down", "cullface": "west" }, + "east": { "texture": "#down", "cullface": "east" } + } + }, + { "from": [ 1, 1, 1 ], + "to": [ 15, 15, 15 ], + "faces": { + "down": { "uv": [ 1, 1, 15, 15 ], "texture": "#down"}, + "up": { "uv": [ 1, 1, 15, 15 ], "texture": "#up"}, + "north": { "uv": [ 1, 1, 15, 15 ], "texture": "#side"}, + "south": { "uv": [ 1, 1, 15, 15 ], "texture": "#side"}, + "west": { "uv": [ 1, 1, 15, 15 ], "texture": "#side"}, + "east": { "uv": [ 1, 1, 15, 15 ], "texture": "#side"} + } + } + ] +} + diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/honeycomb_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/honeycomb_block.json new file mode 100644 index 000000000..4421b2315 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/honeycomb_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/honeycomb_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/hopper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/hopper.json new file mode 100644 index 000000000..ce9eb542c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/hopper.json @@ -0,0 +1,78 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/hopper_outside", + "top": "block/hopper_top", + "side": "block/hopper_outside", + "inside": "block/hopper_inside" + }, + "elements": [ + { "from": [ 0, 10, 0 ], + "to": [ 16, 11, 16 ], + "faces": { + "down": { "texture": "#inside" }, + "up": { "texture": "#inside", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "east": { "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 0, 11, 0 ], + "to": [ 2, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "east": { "texture": "#side", "cullface": "up" } + } + }, + { "from": [ 14, 11, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "up" }, + "east": { "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 2, 11, 0 ], + "to": [ 14, 16, 2 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "up" } + } + }, + { "from": [ 2, 11, 14 ], + "to": [ 14, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "up" }, + "south": { "texture": "#side", "cullface": "south" } + } + }, + { "from": [ 4, 4, 4 ], + "to": [ 12, 10, 12 ], + "faces": { + "down": { "texture": "#inside" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "east": { "texture": "#side" } + } + }, + { "from": [ 6, 0, 6 ], + "to": [ 10, 4, 10 ], + "faces": { + "down": { "texture": "#inside", "cullface": "down" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/hopper_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/hopper_side.json new file mode 100644 index 000000000..28d3dc65b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/hopper_side.json @@ -0,0 +1,78 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/hopper_outside", + "top": "block/hopper_top", + "side": "block/hopper_outside", + "inside": "block/hopper_inside" + }, + "elements": [ + { "from": [ 0, 10, 0 ], + "to": [ 16, 11, 16 ], + "faces": { + "down": { "texture": "#inside" }, + "up": { "texture": "#inside", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "east": { "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 0, 11, 0 ], + "to": [ 2, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "east": { "texture": "#side", "cullface": "up" } + } + }, + { "from": [ 14, 11, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "up" }, + "east": { "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 2, 11, 0 ], + "to": [ 14, 16, 2 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "cullface": "up" } + } + }, + { "from": [ 2, 11, 14 ], + "to": [ 14, 16, 16 ], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "north": { "texture": "#side", "cullface": "up" }, + "south": { "texture": "#side", "cullface": "south" } + } + }, + { "from": [ 4, 4, 4 ], + "to": [ 12, 10, 12 ], + "faces": { + "down": { "texture": "#inside" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "east": { "texture": "#side" } + } + }, + { "from": [ 6, 4, 0 ], + "to": [ 10, 8, 4 ], + "faces": { + "down": { "texture": "#inside" }, + "up": { "texture": "#side" }, + "north": { "texture": "#side", "cullface": "north" }, + "west": { "texture": "#side" }, + "east": { "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/horn_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/horn_coral.json new file mode 100644 index 000000000..2b976df7f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/horn_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/horn_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/horn_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/horn_coral_block.json new file mode 100644 index 000000000..5ab74af97 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/horn_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/horn_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/horn_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/horn_coral_fan.json new file mode 100644 index 000000000..01598b873 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/horn_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/horn_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/horn_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/horn_coral_wall_fan.json new file mode 100644 index 000000000..68001f161 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/horn_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/horn_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ice.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ice.json new file mode 100644 index 000000000..cfe53a038 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ice.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/ice" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/inner_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/inner_stairs.json new file mode 100644 index 000000000..364eff63e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/inner_stairs.json @@ -0,0 +1,37 @@ +{ + "textures": { + "particle": "#side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 8, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 8, 8, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "up": { "uv": [ 8, 0, 16, 16 ], "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 0, 0, 8, 8 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 8, 0, 16, 8 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#side" }, + "east": { "uv": [ 0, 0, 16, 8 ], "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 0, 8, 8 ], + "to": [ 8, 16, 16 ], + "faces": { + "up": { "uv": [ 0, 8, 8, 16 ], "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 8, 0, 16, 8 ], "texture": "#side" }, + "south": { "uv": [ 0, 0, 8, 8 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 8, 0, 16, 8 ], "texture": "#side", "cullface": "west" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_cap.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_cap.json new file mode 100644 index 000000000..a2475f5e6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_cap.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_cap", + "textures": { + "bars": "minecraft:block/iron_bars", + "edge": "minecraft:block/iron_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_cap_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_cap_alt.json new file mode 100644 index 000000000..992c38e8a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_cap_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_cap_alt", + "textures": { + "bars": "minecraft:block/iron_bars", + "edge": "minecraft:block/iron_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_post.json new file mode 100644 index 000000000..ac60ebe00 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_post", + "textures": { + "bars": "minecraft:block/iron_bars", + "edge": "minecraft:block/iron_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_post_ends.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_post_ends.json new file mode 100644 index 000000000..a55271818 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_post_ends.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_post_ends", + "textures": { + "bars": "minecraft:block/iron_bars", + "edge": "minecraft:block/iron_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_side.json new file mode 100644 index 000000000..044bb4f0d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_side", + "textures": { + "bars": "minecraft:block/iron_bars", + "edge": "minecraft:block/iron_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_side_alt.json new file mode 100644 index 000000000..1f0d7f929 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_bars_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_side_alt", + "textures": { + "bars": "minecraft:block/iron_bars", + "edge": "minecraft:block/iron_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_block.json new file mode 100644 index 000000000..8b87ea96a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/iron_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_chain.json new file mode 100644 index 000000000..dc417e133 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_chain.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chain", + "textures": { + "texture": "minecraft:block/iron_chain" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_bottom_left.json new file mode 100644 index 000000000..00ef5550d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/iron_door_bottom", + "top": "minecraft:block/iron_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_bottom_left_open.json new file mode 100644 index 000000000..e5e40a29a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/iron_door_bottom", + "top": "minecraft:block/iron_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_bottom_right.json new file mode 100644 index 000000000..5bcd9581f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/iron_door_bottom", + "top": "minecraft:block/iron_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_bottom_right_open.json new file mode 100644 index 000000000..7263ca8dc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/iron_door_bottom", + "top": "minecraft:block/iron_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_top_left.json new file mode 100644 index 000000000..a64f42cd0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/iron_door_bottom", + "top": "minecraft:block/iron_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_top_left_open.json new file mode 100644 index 000000000..af4f3d696 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/iron_door_bottom", + "top": "minecraft:block/iron_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_top_right.json new file mode 100644 index 000000000..97226e37d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/iron_door_bottom", + "top": "minecraft:block/iron_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_top_right_open.json new file mode 100644 index 000000000..f3b08b051 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/iron_door_bottom", + "top": "minecraft:block/iron_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_ore.json new file mode 100644 index 000000000..1660281b3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/iron_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_trapdoor_bottom.json new file mode 100644 index 000000000..97561197c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/iron_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_trapdoor_open.json new file mode 100644 index 000000000..b638a44c5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_open", + "textures": { + "texture": "minecraft:block/iron_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_trapdoor_top.json new file mode 100644 index 000000000..be3cc7bae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/iron_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_top", + "textures": { + "texture": "minecraft:block/iron_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/item_frame.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/item_frame.json new file mode 100644 index 000000000..04c65e008 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/item_frame.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_item_frame", + "textures": { + "particle": "block/birch_planks", + "wood": "block/birch_planks", + "back": "block/item_frame" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/item_frame_map.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/item_frame_map.json new file mode 100644 index 000000000..fb8998633 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/item_frame_map.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_item_frame_map", + "textures": { + "particle": "block/birch_planks", + "wood": "block/birch_planks", + "back": "block/item_frame" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jack_o_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jack_o_lantern.json new file mode 100644 index 000000000..637772f84 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jack_o_lantern.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "front": "minecraft:block/jack_o_lantern", + "side": "minecraft:block/pumpkin_side", + "top": "minecraft:block/pumpkin_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jigsaw.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jigsaw.json new file mode 100644 index 000000000..def1e2e70 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jigsaw.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube_directional", + "textures": { + "down": "minecraft:block/jigsaw_side", + "east": "minecraft:block/jigsaw_side", + "north": "minecraft:block/jigsaw_top", + "particle": "minecraft:block/jigsaw_top", + "south": "minecraft:block/jigsaw_bottom", + "up": "minecraft:block/jigsaw_lock", + "west": "minecraft:block/jigsaw_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jukebox.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jukebox.json new file mode 100644 index 000000000..9b9b61d85 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jukebox.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_top", + "textures": { + "side": "minecraft:block/jukebox_side", + "top": "minecraft:block/jukebox_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_button.json new file mode 100644 index 000000000..de9e6318a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_button_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_button_inventory.json new file mode 100644 index 000000000..2f058f640 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_button_pressed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_button_pressed.json new file mode 100644 index 000000000..08687058c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_left.json new file mode 100644 index 000000000..e1d1e72bc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/jungle_door_bottom", + "top": "minecraft:block/jungle_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_left_open.json new file mode 100644 index 000000000..f60c74fcb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/jungle_door_bottom", + "top": "minecraft:block/jungle_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_right.json new file mode 100644 index 000000000..4e6989abd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/jungle_door_bottom", + "top": "minecraft:block/jungle_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_right_open.json new file mode 100644 index 000000000..393c68c98 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/jungle_door_bottom", + "top": "minecraft:block/jungle_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_top_left.json new file mode 100644 index 000000000..a48721e35 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/jungle_door_bottom", + "top": "minecraft:block/jungle_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_top_left_open.json new file mode 100644 index 000000000..481ee6afc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/jungle_door_bottom", + "top": "minecraft:block/jungle_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_top_right.json new file mode 100644 index 000000000..063b0d480 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/jungle_door_bottom", + "top": "minecraft:block/jungle_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_top_right_open.json new file mode 100644 index 000000000..64a498c56 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/jungle_door_bottom", + "top": "minecraft:block/jungle_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_gate.json new file mode 100644 index 000000000..a0f5231c3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_open.json new file mode 100644 index 000000000..d7e228521 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_wall.json new file mode 100644 index 000000000..8544a4b16 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_wall_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_wall_open.json new file mode 100644 index 000000000..acb74dd7e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_inventory.json new file mode 100644 index 000000000..70ce50968 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_post.json new file mode 100644 index 000000000..6867e0d9b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_side.json new file mode 100644 index 000000000..8efe3bc67 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_hanging_sign.json new file mode 100644 index 000000000..837a44e37 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_leaves.json new file mode 100644 index 000000000..9feffd5d3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/jungle_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_log.json new file mode 100644 index 000000000..6e2042e86 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/jungle_log_top", + "side": "minecraft:block/jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_log_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_log_horizontal.json new file mode 100644 index 000000000..8c4758db9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/jungle_log_top", + "side": "minecraft:block/jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_planks.json new file mode 100644 index 000000000..f35281e8d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_pressure_plate.json new file mode 100644 index 000000000..cf18c79e4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_pressure_plate_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_pressure_plate_down.json new file mode 100644 index 000000000..f34227b2f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_sapling.json new file mode 100644 index 000000000..b1c50ecd3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/jungle_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf.json new file mode 100644 index 000000000..66245475b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_body", + "textures": { + "all": "minecraft:block/jungle_shelf", + "particle": "minecraft:block/stripped_jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_center.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_center.json new file mode 100644 index 000000000..a0068d025 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_center.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_center", + "textures": { + "all": "minecraft:block/jungle_shelf", + "particle": "minecraft:block/stripped_jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_inventory.json new file mode 100644 index 000000000..e9a4340b7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_inventory.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_inventory", + "textures": { + "all": "minecraft:block/jungle_shelf", + "particle": "minecraft:block/stripped_jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_left.json new file mode 100644 index 000000000..411df83f9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_left", + "textures": { + "all": "minecraft:block/jungle_shelf", + "particle": "minecraft:block/stripped_jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_right.json new file mode 100644 index 000000000..f8083d6d1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_right", + "textures": { + "all": "minecraft:block/jungle_shelf", + "particle": "minecraft:block/stripped_jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_unconnected.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_unconnected.json new file mode 100644 index 000000000..7337deb18 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_unconnected.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unconnected", + "textures": { + "all": "minecraft:block/jungle_shelf", + "particle": "minecraft:block/stripped_jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_unpowered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_unpowered.json new file mode 100644 index 000000000..fc8bbe67b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_shelf_unpowered.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unpowered", + "textures": { + "all": "minecraft:block/jungle_shelf", + "particle": "minecraft:block/stripped_jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_sign.json new file mode 100644 index 000000000..6792ad6d7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_slab.json new file mode 100644 index 000000000..d8e2e35c8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/jungle_planks", + "side": "minecraft:block/jungle_planks", + "top": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_slab_top.json new file mode 100644 index 000000000..0a569d08c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/jungle_planks", + "side": "minecraft:block/jungle_planks", + "top": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_stairs.json new file mode 100644 index 000000000..d852ba5a5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/jungle_planks", + "side": "minecraft:block/jungle_planks", + "top": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_stairs_inner.json new file mode 100644 index 000000000..3bf1b36d9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/jungle_planks", + "side": "minecraft:block/jungle_planks", + "top": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_stairs_outer.json new file mode 100644 index 000000000..1ddbccd77 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/jungle_planks", + "side": "minecraft:block/jungle_planks", + "top": "minecraft:block/jungle_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_bottom.json new file mode 100644 index 000000000..937fc8bd8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/jungle_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_open.json new file mode 100644 index 000000000..af3cfdf51 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/jungle_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_top.json new file mode 100644 index 000000000..6147ee6db --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/jungle_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_wood.json new file mode 100644 index 000000000..e0960bb2a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/jungle_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/jungle_log", + "side": "minecraft:block/jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/kelp.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/kelp.json new file mode 100644 index 000000000..a9eba75fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/kelp.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/kelp" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/kelp_plant.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/kelp_plant.json new file mode 100644 index 000000000..cb9812707 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/kelp_plant.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/kelp_plant" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ladder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ladder.json new file mode 100644 index 000000000..1b975e4d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ladder.json @@ -0,0 +1,17 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/ladder", + "texture": "block/ladder" + }, + "elements": [ + { "from": [ 0, 0, 15.2 ], + "to": [ 16, 16, 15.2 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "south": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lantern.json new file mode 100644 index 000000000..12970adc8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_lantern", + "textures": { + "lantern": "minecraft:block/lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lantern_hanging.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lantern_hanging.json new file mode 100644 index 000000000..d047dcd00 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lantern_hanging.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_hanging_lantern", + "textures": { + "lantern": "minecraft:block/lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lapis_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lapis_block.json new file mode 100644 index 000000000..97561c346 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lapis_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/lapis_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lapis_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lapis_ore.json new file mode 100644 index 000000000..561b8b59a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lapis_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/lapis_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/large_amethyst_bud.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/large_amethyst_bud.json new file mode 100644 index 000000000..27be909b4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/large_amethyst_bud.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/large_amethyst_bud" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/large_fern_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/large_fern_bottom.json new file mode 100644 index 000000000..832383dc7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/large_fern_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/large_fern_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/large_fern_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/large_fern_top.json new file mode 100644 index 000000000..e6d29325f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/large_fern_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/large_fern_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lava.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lava.json new file mode 100644 index 000000000..315d525f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lava.json @@ -0,0 +1,6 @@ +{ + "textures": { + "particle": "block/lava_still" + } +} + diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lava_cauldron.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lava_cauldron.json new file mode 100644 index 000000000..f0a0a3125 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lava_cauldron.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/template_cauldron_full", + "textures": { + "bottom": "minecraft:block/cauldron_bottom", + "content": "minecraft:block/lava_still", + "inside": "minecraft:block/cauldron_inner", + "particle": "minecraft:block/cauldron_side", + "side": "minecraft:block/cauldron_side", + "top": "minecraft:block/cauldron_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/leaf_litter_1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/leaf_litter_1.json new file mode 100644 index 000000000..cf22052c0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/leaf_litter_1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_leaf_litter_1", + "textures": { + "texture": "minecraft:block/leaf_litter" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/leaf_litter_2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/leaf_litter_2.json new file mode 100644 index 000000000..173250085 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/leaf_litter_2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_leaf_litter_2", + "textures": { + "texture": "minecraft:block/leaf_litter" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/leaf_litter_3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/leaf_litter_3.json new file mode 100644 index 000000000..266445292 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/leaf_litter_3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_leaf_litter_3", + "textures": { + "texture": "minecraft:block/leaf_litter" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/leaf_litter_4.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/leaf_litter_4.json new file mode 100644 index 000000000..0e565f75d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/leaf_litter_4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_leaf_litter_4", + "textures": { + "texture": "minecraft:block/leaf_litter" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/leaves.json new file mode 100644 index 000000000..722173fdf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/leaves.json @@ -0,0 +1,18 @@ +{ "parent": "block/block", + "textures": { + "particle": "#all" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#all", "tintindex": 0, "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#all", "tintindex": 0, "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#all", "tintindex": 0, "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#all", "tintindex": 0, "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#all", "tintindex": 0, "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#all", "tintindex": 0, "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lectern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lectern.json new file mode 100644 index 000000000..a504fa96b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lectern.json @@ -0,0 +1,60 @@ +{ + "parent": "block/block", + "display": { + "firstperson_righthand": { + "rotation": [ 0, 135, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.4, 0.4, 0.4 ] + }, + "gui": { + "rotation": [ 30, 225, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.6, 0.6, 0.6 ] + } + }, + "textures": { + "particle": "block/lectern_sides", + "bottom": "block/oak_planks", + "base": "block/lectern_base", + "front": "block/lectern_front", + "sides": "block/lectern_sides", + "top": "block/lectern_top" + }, + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#base", "cullface": "north" }, + "east": { "uv": [ 0, 6, 16, 8 ], "texture": "#base", "cullface": "east" }, + "south": { "uv": [ 0, 6, 16, 8 ], "texture": "#base", "cullface": "south" }, + "west": { "uv": [ 0, 6, 16, 8 ], "texture": "#base", "cullface": "west" }, + "up": { "uv": [ 0, 0, 16, 16 ], "rotation": 180, "texture": "#base" }, + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [4, 2, 4], + "to": [12, 15, 12], + "faces": { + "north": { "uv": [ 0, 0, 8, 13 ], "texture": "#front" }, + "east": { "uv": [ 2, 16, 15, 8 ], "rotation": 90, "texture": "#sides" }, + "south": { "uv": [ 8, 3, 16, 16 ], "texture": "#front" }, + "west": { "uv": [ 2, 8, 15, 16 ], "rotation": 90, "texture": "#sides" } + } + }, + { + "from": [ 0.0125, 12, 3 ], + "to": [ 15.9875, 16, 16 ], + "rotation": { "angle": -22.5, "axis": "x", "origin": [ 8, 8, 8 ] }, + "faces": { + "north": { "uv": [ 0, 0, 16, 4 ], "texture": "#sides" }, + "east": { "uv": [ 0, 4, 13, 8 ], "texture": "#sides" }, + "south": { "uv": [ 0, 4, 16, 8 ], "texture": "#sides" }, + "west": { "uv": [ 0, 4, 13, 8 ], "texture": "#sides" }, + "up": { "uv": [ 0, 1, 16, 14 ], "rotation": 180, "texture": "#top" }, + "down": { "uv": [ 0, 0, 16, 13 ], "texture": "#bottom" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lever.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lever.json new file mode 100644 index 000000000..14cc4f861 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lever.json @@ -0,0 +1,32 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cobblestone", + "base": "block/cobblestone", + "lever": "block/lever" + }, + "elements": [ + { "from": [ 5, -0.02, 4 ], + "to": [ 11, 2.98, 12 ], + "faces": { + "down": { "uv": [ 5, 4, 11, 12 ], "texture": "#base", "cullface": "down" }, + "up": { "uv": [ 5, 4, 11, 12 ], "texture": "#base" }, + "north": { "uv": [ 5, 0, 11, 3 ], "texture": "#base" }, + "south": { "uv": [ 5, 0, 11, 3 ], "texture": "#base" }, + "west": { "uv": [ 4, 0, 12, 3 ], "texture": "#base" }, + "east": { "uv": [ 4, 0, 12, 3 ], "texture": "#base" } + } + }, + { "from": [ 7, 1, 7 ], + "to": [ 9, 11, 9 ], + "rotation": { "origin": [ 8, 1, 8 ], "axis": "x", "angle": -45 }, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lever" }, + "north": { "uv": [ 7, 6, 9, 16 ], "texture": "#lever" }, + "south": { "uv": [ 7, 6, 9, 16 ], "texture": "#lever" }, + "west": { "uv": [ 7, 6, 9, 16 ], "texture": "#lever" }, + "east": { "uv": [ 7, 6, 9, 16 ], "texture": "#lever" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lever_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lever_on.json new file mode 100644 index 000000000..64797896e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lever_on.json @@ -0,0 +1,32 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cobblestone", + "base": "block/cobblestone", + "lever": "block/lever" + }, + "elements": [ + { "from": [ 5, -0.02, 4 ], + "to": [ 11, 2.98, 12 ], + "faces": { + "down": { "uv": [ 5, 4, 11, 12 ], "texture": "#base", "cullface": "down" }, + "up": { "uv": [ 5, 4, 11, 12 ], "texture": "#base" }, + "north": { "uv": [ 5, 0, 11, 3 ], "texture": "#base" }, + "south": { "uv": [ 5, 0, 11, 3 ], "texture": "#base" }, + "west": { "uv": [ 4, 0, 12, 3 ], "texture": "#base" }, + "east": { "uv": [ 4, 0, 12, 3 ], "texture": "#base" } + } + }, + { "from": [ 7, 1, 7 ], + "to": [ 9, 11, 9 ], + "rotation": { "origin": [ 8, 1, 8 ], "axis": "x", "angle": 45 }, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lever" }, + "north": { "uv": [ 7, 6, 9, 16 ], "texture": "#lever" }, + "south": { "uv": [ 7, 6, 9, 16 ], "texture": "#lever" }, + "west": { "uv": [ 7, 6, 9, 16 ], "texture": "#lever" }, + "east": { "uv": [ 7, 6, 9, 16 ], "texture": "#lever" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_00.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_00.json new file mode 100644 index 000000000..2ffd3ce53 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_00.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_00" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_01.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_01.json new file mode 100644 index 000000000..55d7c25ac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_01.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_01" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_02.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_02.json new file mode 100644 index 000000000..69d189686 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_02.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_02" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_03.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_03.json new file mode 100644 index 000000000..0f6fe7d84 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_03.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_03" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_04.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_04.json new file mode 100644 index 000000000..d13dabfa5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_04.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_04" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_05.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_05.json new file mode 100644 index 000000000..f155183b9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_05.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_05" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_06.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_06.json new file mode 100644 index 000000000..e8412194d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_06.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_06" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_07.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_07.json new file mode 100644 index 000000000..c24497b97 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_07.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_07" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_08.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_08.json new file mode 100644 index 000000000..01620569e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_08.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_08" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_09.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_09.json new file mode 100644 index 000000000..18691a074 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_09.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_09" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_10.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_10.json new file mode 100644 index 000000000..832914153 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_10.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_10" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_11.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_11.json new file mode 100644 index 000000000..1b763eb52 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_11.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_11" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_12.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_12.json new file mode 100644 index 000000000..cf4b46bcd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_12.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_12" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_13.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_13.json new file mode 100644 index 000000000..bdb9a24ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_13.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_13" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_14.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_14.json new file mode 100644 index 000000000..2206335d7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_14.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_14" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_15.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_15.json new file mode 100644 index 000000000..4fa669c3c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_15.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/light_15" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_cake.json new file mode 100644 index 000000000..8ffc42fea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/light_blue_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_cake_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_cake_lit.json new file mode 100644 index 000000000..85fd0a8f8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/light_blue_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_four_candles.json new file mode 100644 index 000000000..503ddb229 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/light_blue_candle", + "particle": "minecraft:block/light_blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_four_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_four_candles_lit.json new file mode 100644 index 000000000..b7ee670c9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/light_blue_candle_lit", + "particle": "minecraft:block/light_blue_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_one_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_one_candle.json new file mode 100644 index 000000000..37d165d6a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/light_blue_candle", + "particle": "minecraft:block/light_blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_one_candle_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_one_candle_lit.json new file mode 100644 index 000000000..be1f17683 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/light_blue_candle_lit", + "particle": "minecraft:block/light_blue_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_three_candles.json new file mode 100644 index 000000000..d735cda71 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/light_blue_candle", + "particle": "minecraft:block/light_blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_three_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_three_candles_lit.json new file mode 100644 index 000000000..4a4818437 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/light_blue_candle_lit", + "particle": "minecraft:block/light_blue_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_two_candles.json new file mode 100644 index 000000000..ec4da5666 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/light_blue_candle", + "particle": "minecraft:block/light_blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_two_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_two_candles_lit.json new file mode 100644 index 000000000..d99287758 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/light_blue_candle_lit", + "particle": "minecraft:block/light_blue_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_carpet.json new file mode 100644 index 000000000..e1949fe86 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/light_blue_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_concrete.json new file mode 100644 index 000000000..28590f930 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_blue_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_concrete_powder.json new file mode 100644 index 000000000..f660be908 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_blue_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_glazed_terracotta.json new file mode 100644 index 000000000..86980349f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/light_blue_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_shulker_box.json new file mode 100644 index 000000000..41f67725d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/light_blue_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass.json new file mode 100644 index 000000000..6011b9540 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_noside.json new file mode 100644 index 000000000..66b5851af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/light_blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..3c0285388 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/light_blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_post.json new file mode 100644 index 000000000..79b4de1e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/light_blue_stained_glass_pane_top", + "pane": "minecraft:block/light_blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_side.json new file mode 100644 index 000000000..f5f268754 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/light_blue_stained_glass_pane_top", + "pane": "minecraft:block/light_blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..7fb82b116 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/light_blue_stained_glass_pane_top", + "pane": "minecraft:block/light_blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_terracotta.json new file mode 100644 index 000000000..24816bc45 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_blue_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_wool.json new file mode 100644 index 000000000..4a4b3f04f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_blue_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_blue_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_cake.json new file mode 100644 index 000000000..119a3bcd7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/light_gray_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_cake_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_cake_lit.json new file mode 100644 index 000000000..332eb93d1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/light_gray_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_four_candles.json new file mode 100644 index 000000000..0559aae1c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/light_gray_candle", + "particle": "minecraft:block/light_gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_four_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_four_candles_lit.json new file mode 100644 index 000000000..24912bfb3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/light_gray_candle_lit", + "particle": "minecraft:block/light_gray_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_one_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_one_candle.json new file mode 100644 index 000000000..b329a1002 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/light_gray_candle", + "particle": "minecraft:block/light_gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_one_candle_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_one_candle_lit.json new file mode 100644 index 000000000..1099f9a53 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/light_gray_candle_lit", + "particle": "minecraft:block/light_gray_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_three_candles.json new file mode 100644 index 000000000..097d975f3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/light_gray_candle", + "particle": "minecraft:block/light_gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_three_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_three_candles_lit.json new file mode 100644 index 000000000..85f44ad70 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/light_gray_candle_lit", + "particle": "minecraft:block/light_gray_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_two_candles.json new file mode 100644 index 000000000..73639430b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/light_gray_candle", + "particle": "minecraft:block/light_gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_two_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_two_candles_lit.json new file mode 100644 index 000000000..8010674d0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/light_gray_candle_lit", + "particle": "minecraft:block/light_gray_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_carpet.json new file mode 100644 index 000000000..290423195 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/light_gray_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_concrete.json new file mode 100644 index 000000000..a723d19ed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_gray_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_concrete_powder.json new file mode 100644 index 000000000..bcbe68535 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_gray_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_glazed_terracotta.json new file mode 100644 index 000000000..4732a3565 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/light_gray_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_shulker_box.json new file mode 100644 index 000000000..265780f91 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/light_gray_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass.json new file mode 100644 index 000000000..bf861d69a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_noside.json new file mode 100644 index 000000000..e31a39fd1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/light_gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..3b24feda7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/light_gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_post.json new file mode 100644 index 000000000..8efbcf68b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/light_gray_stained_glass_pane_top", + "pane": "minecraft:block/light_gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_side.json new file mode 100644 index 000000000..11e77c2c1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/light_gray_stained_glass_pane_top", + "pane": "minecraft:block/light_gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..241d75995 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/light_gray_stained_glass_pane_top", + "pane": "minecraft:block/light_gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_terracotta.json new file mode 100644 index 000000000..19aa64022 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_gray_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_wool.json new file mode 100644 index 000000000..d490cc2ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_gray_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/light_gray_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_weighted_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_weighted_pressure_plate.json new file mode 100644 index 000000000..7941d43f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_weighted_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/gold_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_weighted_pressure_plate_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_weighted_pressure_plate_down.json new file mode 100644 index 000000000..8e9c29265 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/light_weighted_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/gold_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lightning_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lightning_rod.json new file mode 100644 index 000000000..65b8f2ed5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lightning_rod.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_lightning_rod", + "textures": { + "texture": "minecraft:block/lightning_rod" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lightning_rod_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lightning_rod_on.json new file mode 100644 index 000000000..1796303bb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lightning_rod_on.json @@ -0,0 +1,6 @@ +{ + "parent": "block/template_lightning_rod", + "textures": { + "texture": "block/lightning_rod_on" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lilac_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lilac_bottom.json new file mode 100644 index 000000000..e1bf8969e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lilac_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/lilac_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lilac_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lilac_top.json new file mode 100644 index 000000000..e5fc35b7e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lilac_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/lilac_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lily_of_the_valley.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lily_of_the_valley.json new file mode 100644 index 000000000..6f0a89acb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lily_of_the_valley.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/lily_of_the_valley" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lily_pad.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lily_pad.json new file mode 100644 index 000000000..6b27e40bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lily_pad.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/lily_pad", + "texture": "block/lily_pad" + }, + "elements": [ + { "from": [ 0, 0.25, 0 ], + "to": [ 16, 0.25, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture", "tintindex": 0 }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_cake.json new file mode 100644 index 000000000..91326eabe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/lime_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_cake_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_cake_lit.json new file mode 100644 index 000000000..45657c7bb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/lime_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_four_candles.json new file mode 100644 index 000000000..55b45a956 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/lime_candle", + "particle": "minecraft:block/lime_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_four_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_four_candles_lit.json new file mode 100644 index 000000000..85a6d2fe8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/lime_candle_lit", + "particle": "minecraft:block/lime_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_one_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_one_candle.json new file mode 100644 index 000000000..254b4eb44 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/lime_candle", + "particle": "minecraft:block/lime_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_one_candle_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_one_candle_lit.json new file mode 100644 index 000000000..a6c8b9877 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/lime_candle_lit", + "particle": "minecraft:block/lime_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_three_candles.json new file mode 100644 index 000000000..e71d2220f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/lime_candle", + "particle": "minecraft:block/lime_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_three_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_three_candles_lit.json new file mode 100644 index 000000000..738f8dc47 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/lime_candle_lit", + "particle": "minecraft:block/lime_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_two_candles.json new file mode 100644 index 000000000..50edf847e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/lime_candle", + "particle": "minecraft:block/lime_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_two_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_two_candles_lit.json new file mode 100644 index 000000000..5736293c2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/lime_candle_lit", + "particle": "minecraft:block/lime_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_carpet.json new file mode 100644 index 000000000..028c49876 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/lime_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_concrete.json new file mode 100644 index 000000000..e0e921233 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/lime_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_concrete_powder.json new file mode 100644 index 000000000..48f4b6966 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/lime_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_glazed_terracotta.json new file mode 100644 index 000000000..b6211a739 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/lime_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_shulker_box.json new file mode 100644 index 000000000..aafff7ddc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/lime_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass.json new file mode 100644 index 000000000..b06899ca0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/lime_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_noside.json new file mode 100644 index 000000000..51a062c54 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/lime_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..7b0a67ac4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/lime_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_post.json new file mode 100644 index 000000000..92ec01f0c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/lime_stained_glass_pane_top", + "pane": "minecraft:block/lime_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_side.json new file mode 100644 index 000000000..c54306a07 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/lime_stained_glass_pane_top", + "pane": "minecraft:block/lime_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..6f12dd062 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/lime_stained_glass_pane_top", + "pane": "minecraft:block/lime_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_terracotta.json new file mode 100644 index 000000000..7a7ee7761 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/lime_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_wool.json new file mode 100644 index 000000000..3452083bb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lime_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/lime_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lodestone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lodestone.json new file mode 100644 index 000000000..f38f3e9ab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/lodestone.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/lodestone_top", + "side": "minecraft:block/lodestone_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/loom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/loom.json new file mode 100644 index 000000000..66f7792d3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/loom.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/orientable_with_bottom", + "textures": { + "bottom": "minecraft:block/loom_bottom", + "front": "minecraft:block/loom_front", + "side": "minecraft:block/loom_side", + "top": "minecraft:block/loom_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_cake.json new file mode 100644 index 000000000..4f8d51e17 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/magenta_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_cake_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_cake_lit.json new file mode 100644 index 000000000..0aadfeb3a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/magenta_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_four_candles.json new file mode 100644 index 000000000..cc10d412c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/magenta_candle", + "particle": "minecraft:block/magenta_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_four_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_four_candles_lit.json new file mode 100644 index 000000000..5c41051c2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/magenta_candle_lit", + "particle": "minecraft:block/magenta_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_one_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_one_candle.json new file mode 100644 index 000000000..6cbff9415 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/magenta_candle", + "particle": "minecraft:block/magenta_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_one_candle_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_one_candle_lit.json new file mode 100644 index 000000000..39f81c171 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/magenta_candle_lit", + "particle": "minecraft:block/magenta_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_three_candles.json new file mode 100644 index 000000000..90d34d68a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/magenta_candle", + "particle": "minecraft:block/magenta_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_three_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_three_candles_lit.json new file mode 100644 index 000000000..f648690cc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/magenta_candle_lit", + "particle": "minecraft:block/magenta_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_two_candles.json new file mode 100644 index 000000000..128514c35 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/magenta_candle", + "particle": "minecraft:block/magenta_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_two_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_two_candles_lit.json new file mode 100644 index 000000000..476532a77 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/magenta_candle_lit", + "particle": "minecraft:block/magenta_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_carpet.json new file mode 100644 index 000000000..466161a36 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/magenta_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_concrete.json new file mode 100644 index 000000000..73bbc6d4e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/magenta_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_concrete_powder.json new file mode 100644 index 000000000..e5a38d463 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/magenta_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_glazed_terracotta.json new file mode 100644 index 000000000..f36a5e7da --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/magenta_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_shulker_box.json new file mode 100644 index 000000000..6bb156a3a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/magenta_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass.json new file mode 100644 index 000000000..6e4da4cad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/magenta_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_noside.json new file mode 100644 index 000000000..8d6019b83 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/magenta_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..7b2ba6d59 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/magenta_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_post.json new file mode 100644 index 000000000..d19e82174 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/magenta_stained_glass_pane_top", + "pane": "minecraft:block/magenta_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_side.json new file mode 100644 index 000000000..4fd5b6223 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/magenta_stained_glass_pane_top", + "pane": "minecraft:block/magenta_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..06ff17ab3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/magenta_stained_glass_pane_top", + "pane": "minecraft:block/magenta_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_terracotta.json new file mode 100644 index 000000000..bd2bcfa0b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/magenta_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_wool.json new file mode 100644 index 000000000..9111ee09a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magenta_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/magenta_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magma_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magma_block.json new file mode 100644 index 000000000..b9678ef15 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/magma_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/magma" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_button.json new file mode 100644 index 000000000..c5854e735 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_button_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_button_inventory.json new file mode 100644 index 000000000..b79a34dbf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_button_pressed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_button_pressed.json new file mode 100644 index 000000000..6981fdfb2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_left.json new file mode 100644 index 000000000..621e58e99 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/mangrove_door_bottom", + "top": "minecraft:block/mangrove_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_left_open.json new file mode 100644 index 000000000..93f1c66e4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/mangrove_door_bottom", + "top": "minecraft:block/mangrove_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_right.json new file mode 100644 index 000000000..5789fc870 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/mangrove_door_bottom", + "top": "minecraft:block/mangrove_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_right_open.json new file mode 100644 index 000000000..867d02057 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/mangrove_door_bottom", + "top": "minecraft:block/mangrove_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_top_left.json new file mode 100644 index 000000000..c4f7b2872 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/mangrove_door_bottom", + "top": "minecraft:block/mangrove_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_top_left_open.json new file mode 100644 index 000000000..37008c90d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/mangrove_door_bottom", + "top": "minecraft:block/mangrove_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_top_right.json new file mode 100644 index 000000000..856a014e7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/mangrove_door_bottom", + "top": "minecraft:block/mangrove_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_top_right_open.json new file mode 100644 index 000000000..7135cd92b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/mangrove_door_bottom", + "top": "minecraft:block/mangrove_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate.json new file mode 100644 index 000000000..b09253c7d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_open.json new file mode 100644 index 000000000..00395e06d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_wall.json new file mode 100644 index 000000000..b6a2f0eda --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_wall_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_wall_open.json new file mode 100644 index 000000000..34950c038 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_inventory.json new file mode 100644 index 000000000..dd63182e7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_post.json new file mode 100644 index 000000000..49dc45bc9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_side.json new file mode 100644 index 000000000..2f3b40b3e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_hanging_sign.json new file mode 100644 index 000000000..0dbd21772 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_leaves.json new file mode 100644 index 000000000..1500d9972 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/mangrove_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_log.json new file mode 100644 index 000000000..da5639018 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/mangrove_log_top", + "side": "minecraft:block/mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_log_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_log_horizontal.json new file mode 100644 index 000000000..a2b809c20 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/mangrove_log_top", + "side": "minecraft:block/mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_planks.json new file mode 100644 index 000000000..ec9b48e91 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_pressure_plate.json new file mode 100644 index 000000000..7d8127274 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_pressure_plate_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_pressure_plate_down.json new file mode 100644 index 000000000..1fc80b84c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule.json new file mode 100644 index 000000000..02d4c1a53 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule.json @@ -0,0 +1,49 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/mangrove_propagule", + "sapling": "block/mangrove_propagule" + }, + "elements": [ + { + "name": "leaves", + "from": [4.5, 9, 8], + "to": [11.5, 15, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8], "rescale": true}, + "faces": { + "north": {"uv": [4, 1, 11, 7], "texture": "#sapling"}, + "south": {"uv": [4, 1, 11, 7], "texture": "#sapling"} + } + }, + { + "name": "leaves", + "from": [8, 9, 4.5], + "to": [8, 15, 11.5], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8], "rescale": true}, + "faces": { + "east": {"uv": [4, 1, 11, 7], "texture": "#sapling"}, + "west": {"uv": [4, 1, 11, 7], "texture": "#sapling"} + } + }, + { + "name": "hypocotyl", + "from": [8, 0, 7], + "to": [8, 9, 9], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8], "rescale": true}, + "faces": { + "east": {"uv": [7, 7, 9, 16], "texture": "#sapling"}, + "west": {"uv": [7, 7, 9, 16], "texture": "#sapling"} + } + }, + { + "name": "hypocotyl", + "from": [7, 0, 8], + "to": [9, 9, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8], "rescale": true}, + "faces": { + "north": {"uv": [7, 7, 9, 16], "texture": "#sapling"}, + "south": {"uv": [7, 7, 9, 16], "texture": "#sapling"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_0.json new file mode 100644 index 000000000..f6c4a9bee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_0.json @@ -0,0 +1,100 @@ +{ + "parent": "block/block", + "textures": { + "propagule": "block/mangrove_propagule_hanging", + "particle": "block/mangrove_propagule_hanging" + }, + "elements": [ + { + "from": [7, 13.61104, 10.07193], + "to": [9, 13.61104, 12.07193], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 180, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "texture": "#propagule"} + } + }, + { + "from": [10.07193, 13.61104, 7], + "to": [12.07193, 13.61104, 9], + "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 90, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 90, "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 3.92807], + "to": [9, 13.61104, 5.92807], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 180, "texture": "#propagule"} + } + }, + { + "from": [3.92807, 13.61104, 7], + "to": [5.92807, 13.61104, 9], + "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 270, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 270, "texture": "#propagule"} + } + }, + { + "from": [7, 13, 7], + "to": [9, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "east": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "south": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "west": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "down": {"uv": [0, 3, 2, 5], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_1.json new file mode 100644 index 000000000..2bea314e8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_1.json @@ -0,0 +1,113 @@ +{ + "parent": "block/block", + "textures": { + "propagule": "block/mangrove_propagule_hanging", + "particle": "block/mangrove_propagule_hanging" + }, + "elements": [ + { + "from": [7, 10, 7], + "to": [9, 13, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "east": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "south": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "west": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "up": {"uv": [0, 5, 2, 7], "texture": "#propagule"}, + "down": {"uv": [0, 5, 2, 7], "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 10.07193], + "to": [9, 13.61104, 12.07193], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 180, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "texture": "#propagule"} + } + }, + { + "from": [10.07193, 13.61104, 7], + "to": [12.07193, 13.61104, 9], + "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 90, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 90, "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 3.92807], + "to": [9, 13.61104, 5.92807], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 180, "texture": "#propagule"} + } + }, + { + "from": [3.92807, 13.61104, 7], + "to": [5.92807, 13.61104, 9], + "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 270, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 270, "texture": "#propagule"} + } + }, + { + "from": [7, 13, 7], + "to": [9, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "east": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "south": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "west": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "down": {"uv": [0, 3, 2, 5], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_2.json new file mode 100644 index 000000000..fc008f495 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_2.json @@ -0,0 +1,139 @@ +{ + "parent": "block/block", + "textures": { + "propagule": "block/mangrove_propagule_hanging", + "particle": "block/mangrove_propagule_hanging" + }, + "elements": [ + { + "from": [7, 10, 7], + "to": [9, 13, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "east": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "south": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "west": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "up": {"uv": [0, 5, 2, 7], "texture": "#propagule"}, + "down": {"uv": [0, 10, 2, 12], "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 10.07193], + "to": [9, 13.61104, 12.07193], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 180, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "texture": "#propagule"} + } + }, + { + "from": [10.07193, 13.61104, 7], + "to": [12.07193, 13.61104, 9], + "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 90, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 90, "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 3.92807], + "to": [9, 13.61104, 5.92807], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 180, "texture": "#propagule"} + } + }, + { + "from": [3.92807, 13.61104, 7], + "to": [5.92807, 13.61104, 9], + "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 270, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 270, "texture": "#propagule"} + } + }, + { + "from": [7, 13, 7], + "to": [9, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "east": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "south": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "west": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "down": {"uv": [0, 3, 2, 5], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + }, + { + "from": [7, 7, 8], + "to": [9, 10, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [3, 7, 5, 10], "texture": "#propagule"}, + "east": {"uv": [13, 0, 13, 10], "texture": "#propagule"}, + "south": {"uv": [3, 7, 5, 10], "texture": "#propagule"}, + "west": {"uv": [11, 0, 11, 10], "texture": "#propagule"}, + "up": {"uv": [11, 0, 13, 0], "texture": "#propagule"}, + "down": {"uv": [11, 10, 13, 10], "texture": "#propagule"} + } + }, + { + "from": [7, 7, 8], + "to": [9, 10, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [3, 7, 5, 10], "texture": "#propagule"}, + "east": {"uv": [11, 0, 11, 10], "texture": "#propagule"}, + "south": {"uv": [3, 7, 5, 10], "texture": "#propagule"}, + "west": {"uv": [13, 0, 13, 10], "texture": "#propagule"}, + "up": {"uv": [11, 0, 13, 0], "rotation": 180, "texture": "#propagule"}, + "down": {"uv": [11, 10, 13, 10], "rotation": 180, "texture": "#propagule"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_3.json new file mode 100644 index 000000000..4ea6db3d2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_3.json @@ -0,0 +1,139 @@ +{ + "parent": "block/block", + "textures": { + "propagule": "block/mangrove_propagule_hanging", + "particle": "block/mangrove_propagule_hanging" + }, + "elements": [ + { + "from": [7, 10, 7], + "to": [9, 13, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "east": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "south": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "west": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "up": {"uv": [0, 5, 2, 7], "texture": "#propagule"}, + "down": {"uv": [0, 10, 2, 12], "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 10.07193], + "to": [9, 13.61104, 12.07193], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 180, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "texture": "#propagule"} + } + }, + { + "from": [10.07193, 13.61104, 7], + "to": [12.07193, 13.61104, 9], + "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 90, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 90, "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 3.92807], + "to": [9, 13.61104, 5.92807], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 180, "texture": "#propagule"} + } + }, + { + "from": [3.92807, 13.61104, 7], + "to": [5.92807, 13.61104, 9], + "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 270, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 270, "texture": "#propagule"} + } + }, + { + "from": [7, 13, 7], + "to": [9, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "east": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "south": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "west": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "down": {"uv": [0, 3, 2, 5], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + }, + { + "from": [7, 3, 8], + "to": [9, 10, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [3, 3, 5, 10], "texture": "#propagule"}, + "east": {"uv": [13, 0, 13, 10], "texture": "#propagule"}, + "south": {"uv": [3, 3, 5, 10], "texture": "#propagule"}, + "west": {"uv": [11, 0, 11, 10], "texture": "#propagule"}, + "up": {"uv": [11, 0, 13, 0], "texture": "#propagule"}, + "down": {"uv": [11, 10, 13, 10], "texture": "#propagule"} + } + }, + { + "from": [7, 3, 8], + "to": [9, 10, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [3, 3, 5, 10], "texture": "#propagule"}, + "east": {"uv": [11, 0, 11, 10], "texture": "#propagule"}, + "south": {"uv": [3, 3, 5, 10], "texture": "#propagule"}, + "west": {"uv": [13, 0, 13, 10], "texture": "#propagule"}, + "up": {"uv": [11, 0, 13, 0], "rotation": 180, "texture": "#propagule"}, + "down": {"uv": [11, 10, 13, 10], "rotation": 180, "texture": "#propagule"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_4.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_4.json new file mode 100644 index 000000000..a6086f3af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_propagule_hanging_4.json @@ -0,0 +1,139 @@ +{ + "parent": "block/block", + "textures": { + "propagule": "block/mangrove_propagule_hanging", + "particle": "block/mangrove_propagule_hanging" + }, + "elements": [ + { + "from": [7, 10, 7], + "to": [9, 13, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "east": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "south": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "west": {"uv": [0, 7, 2, 10], "texture": "#propagule"}, + "up": {"uv": [0, 5, 2, 7], "texture": "#propagule"}, + "down": {"uv": [0, 10, 2, 12], "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 10.07193], + "to": [9, 13.61104, 12.07193], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 180, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "texture": "#propagule"} + } + }, + { + "from": [10.07193, 13.61104, 7], + "to": [12.07193, 13.61104, 9], + "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 90, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 90, "texture": "#propagule"} + } + }, + { + "from": [7, 13.61104, 3.92807], + "to": [9, 13.61104, 5.92807], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 180, "texture": "#propagule"} + } + }, + { + "from": [3.92807, 13.61104, 7], + "to": [5.92807, 13.61104, 9], + "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "up": {"uv": [8, 3, 10, 5], "rotation": 270, "texture": "#propagule"}, + "down": {"uv": [6, 3, 8, 5], "rotation": 270, "texture": "#propagule"} + } + }, + { + "from": [7, 13, 7], + "to": [9, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "east": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "south": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "west": {"uv": [0, 2, 2, 3], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "down": {"uv": [0, 3, 2, 5], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + }, + { + "from": [7, 14, 8], + "to": [9, 16, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#propagule"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#propagule"}, + "up": {"uv": [0, 0, 2, 0], "texture": "#propagule"}, + "down": {"uv": [0, 0, 2, 0], "texture": "#propagule"} + } + }, + { + "from": [7, 0, 8], + "to": [9, 10, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [3, 0, 5, 10], "texture": "#propagule"}, + "east": {"uv": [13, 0, 13, 10], "texture": "#propagule"}, + "south": {"uv": [3, 0, 5, 10], "texture": "#propagule"}, + "west": {"uv": [11, 0, 11, 10], "texture": "#propagule"}, + "up": {"uv": [11, 0, 13, 0], "texture": "#propagule"}, + "down": {"uv": [11, 10, 13, 10], "texture": "#propagule"} + } + }, + { + "from": [7, 0, 8], + "to": [9, 10, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [3, 0, 5, 10], "texture": "#propagule"}, + "east": {"uv": [11, 0, 11, 10], "texture": "#propagule"}, + "south": {"uv": [3, 0, 5, 10], "texture": "#propagule"}, + "west": {"uv": [13, 0, 13, 10], "texture": "#propagule"}, + "up": {"uv": [11, 0, 13, 0], "rotation": 180, "texture": "#propagule"}, + "down": {"uv": [11, 10, 13, 10], "rotation": 180, "texture": "#propagule"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_roots.json new file mode 100644 index 000000000..eda9523de --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_roots.json @@ -0,0 +1,74 @@ +{ + "parent": "block/block", + "textures": { + "side": "block/mangrove_roots_side", + "top": "block/mangrove_roots_top", + "particle": "#side" + }, + "elements": [ + { + "from": [ 0, 0, 8 ], + "to": [ 16, 16, 8 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#side" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#side" } + } + }, + { + "from": [ 8, 0, 0 ], + "to": [ 8, 16, 16 ], + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#side" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#side" } + } + }, + { + "from": [ 0, 15.998, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#top", "cullface": "up" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "up" } + } + }, + { + "from": [ 0, 0, 0 ], + "to": [ 16, 0.002, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "down" }, + "up": { "uv": [ 0, 16, 16, 0 ], "texture": "#top", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 0.002 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 16, 0, 0, 16 ], "texture": "#side", "cullface": "north" } + } + }, + { + "from": [ 0, 0, 15.998 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#side", "cullface": "south" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "south" } + } + }, + { + "from": [ 0, 0, 0 ], + "to": [ 0.002, 16, 16 ], + "faces": { + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#side", "cullface": "west" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "west" } + } + }, + { + "from": [ 15.998, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "east" }, + "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf.json new file mode 100644 index 000000000..3d368f638 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_body", + "textures": { + "all": "minecraft:block/mangrove_shelf", + "particle": "minecraft:block/stripped_mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_center.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_center.json new file mode 100644 index 000000000..3be4f681f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_center.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_center", + "textures": { + "all": "minecraft:block/mangrove_shelf", + "particle": "minecraft:block/stripped_mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_inventory.json new file mode 100644 index 000000000..5ee77c89f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_inventory.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_inventory", + "textures": { + "all": "minecraft:block/mangrove_shelf", + "particle": "minecraft:block/stripped_mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_left.json new file mode 100644 index 000000000..9388d8628 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_left", + "textures": { + "all": "minecraft:block/mangrove_shelf", + "particle": "minecraft:block/stripped_mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_right.json new file mode 100644 index 000000000..4be075b10 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_right", + "textures": { + "all": "minecraft:block/mangrove_shelf", + "particle": "minecraft:block/stripped_mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_unconnected.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_unconnected.json new file mode 100644 index 000000000..155e7092b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_unconnected.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unconnected", + "textures": { + "all": "minecraft:block/mangrove_shelf", + "particle": "minecraft:block/stripped_mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_unpowered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_unpowered.json new file mode 100644 index 000000000..5118fdeca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_shelf_unpowered.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unpowered", + "textures": { + "all": "minecraft:block/mangrove_shelf", + "particle": "minecraft:block/stripped_mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_sign.json new file mode 100644 index 000000000..a3868f4fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_slab.json new file mode 100644 index 000000000..1808d03d7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/mangrove_planks", + "side": "minecraft:block/mangrove_planks", + "top": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_slab_top.json new file mode 100644 index 000000000..a888006fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/mangrove_planks", + "side": "minecraft:block/mangrove_planks", + "top": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_stairs.json new file mode 100644 index 000000000..6f676ac97 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/mangrove_planks", + "side": "minecraft:block/mangrove_planks", + "top": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_stairs_inner.json new file mode 100644 index 000000000..54a1272cf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/mangrove_planks", + "side": "minecraft:block/mangrove_planks", + "top": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_stairs_outer.json new file mode 100644 index 000000000..a1b41e1d0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/mangrove_planks", + "side": "minecraft:block/mangrove_planks", + "top": "minecraft:block/mangrove_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_bottom.json new file mode 100644 index 000000000..41aef9af1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/mangrove_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_open.json new file mode 100644 index 000000000..25e378a1f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/mangrove_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_top.json new file mode 100644 index 000000000..89513531b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/mangrove_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_wood.json new file mode 100644 index 000000000..b831a362c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mangrove_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/mangrove_log", + "side": "minecraft:block/mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/medium_amethyst_bud.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/medium_amethyst_bud.json new file mode 100644 index 000000000..c69ea2a06 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/medium_amethyst_bud.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/medium_amethyst_bud" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon.json new file mode 100644 index 000000000..ef3816b94 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/melon_top", + "side": "minecraft:block/melon_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage0.json new file mode 100644 index 000000000..7f8918c50 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth0", + "textures": { + "stem": "minecraft:block/melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage1.json new file mode 100644 index 000000000..0d573b71a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth1", + "textures": { + "stem": "minecraft:block/melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage2.json new file mode 100644 index 000000000..c1934202b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth2", + "textures": { + "stem": "minecraft:block/melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage3.json new file mode 100644 index 000000000..8b4ef33f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth3", + "textures": { + "stem": "minecraft:block/melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage4.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage4.json new file mode 100644 index 000000000..cba7914b4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth4", + "textures": { + "stem": "minecraft:block/melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage5.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage5.json new file mode 100644 index 000000000..bd48d3f10 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth5", + "textures": { + "stem": "minecraft:block/melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage6.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage6.json new file mode 100644 index 000000000..c8f07f261 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth6", + "textures": { + "stem": "minecraft:block/melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage7.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage7.json new file mode 100644 index 000000000..2b479f700 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/melon_stem_stage7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth7", + "textures": { + "stem": "minecraft:block/melon_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/moss_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/moss_block.json new file mode 100644 index 000000000..3c2c9bcce --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/moss_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/moss_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/moss_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/moss_carpet.json new file mode 100644 index 000000000..3e5e68f25 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/moss_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/moss_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_carpet_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_carpet_side.json new file mode 100644 index 000000000..e63ad2dd2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_carpet_side.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": true, + "textures": { + "particle": "#side" + }, + "elements": [ + { "from": [ 0, 0, 0.1 ], + "to": [ 16, 16, 0.1 ], + "shade": true, + "faces": { + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#side"}, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#side"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone.json new file mode 100644 index 000000000..8767f35ce --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_slab.json new file mode 100644 index 000000000..b59badb12 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/mossy_cobblestone", + "side": "minecraft:block/mossy_cobblestone", + "top": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_slab_top.json new file mode 100644 index 000000000..16d9aa745 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/mossy_cobblestone", + "side": "minecraft:block/mossy_cobblestone", + "top": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs.json new file mode 100644 index 000000000..26a21edd8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/mossy_cobblestone", + "side": "minecraft:block/mossy_cobblestone", + "top": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs_inner.json new file mode 100644 index 000000000..49ffa9810 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/mossy_cobblestone", + "side": "minecraft:block/mossy_cobblestone", + "top": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs_outer.json new file mode 100644 index 000000000..4ac59fa17 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/mossy_cobblestone", + "side": "minecraft:block/mossy_cobblestone", + "top": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_inventory.json new file mode 100644 index 000000000..ea176a423 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_post.json new file mode 100644 index 000000000..b6be998c2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_side.json new file mode 100644 index 000000000..43c6c7063 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_side_tall.json new file mode 100644 index 000000000..969359899 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_cobblestone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/mossy_cobblestone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_slab.json new file mode 100644 index 000000000..80aa24567 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/mossy_stone_bricks", + "side": "minecraft:block/mossy_stone_bricks", + "top": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_slab_top.json new file mode 100644 index 000000000..03570970c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/mossy_stone_bricks", + "side": "minecraft:block/mossy_stone_bricks", + "top": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs.json new file mode 100644 index 000000000..301d37ceb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/mossy_stone_bricks", + "side": "minecraft:block/mossy_stone_bricks", + "top": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs_inner.json new file mode 100644 index 000000000..bf4698a3c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/mossy_stone_bricks", + "side": "minecraft:block/mossy_stone_bricks", + "top": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs_outer.json new file mode 100644 index 000000000..b7d6b8f1d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/mossy_stone_bricks", + "side": "minecraft:block/mossy_stone_bricks", + "top": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_inventory.json new file mode 100644 index 000000000..e6822feac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_post.json new file mode 100644 index 000000000..569428049 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_side.json new file mode 100644 index 000000000..13fdfa2e6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_side_tall.json new file mode 100644 index 000000000..265f6c3fd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_bricks.json new file mode 100644 index 000000000..4a4fa5aea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mossy_stone_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/moving_piston.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/moving_piston.json new file mode 100644 index 000000000..021eedbeb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/moving_piston.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/piston_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud.json new file mode 100644 index 000000000..5cfbb594d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/mud" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_slab.json new file mode 100644 index 000000000..f42d900fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/mud_bricks", + "side": "minecraft:block/mud_bricks", + "top": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_slab_top.json new file mode 100644 index 000000000..0208a1c47 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/mud_bricks", + "side": "minecraft:block/mud_bricks", + "top": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_stairs.json new file mode 100644 index 000000000..b56d553a7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/mud_bricks", + "side": "minecraft:block/mud_bricks", + "top": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_stairs_inner.json new file mode 100644 index 000000000..de826957b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/mud_bricks", + "side": "minecraft:block/mud_bricks", + "top": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_stairs_outer.json new file mode 100644 index 000000000..ebdb5c0ef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/mud_bricks", + "side": "minecraft:block/mud_bricks", + "top": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_wall_inventory.json new file mode 100644 index 000000000..f84a0e64c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_wall_post.json new file mode 100644 index 000000000..baa01c2c6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_wall_side.json new file mode 100644 index 000000000..c7ca96bcc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_wall_side_tall.json new file mode 100644 index 000000000..916ff6851 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_bricks.json new file mode 100644 index 000000000..7ec0e500d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_bricks_north_west_mirrored.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_bricks_north_west_mirrored.json new file mode 100644 index 000000000..84815dd75 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mud_bricks_north_west_mirrored.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_north_west_mirrored_all", + "textures": { + "all": "minecraft:block/mud_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/muddy_mangrove_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/muddy_mangrove_roots.json new file mode 100644 index 000000000..b3088afa7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/muddy_mangrove_roots.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/muddy_mangrove_roots_top", + "side": "minecraft:block/muddy_mangrove_roots_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mushroom_block_inside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mushroom_block_inside.json new file mode 100644 index 000000000..8c7b37134 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mushroom_block_inside.json @@ -0,0 +1,6 @@ +{ + "parent": "block/template_single_face", + "textures": { + "texture": "block/mushroom_block_inside" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mushroom_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mushroom_stem.json new file mode 100644 index 000000000..76f8cdbc1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mushroom_stem.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_single_face", + "textures": { + "texture": "minecraft:block/mushroom_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mushroom_stem_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mushroom_stem_inventory.json new file mode 100644 index 000000000..ed3732724 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mushroom_stem_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/mushroom_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mycelium.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mycelium.json new file mode 100644 index 000000000..a49b04e7f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/mycelium.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/dirt", + "side": "minecraft:block/mycelium_side", + "top": "minecraft:block/mycelium_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_fence_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_fence_inventory.json new file mode 100644 index 000000000..c66b932e0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_fence_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_fence_post.json new file mode 100644 index 000000000..22f5ac945 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_fence_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_fence_side.json new file mode 100644 index 000000000..1daddd0af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_slab.json new file mode 100644 index 000000000..82bd330fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/nether_bricks", + "side": "minecraft:block/nether_bricks", + "top": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_slab_top.json new file mode 100644 index 000000000..d9a53ec0e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/nether_bricks", + "side": "minecraft:block/nether_bricks", + "top": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_stairs.json new file mode 100644 index 000000000..f6656789d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/nether_bricks", + "side": "minecraft:block/nether_bricks", + "top": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_stairs_inner.json new file mode 100644 index 000000000..5569ed421 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/nether_bricks", + "side": "minecraft:block/nether_bricks", + "top": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_stairs_outer.json new file mode 100644 index 000000000..6140b9d72 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/nether_bricks", + "side": "minecraft:block/nether_bricks", + "top": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_wall_inventory.json new file mode 100644 index 000000000..ef71ac4ec --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_wall_post.json new file mode 100644 index 000000000..5d5393763 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_wall_side.json new file mode 100644 index 000000000..19b01afdb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_wall_side_tall.json new file mode 100644 index 000000000..e368b6915 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_bricks.json new file mode 100644 index 000000000..19ca75ce7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_gold_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_gold_ore.json new file mode 100644 index 000000000..a7a48a50e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_gold_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/nether_gold_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_portal_ew.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_portal_ew.json new file mode 100644 index 000000000..5b7869ab2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_portal_ew.json @@ -0,0 +1,15 @@ +{ + "textures": { + "particle": "block/nether_portal", + "portal": "block/nether_portal" + }, + "elements": [ + { "from": [ 6, 0, 0 ], + "to": [ 10, 16, 16 ], + "faces": { + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#portal" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#portal" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_portal_ns.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_portal_ns.json new file mode 100644 index 000000000..937ca3b9b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_portal_ns.json @@ -0,0 +1,15 @@ +{ + "textures": { + "particle": "block/nether_portal", + "portal": "block/nether_portal" + }, + "elements": [ + { "from": [ 0, 0, 6 ], + "to": [ 16, 16, 10 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#portal" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#portal" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_quartz_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_quartz_ore.json new file mode 100644 index 000000000..831c93fa6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_quartz_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/nether_quartz_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_sprouts.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_sprouts.json new file mode 100644 index 000000000..a13485762 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_sprouts.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/nether_sprouts" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_wart_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_wart_block.json new file mode 100644 index 000000000..e16435355 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_wart_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/nether_wart_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_wart_stage0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_wart_stage0.json new file mode 100644 index 000000000..795414f24 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_wart_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/nether_wart_stage0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_wart_stage1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_wart_stage1.json new file mode 100644 index 000000000..55ac3277a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_wart_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/nether_wart_stage1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_wart_stage2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_wart_stage2.json new file mode 100644 index 000000000..42d5a2ea3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/nether_wart_stage2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/nether_wart_stage2" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/netherite_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/netherite_block.json new file mode 100644 index 000000000..72fa8d9bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/netherite_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/netherite_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/netherrack.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/netherrack.json new file mode 100644 index 000000000..11cebf7ad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/netherrack.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/netherrack" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/note_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/note_block.json new file mode 100644 index 000000000..5d7671bda --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/note_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/note_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_button.json new file mode 100644 index 000000000..67b1c0f39 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_button_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_button_inventory.json new file mode 100644 index 000000000..f58d48690 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_button_pressed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_button_pressed.json new file mode 100644 index 000000000..218d5cf4c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_bottom_left.json new file mode 100644 index 000000000..9cd5e6b23 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/oak_door_bottom", + "top": "minecraft:block/oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_bottom_left_open.json new file mode 100644 index 000000000..9796ce19e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/oak_door_bottom", + "top": "minecraft:block/oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_bottom_right.json new file mode 100644 index 000000000..eefc40952 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/oak_door_bottom", + "top": "minecraft:block/oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_bottom_right_open.json new file mode 100644 index 000000000..2834d9a69 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/oak_door_bottom", + "top": "minecraft:block/oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_top_left.json new file mode 100644 index 000000000..025c7740a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/oak_door_bottom", + "top": "minecraft:block/oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_top_left_open.json new file mode 100644 index 000000000..3d7468e67 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/oak_door_bottom", + "top": "minecraft:block/oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_top_right.json new file mode 100644 index 000000000..fee6d8123 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/oak_door_bottom", + "top": "minecraft:block/oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_top_right_open.json new file mode 100644 index 000000000..0ed1f7fb6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/oak_door_bottom", + "top": "minecraft:block/oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_gate.json new file mode 100644 index 000000000..74e6c4455 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_gate_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_gate_open.json new file mode 100644 index 000000000..c3e37495f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_gate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_gate_wall.json new file mode 100644 index 000000000..9c2c0f39a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_gate_wall_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_gate_wall_open.json new file mode 100644 index 000000000..2b5151791 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_inventory.json new file mode 100644 index 000000000..54282027d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_post.json new file mode 100644 index 000000000..e05dc4ae3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_side.json new file mode 100644 index 000000000..fe4ed99e0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_hanging_sign.json new file mode 100644 index 000000000..97f5acc2b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_leaves.json new file mode 100644 index 000000000..192ebd670 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/oak_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_log.json new file mode 100644 index 000000000..70583e679 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/oak_log_top", + "side": "minecraft:block/oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_log_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_log_horizontal.json new file mode 100644 index 000000000..fd9a02ca0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/oak_log_top", + "side": "minecraft:block/oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_planks.json new file mode 100644 index 000000000..3a21a3f2e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_pressure_plate.json new file mode 100644 index 000000000..3fb5dd7c9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_pressure_plate_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_pressure_plate_down.json new file mode 100644 index 000000000..06c4db732 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_sapling.json new file mode 100644 index 000000000..87354edc3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf.json new file mode 100644 index 000000000..4b0f3db31 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_body", + "textures": { + "all": "minecraft:block/oak_shelf", + "particle": "minecraft:block/stripped_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_center.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_center.json new file mode 100644 index 000000000..81892d5c8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_center.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_center", + "textures": { + "all": "minecraft:block/oak_shelf", + "particle": "minecraft:block/stripped_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_inventory.json new file mode 100644 index 000000000..bf0054f04 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_inventory.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_inventory", + "textures": { + "all": "minecraft:block/oak_shelf", + "particle": "minecraft:block/stripped_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_left.json new file mode 100644 index 000000000..f93de7bab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_left", + "textures": { + "all": "minecraft:block/oak_shelf", + "particle": "minecraft:block/stripped_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_right.json new file mode 100644 index 000000000..8d21a41bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_right", + "textures": { + "all": "minecraft:block/oak_shelf", + "particle": "minecraft:block/stripped_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_unconnected.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_unconnected.json new file mode 100644 index 000000000..f7e024663 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_unconnected.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unconnected", + "textures": { + "all": "minecraft:block/oak_shelf", + "particle": "minecraft:block/stripped_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_unpowered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_unpowered.json new file mode 100644 index 000000000..0d536cc45 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_shelf_unpowered.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unpowered", + "textures": { + "all": "minecraft:block/oak_shelf", + "particle": "minecraft:block/stripped_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_sign.json new file mode 100644 index 000000000..9406a8491 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_slab.json new file mode 100644 index 000000000..f11ff8bad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/oak_planks", + "side": "minecraft:block/oak_planks", + "top": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_slab_top.json new file mode 100644 index 000000000..d7adec0ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/oak_planks", + "side": "minecraft:block/oak_planks", + "top": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_stairs.json new file mode 100644 index 000000000..d959a5f28 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/oak_planks", + "side": "minecraft:block/oak_planks", + "top": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_stairs_inner.json new file mode 100644 index 000000000..2850cc580 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/oak_planks", + "side": "minecraft:block/oak_planks", + "top": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_stairs_outer.json new file mode 100644 index 000000000..78644acd4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/oak_planks", + "side": "minecraft:block/oak_planks", + "top": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_trapdoor_bottom.json new file mode 100644 index 000000000..a4dcb639f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_trapdoor_open.json new file mode 100644 index 000000000..e8b0bb3b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_open", + "textures": { + "texture": "minecraft:block/oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_trapdoor_top.json new file mode 100644 index 000000000..34322d68e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_top", + "textures": { + "texture": "minecraft:block/oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_wood.json new file mode 100644 index 000000000..79a8da036 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oak_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/oak_log", + "side": "minecraft:block/oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/observer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/observer.json new file mode 100644 index 000000000..1b8ca609a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/observer.json @@ -0,0 +1,23 @@ +{ + "parent": "block/block", + "textures": { + "bottom": "block/observer_back", + "side": "block/observer_side", + "top": "block/observer_top", + "front": "block/observer_front", + "particle": "block/observer_front" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "down" }, + "up": { "uv": [ 0, 16, 16, 0 ], "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#front", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/observer_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/observer_on.json new file mode 100644 index 000000000..ee290184e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/observer_on.json @@ -0,0 +1,6 @@ +{ + "parent": "block/observer", + "textures": { + "bottom": "block/observer_back_on" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/obsidian.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/obsidian.json new file mode 100644 index 000000000..104a19940 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/obsidian.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/obsidian" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ochre_froglight.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ochre_froglight.json new file mode 100644 index 000000000..344b79faf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ochre_froglight.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/ochre_froglight_top", + "side": "minecraft:block/ochre_froglight_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ochre_froglight_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ochre_froglight_horizontal.json new file mode 100644 index 000000000..a11db54e7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/ochre_froglight_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/ochre_froglight_top", + "side": "minecraft:block/ochre_froglight_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/open_eyeblossom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/open_eyeblossom.json new file mode 100644 index 000000000..1d2194bbe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/open_eyeblossom.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cross_emissive", + "textures": { + "cross": "minecraft:block/open_eyeblossom", + "cross_emissive": "minecraft:block/open_eyeblossom_emissive" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_cake.json new file mode 100644 index 000000000..9e2b18388 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/orange_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_cake_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_cake_lit.json new file mode 100644 index 000000000..44210f34f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/orange_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_four_candles.json new file mode 100644 index 000000000..4cbb2a4a8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/orange_candle", + "particle": "minecraft:block/orange_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_four_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_four_candles_lit.json new file mode 100644 index 000000000..eb3290683 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/orange_candle_lit", + "particle": "minecraft:block/orange_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_one_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_one_candle.json new file mode 100644 index 000000000..f1cf6b0ed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/orange_candle", + "particle": "minecraft:block/orange_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_one_candle_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_one_candle_lit.json new file mode 100644 index 000000000..0ba73ca25 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/orange_candle_lit", + "particle": "minecraft:block/orange_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_three_candles.json new file mode 100644 index 000000000..d2435363b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/orange_candle", + "particle": "minecraft:block/orange_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_three_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_three_candles_lit.json new file mode 100644 index 000000000..ad1504335 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/orange_candle_lit", + "particle": "minecraft:block/orange_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_two_candles.json new file mode 100644 index 000000000..42bfeb43b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/orange_candle", + "particle": "minecraft:block/orange_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_two_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_two_candles_lit.json new file mode 100644 index 000000000..56c061175 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/orange_candle_lit", + "particle": "minecraft:block/orange_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_carpet.json new file mode 100644 index 000000000..886a5dbfa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/orange_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_concrete.json new file mode 100644 index 000000000..c0f6708a3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/orange_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_concrete_powder.json new file mode 100644 index 000000000..a63474f67 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/orange_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_glazed_terracotta.json new file mode 100644 index 000000000..d39dc99b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/orange_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_shulker_box.json new file mode 100644 index 000000000..202c32578 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/orange_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass.json new file mode 100644 index 000000000..cb420e059 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/orange_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_noside.json new file mode 100644 index 000000000..d54ef0db9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/orange_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..56f2cd0b7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/orange_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_post.json new file mode 100644 index 000000000..2e178a0c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/orange_stained_glass_pane_top", + "pane": "minecraft:block/orange_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_side.json new file mode 100644 index 000000000..9a54ee884 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/orange_stained_glass_pane_top", + "pane": "minecraft:block/orange_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..32ce49a61 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/orange_stained_glass_pane_top", + "pane": "minecraft:block/orange_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_terracotta.json new file mode 100644 index 000000000..2d5e41a14 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/orange_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_tulip.json new file mode 100644 index 000000000..e0b71ccbb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/orange_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_wool.json new file mode 100644 index 000000000..89a99b52b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orange_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/orange_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orientable.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orientable.json new file mode 100644 index 000000000..ad7bf9a73 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orientable.json @@ -0,0 +1,6 @@ +{ + "parent": "block/orientable_with_bottom", + "textures": { + "bottom": "#top" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orientable_vertical.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orientable_vertical.json new file mode 100644 index 000000000..5fb2223a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orientable_vertical.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube", + "textures": { + "particle": "#side", + "down": "#side", + "up": "#front", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orientable_with_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orientable_with_bottom.json new file mode 100644 index 000000000..d03a89bdb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/orientable_with_bottom.json @@ -0,0 +1,19 @@ +{ + "parent": "block/cube", + "display": { + "firstperson_righthand": { + "rotation": [ 0, 135, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.40, 0.40, 0.40 ] + } + }, + "textures": { + "particle": "#front", + "down": "#bottom", + "up": "#top", + "north": "#front", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/outer_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/outer_stairs.json new file mode 100644 index 000000000..03bbe4200 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/outer_stairs.json @@ -0,0 +1,28 @@ +{ + "textures": { + "particle": "#side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 8, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 8, 8, 8 ], + "to": [ 16, 16, 16 ], + "faces": { + "up": { "uv": [ 8, 8, 16, 16 ], "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 0, 0, 8, 8 ], "texture": "#side" }, + "south": { "uv": [ 8, 0, 16, 8 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 8, 0, 16, 8 ], "texture": "#side" }, + "east": { "uv": [ 0, 0, 8, 8 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxeye_daisy.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxeye_daisy.json new file mode 100644 index 000000000..bdc32c2ed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxeye_daisy.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/oxeye_daisy" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_chiseled_copper.json new file mode 100644 index 000000000..a5750a641 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_chiseled_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper.json new file mode 100644 index 000000000..5da2d1ab7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oxidized_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_cap.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_cap.json new file mode 100644 index 000000000..ae7646c0f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_cap.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_cap", + "textures": { + "bars": "minecraft:block/oxidized_copper_bars", + "edge": "minecraft:block/oxidized_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_cap_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_cap_alt.json new file mode 100644 index 000000000..42165a709 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_cap_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_cap_alt", + "textures": { + "bars": "minecraft:block/oxidized_copper_bars", + "edge": "minecraft:block/oxidized_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_post.json new file mode 100644 index 000000000..cdcaed706 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_post", + "textures": { + "bars": "minecraft:block/oxidized_copper_bars", + "edge": "minecraft:block/oxidized_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_post_ends.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_post_ends.json new file mode 100644 index 000000000..fc6d08aba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_post_ends.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_post_ends", + "textures": { + "bars": "minecraft:block/oxidized_copper_bars", + "edge": "minecraft:block/oxidized_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_side.json new file mode 100644 index 000000000..baee4a7ca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_side", + "textures": { + "bars": "minecraft:block/oxidized_copper_bars", + "edge": "minecraft:block/oxidized_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_side_alt.json new file mode 100644 index 000000000..6d5b40eee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bars_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_side_alt", + "textures": { + "bars": "minecraft:block/oxidized_copper_bars", + "edge": "minecraft:block/oxidized_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb.json new file mode 100644 index 000000000..77017a214 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oxidized_copper_bulb" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_lit.json new file mode 100644 index 000000000..b27236f76 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_lit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oxidized_copper_bulb_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_lit_powered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_lit_powered.json new file mode 100644 index 000000000..8977a4555 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_lit_powered.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oxidized_copper_bulb_lit_powered" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_powered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_powered.json new file mode 100644 index 000000000..0bd0856b4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_bulb_powered.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oxidized_copper_bulb_powered" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_chain.json new file mode 100644 index 000000000..8d3508e8b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_chain.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chain", + "textures": { + "texture": "minecraft:block/oxidized_copper_chain" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_chest.json new file mode 100644 index 000000000..1575827a8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_chest.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/oxidized_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_left.json new file mode 100644 index 000000000..730c42d6f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/oxidized_copper_door_bottom", + "top": "minecraft:block/oxidized_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_left_open.json new file mode 100644 index 000000000..ef9ea289e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/oxidized_copper_door_bottom", + "top": "minecraft:block/oxidized_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_right.json new file mode 100644 index 000000000..7ee3c7bf9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/oxidized_copper_door_bottom", + "top": "minecraft:block/oxidized_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_right_open.json new file mode 100644 index 000000000..437ab8b77 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/oxidized_copper_door_bottom", + "top": "minecraft:block/oxidized_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_left.json new file mode 100644 index 000000000..9b519f28b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/oxidized_copper_door_bottom", + "top": "minecraft:block/oxidized_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_left_open.json new file mode 100644 index 000000000..75c867925 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/oxidized_copper_door_bottom", + "top": "minecraft:block/oxidized_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_right.json new file mode 100644 index 000000000..79cfd8401 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/oxidized_copper_door_bottom", + "top": "minecraft:block/oxidized_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_right_open.json new file mode 100644 index 000000000..3a70a3005 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/oxidized_copper_door_bottom", + "top": "minecraft:block/oxidized_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_golem_statue.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_golem_statue.json new file mode 100644 index 000000000..1575827a8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_golem_statue.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/oxidized_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_grate.json new file mode 100644 index 000000000..ffba94489 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_grate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oxidized_copper_grate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_lantern.json new file mode 100644 index 000000000..4b4d7bc1d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_lantern", + "textures": { + "lantern": "minecraft:block/oxidized_copper_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_lantern_hanging.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_lantern_hanging.json new file mode 100644 index 000000000..dd9482c88 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_lantern_hanging.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_hanging_lantern", + "textures": { + "lantern": "minecraft:block/oxidized_copper_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_bottom.json new file mode 100644 index 000000000..37d82f64d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/oxidized_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_open.json new file mode 100644 index 000000000..e606f5de2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_open", + "textures": { + "texture": "minecraft:block/oxidized_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_top.json new file mode 100644 index 000000000..60e1b4398 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_copper_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_top", + "textures": { + "texture": "minecraft:block/oxidized_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper.json new file mode 100644 index 000000000..4ac7bb083 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_slab.json new file mode 100644 index 000000000..f61b04e51 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/oxidized_cut_copper", + "side": "minecraft:block/oxidized_cut_copper", + "top": "minecraft:block/oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_slab_top.json new file mode 100644 index 000000000..06790cf18 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/oxidized_cut_copper", + "side": "minecraft:block/oxidized_cut_copper", + "top": "minecraft:block/oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs.json new file mode 100644 index 000000000..7cebec1de --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/oxidized_cut_copper", + "side": "minecraft:block/oxidized_cut_copper", + "top": "minecraft:block/oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs_inner.json new file mode 100644 index 000000000..c51ee2680 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/oxidized_cut_copper", + "side": "minecraft:block/oxidized_cut_copper", + "top": "minecraft:block/oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs_outer.json new file mode 100644 index 000000000..58f42dc64 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_cut_copper_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/oxidized_cut_copper", + "side": "minecraft:block/oxidized_cut_copper", + "top": "minecraft:block/oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_lightning_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_lightning_rod.json new file mode 100644 index 000000000..790703065 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/oxidized_lightning_rod.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_lightning_rod", + "textures": { + "texture": "minecraft:block/oxidized_lightning_rod" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/packed_ice.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/packed_ice.json new file mode 100644 index 000000000..3af1024f0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/packed_ice.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/packed_ice" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/packed_mud.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/packed_mud.json new file mode 100644 index 000000000..5b637a276 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/packed_mud.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/packed_mud" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_hanging_moss.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_hanging_moss.json new file mode 100644 index 000000000..c4b4d1c82 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_hanging_moss.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/pale_hanging_moss" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_hanging_moss_tip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_hanging_moss_tip.json new file mode 100644 index 000000000..ca893a947 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_hanging_moss_tip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/pale_hanging_moss_tip" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_moss_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_moss_block.json new file mode 100644 index 000000000..e5f25ac4f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_moss_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/pale_moss_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_moss_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_moss_carpet.json new file mode 100644 index 000000000..cc17e46c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_moss_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/pale_moss_carpet" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_moss_carpet_side_small.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_moss_carpet_side_small.json new file mode 100644 index 000000000..08fbb8659 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_moss_carpet_side_small.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/mossy_carpet_side", + "textures": { + "side": "minecraft:block/pale_moss_carpet_side_small" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_moss_carpet_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_moss_carpet_side_tall.json new file mode 100644 index 000000000..6a1c75c76 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_moss_carpet_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/mossy_carpet_side", + "textures": { + "side": "minecraft:block/pale_moss_carpet_side_tall" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_button.json new file mode 100644 index 000000000..898512c57 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_button_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_button_inventory.json new file mode 100644 index 000000000..f15887002 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_button_pressed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_button_pressed.json new file mode 100644 index 000000000..bbbbea086 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_left.json new file mode 100644 index 000000000..04841d82a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/pale_oak_door_bottom", + "top": "minecraft:block/pale_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_left_open.json new file mode 100644 index 000000000..639730e94 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/pale_oak_door_bottom", + "top": "minecraft:block/pale_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_right.json new file mode 100644 index 000000000..1719305b7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/pale_oak_door_bottom", + "top": "minecraft:block/pale_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_right_open.json new file mode 100644 index 000000000..7cd2a1efc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/pale_oak_door_bottom", + "top": "minecraft:block/pale_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_left.json new file mode 100644 index 000000000..ee6559a13 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/pale_oak_door_bottom", + "top": "minecraft:block/pale_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_left_open.json new file mode 100644 index 000000000..16aeb0d39 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/pale_oak_door_bottom", + "top": "minecraft:block/pale_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_right.json new file mode 100644 index 000000000..603238fcf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/pale_oak_door_bottom", + "top": "minecraft:block/pale_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_right_open.json new file mode 100644 index 000000000..f2c0ad5a8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/pale_oak_door_bottom", + "top": "minecraft:block/pale_oak_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate.json new file mode 100644 index 000000000..4038af503 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_open.json new file mode 100644 index 000000000..23b2d2ae5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_wall.json new file mode 100644 index 000000000..4a667a4b0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_wall_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_wall_open.json new file mode 100644 index 000000000..8f558cd8c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_inventory.json new file mode 100644 index 000000000..63aad0b54 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_post.json new file mode 100644 index 000000000..d531237b0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_side.json new file mode 100644 index 000000000..aae5a271e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_hanging_sign.json new file mode 100644 index 000000000..aa64adf26 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_leaves.json new file mode 100644 index 000000000..ed007419c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/pale_oak_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_log.json new file mode 100644 index 000000000..a3803c5fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/pale_oak_log_top", + "side": "minecraft:block/pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_log_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_log_horizontal.json new file mode 100644 index 000000000..8e36591b0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/pale_oak_log_top", + "side": "minecraft:block/pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_planks.json new file mode 100644 index 000000000..685cb0406 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_pressure_plate.json new file mode 100644 index 000000000..260e88006 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_pressure_plate_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_pressure_plate_down.json new file mode 100644 index 000000000..5b0377848 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_sapling.json new file mode 100644 index 000000000..b4ddd4ccf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/pale_oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf.json new file mode 100644 index 000000000..16f9cb605 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_body", + "textures": { + "all": "minecraft:block/pale_oak_shelf", + "particle": "minecraft:block/stripped_pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_center.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_center.json new file mode 100644 index 000000000..e4e482953 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_center.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_center", + "textures": { + "all": "minecraft:block/pale_oak_shelf", + "particle": "minecraft:block/stripped_pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_inventory.json new file mode 100644 index 000000000..a7ea0d576 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_inventory.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_inventory", + "textures": { + "all": "minecraft:block/pale_oak_shelf", + "particle": "minecraft:block/stripped_pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_left.json new file mode 100644 index 000000000..e7af12beb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_left", + "textures": { + "all": "minecraft:block/pale_oak_shelf", + "particle": "minecraft:block/stripped_pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_right.json new file mode 100644 index 000000000..406044cd3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_right", + "textures": { + "all": "minecraft:block/pale_oak_shelf", + "particle": "minecraft:block/stripped_pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_unconnected.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_unconnected.json new file mode 100644 index 000000000..633647803 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_unconnected.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unconnected", + "textures": { + "all": "minecraft:block/pale_oak_shelf", + "particle": "minecraft:block/stripped_pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_unpowered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_unpowered.json new file mode 100644 index 000000000..1a135d0a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_shelf_unpowered.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unpowered", + "textures": { + "all": "minecraft:block/pale_oak_shelf", + "particle": "minecraft:block/stripped_pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_sign.json new file mode 100644 index 000000000..47da6531e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_slab.json new file mode 100644 index 000000000..13b139369 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/pale_oak_planks", + "side": "minecraft:block/pale_oak_planks", + "top": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_slab_top.json new file mode 100644 index 000000000..28a93f06b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/pale_oak_planks", + "side": "minecraft:block/pale_oak_planks", + "top": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_stairs.json new file mode 100644 index 000000000..96793897c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/pale_oak_planks", + "side": "minecraft:block/pale_oak_planks", + "top": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_stairs_inner.json new file mode 100644 index 000000000..bb0597a96 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/pale_oak_planks", + "side": "minecraft:block/pale_oak_planks", + "top": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_stairs_outer.json new file mode 100644 index 000000000..d440f5d6d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/pale_oak_planks", + "side": "minecraft:block/pale_oak_planks", + "top": "minecraft:block/pale_oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_bottom.json new file mode 100644 index 000000000..af013f0c6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/pale_oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_open.json new file mode 100644 index 000000000..bd0aa87ab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/pale_oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_top.json new file mode 100644 index 000000000..86757e055 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/pale_oak_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_wood.json new file mode 100644 index 000000000..5b4e8032c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pale_oak_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/pale_oak_log", + "side": "minecraft:block/pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pearlescent_froglight.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pearlescent_froglight.json new file mode 100644 index 000000000..72ecd971c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pearlescent_froglight.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/pearlescent_froglight_top", + "side": "minecraft:block/pearlescent_froglight_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pearlescent_froglight_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pearlescent_froglight_horizontal.json new file mode 100644 index 000000000..483648f50 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pearlescent_froglight_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/pearlescent_froglight_top", + "side": "minecraft:block/pearlescent_froglight_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/peony_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/peony_bottom.json new file mode 100644 index 000000000..8b7ea9163 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/peony_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/peony_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/peony_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/peony_top.json new file mode 100644 index 000000000..6e0fd6b7a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/peony_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/peony_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/petrified_oak_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/petrified_oak_slab.json new file mode 100644 index 000000000..f11ff8bad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/petrified_oak_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/oak_planks", + "side": "minecraft:block/oak_planks", + "top": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/petrified_oak_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/petrified_oak_slab_top.json new file mode 100644 index 000000000..d7adec0ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/petrified_oak_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/oak_planks", + "side": "minecraft:block/oak_planks", + "top": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_cake.json new file mode 100644 index 000000000..b203df962 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/pink_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_cake_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_cake_lit.json new file mode 100644 index 000000000..3fbdc7af4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/pink_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_four_candles.json new file mode 100644 index 000000000..956b98971 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/pink_candle", + "particle": "minecraft:block/pink_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_four_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_four_candles_lit.json new file mode 100644 index 000000000..5f8c43f1f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/pink_candle_lit", + "particle": "minecraft:block/pink_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_one_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_one_candle.json new file mode 100644 index 000000000..21075a6df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/pink_candle", + "particle": "minecraft:block/pink_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_one_candle_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_one_candle_lit.json new file mode 100644 index 000000000..30c7ad599 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/pink_candle_lit", + "particle": "minecraft:block/pink_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_three_candles.json new file mode 100644 index 000000000..47f2c6f05 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/pink_candle", + "particle": "minecraft:block/pink_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_three_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_three_candles_lit.json new file mode 100644 index 000000000..013f6f74e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/pink_candle_lit", + "particle": "minecraft:block/pink_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_two_candles.json new file mode 100644 index 000000000..92054932f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/pink_candle", + "particle": "minecraft:block/pink_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_two_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_two_candles_lit.json new file mode 100644 index 000000000..0dbe15bf4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/pink_candle_lit", + "particle": "minecraft:block/pink_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_carpet.json new file mode 100644 index 000000000..874e9744c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/pink_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_concrete.json new file mode 100644 index 000000000..d64f49b9e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/pink_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_concrete_powder.json new file mode 100644 index 000000000..b6c6ec124 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/pink_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_glazed_terracotta.json new file mode 100644 index 000000000..6f6bc9f11 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/pink_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_petals_1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_petals_1.json new file mode 100644 index 000000000..38dacd572 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_petals_1.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flowerbed_1", + "textures": { + "flowerbed": "minecraft:block/pink_petals", + "stem": "minecraft:block/pink_petals_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_petals_2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_petals_2.json new file mode 100644 index 000000000..d2701a3c0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_petals_2.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flowerbed_2", + "textures": { + "flowerbed": "minecraft:block/pink_petals", + "stem": "minecraft:block/pink_petals_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_petals_3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_petals_3.json new file mode 100644 index 000000000..34569a213 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_petals_3.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flowerbed_3", + "textures": { + "flowerbed": "minecraft:block/pink_petals", + "stem": "minecraft:block/pink_petals_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_petals_4.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_petals_4.json new file mode 100644 index 000000000..7e132ab82 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_petals_4.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flowerbed_4", + "textures": { + "flowerbed": "minecraft:block/pink_petals", + "stem": "minecraft:block/pink_petals_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_shulker_box.json new file mode 100644 index 000000000..f088a1206 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/pink_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass.json new file mode 100644 index 000000000..bb30dc774 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/pink_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_noside.json new file mode 100644 index 000000000..ea8bf6d6d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/pink_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..14ee3c511 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/pink_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_post.json new file mode 100644 index 000000000..9377bf3dc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/pink_stained_glass_pane_top", + "pane": "minecraft:block/pink_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_side.json new file mode 100644 index 000000000..ec16d6610 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/pink_stained_glass_pane_top", + "pane": "minecraft:block/pink_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..6c54e0730 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/pink_stained_glass_pane_top", + "pane": "minecraft:block/pink_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_terracotta.json new file mode 100644 index 000000000..371277540 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/pink_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_tulip.json new file mode 100644 index 000000000..56946f9cb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/pink_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_wool.json new file mode 100644 index 000000000..0c56bf016 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pink_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/pink_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston.json new file mode 100644 index 000000000..02156a184 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_piston", + "textures": { + "bottom": "minecraft:block/piston_bottom", + "platform": "minecraft:block/piston_top", + "side": "minecraft:block/piston_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_base.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_base.json new file mode 100644 index 000000000..605c2f689 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_base.json @@ -0,0 +1,8 @@ +{ + "parent": "block/piston_extended", + "textures": { + "bottom": "block/piston_bottom", + "side": "block/piston_side", + "inside": "block/piston_inner" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_extended.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_extended.json new file mode 100644 index 000000000..45e04a30c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_extended.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#side" + }, + "elements": [ + { "from": [ 0, 0, 4 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 4, 16, 16 ], "texture": "#side", "cullface": "down", "rotation": 180 }, + "up": { "uv": [ 0, 4, 16, 16 ], "texture": "#side", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#inside" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "south" }, + "west": { "uv": [ 0, 4, 16, 16 ], "texture": "#side", "cullface": "west", "rotation": 270 }, + "east": { "uv": [ 0, 4, 16, 16 ], "texture": "#side", "cullface": "east", "rotation": 90 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_head.json new file mode 100644 index 000000000..2caa096c3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_head.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_piston_head", + "textures": { + "platform": "minecraft:block/piston_top", + "side": "minecraft:block/piston_side", + "unsticky": "minecraft:block/piston_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_head_short.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_head_short.json new file mode 100644 index 000000000..490b1c50f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_head_short.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_piston_head_short", + "textures": { + "platform": "minecraft:block/piston_top", + "side": "minecraft:block/piston_side", + "unsticky": "minecraft:block/piston_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_head_short_sticky.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_head_short_sticky.json new file mode 100644 index 000000000..c5a982048 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_head_short_sticky.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_piston_head_short", + "textures": { + "platform": "minecraft:block/piston_top_sticky", + "side": "minecraft:block/piston_side", + "unsticky": "minecraft:block/piston_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_head_sticky.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_head_sticky.json new file mode 100644 index 000000000..7fa4495a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_head_sticky.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_piston_head", + "textures": { + "platform": "minecraft:block/piston_top_sticky", + "side": "minecraft:block/piston_side", + "unsticky": "minecraft:block/piston_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_inventory.json new file mode 100644 index 000000000..589ed928f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/piston_inventory.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/piston_bottom", + "side": "minecraft:block/piston_side", + "top": "minecraft:block/piston_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_0.json new file mode 100644 index 000000000..7e4423e0d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_0.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top", + "pitcher_top": "block/pitcher_crop_top", + "pitcher_side": "block/pitcher_crop_side", + "pitcher_bottom": "block/pitcher_crop_bottom" + }, + "elements": [ + { + "name": "pitcher_crop_bottom_stage_0", + "from": [5, -1, 5], + "to": [11, 3, 11], + "faces": { + "north": {"uv": [3, 10, 9, 14], "texture": "#pitcher_side"}, + "east": {"uv": [3, 10, 9, 14], "texture": "#pitcher_side"}, + "south": {"uv": [3, 10, 9, 14], "texture": "#pitcher_side"}, + "west": {"uv": [3, 10, 9, 14], "texture": "#pitcher_side"}, + "up": {"uv": [5, 5, 11, 11], "texture": "#pitcher_top"}, + "down": {"uv": [5, 5, 11, 11], "texture": "#pitcher_bottom"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_1.json new file mode 100644 index 000000000..77b844fac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_1.json @@ -0,0 +1,47 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top", + "stage_1": "block/pitcher_crop_bottom_stage_1", + "pitcher_top": "block/pitcher_crop_top", + "pitcher_side": "block/pitcher_crop_side", + "pitcher_bottom": "block/pitcher_crop_bottom" + }, + "elements": [ + { + "name": "pitcher_crop_bottom_stage_1", + "from": [0, 5, 8], + "to": [16, 21, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 5, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_1"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_1"} + } + }, + { + "name": "pitcher_crop_bottom_stage_1", + "from": [0, 5, 8], + "to": [16, 21, 8], + "shade": false, + "rotation": {"angle": -45, "axis": "y", "origin": [8, 5, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_1"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_1"} + } + }, + { + "name": "pitcher_crop_bottom_stage_1", + "from": [3, -1, 3], + "to": [13, 5, 13], + "faces": { + "north": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "east": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "south": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "west": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "up": {"uv": [3, 3, 13, 13], "texture": "#pitcher_top"}, + "down": {"uv": [3, 3, 13, 13], "texture": "#pitcher_bottom"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_2.json new file mode 100644 index 000000000..369939404 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_2.json @@ -0,0 +1,47 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top", + "stage_2": "block/pitcher_crop_bottom_stage_2", + "pitcher_top": "block/pitcher_crop_top", + "pitcher_side": "block/pitcher_crop_side", + "pitcher_bottom": "block/pitcher_crop_bottom" + }, + "elements": [ + { + "name": "pitcher_crop_bottom_stage_2", + "from": [0, 5, 8], + "to": [16, 21, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 6, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_2"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_2"} + } + }, + { + "name": "pitcher_crop_bottom_stage_2", + "from": [8, 5, 0], + "to": [8, 21, 16], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 6, 8]}, + "faces": { + "east": {"uv": [0, 0, 16, 16], "texture": "#stage_2"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#stage_2"} + } + }, + { + "name": "pitcher_crop_bottom_stage_1", + "from": [3, -1, 3], + "to": [13, 5, 13], + "faces": { + "north": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "east": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "south": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "west": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "up": {"uv": [3, 3, 13, 13], "texture": "#pitcher_top"}, + "down": {"uv": [3, 3, 13, 13], "texture": "#pitcher_bottom"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_3.json new file mode 100644 index 000000000..520fbcba2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_3.json @@ -0,0 +1,47 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top", + "stage_3_bottom": "block/pitcher_crop_bottom_stage_3", + "pitcher_top": "block/pitcher_crop_top", + "pitcher_side": "block/pitcher_crop_side", + "pitcher_bottom": "block/pitcher_crop_bottom" + }, + "elements": [ + { + "name": "pitcher_crop_bottom_stage_3", + "from": [0, 0, 8], + "to": [16, 16, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_3_bottom"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_3_bottom"} + } + }, + { + "name": "pitcher_crop_bottom_stage_3", + "from": [0, 0, 8], + "to": [16, 16, 8], + "shade": false, + "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_3_bottom"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_3_bottom"} + } + }, + { + "name": "pitcher_crop_bottom_stage_1", + "from": [3, -1, 3], + "to": [13, 5, 13], + "faces": { + "north": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "east": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "south": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "west": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "up": {"uv": [3, 3, 13, 13], "texture": "#pitcher_top"}, + "down": {"uv": [3, 3, 13, 13], "texture": "#pitcher_bottom"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_4.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_4.json new file mode 100644 index 000000000..1b258f059 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_bottom_stage_4.json @@ -0,0 +1,47 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top", + "stage_4_bottom": "block/pitcher_crop_bottom_stage_4", + "pitcher_top": "block/pitcher_crop_top", + "pitcher_side": "block/pitcher_crop_side", + "pitcher_bottom": "block/pitcher_crop_bottom" + }, + "elements": [ + { + "name": "pitcher_crop_bottom_stage_4", + "from": [8, 0, 0], + "to": [8, 16, 16], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "east": {"uv": [0, 0, 16, 16], "texture": "#stage_4_bottom"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#stage_4_bottom"} + } + }, + { + "name": "pitcher_crop_bottom_stage_4", + "from": [0, 0, 8], + "to": [16, 16, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_4_bottom"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_4_bottom"} + } + }, + { + "name": "pitcher_crop_bottom_stage_1", + "from": [3, -1, 3], + "to": [13, 5, 13], + "faces": { + "north": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "east": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "south": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "west": {"uv": [3, 10, 13, 16], "texture": "#pitcher_side"}, + "up": {"uv": [3, 3, 13, 13], "texture": "#pitcher_top"}, + "down": {"uv": [3, 3, 13, 13], "texture": "#pitcher_bottom"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_0.json new file mode 100644 index 000000000..93576f7cd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_0.json @@ -0,0 +1,6 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_1.json new file mode 100644 index 000000000..1e9bae1f1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_1.json @@ -0,0 +1,6 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_2.json new file mode 100644 index 000000000..1e9bae1f1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_2.json @@ -0,0 +1,6 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_3.json new file mode 100644 index 000000000..ab16f8518 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_3.json @@ -0,0 +1,31 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top", + "stage_3_top": "block/pitcher_crop_top_stage_3" + }, + "elements": [ + { + "name": "pitcher_crop_top_stage_3", + "from": [0, 0, 8], + "to": [16, 16, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_3_top"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_3_top"} + } + }, + { + "name": "pitcher_crop_top_stage_3", + "from": [0, 0, 8], + "to": [16, 16, 8], + "shade": false, + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_3_top"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_3_top"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_4.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_4.json new file mode 100644 index 000000000..ef33757dd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_crop_top_stage_4.json @@ -0,0 +1,33 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top", + "stage_4_top": "block/pitcher_crop_top_stage_4", + "pitcher_top": "block/pitcher_crop_top", + "pitcher_side": "block/pitcher_crop_side" + }, + "elements": [ + { + "name": "pitcher_crop_top_stage_4", + "from": [8, 0, 0], + "to": [8, 16, 16], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "east": {"uv": [0, 0, 16, 16], "texture": "#stage_4_top"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#stage_4_top"} + } + }, + { + "name": "pitcher_crop_top_stage_4", + "from": [0, 0, 8], + "to": [16, 16, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#stage_4_top"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#stage_4_top"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_plant_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_plant_bottom.json new file mode 100644 index 000000000..cd979bf9f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_plant_bottom.json @@ -0,0 +1,39 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_bottom_stage_4", + "bottom": "block/pitcher_crop_bottom_stage_4" + }, + "elements": [ + { + "name": "pitcher_plant_bottom", + "from": [8, -5, 0], + "to": [8, 11, 16], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 3, 8]}, + "faces": { + "north": {"uv": [0, 0, 0, 16], "texture": "#bottom"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#bottom"}, + "south": {"uv": [0, 0, 0, 16], "texture": "#bottom"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#bottom"}, + "up": {"uv": [0, 0, 16, 0], "rotation": 90, "texture": "#bottom"}, + "down": {"uv": [0, 0, 16, 0], "rotation": 270, "texture": "#bottom"} + } + }, + { + "name": "pitcher_plant_bottom", + "from": [0, -5, 8], + "to": [16, 11, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 3, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#bottom"}, + "east": {"uv": [0, 0, 0, 16], "texture": "#bottom"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#bottom"}, + "west": {"uv": [0, 0, 0, 16], "texture": "#bottom"}, + "up": {"uv": [0, 0, 16, 0], "texture": "#bottom"}, + "down": {"uv": [0, 0, 16, 0], "texture": "#bottom"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_plant_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_plant_top.json new file mode 100644 index 000000000..9d21ab893 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pitcher_plant_top.json @@ -0,0 +1,39 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/pitcher_crop_top_stage_4", + "top": "block/pitcher_crop_top_stage_4" + }, + "elements": [ + { + "name": "pitcher_plant_top", + "from": [8, -5, 0], + "to": [8, 11, 16], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 19, 8]}, + "faces": { + "north": {"uv": [0, 0, 0, 16], "texture": "#top"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#top"}, + "south": {"uv": [0, 0, 0, 16], "texture": "#top"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#top"}, + "up": {"uv": [0, 0, 16, 0], "rotation": 90, "texture": "#top"}, + "down": {"uv": [0, 0, 16, 0], "rotation": 270, "texture": "#top"} + } + }, + { + "name": "pitcher_plant_top", + "from": [0, -5, 8], + "to": [16, 11, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 19, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#top"}, + "east": {"uv": [0, 0, 0, 16], "texture": "#top"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#top"}, + "west": {"uv": [0, 0, 0, 16], "texture": "#top"}, + "up": {"uv": [0, 0, 16, 0], "texture": "#top"}, + "down": {"uv": [0, 0, 16, 0], "texture": "#top"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/podzol.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/podzol.json new file mode 100644 index 000000000..e34892178 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/podzol.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/dirt", + "side": "minecraft:block/podzol_side", + "top": "minecraft:block/podzol_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone.json new file mode 100644 index 000000000..783947176 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": true, + "textures": { + "particle": "#cross" + }, + "elements": [ + { "from": [ 0.8, 0, 8 ], + "to": [ 15.2, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" } + } + }, + { "from": [ 8, 0, 0.8 ], + "to": [ 8, 16, 15.2 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_base.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_base.json new file mode 100644 index 000000000..3664c7123 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_base.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_down_base" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_frustum.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_frustum.json new file mode 100644 index 000000000..56005b2c9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_frustum.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_down_frustum" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_middle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_middle.json new file mode 100644 index 000000000..14d2c305f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_middle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_down_middle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_tip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_tip.json new file mode 100644 index 000000000..ab610fb81 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_tip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_down_tip" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_tip_merge.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_tip_merge.json new file mode 100644 index 000000000..4d0c1bf67 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_down_tip_merge.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_down_tip_merge" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_base.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_base.json new file mode 100644 index 000000000..27b8b8133 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_base.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_up_base" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_frustum.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_frustum.json new file mode 100644 index 000000000..556b14304 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_frustum.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_up_frustum" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_middle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_middle.json new file mode 100644 index 000000000..27cf4e55d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_middle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_up_middle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_tip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_tip.json new file mode 100644 index 000000000..8b1bf8ced --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_tip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_up_tip" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_tip_merge.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_tip_merge.json new file mode 100644 index 000000000..70240899d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pointed_dripstone_up_tip_merge.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pointed_dripstone", + "textures": { + "cross": "minecraft:block/pointed_dripstone_up_tip_merge" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite.json new file mode 100644 index 000000000..cd1067abf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/polished_andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite_slab.json new file mode 100644 index 000000000..72d8299f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/polished_andesite", + "side": "minecraft:block/polished_andesite", + "top": "minecraft:block/polished_andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite_slab_top.json new file mode 100644 index 000000000..3211d4d22 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/polished_andesite", + "side": "minecraft:block/polished_andesite", + "top": "minecraft:block/polished_andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs.json new file mode 100644 index 000000000..d5d69805d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/polished_andesite", + "side": "minecraft:block/polished_andesite", + "top": "minecraft:block/polished_andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs_inner.json new file mode 100644 index 000000000..7275bfb00 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/polished_andesite", + "side": "minecraft:block/polished_andesite", + "top": "minecraft:block/polished_andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs_outer.json new file mode 100644 index 000000000..30d837446 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_andesite_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/polished_andesite", + "side": "minecraft:block/polished_andesite", + "top": "minecraft:block/polished_andesite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_basalt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_basalt.json new file mode 100644 index 000000000..cdf565e4e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_basalt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/polished_basalt_top", + "side": "minecraft:block/polished_basalt_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone.json new file mode 100644 index 000000000..41baabebd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_slab.json new file mode 100644 index 000000000..d9c1e4d0b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/polished_blackstone_bricks", + "side": "minecraft:block/polished_blackstone_bricks", + "top": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_slab_top.json new file mode 100644 index 000000000..bb2fd0f23 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/polished_blackstone_bricks", + "side": "minecraft:block/polished_blackstone_bricks", + "top": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs.json new file mode 100644 index 000000000..535eab268 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/polished_blackstone_bricks", + "side": "minecraft:block/polished_blackstone_bricks", + "top": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs_inner.json new file mode 100644 index 000000000..0439b1c0d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/polished_blackstone_bricks", + "side": "minecraft:block/polished_blackstone_bricks", + "top": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs_outer.json new file mode 100644 index 000000000..324e6f7b9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/polished_blackstone_bricks", + "side": "minecraft:block/polished_blackstone_bricks", + "top": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_inventory.json new file mode 100644 index 000000000..1c934f4a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_post.json new file mode 100644 index 000000000..1f634397d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_side.json new file mode 100644 index 000000000..2b0179edb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_side_tall.json new file mode 100644 index 000000000..8f5ee0c5e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_bricks.json new file mode 100644 index 000000000..b94caf755 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_button.json new file mode 100644 index 000000000..46472f133 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_button_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_button_inventory.json new file mode 100644 index 000000000..9e717030b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_button_pressed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_button_pressed.json new file mode 100644 index 000000000..114579721 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_pressure_plate.json new file mode 100644 index 000000000..e9d418465 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_pressure_plate_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_pressure_plate_down.json new file mode 100644 index 000000000..62fd5664b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_slab.json new file mode 100644 index 000000000..260c098e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/polished_blackstone", + "side": "minecraft:block/polished_blackstone", + "top": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_slab_top.json new file mode 100644 index 000000000..b52a9ee95 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/polished_blackstone", + "side": "minecraft:block/polished_blackstone", + "top": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs.json new file mode 100644 index 000000000..00d6d5fd0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/polished_blackstone", + "side": "minecraft:block/polished_blackstone", + "top": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs_inner.json new file mode 100644 index 000000000..a8534223c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/polished_blackstone", + "side": "minecraft:block/polished_blackstone", + "top": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs_outer.json new file mode 100644 index 000000000..dc6e55a3f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/polished_blackstone", + "side": "minecraft:block/polished_blackstone", + "top": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_inventory.json new file mode 100644 index 000000000..d361d99bc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_post.json new file mode 100644 index 000000000..24cf5a404 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_side.json new file mode 100644 index 000000000..fc72cbeac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_side_tall.json new file mode 100644 index 000000000..5d3f4f0c1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_blackstone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/polished_blackstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate.json new file mode 100644 index 000000000..6645c7e09 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_slab.json new file mode 100644 index 000000000..b622b9582 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/polished_deepslate", + "side": "minecraft:block/polished_deepslate", + "top": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_slab_top.json new file mode 100644 index 000000000..c9d076b9f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/polished_deepslate", + "side": "minecraft:block/polished_deepslate", + "top": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs.json new file mode 100644 index 000000000..1d14d0b10 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/polished_deepslate", + "side": "minecraft:block/polished_deepslate", + "top": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs_inner.json new file mode 100644 index 000000000..de71267ff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/polished_deepslate", + "side": "minecraft:block/polished_deepslate", + "top": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs_outer.json new file mode 100644 index 000000000..22018b123 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/polished_deepslate", + "side": "minecraft:block/polished_deepslate", + "top": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_inventory.json new file mode 100644 index 000000000..233596b3e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_post.json new file mode 100644 index 000000000..47da476f9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_side.json new file mode 100644 index 000000000..6335eae35 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_side_tall.json new file mode 100644 index 000000000..04a1d5229 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_deepslate_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/polished_deepslate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite.json new file mode 100644 index 000000000..99afb394e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/polished_diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite_slab.json new file mode 100644 index 000000000..04bbeb217 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/polished_diorite", + "side": "minecraft:block/polished_diorite", + "top": "minecraft:block/polished_diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite_slab_top.json new file mode 100644 index 000000000..aa5ed4f51 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/polished_diorite", + "side": "minecraft:block/polished_diorite", + "top": "minecraft:block/polished_diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs.json new file mode 100644 index 000000000..22348dcbb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/polished_diorite", + "side": "minecraft:block/polished_diorite", + "top": "minecraft:block/polished_diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs_inner.json new file mode 100644 index 000000000..6bac942a5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/polished_diorite", + "side": "minecraft:block/polished_diorite", + "top": "minecraft:block/polished_diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs_outer.json new file mode 100644 index 000000000..2984c3f89 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_diorite_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/polished_diorite", + "side": "minecraft:block/polished_diorite", + "top": "minecraft:block/polished_diorite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite.json new file mode 100644 index 000000000..46f93fd8d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/polished_granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite_slab.json new file mode 100644 index 000000000..07a13accf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/polished_granite", + "side": "minecraft:block/polished_granite", + "top": "minecraft:block/polished_granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite_slab_top.json new file mode 100644 index 000000000..244ea1155 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/polished_granite", + "side": "minecraft:block/polished_granite", + "top": "minecraft:block/polished_granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite_stairs.json new file mode 100644 index 000000000..d57f59f7c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/polished_granite", + "side": "minecraft:block/polished_granite", + "top": "minecraft:block/polished_granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite_stairs_inner.json new file mode 100644 index 000000000..1d38f86c2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/polished_granite", + "side": "minecraft:block/polished_granite", + "top": "minecraft:block/polished_granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite_stairs_outer.json new file mode 100644 index 000000000..4f824236b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_granite_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/polished_granite", + "side": "minecraft:block/polished_granite", + "top": "minecraft:block/polished_granite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff.json new file mode 100644 index 000000000..ccf1b27b5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_slab.json new file mode 100644 index 000000000..7fce08e96 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/polished_tuff", + "side": "minecraft:block/polished_tuff", + "top": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_slab_top.json new file mode 100644 index 000000000..5a6c03f20 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/polished_tuff", + "side": "minecraft:block/polished_tuff", + "top": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs.json new file mode 100644 index 000000000..be42e5575 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/polished_tuff", + "side": "minecraft:block/polished_tuff", + "top": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs_inner.json new file mode 100644 index 000000000..b5cfb2124 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/polished_tuff", + "side": "minecraft:block/polished_tuff", + "top": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs_outer.json new file mode 100644 index 000000000..df5eb7f3d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/polished_tuff", + "side": "minecraft:block/polished_tuff", + "top": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_inventory.json new file mode 100644 index 000000000..d55e38566 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_post.json new file mode 100644 index 000000000..ec072dd88 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_side.json new file mode 100644 index 000000000..25c445d73 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_side_tall.json new file mode 100644 index 000000000..97dfe6adb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/polished_tuff_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/polished_tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/poppy.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/poppy.json new file mode 100644 index 000000000..dd37fe802 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/poppy.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/poppy" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potatoes_stage0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potatoes_stage0.json new file mode 100644 index 000000000..7bd4a3c4c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potatoes_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/potatoes_stage0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potatoes_stage1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potatoes_stage1.json new file mode 100644 index 000000000..e1ccb2e9c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potatoes_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/potatoes_stage1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potatoes_stage2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potatoes_stage2.json new file mode 100644 index 000000000..139c6401d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potatoes_stage2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/potatoes_stage2" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potatoes_stage3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potatoes_stage3.json new file mode 100644 index 000000000..8ac74e8a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potatoes_stage3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/potatoes_stage3" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_acacia_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_acacia_sapling.json new file mode 100644 index 000000000..e1b2b703b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_acacia_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/acacia_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_allium.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_allium.json new file mode 100644 index 000000000..5b576fbbd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_allium.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/allium" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_azalea_bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_azalea_bush.json new file mode 100644 index 000000000..c6c15caa7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_azalea_bush.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_potted_azalea_bush", + "textures": { + "plant": "minecraft:block/potted_azalea_bush_plant", + "side": "minecraft:block/potted_azalea_bush_side", + "top": "minecraft:block/potted_azalea_bush_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_azure_bluet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_azure_bluet.json new file mode 100644 index 000000000..175b4c046 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_azure_bluet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/azure_bluet" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_bamboo.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_bamboo.json new file mode 100644 index 000000000..14ffcc2ae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_bamboo.json @@ -0,0 +1,77 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/flower_pot", + "flowerpot": "block/flower_pot", + "dirt": "block/dirt", + "bamboo": "block/bamboo_stalk", + "leaf": "block/bamboo_singleleaf" + }, + "elements": [ + { "from": [ 5, 0, 5 ], + "to": [ 6, 6, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 10, 0, 5 ], + "to": [ 11, 6, 11 ], + "faces": { + "down": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 5 ], + "to": [ 10, 6, 6 ], + "faces": { + "down": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 10 ], + "to": [ 10, 6, 11 ], + "faces": { + "down": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 6 ], + "to": [ 10, 4, 10 ], + "faces": { + "down": { "uv": [ 6, 12, 10, 16 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#dirt" } + } + }, + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "up": { "uv": [ 13, 0, 15, 2], "texture": "#bamboo", "cullface": "up" }, + "north": { "uv": [ 6, 0, 8, 16 ], "texture": "#bamboo" }, + "south": { "uv": [ 6, 0, 8, 16 ], "texture": "#bamboo" }, + "west": { "uv": [ 6, 0, 8, 16 ], "texture": "#bamboo" }, + "east": { "uv": [ 6, 0, 8, 16 ], "texture": "#bamboo" } + } + }, + { "from": [ 0, 2, 8 ], + "to": [ 16, 18, 8 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#leaf" }, + "south": { "uv": [ 16, 0, 0, 16 ], "texture": "#leaf" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_birch_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_birch_sapling.json new file mode 100644 index 000000000..b19246fbb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_birch_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/birch_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_blue_orchid.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_blue_orchid.json new file mode 100644 index 000000000..f9b31badf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_blue_orchid.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/blue_orchid" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_brown_mushroom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_brown_mushroom.json new file mode 100644 index 000000000..3e837e625 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_brown_mushroom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/brown_mushroom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_cactus.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_cactus.json new file mode 100644 index 000000000..6f6624120 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_cactus.json @@ -0,0 +1,32 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/flower_pot", + "flowerpot": "block/flower_pot", + "cactus_top": "block/cactus_top", + "cactus": "block/cactus_side" + }, + "elements": [ + { "from": [ 5, 0, 5 ], + "to": [ 11, 6, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "texture": "#flowerpot" }, + "north": { "texture": "#flowerpot" }, + "south": { "texture": "#flowerpot" }, + "west": { "texture": "#flowerpot" }, + "east": { "texture": "#flowerpot" } + } + }, + { "from": [ 6, 5, 6 ], + "to": [ 10, 16, 10 ], + "faces": { + "up": { "texture": "#cactus_top", "cullface": "up" }, + "north": { "uv": [ 6, 0, 10, 11 ], "texture": "#cactus" }, + "south": { "uv": [ 6, 0, 10, 11 ], "texture": "#cactus" }, + "west": { "uv": [ 6, 0, 10, 11 ], "texture": "#cactus" }, + "east": { "uv": [ 6, 0, 10, 11 ], "texture": "#cactus" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_cherry_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_cherry_sapling.json new file mode 100644 index 000000000..953170b7d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_cherry_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/cherry_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_closed_eyeblossom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_closed_eyeblossom.json new file mode 100644 index 000000000..12f3acbec --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_closed_eyeblossom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/closed_eyeblossom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_cornflower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_cornflower.json new file mode 100644 index 000000000..70d88359d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_cornflower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/cornflower" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_crimson_fungus.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_crimson_fungus.json new file mode 100644 index 000000000..08aea2cbb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_crimson_fungus.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/crimson_fungus" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_crimson_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_crimson_roots.json new file mode 100644 index 000000000..b5b27112f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_crimson_roots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/crimson_roots_pot" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_dandelion.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_dandelion.json new file mode 100644 index 000000000..c6c361331 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_dandelion.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/dandelion" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_dark_oak_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_dark_oak_sapling.json new file mode 100644 index 000000000..b269e8739 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_dark_oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/dark_oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_dead_bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_dead_bush.json new file mode 100644 index 000000000..e2f1fc5f9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_dead_bush.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/dead_bush" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_fern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_fern.json new file mode 100644 index 000000000..3076b6d17 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_fern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_flower_pot_cross", + "textures": { + "plant": "minecraft:block/fern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_flowering_azalea_bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_flowering_azalea_bush.json new file mode 100644 index 000000000..ef95facb0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_flowering_azalea_bush.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_potted_azalea_bush", + "textures": { + "plant": "minecraft:block/potted_flowering_azalea_bush_plant", + "side": "minecraft:block/potted_flowering_azalea_bush_side", + "top": "minecraft:block/potted_flowering_azalea_bush_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_jungle_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_jungle_sapling.json new file mode 100644 index 000000000..4ee939886 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_jungle_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/jungle_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_lily_of_the_valley.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_lily_of_the_valley.json new file mode 100644 index 000000000..a09d9c163 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_lily_of_the_valley.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/lily_of_the_valley" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_mangrove_propagule.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_mangrove_propagule.json new file mode 100644 index 000000000..6d8179962 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_mangrove_propagule.json @@ -0,0 +1,103 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/flower_pot", + "sapling": "block/mangrove_propagule", + "flowerpot": "block/flower_pot", + "dirt": "block/dirt" + }, + "elements": [ + { + "name": "leaves", + "from": [4.5, 9, 8], + "to": [11.5, 15, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8], "rescale": true}, + "faces": { + "north": {"uv": [4, 1, 11, 7], "texture": "#sapling"}, + "south": {"uv": [4, 1, 11, 7], "texture": "#sapling"} + } + }, + { + "name": "leaves", + "from": [8, 9, 4.5], + "to": [8, 15, 11.5], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8], "rescale": true}, + "faces": { + "east": {"uv": [4, 1, 11, 7], "texture": "#sapling"}, + "west": {"uv": [4, 1, 11, 7], "texture": "#sapling"} + } + }, + { + "name": "hypocotyl", + "from": [8, 0, 7], + "to": [8, 9, 9], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8], "rescale": true}, + "faces": { + "east": {"uv": [7, 7, 9, 16], "texture": "#sapling"}, + "west": {"uv": [7, 7, 9, 16], "texture": "#sapling"} + } + }, + { + "name": "hypocotyl", + "from": [7, 0, 8], + "to": [9, 9, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8], "rescale": true}, + "faces": { + "north": {"uv": [7, 7, 9, 16], "texture": "#sapling"}, + "south": {"uv": [7, 7, 9, 16], "texture": "#sapling"} + } + }, + { + "from": [ 5, 0, 5 ], + "to": [ 6, 6, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { + "from": [ 10, 0, 5 ], + "to": [ 11, 6, 11 ], + "faces": { + "down": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { + "from": [ 6, 0, 5 ], + "to": [ 10, 6, 6 ], + "faces": { + "down": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { + "from": [ 6, 0, 10 ], + "to": [ 10, 6, 11 ], + "faces": { + "down": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { + "from": [ 6, 0, 6 ], + "to": [ 10, 4, 10 ], + "faces": { + "down": { "uv": [ 6, 12, 10, 16 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#dirt" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_oak_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_oak_sapling.json new file mode 100644 index 000000000..c4746c46c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_open_eyeblossom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_open_eyeblossom.json new file mode 100644 index 000000000..adcdc0e45 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_open_eyeblossom.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flower_pot_cross_emissive", + "textures": { + "cross_emissive": "minecraft:block/open_eyeblossom_emissive", + "plant": "minecraft:block/open_eyeblossom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_orange_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_orange_tulip.json new file mode 100644 index 000000000..bd2b5e753 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_orange_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/orange_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_oxeye_daisy.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_oxeye_daisy.json new file mode 100644 index 000000000..107dc8e86 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_oxeye_daisy.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/oxeye_daisy" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_pale_oak_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_pale_oak_sapling.json new file mode 100644 index 000000000..1c5d576c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_pale_oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/pale_oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_pink_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_pink_tulip.json new file mode 100644 index 000000000..75658f755 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_pink_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/pink_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_poppy.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_poppy.json new file mode 100644 index 000000000..6fdefca88 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_poppy.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/poppy" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_red_mushroom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_red_mushroom.json new file mode 100644 index 000000000..9bc28969a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_red_mushroom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/red_mushroom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_red_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_red_tulip.json new file mode 100644 index 000000000..6541daaa7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_red_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/red_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_spruce_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_spruce_sapling.json new file mode 100644 index 000000000..431559fac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_spruce_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/spruce_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_torchflower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_torchflower.json new file mode 100644 index 000000000..a7a38e627 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_torchflower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/torchflower" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_warped_fungus.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_warped_fungus.json new file mode 100644 index 000000000..de7e890a0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_warped_fungus.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/warped_fungus" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_warped_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_warped_roots.json new file mode 100644 index 000000000..ac44109d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_warped_roots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/warped_roots_pot" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_white_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_white_tulip.json new file mode 100644 index 000000000..efc662fe1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_white_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/white_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_wither_rose.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_wither_rose.json new file mode 100644 index 000000000..1eab257aa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/potted_wither_rose.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "minecraft:block/wither_rose" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powder_snow.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powder_snow.json new file mode 100644 index 000000000..6be3d2451 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powder_snow.json @@ -0,0 +1,51 @@ +{ + "parent": "block/block", + "textures": { + "texture": "block/powder_snow", + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 15.998, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture", "cullface": "up" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "up" } + } + }, + { "from": [ 0, 0, 0 ], + "to": [ 16, 0.002, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture", "cullface": "down" } + } + }, + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 0.002 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "cullface": "north" } + } + }, + { "from": [ 0, 0, 15.998 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "cullface": "south" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "south" } + } + }, + { "from": [ 0, 0, 0 ], + "to": [ 0.002, 16, 16 ], + "faces": { + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "cullface": "west" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "west" } + } + }, + { "from": [ 15.998, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "east" }, + "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_full.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_full.json new file mode 100644 index 000000000..09cf43bf5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_full.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/template_cauldron_full", + "textures": { + "bottom": "minecraft:block/cauldron_bottom", + "content": "minecraft:block/powder_snow", + "inside": "minecraft:block/cauldron_inner", + "particle": "minecraft:block/cauldron_side", + "side": "minecraft:block/cauldron_side", + "top": "minecraft:block/cauldron_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_level1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_level1.json new file mode 100644 index 000000000..6cc69ae72 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_level1.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/template_cauldron_level1", + "textures": { + "bottom": "minecraft:block/cauldron_bottom", + "content": "minecraft:block/powder_snow", + "inside": "minecraft:block/cauldron_inner", + "particle": "minecraft:block/cauldron_side", + "side": "minecraft:block/cauldron_side", + "top": "minecraft:block/cauldron_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_level2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_level2.json new file mode 100644 index 000000000..1d76edc19 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powder_snow_cauldron_level2.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/template_cauldron_level2", + "textures": { + "bottom": "minecraft:block/cauldron_bottom", + "content": "minecraft:block/powder_snow", + "inside": "minecraft:block/cauldron_inner", + "particle": "minecraft:block/cauldron_side", + "side": "minecraft:block/cauldron_side", + "top": "minecraft:block/cauldron_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail.json new file mode 100644 index 000000000..be1faa810 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/rail_flat", + "textures": { + "rail": "minecraft:block/powered_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail_on.json new file mode 100644 index 000000000..eccba5ee5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail_on.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/rail_flat", + "textures": { + "rail": "minecraft:block/powered_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail_on_raised_ne.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail_on_raised_ne.json new file mode 100644 index 000000000..b8be14183 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail_on_raised_ne.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_ne", + "textures": { + "rail": "minecraft:block/powered_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail_on_raised_sw.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail_on_raised_sw.json new file mode 100644 index 000000000..07fdc1426 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail_on_raised_sw.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_sw", + "textures": { + "rail": "minecraft:block/powered_rail_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail_raised_ne.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail_raised_ne.json new file mode 100644 index 000000000..ebfd5e1c3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail_raised_ne.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_ne", + "textures": { + "rail": "minecraft:block/powered_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail_raised_sw.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail_raised_sw.json new file mode 100644 index 000000000..516a56ee3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/powered_rail_raised_sw.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_sw", + "textures": { + "rail": "minecraft:block/powered_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pressure_plate_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pressure_plate_down.json new file mode 100644 index 000000000..db6e6ba6c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pressure_plate_down.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 1, 0, 1 ], + "to": [ 15, 0.5, 15 ], + "faces": { + "down": { "uv": [ 1, 1, 15, 15 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 1, 1, 15, 15 ], "texture": "#texture" }, + "north": { "uv": [ 1, 15, 15, 15.5 ], "texture": "#texture" }, + "south": { "uv": [ 1, 15, 15, 15.5 ], "texture": "#texture" }, + "west": { "uv": [ 1, 15, 15, 15.5 ], "texture": "#texture" }, + "east": { "uv": [ 1, 15, 15, 15.5 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pressure_plate_up.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pressure_plate_up.json new file mode 100644 index 000000000..689fbe4f9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pressure_plate_up.json @@ -0,0 +1,18 @@ +{ "parent": "block/thin_block", + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 1, 0, 1 ], + "to": [ 15, 1, 15 ], + "faces": { + "down": { "uv": [ 1, 1, 15, 15 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 1, 1, 15, 15 ], "texture": "#texture" }, + "north": { "uv": [ 1, 15, 15, 16 ], "texture": "#texture" }, + "south": { "uv": [ 1, 15, 15, 16 ], "texture": "#texture" }, + "west": { "uv": [ 1, 15, 15, 16 ], "texture": "#texture" }, + "east": { "uv": [ 1, 15, 15, 16 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine.json new file mode 100644 index 000000000..bbac86bf1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_brick_slab.json new file mode 100644 index 000000000..a81262167 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/prismarine_bricks", + "side": "minecraft:block/prismarine_bricks", + "top": "minecraft:block/prismarine_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_brick_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_brick_slab_top.json new file mode 100644 index 000000000..32a5b3646 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/prismarine_bricks", + "side": "minecraft:block/prismarine_bricks", + "top": "minecraft:block/prismarine_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs.json new file mode 100644 index 000000000..139c6e2d0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/prismarine_bricks", + "side": "minecraft:block/prismarine_bricks", + "top": "minecraft:block/prismarine_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs_inner.json new file mode 100644 index 000000000..5383506b6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/prismarine_bricks", + "side": "minecraft:block/prismarine_bricks", + "top": "minecraft:block/prismarine_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs_outer.json new file mode 100644 index 000000000..9dbe7dfa4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/prismarine_bricks", + "side": "minecraft:block/prismarine_bricks", + "top": "minecraft:block/prismarine_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_bricks.json new file mode 100644 index 000000000..ee4a465bc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/prismarine_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_slab.json new file mode 100644 index 000000000..9a5181261 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/prismarine", + "side": "minecraft:block/prismarine", + "top": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_slab_top.json new file mode 100644 index 000000000..52514d9ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/prismarine", + "side": "minecraft:block/prismarine", + "top": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_stairs.json new file mode 100644 index 000000000..274c60572 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/prismarine", + "side": "minecraft:block/prismarine", + "top": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_stairs_inner.json new file mode 100644 index 000000000..a89a05b58 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/prismarine", + "side": "minecraft:block/prismarine", + "top": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_stairs_outer.json new file mode 100644 index 000000000..62c762784 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/prismarine", + "side": "minecraft:block/prismarine", + "top": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_wall_inventory.json new file mode 100644 index 000000000..d638391dc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_wall_post.json new file mode 100644 index 000000000..207d59d8b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_wall_side.json new file mode 100644 index 000000000..e21990c6c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_wall_side_tall.json new file mode 100644 index 000000000..31ed03f50 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/prismarine_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/prismarine" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin.json new file mode 100644 index 000000000..ab505114f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin.json @@ -0,0 +1,14 @@ +{ + "parent": "block/cube_column", + "display": { + "firstperson_righthand": { + "rotation": [ 0, 135, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.40, 0.40, 0.40 ] + } + }, + "textures": { + "end": "block/pumpkin_top", + "side": "block/pumpkin_side" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage0.json new file mode 100644 index 000000000..dc984be41 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth0", + "textures": { + "stem": "minecraft:block/pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage1.json new file mode 100644 index 000000000..510c8e6cb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth1", + "textures": { + "stem": "minecraft:block/pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage2.json new file mode 100644 index 000000000..d92cfae70 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth2", + "textures": { + "stem": "minecraft:block/pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage3.json new file mode 100644 index 000000000..a6fc0463b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth3", + "textures": { + "stem": "minecraft:block/pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage4.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage4.json new file mode 100644 index 000000000..6e43c0879 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth4", + "textures": { + "stem": "minecraft:block/pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage5.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage5.json new file mode 100644 index 000000000..8dc2dfe87 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth5", + "textures": { + "stem": "minecraft:block/pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage6.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage6.json new file mode 100644 index 000000000..a2be41d6e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth6", + "textures": { + "stem": "minecraft:block/pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage7.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage7.json new file mode 100644 index 000000000..a4e71598d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/pumpkin_stem_stage7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/stem_growth7", + "textures": { + "stem": "minecraft:block/pumpkin_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_cake.json new file mode 100644 index 000000000..7d7af96f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/purple_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_cake_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_cake_lit.json new file mode 100644 index 000000000..b5b085c83 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/purple_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_four_candles.json new file mode 100644 index 000000000..fa3e32bb0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/purple_candle", + "particle": "minecraft:block/purple_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_four_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_four_candles_lit.json new file mode 100644 index 000000000..29a0bfb8f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/purple_candle_lit", + "particle": "minecraft:block/purple_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_one_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_one_candle.json new file mode 100644 index 000000000..feb3302db --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/purple_candle", + "particle": "minecraft:block/purple_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_one_candle_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_one_candle_lit.json new file mode 100644 index 000000000..c2fdd5380 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/purple_candle_lit", + "particle": "minecraft:block/purple_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_three_candles.json new file mode 100644 index 000000000..cbfc5f321 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/purple_candle", + "particle": "minecraft:block/purple_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_three_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_three_candles_lit.json new file mode 100644 index 000000000..73e33ade7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/purple_candle_lit", + "particle": "minecraft:block/purple_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_two_candles.json new file mode 100644 index 000000000..39d9a9db2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/purple_candle", + "particle": "minecraft:block/purple_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_two_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_two_candles_lit.json new file mode 100644 index 000000000..9b165c0c6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/purple_candle_lit", + "particle": "minecraft:block/purple_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_carpet.json new file mode 100644 index 000000000..4cf9a92c3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/purple_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_concrete.json new file mode 100644 index 000000000..e064fd9ec --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/purple_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_concrete_powder.json new file mode 100644 index 000000000..9911efb23 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/purple_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_glazed_terracotta.json new file mode 100644 index 000000000..8921b2dca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/purple_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_shulker_box.json new file mode 100644 index 000000000..6f9cfc87b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/purple_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass.json new file mode 100644 index 000000000..b64439f45 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/purple_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_noside.json new file mode 100644 index 000000000..9fc919baf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/purple_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..9a5775b3b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/purple_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_post.json new file mode 100644 index 000000000..cdebfe3b4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/purple_stained_glass_pane_top", + "pane": "minecraft:block/purple_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_side.json new file mode 100644 index 000000000..93c049bb6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/purple_stained_glass_pane_top", + "pane": "minecraft:block/purple_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..a8d615925 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/purple_stained_glass_pane_top", + "pane": "minecraft:block/purple_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_terracotta.json new file mode 100644 index 000000000..5c4c94fdd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/purple_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_wool.json new file mode 100644 index 000000000..c59282e59 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purple_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/purple_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_block.json new file mode 100644 index 000000000..c0bc80762 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/purpur_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_pillar.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_pillar.json new file mode 100644 index 000000000..f35e1ddc9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_pillar.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/purpur_pillar_top", + "side": "minecraft:block/purpur_pillar" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_pillar_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_pillar_horizontal.json new file mode 100644 index 000000000..d047a8f7d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_pillar_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/purpur_pillar_top", + "side": "minecraft:block/purpur_pillar" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_slab.json new file mode 100644 index 000000000..2a060e8d1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/purpur_block", + "side": "minecraft:block/purpur_block", + "top": "minecraft:block/purpur_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_slab_top.json new file mode 100644 index 000000000..8a3df90ae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/purpur_block", + "side": "minecraft:block/purpur_block", + "top": "minecraft:block/purpur_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_stairs.json new file mode 100644 index 000000000..ce2f0510a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/purpur_block", + "side": "minecraft:block/purpur_block", + "top": "minecraft:block/purpur_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_stairs_inner.json new file mode 100644 index 000000000..fd4829daf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/purpur_block", + "side": "minecraft:block/purpur_block", + "top": "minecraft:block/purpur_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_stairs_outer.json new file mode 100644 index 000000000..6f882621c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/purpur_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/purpur_block", + "side": "minecraft:block/purpur_block", + "top": "minecraft:block/purpur_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_block.json new file mode 100644 index 000000000..863b82e5d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_block.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/quartz_block_top", + "side": "minecraft:block/quartz_block_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_bricks.json new file mode 100644 index 000000000..f2b855171 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/quartz_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_pillar.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_pillar.json new file mode 100644 index 000000000..fc1845e75 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_pillar.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/quartz_pillar_top", + "side": "minecraft:block/quartz_pillar" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_pillar_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_pillar_horizontal.json new file mode 100644 index 000000000..38b07ba17 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_pillar_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/quartz_pillar_top", + "side": "minecraft:block/quartz_pillar" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_slab.json new file mode 100644 index 000000000..ccccb53f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/quartz_block_top", + "side": "minecraft:block/quartz_block_side", + "top": "minecraft:block/quartz_block_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_slab_top.json new file mode 100644 index 000000000..157e8ee8f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/quartz_block_top", + "side": "minecraft:block/quartz_block_side", + "top": "minecraft:block/quartz_block_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_stairs.json new file mode 100644 index 000000000..cf5d6eb8e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/quartz_block_top", + "side": "minecraft:block/quartz_block_side", + "top": "minecraft:block/quartz_block_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_stairs_inner.json new file mode 100644 index 000000000..6dd7aea59 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/quartz_block_top", + "side": "minecraft:block/quartz_block_side", + "top": "minecraft:block/quartz_block_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_stairs_outer.json new file mode 100644 index 000000000..d8aa6d884 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/quartz_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/quartz_block_top", + "side": "minecraft:block/quartz_block_side", + "top": "minecraft:block/quartz_block_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail.json new file mode 100644 index 000000000..0f7a02442 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/rail_flat", + "textures": { + "rail": "minecraft:block/rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail_corner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail_corner.json new file mode 100644 index 000000000..ea109639d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail_corner.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/rail_curved", + "textures": { + "rail": "minecraft:block/rail_corner" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail_curved.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail_curved.json new file mode 100644 index 000000000..299a44ba9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail_curved.json @@ -0,0 +1,15 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#rail" + }, + "elements": [ + { "from": [ 0, 1, 0 ], + "to": [ 16, 1, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#rail" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#rail" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail_flat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail_flat.json new file mode 100644 index 000000000..299a44ba9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail_flat.json @@ -0,0 +1,15 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#rail" + }, + "elements": [ + { "from": [ 0, 1, 0 ], + "to": [ 16, 1, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#rail" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#rail" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail_raised_ne.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail_raised_ne.json new file mode 100644 index 000000000..a51c59fdc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail_raised_ne.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_ne", + "textures": { + "rail": "minecraft:block/rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail_raised_sw.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail_raised_sw.json new file mode 100644 index 000000000..4d48c0893 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rail_raised_sw.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_rail_raised_sw", + "textures": { + "rail": "minecraft:block/rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/raw_copper_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/raw_copper_block.json new file mode 100644 index 000000000..3f6008ec1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/raw_copper_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/raw_copper_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/raw_gold_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/raw_gold_block.json new file mode 100644 index 000000000..ce79d18f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/raw_gold_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/raw_gold_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/raw_iron_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/raw_iron_block.json new file mode 100644 index 000000000..25d19886d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/raw_iron_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/raw_iron_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_cake.json new file mode 100644 index 000000000..6c9ee4bb3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/red_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_cake_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_cake_lit.json new file mode 100644 index 000000000..52c3c5ebc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/red_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_four_candles.json new file mode 100644 index 000000000..c090c532a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/red_candle", + "particle": "minecraft:block/red_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_four_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_four_candles_lit.json new file mode 100644 index 000000000..f7d6ca07d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/red_candle_lit", + "particle": "minecraft:block/red_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_one_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_one_candle.json new file mode 100644 index 000000000..47c0ce8ad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/red_candle", + "particle": "minecraft:block/red_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_one_candle_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_one_candle_lit.json new file mode 100644 index 000000000..710f54167 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/red_candle_lit", + "particle": "minecraft:block/red_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_three_candles.json new file mode 100644 index 000000000..e0a4f0c95 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/red_candle", + "particle": "minecraft:block/red_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_three_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_three_candles_lit.json new file mode 100644 index 000000000..a4b2b86f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/red_candle_lit", + "particle": "minecraft:block/red_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_two_candles.json new file mode 100644 index 000000000..148bd6c8e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/red_candle", + "particle": "minecraft:block/red_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_two_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_two_candles_lit.json new file mode 100644 index 000000000..40af0f6f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/red_candle_lit", + "particle": "minecraft:block/red_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_carpet.json new file mode 100644 index 000000000..c31f191e3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/red_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_concrete.json new file mode 100644 index 000000000..aed4725ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_concrete_powder.json new file mode 100644 index 000000000..69ada1285 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_glazed_terracotta.json new file mode 100644 index 000000000..baf6a0dfc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/red_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_mushroom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_mushroom.json new file mode 100644 index 000000000..4dd14e49c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_mushroom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/red_mushroom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_mushroom_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_mushroom_block.json new file mode 100644 index 000000000..14ac5d54f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_mushroom_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_single_face", + "textures": { + "texture": "minecraft:block/red_mushroom_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_mushroom_block_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_mushroom_block_inventory.json new file mode 100644 index 000000000..588dd72a5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_mushroom_block_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_mushroom_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_slab.json new file mode 100644 index 000000000..196f926fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/red_nether_bricks", + "side": "minecraft:block/red_nether_bricks", + "top": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_slab_top.json new file mode 100644 index 000000000..0bf20b282 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/red_nether_bricks", + "side": "minecraft:block/red_nether_bricks", + "top": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs.json new file mode 100644 index 000000000..0320b0601 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/red_nether_bricks", + "side": "minecraft:block/red_nether_bricks", + "top": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs_inner.json new file mode 100644 index 000000000..3a329692e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/red_nether_bricks", + "side": "minecraft:block/red_nether_bricks", + "top": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs_outer.json new file mode 100644 index 000000000..e793420fd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/red_nether_bricks", + "side": "minecraft:block/red_nether_bricks", + "top": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_inventory.json new file mode 100644 index 000000000..aeaa716e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_post.json new file mode 100644 index 000000000..9fa44bded --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_side.json new file mode 100644 index 000000000..e8f23ec6f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_side_tall.json new file mode 100644 index 000000000..6546ececf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_bricks.json new file mode 100644 index 000000000..a13b83811 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_nether_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_nether_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sand.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sand.json new file mode 100644 index 000000000..d6f5cecf5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sand.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_sand" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone.json new file mode 100644 index 000000000..008568b81 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/red_sandstone_bottom", + "side": "minecraft:block/red_sandstone", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_slab.json new file mode 100644 index 000000000..cd1c1ec95 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/red_sandstone_bottom", + "side": "minecraft:block/red_sandstone", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_slab_top.json new file mode 100644 index 000000000..d240a03a0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/red_sandstone_bottom", + "side": "minecraft:block/red_sandstone", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs.json new file mode 100644 index 000000000..6f393c73d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/red_sandstone_bottom", + "side": "minecraft:block/red_sandstone", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs_inner.json new file mode 100644 index 000000000..a32a7a2a3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/red_sandstone_bottom", + "side": "minecraft:block/red_sandstone", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs_outer.json new file mode 100644 index 000000000..d862d18f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/red_sandstone_bottom", + "side": "minecraft:block/red_sandstone", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_inventory.json new file mode 100644 index 000000000..efec8f3fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/red_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_post.json new file mode 100644 index 000000000..ab117588e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/red_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_side.json new file mode 100644 index 000000000..798b2f913 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/red_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_side_tall.json new file mode 100644 index 000000000..b8cc6d377 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_sandstone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/red_sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_shulker_box.json new file mode 100644 index 000000000..4414a86ed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/red_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass.json new file mode 100644 index 000000000..fd841d4ed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_noside.json new file mode 100644 index 000000000..30aee4a9d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/red_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..051e7ebed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/red_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_post.json new file mode 100644 index 000000000..41cf1b5c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/red_stained_glass_pane_top", + "pane": "minecraft:block/red_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_side.json new file mode 100644 index 000000000..78124b128 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/red_stained_glass_pane_top", + "pane": "minecraft:block/red_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..5dd4fd2a0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/red_stained_glass_pane_top", + "pane": "minecraft:block/red_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_terracotta.json new file mode 100644 index 000000000..14908068f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_tulip.json new file mode 100644 index 000000000..1c0c290b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/red_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_wool.json new file mode 100644 index 000000000..72267b628 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/red_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_block.json new file mode 100644 index 000000000..b3942b363 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/redstone_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_dot.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_dot.json new file mode 100644 index 000000000..4a8cda176 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_dot.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/redstone_dust_dot", + "line": "block/redstone_dust_dot", + "overlay": "block/redstone_dust_overlay" + }, + "elements": [ + { "from": [ 0, 0.25, 0 ], + "to": [ 16, 0.25, 16 ], + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#line", "tintindex": 0 }, + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#line", "tintindex": 0 } + } + }, + { "from": [ 0, 0.25, 0 ], + "to": [ 16, 0.25, 16 ], + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#overlay" }, + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#overlay" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side.json new file mode 100644 index 000000000..523a41171 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side.json @@ -0,0 +1,25 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/redstone_dust_dot", + "overlay": "block/redstone_dust_overlay" + }, + "elements": [ + { "from": [ 0, 0.25, 0 ], + "to": [ 16, 0.25, 8 ], + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 8 ], "texture": "#line", "tintindex": 0 }, + "down": { "uv": [ 0, 8, 16, 0 ], "texture": "#line", "tintindex": 0 } + } + }, + { "from": [ 0, 0.25, 0 ], + "to": [ 16, 0.25, 8 ], + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 8 ], "texture": "#overlay" }, + "down": { "uv": [ 0, 8, 16, 0 ], "texture": "#overlay" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side0.json new file mode 100644 index 000000000..8ba2e73e6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side0.json @@ -0,0 +1,6 @@ +{ + "parent": "block/redstone_dust_side", + "textures": { + "line": "block/redstone_dust_line0" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side1.json new file mode 100644 index 000000000..1f545393c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side1.json @@ -0,0 +1,6 @@ +{ + "parent": "block/redstone_dust_side", + "textures": { + "line": "block/redstone_dust_line1" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt.json new file mode 100644 index 000000000..8b58a46c0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt.json @@ -0,0 +1,25 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/redstone_dust_dot", + "overlay": "block/redstone_dust_overlay" + }, + "elements": [ + { "from": [ 0, 0.25, 8 ], + "to": [ 16, 0.25, 16 ], + "shade": false, + "faces": { + "up": { "uv": [ 0, 8, 16, 16 ], "texture": "#line", "tintindex": 0 }, + "down": { "uv": [ 0, 16, 16, 8 ], "texture": "#line", "tintindex": 0 } + } + }, + { "from": [ 0, 0.25, 8 ], + "to": [ 16, 0.25, 16 ], + "shade": false, + "faces": { + "up": { "uv": [ 0, 8, 16, 16 ], "texture": "#overlay" }, + "down": { "uv": [ 0, 16, 16, 8 ], "texture": "#overlay" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt0.json new file mode 100644 index 000000000..f74884dd3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt0.json @@ -0,0 +1,6 @@ +{ + "parent": "block/redstone_dust_side_alt", + "textures": { + "line": "block/redstone_dust_line0" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt1.json new file mode 100644 index 000000000..a31f84877 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_side_alt1.json @@ -0,0 +1,6 @@ +{ + "parent": "block/redstone_dust_side_alt", + "textures": { + "line": "block/redstone_dust_line1" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_up.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_up.json new file mode 100644 index 000000000..2154da22c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_dust_up.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/redstone_dust_dot", + "line": "block/redstone_dust_line0", + "overlay": "block/redstone_dust_overlay" + }, + "elements": [ + { "from": [ 0, 0, 0.25 ], + "to": [ 16, 16, 0.25 ], + "shade": false, + "faces": { + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#line", "tintindex": 0 }, + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#line", "tintindex": 0 } + } + }, + { "from": [ 0, 0, 0.25 ], + "to": [ 16, 16, 0.25 ], + "shade": false, + "faces": { + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#overlay" }, + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#overlay" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_lamp.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_lamp.json new file mode 100644 index 000000000..530bd0d7c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_lamp.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/redstone_lamp" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_lamp_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_lamp_on.json new file mode 100644 index 000000000..bde04e267 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_lamp_on.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/redstone_lamp_on" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_ore.json new file mode 100644 index 000000000..a387db998 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/redstone_ore" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_torch.json new file mode 100644 index 000000000..b43534310 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_redstone_torch", + "textures": { + "torch": "minecraft:block/redstone_torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_torch_off.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_torch_off.json new file mode 100644 index 000000000..a0686d2d3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_torch_off.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_torch_unlit", + "textures": { + "torch": "minecraft:block/redstone_torch_off" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_wall_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_wall_torch.json new file mode 100644 index 000000000..6373dfb5e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_wall_torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_redstone_torch_wall", + "textures": { + "torch": "minecraft:block/redstone_torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_wall_torch_off.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_wall_torch_off.json new file mode 100644 index 000000000..0e0889f66 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/redstone_wall_torch_off.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_torch_wall_unlit", + "textures": { + "torch": "minecraft:block/redstone_torch_off" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/reinforced_deepslate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/reinforced_deepslate.json new file mode 100644 index 000000000..8d3c9026a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/reinforced_deepslate.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/reinforced_deepslate_bottom", + "side": "minecraft:block/reinforced_deepslate_side", + "top": "minecraft:block/reinforced_deepslate_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_1tick.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_1tick.json new file mode 100644 index 000000000..d360b571f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_1tick.json @@ -0,0 +1,42 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater", + "slab": "block/smooth_stone", + "top": "block/repeater", + "unlit": "block/redstone_torch_off" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 6 ], + "to": [ 9, 7, 8 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_1tick_locked.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_1tick_locked.json new file mode 100644 index 000000000..e264b0c17 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_1tick_locked.json @@ -0,0 +1,43 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater", + "slab": "block/smooth_stone", + "top": "block/repeater", + "lock": "block/bedrock", + "unlit": "block/redstone_torch_off" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 2, 2, 6 ], + "to": [ 14, 4, 8 ], + "faces": { + "up": { "uv": [ 7, 2, 9, 14 ], "texture": "#lock", "rotation": 90 }, + "north": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "south": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "west": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" }, + "east": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_1tick_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_1tick_on.json new file mode 100644 index 000000000..2d5dd932c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_1tick_on.json @@ -0,0 +1,140 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater_on", + "slab": "block/smooth_stone", + "top": "block/repeater_on", + "lit": "block/redstone_torch" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 6 ], + "to": [ 9, 7, 8 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 1.5 ], + "to": [ 9.5, 4.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 1.5 ], + "to": [ 9.5, 10.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, -1.5 ], + "to": [ 9.5, 7.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 1.5 ], + "to": [ 6.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 1.5 ], + "to": [ 12.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 5.5 ], + "to": [ 9.5, 4.5, 8.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 5.5 ], + "to": [ 9.5, 10.5, 8.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 2.5 ], + "to": [ 9.5, 7.5, 5.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 8.5 ], + "to": [ 9.5, 7.5, 11.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 5.5 ], + "to": [ 6.5, 7.5, 8.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 5.5 ], + "to": [ 12.5, 7.5, 8.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_1tick_on_locked.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_1tick_on_locked.json new file mode 100644 index 000000000..44e53d81c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_1tick_on_locked.json @@ -0,0 +1,92 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater_on", + "slab": "block/smooth_stone", + "top": "block/repeater_on", + "lit": "block/redstone_torch", + "lock": "block/bedrock" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 2, 2, 6 ], + "to": [ 14, 4, 8 ], + "faces": { + "up": { "uv": [ 7, 2, 9, 14 ], "texture": "#lock", "rotation": 90 }, + "north": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "south": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "west": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" }, + "east": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 1.5 ], + "to": [ 9.5, 4.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 1.5 ], + "to": [ 9.5, 10.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, -1.5 ], + "to": [ 9.5, 7.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 1.5 ], + "to": [ 6.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 1.5 ], + "to": [ 12.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_2tick.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_2tick.json new file mode 100644 index 000000000..833c187b5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_2tick.json @@ -0,0 +1,42 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater", + "slab": "block/smooth_stone", + "top": "block/repeater", + "unlit": "block/redstone_torch_off" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 8 ], + "to": [ 9, 7, 10 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_2tick_locked.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_2tick_locked.json new file mode 100644 index 000000000..47c5337aa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_2tick_locked.json @@ -0,0 +1,43 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater", + "slab": "block/smooth_stone", + "top": "block/repeater", + "lock": "block/bedrock", + "unlit": "block/redstone_torch_off" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 2, 2, 8 ], + "to": [ 14, 4, 10 ], + "faces": { + "up": { "uv": [ 7, 2, 9, 14 ], "texture": "#lock", "rotation": 90 }, + "north": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "south": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "west": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" }, + "east": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_2tick_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_2tick_on.json new file mode 100644 index 000000000..e7285624b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_2tick_on.json @@ -0,0 +1,140 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater_on", + "slab": "block/smooth_stone", + "top": "block/repeater_on", + "lit": "block/redstone_torch" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 8 ], + "to": [ 9, 7, 10 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 1.5 ], + "to": [ 9.5, 4.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 1.5 ], + "to": [ 9.5, 10.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, -1.5 ], + "to": [ 9.5, 7.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 1.5 ], + "to": [ 6.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 1.5 ], + "to": [ 12.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 7.5 ], + "to": [ 9.5, 4.5, 10.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 7.5 ], + "to": [ 9.5, 10.5, 10.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 10.5 ], + "to": [ 9.5, 7.5, 13.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 7.5 ], + "to": [ 6.5, 7.5, 10.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 7.5 ], + "to": [ 12.5, 7.5, 10.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_2tick_on_locked.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_2tick_on_locked.json new file mode 100644 index 000000000..897e0bfc3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_2tick_on_locked.json @@ -0,0 +1,92 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater_on", + "slab": "block/smooth_stone", + "top": "block/repeater_on", + "lit": "block/redstone_torch", + "lock": "block/bedrock" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 2, 2, 8 ], + "to": [ 14, 4, 10 ], + "faces": { + "up": { "uv": [ 7, 2, 9, 14 ], "texture": "#lock", "rotation": 90 }, + "north": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "south": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "west": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" }, + "east": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 1.5 ], + "to": [ 9.5, 4.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 1.5 ], + "to": [ 9.5, 10.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, -1.5 ], + "to": [ 9.5, 7.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 1.5 ], + "to": [ 6.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 1.5 ], + "to": [ 12.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_3tick.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_3tick.json new file mode 100644 index 000000000..ea1d922c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_3tick.json @@ -0,0 +1,42 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater", + "slab": "block/smooth_stone", + "top": "block/repeater", + "unlit": "block/redstone_torch_off" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 10 ], + "to": [ 9, 7, 12 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_3tick_locked.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_3tick_locked.json new file mode 100644 index 000000000..13ce208d9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_3tick_locked.json @@ -0,0 +1,43 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater", + "slab": "block/smooth_stone", + "top": "block/repeater", + "lock": "block/bedrock", + "unlit": "block/redstone_torch_off" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 2, 2, 10 ], + "to": [ 14, 4, 12 ], + "faces": { + "up": { "uv": [ 7, 2, 9, 14 ], "texture": "#lock", "rotation": 90 }, + "north": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "south": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "west": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" }, + "east": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_3tick_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_3tick_on.json new file mode 100644 index 000000000..fd1413834 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_3tick_on.json @@ -0,0 +1,140 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater_on", + "slab": "block/smooth_stone", + "top": "block/repeater_on", + "lit": "block/redstone_torch" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 10 ], + "to": [ 9, 7, 12 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 1.5 ], + "to": [ 9.5, 4.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 1.5 ], + "to": [ 9.5, 10.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, -1.5 ], + "to": [ 9.5, 7.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 1.5 ], + "to": [ 6.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 1.5 ], + "to": [ 12.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 9.5 ], + "to": [ 9.5, 4.5, 12.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 9.5 ], + "to": [ 9.5, 10.5, 12.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 6.5 ], + "to": [ 9.5, 7.5, 9.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 12.5 ], + "to": [ 9.5, 7.5, 15.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 9.5 ], + "to": [ 6.5, 7.5, 12.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 9.5 ], + "to": [ 12.5, 7.5, 12.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_3tick_on_locked.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_3tick_on_locked.json new file mode 100644 index 000000000..d5aca9eb9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_3tick_on_locked.json @@ -0,0 +1,92 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater_on", + "slab": "block/smooth_stone", + "top": "block/repeater_on", + "lit": "block/redstone_torch", + "lock": "block/bedrock" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 2, 2, 10 ], + "to": [ 14, 4, 12 ], + "faces": { + "up": { "uv": [ 7, 2, 9, 14 ], "texture": "#lock", "rotation": 90 }, + "north": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "south": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "west": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" }, + "east": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 1.5 ], + "to": [ 9.5, 4.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 1.5 ], + "to": [ 9.5, 10.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, -1.5 ], + "to": [ 9.5, 7.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 1.5 ], + "to": [ 6.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 1.5 ], + "to": [ 12.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_4tick.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_4tick.json new file mode 100644 index 000000000..f8b357b6e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_4tick.json @@ -0,0 +1,42 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater", + "slab": "block/smooth_stone", + "top": "block/repeater", + "unlit": "block/redstone_torch_off" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 12 ], + "to": [ 9, 7, 14 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_4tick_locked.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_4tick_locked.json new file mode 100644 index 000000000..7a6aca0c0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_4tick_locked.json @@ -0,0 +1,43 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater", + "slab": "block/smooth_stone", + "top": "block/repeater", + "lock": "block/bedrock", + "unlit": "block/redstone_torch_off" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 2, 2, 12 ], + "to": [ 14, 4, 14 ], + "faces": { + "up": { "uv": [ 7, 2, 9, 14 ], "texture": "#lock", "rotation": 90 }, + "north": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "south": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "west": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" }, + "east": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#unlit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#unlit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_4tick_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_4tick_on.json new file mode 100644 index 000000000..01cd32881 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_4tick_on.json @@ -0,0 +1,140 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater_on", + "slab": "block/smooth_stone", + "top": "block/repeater_on", + "lit": "block/redstone_torch" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 7, 2, 12 ], + "to": [ 9, 7, 14 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 1.5 ], + "to": [ 9.5, 4.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 1.5 ], + "to": [ 9.5, 10.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, -1.5 ], + "to": [ 9.5, 7.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 1.5 ], + "to": [ 6.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 1.5 ], + "to": [ 12.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 11.5 ], + "to": [ 9.5, 4.5, 14.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 11.5 ], + "to": [ 9.5, 10.5, 14.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 8.5 ], + "to": [ 9.5, 7.5, 11.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 14.5 ], + "to": [ 9.5, 7.5, 17.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 11.5 ], + "to": [ 6.5, 7.5, 14.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 11.5 ], + "to": [ 12.5, 7.5, 14.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_4tick_on_locked.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_4tick_on_locked.json new file mode 100644 index 000000000..6ad187cde --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeater_4tick_on_locked.json @@ -0,0 +1,92 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/repeater_on", + "slab": "block/smooth_stone", + "top": "block/repeater_on", + "lit": "block/redstone_torch", + "lock": "block/bedrock" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#slab", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#slab", "cullface": "east" } + } + }, + { "from": [ 2, 2, 12 ], + "to": [ 14, 4, 14 ], + "faces": { + "up": { "uv": [ 7, 2, 9, 14 ], "texture": "#lock", "rotation": 90 }, + "north": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "south": { "uv": [ 2, 7, 14, 9 ], "texture": "#lock" }, + "west": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" }, + "east": { "uv": [ 6, 7, 8, 9 ], "texture": "#lock" } + } + }, + { "from": [ 7, 2, 2 ], + "to": [ 9, 7, 4 ], + "shade": false, + "faces": { + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#lit" }, + "north": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "south": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "west": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" }, + "east": { "uv": [ 7, 6, 9, 11 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 1.5, 1.5 ], + "to": [ 9.5, 4.5, 4.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 7.5, 1.5 ], + "to": [ 9.5, 10.5, 4.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, -1.5 ], + "to": [ 9.5, 7.5, 1.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 6.5, 4.5, 4.5 ], + "to": [ 9.5, 7.5, 7.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#lit" } + } + }, + { + "from": [ 3.5, 4.5, 1.5 ], + "to": [ 6.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#lit" } + } + }, + { + "from": [ 9.5, 4.5, 1.5 ], + "to": [ 12.5, 7.5, 4.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#lit" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeating_command_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeating_command_block.json new file mode 100644 index 000000000..7525fc9b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeating_command_block.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_command_block", + "textures": { + "back": "minecraft:block/repeating_command_block_back", + "front": "minecraft:block/repeating_command_block_front", + "side": "minecraft:block/repeating_command_block_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeating_command_block_conditional.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeating_command_block_conditional.json new file mode 100644 index 000000000..f261c6723 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/repeating_command_block_conditional.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_command_block", + "textures": { + "back": "minecraft:block/repeating_command_block_back", + "front": "minecraft:block/repeating_command_block_front", + "side": "minecraft:block/repeating_command_block_conditional" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_block.json new file mode 100644 index 000000000..00105c855 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/resin_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_slab.json new file mode 100644 index 000000000..2bfd9fd3f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/resin_bricks", + "side": "minecraft:block/resin_bricks", + "top": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_slab_top.json new file mode 100644 index 000000000..4e4c9f7f0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/resin_bricks", + "side": "minecraft:block/resin_bricks", + "top": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_stairs.json new file mode 100644 index 000000000..bd7641da3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/resin_bricks", + "side": "minecraft:block/resin_bricks", + "top": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_stairs_inner.json new file mode 100644 index 000000000..c047a26e5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/resin_bricks", + "side": "minecraft:block/resin_bricks", + "top": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_stairs_outer.json new file mode 100644 index 000000000..224ab6067 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/resin_bricks", + "side": "minecraft:block/resin_bricks", + "top": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_wall_inventory.json new file mode 100644 index 000000000..3df22e2ab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_wall_post.json new file mode 100644 index 000000000..6279361fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_wall_side.json new file mode 100644 index 000000000..60f1aa1d1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_wall_side_tall.json new file mode 100644 index 000000000..d72cfbaf3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_bricks.json new file mode 100644 index 000000000..60373f8e0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/resin_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_clump.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_clump.json new file mode 100644 index 000000000..5f2f603de --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/resin_clump.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/resin_clump", + "texture": "block/resin_clump" + }, + "elements": [ + { "from": [ 0, 0, 0.1 ], + "to": [ 16, 16, 0.1 ], + "faces": { + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/respawn_anchor_0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/respawn_anchor_0.json new file mode 100644 index 000000000..29c7e5fc6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/respawn_anchor_0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/respawn_anchor_bottom", + "side": "minecraft:block/respawn_anchor_side0", + "top": "minecraft:block/respawn_anchor_top_off" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/respawn_anchor_1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/respawn_anchor_1.json new file mode 100644 index 000000000..00989b93b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/respawn_anchor_1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/respawn_anchor_bottom", + "side": "minecraft:block/respawn_anchor_side1", + "top": "minecraft:block/respawn_anchor_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/respawn_anchor_2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/respawn_anchor_2.json new file mode 100644 index 000000000..b0ea19bed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/respawn_anchor_2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/respawn_anchor_bottom", + "side": "minecraft:block/respawn_anchor_side2", + "top": "minecraft:block/respawn_anchor_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/respawn_anchor_3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/respawn_anchor_3.json new file mode 100644 index 000000000..fd67ee066 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/respawn_anchor_3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/respawn_anchor_bottom", + "side": "minecraft:block/respawn_anchor_side3", + "top": "minecraft:block/respawn_anchor_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/respawn_anchor_4.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/respawn_anchor_4.json new file mode 100644 index 000000000..068403c49 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/respawn_anchor_4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/respawn_anchor_bottom", + "side": "minecraft:block/respawn_anchor_side4", + "top": "minecraft:block/respawn_anchor_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rooted_dirt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rooted_dirt.json new file mode 100644 index 000000000..f9e1f179c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rooted_dirt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/rooted_dirt" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rose_bush_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rose_bush_bottom.json new file mode 100644 index 000000000..88116aa33 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rose_bush_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/rose_bush_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rose_bush_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rose_bush_top.json new file mode 100644 index 000000000..79066463a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/rose_bush_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/rose_bush_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sand.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sand.json new file mode 100644 index 000000000..b73935a3e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sand.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/sand" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone.json new file mode 100644 index 000000000..1271558b3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/sandstone_bottom", + "side": "minecraft:block/sandstone", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_slab.json new file mode 100644 index 000000000..fbaa615dd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/sandstone_bottom", + "side": "minecraft:block/sandstone", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_slab_top.json new file mode 100644 index 000000000..e0f4a0dda --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/sandstone_bottom", + "side": "minecraft:block/sandstone", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_stairs.json new file mode 100644 index 000000000..664202e5a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/sandstone_bottom", + "side": "minecraft:block/sandstone", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_stairs_inner.json new file mode 100644 index 000000000..8a83ad96a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/sandstone_bottom", + "side": "minecraft:block/sandstone", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_stairs_outer.json new file mode 100644 index 000000000..7deee18f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/sandstone_bottom", + "side": "minecraft:block/sandstone", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_wall_inventory.json new file mode 100644 index 000000000..ab5aa55e0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_wall_post.json new file mode 100644 index 000000000..edcb0e4e8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_wall_side.json new file mode 100644 index 000000000..f195f7fbd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_wall_side_tall.json new file mode 100644 index 000000000..dc29097f9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sandstone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/sandstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/scaffolding_stable.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/scaffolding_stable.json new file mode 100644 index 000000000..bbcb6c4ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/scaffolding_stable.json @@ -0,0 +1,99 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/scaffolding_top", + "top": "block/scaffolding_top", + "side": "block/scaffolding_side", + "bottom": "block/scaffolding_bottom" + }, + "elements": [ + { + "from": [0, 15.99, 0], + "to": [16, 16, 16], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#top", "uv": [0, 16, 16, 0] } + } + }, + { + "from": [0, 0, 0], + "to": [2, 16, 2], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [0, 0, 14], + "to": [2, 16, 16], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [14, 0, 14], + "to": [16, 16, 16], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [14, 0, 0], + "to": [16, 16, 2], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [2, 14, 0], + "to": [14, 16, 2], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "uv": [2, 2, 14, 4] }, + "down": { "texture": "#bottom" } + } + }, + { + "from": [2, 14, 14], + "to": [14, 16, 16], + "faces": { + "north": { "texture": "#side", "uv": [14, 0, 2, 2] }, + "south": { "texture": "#side", "cullface": "south" }, + "down": { "texture": "#bottom" } + } + }, + { + "from": [14, 14, 2], + "to": [16, 16, 14], + "faces": { + "east": { "texture": "#side", "uv": [14, 0, 2, 2], "cullface": "east" }, + "west": { "texture": "#side", "uv": [14, 2, 2, 4] }, + "down": { "texture": "#bottom" } + } + }, + { + "from": [0, 14, 2], + "to": [2, 16, 14], + "faces": { + "east": { "texture": "#side" }, + "west": { "texture": "#side", "uv": [14, 0, 2, 2], "cullface": "west" }, + "down": { "texture": "#bottom" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/scaffolding_unstable.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/scaffolding_unstable.json new file mode 100644 index 000000000..72ba9369e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/scaffolding_unstable.json @@ -0,0 +1,143 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/scaffolding_top", + "top": "block/scaffolding_top", + "side": "block/scaffolding_side", + "bottom": "block/scaffolding_bottom" + }, + "elements": [ + { + "from": [0, 15.99, 0], + "to": [16, 16, 16], + "faces": { + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#top", "uv": [0, 16, 16, 0] } + } + }, + { + "from": [0, 0, 0], + "to": [2, 16, 2], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [0, 0, 14], + "to": [2, 16, 16], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [14, 0, 14], + "to": [16, 16, 16], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [14, 0, 0], + "to": [16, 16, 2], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [2, 14, 0], + "to": [14, 16, 2], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side", "uv": [2, 2, 14, 4] }, + "down": { "texture": "#bottom" } + } + }, + { + "from": [2, 14, 14], + "to": [14, 16, 16], + "faces": { + "north": { "texture": "#side", "uv": [14, 0, 2, 2] }, + "south": { "texture": "#side", "cullface": "south" }, + "down": { "texture": "#bottom" } + } + }, + { + "from": [14, 14, 2], + "to": [16, 16, 14], + "faces": { + "east": { "texture": "#side", "uv": [14, 0, 2, 2], "cullface": "east" }, + "west": { "texture": "#side", "uv": [14, 2, 2, 4] }, + "down": { "texture": "#bottom" } + } + }, + { + "from": [0, 14, 2], + "to": [2, 16, 14], + "faces": { + "east": { "texture": "#side" }, + "west": { "texture": "#side", "uv": [14, 0, 2, 2], "cullface": "west" }, + "down": { "texture": "#bottom" } + } + }, + { + "from": [0, 1.99, 0], + "to": [16, 2, 16], + "faces": { + "up": { "texture": "#top"}, + "down": { "uv": [0, 16, 16, 0], "texture": "#top" } + } + }, + { + "from": [2, 0, 0], + "to": [14, 2, 2], + "faces": { + "north": { "texture": "#side", "uv": [2, 0, 14, 2] , "cullface": "north" }, + "south": { "texture": "#side", "uv": [2, 2, 14, 4] }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [2, 0, 14], + "to": [14, 2, 16], + "faces": { + "north": { "texture": "#side", "uv": [14, 0, 2, 2] }, + "south": { "texture": "#side", "uv": [2, 0, 14, 2] , "cullface": "south" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [14, 0, 2], + "to": [16, 2, 14], + "faces": { + "east": { "texture": "#side", "uv": [14, 0, 2, 2], "cullface": "east"}, + "west": { "texture": "#side", "uv": [14, 2, 2, 4] }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [0, 0, 2], + "to": [2, 2, 14], + "faces": { + "east": { "texture": "#side", "uv": [2, 0, 14, 2] }, + "west": { "texture": "#side", "uv": [14, 0, 2, 2], "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk.json new file mode 100644 index 000000000..28942bfc5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/sculk" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_catalyst.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_catalyst.json new file mode 100644 index 000000000..f678701be --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_catalyst.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/sculk_catalyst_bottom", + "side": "minecraft:block/sculk_catalyst_side", + "top": "minecraft:block/sculk_catalyst_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_catalyst_bloom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_catalyst_bloom.json new file mode 100644 index 000000000..5255598df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_catalyst_bloom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/sculk_catalyst_bottom", + "side": "minecraft:block/sculk_catalyst_side_bloom", + "top": "minecraft:block/sculk_catalyst_top_bloom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_mirrored.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_mirrored.json new file mode 100644 index 000000000..f00920110 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_mirrored.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_mirrored_all", + "textures": { + "all": "minecraft:block/sculk" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_sensor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_sensor.json new file mode 100644 index 000000000..e3307b7f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_sensor.json @@ -0,0 +1,60 @@ +{ + "parent": "block/block", + "textures": { + "bottom": "block/sculk_sensor_bottom", + "side": "block/sculk_sensor_side", + "tendrils": "block/sculk_sensor_tendril_inactive", + "top": "block/sculk_sensor_top", + "particle": "block/sculk_sensor_bottom" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 8, 16], + "faces": { + "north": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "north"}, + "east": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "east"}, + "south": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "south"}, + "west": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#top"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#bottom", "cullface": "down"} + } + }, + { + "from": [-1, 8, 3], + "to": [7, 16, 3], + "rotation": {"angle": 45, "axis": "y", "origin": [3, 12, 3]}, + "faces": { + "north": {"uv": [4, 8, 12, 16], "texture": "#tendrils" }, + "south": {"uv": [12, 8, 4, 16], "texture": "#tendrils" } + } + }, + { + "from": [9, 8, 3], + "to": [17, 16, 3], + "rotation": {"angle": -45, "axis": "y", "origin": [13, 12, 3]}, + "faces": { + "north": {"uv": [12, 8, 4, 16], "texture": "#tendrils" }, + "south": {"uv": [4, 8, 12, 16], "texture": "#tendrils" } + } + }, + { + "from": [9, 8, 13], + "to": [17, 16, 13], + "rotation": {"angle": 45, "axis": "y", "origin": [13, 12, 13]}, + "faces": { + "north": {"uv": [12, 8, 4, 16], "texture": "#tendrils" }, + "south": {"uv": [4, 8, 12, 16], "texture": "#tendrils" } + } + }, + { + "from": [-1, 8, 13], + "to": [7, 16, 13], + "rotation": {"angle": -45, "axis": "y", "origin": [3, 12, 13]}, + "faces": { + "north": {"uv": [4, 8, 12, 16], "texture": "#tendrils" }, + "south": {"uv": [12, 8, 4, 16], "texture": "#tendrils" } + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_sensor_active.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_sensor_active.json new file mode 100644 index 000000000..92852fcb2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_sensor_active.json @@ -0,0 +1,6 @@ +{ + "parent": "block/sculk_sensor", + "textures": { + "tendrils": "block/sculk_sensor_tendril_active" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_sensor_inactive.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_sensor_inactive.json new file mode 100644 index 000000000..060f59e7b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_sensor_inactive.json @@ -0,0 +1,6 @@ +{ + "parent": "block/sculk_sensor", + "textures": { + "tendrils": "block/sculk_sensor_tendril_inactive" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_shrieker.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_shrieker.json new file mode 100644 index 000000000..04316a1de --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_shrieker.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_sculk_shrieker", + "textures": { + "bottom": "minecraft:block/sculk_shrieker_bottom", + "inner_top": "minecraft:block/sculk_shrieker_inner_top", + "particle": "minecraft:block/sculk_shrieker_bottom", + "side": "minecraft:block/sculk_shrieker_side", + "top": "minecraft:block/sculk_shrieker_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_shrieker_can_summon.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_shrieker_can_summon.json new file mode 100644 index 000000000..2b543dc4d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_shrieker_can_summon.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_sculk_shrieker", + "textures": { + "bottom": "minecraft:block/sculk_shrieker_bottom", + "inner_top": "minecraft:block/sculk_shrieker_can_summon_inner_top", + "particle": "minecraft:block/sculk_shrieker_bottom", + "side": "minecraft:block/sculk_shrieker_side", + "top": "minecraft:block/sculk_shrieker_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_vein.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_vein.json new file mode 100644 index 000000000..808c3ca9d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sculk_vein.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/sculk_vein", + "sculk_vein": "block/sculk_vein" + }, + "elements": [ + { "from": [ 0, 0, 0.1 ], + "to": [ 16, 16, 0.1 ], + "faces": { + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#sculk_vein" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#sculk_vein" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sea_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sea_lantern.json new file mode 100644 index 000000000..f7602b29d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sea_lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/sea_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sea_pickle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sea_pickle.json new file mode 100644 index 000000000..31fef1af6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sea_pickle.json @@ -0,0 +1,47 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/sea_pickle", + "all": "block/sea_pickle" + }, + "elements": [ + { "from": [ 6, 0, 6 ], + "to": [ 10, 6, 10 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 6, 5.95, 6 ], + "to": [ 10, 5.95, 10 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 7.5, 5.2, 8 ], + "to": [ 8.5, 8.7, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 8, 5.2, 7.5 ], + "to": [ 8, 8.7, 8.5 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/seagrass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/seagrass.json new file mode 100644 index 000000000..53c7a3923 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/seagrass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_seagrass", + "textures": { + "texture": "minecraft:block/seagrass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/short_dry_grass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/short_dry_grass.json new file mode 100644 index 000000000..062a1f332 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/short_dry_grass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/short_dry_grass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/short_grass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/short_grass.json new file mode 100644 index 000000000..6cd93c94b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/short_grass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/short_grass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/shroomlight.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/shroomlight.json new file mode 100644 index 000000000..13f52aa3f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/shroomlight.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/shroomlight" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/shulker_box.json new file mode 100644 index 000000000..7eb23421c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/skull.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/skull.json new file mode 100644 index 000000000..99a7d7095 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/skull.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/soul_sand" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/slab.json new file mode 100644 index 000000000..1eadc701d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/slab.json @@ -0,0 +1,18 @@ +{ "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 8, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/slab_top.json new file mode 100644 index 000000000..e21eb9329 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/slab_top.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#side" + }, + "elements": [ + { "from": [ 0, 8, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 8 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 8 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 8 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/slightly_cracked_turtle_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/slightly_cracked_turtle_egg.json new file mode 100644 index 000000000..fe9f6dc2a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/slightly_cracked_turtle_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_turtle_egg", + "textures": { + "all": "minecraft:block/turtle_egg_slightly_cracked" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/slime_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/slime_block.json new file mode 100644 index 000000000..95f92bdf4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/slime_block.json @@ -0,0 +1,30 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/slime_block", + "texture": "block/slime_block" + }, + "elements": [ + { "from": [ 3, 3, 3 ], + "to": [ 13, 13, 13 ], + "faces": { + "down": { "uv": [ 3, 3, 13, 13 ], "texture": "#texture" }, + "up": { "uv": [ 3, 3, 13, 13 ], "texture": "#texture" }, + "north": { "uv": [ 3, 3, 13, 13 ], "texture": "#texture" }, + "south": { "uv": [ 3, 3, 13, 13 ], "texture": "#texture" }, + "west": { "uv": [ 3, 3, 13, 13 ], "texture": "#texture" }, + "east": { "uv": [ 3, 3, 13, 13 ], "texture": "#texture" } + } + }, + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/small_amethyst_bud.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/small_amethyst_bud.json new file mode 100644 index 000000000..a8f342fd7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/small_amethyst_bud.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/small_amethyst_bud" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/small_dripleaf_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/small_dripleaf_bottom.json new file mode 100644 index 000000000..df2b8fe5c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/small_dripleaf_bottom.json @@ -0,0 +1,27 @@ +{ + "parent": "block/block", + "textures": { + "stem": "block/small_dripleaf_stem_bottom", + "particle": "block/big_dripleaf_stem" + }, + "elements": [ + { "from": [ 4.5, 0, 8 ], + "to": [ 11.5, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": false }, + "shade": false, + "faces": { + "north": { "uv": [ 5, 0, 12, 16 ], "texture": "#stem" }, + "south": { "uv": [ 5, 0, 12, 16 ], "texture": "#stem" } + } + }, + { "from": [ 4.5, 0, 8 ], + "to": [ 11.5, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": -45, "rescale": false }, + "shade": false, + "faces": { + "north": { "uv": [ 5, 0, 12, 16 ], "texture": "#stem" }, + "south": { "uv": [ 5, 0, 12, 16 ], "texture": "#stem" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/small_dripleaf_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/small_dripleaf_top.json new file mode 100644 index 000000000..847edac30 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/small_dripleaf_top.json @@ -0,0 +1,83 @@ +{ + "parent": "block/block", + "textures": { + "top": "block/small_dripleaf_top", + "side": "block/small_dripleaf_side", + "stem": "block/small_dripleaf_stem_top", + "particle": "block/small_dripleaf_top" + }, + "elements": [ + { "from": [ 8, 3, 8 ], + "to": [ 15, 3, 15 ], + "shade": false, + "faces": { + "down": { "uv": [ 8, 0, 0, 8 ], "texture": "#top" }, + "up": { "uv": [ 8, 8, 0, 0 ], "texture": "#top" } + } + }, + { "from": [ 1, 8.02, 1 ], + "to": [ 8, 8.02, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 8, 8, 0 ], "texture": "#top" }, + "up": { "uv": [ 0, 0, 8, 8 ], "texture": "#top" } + } + }, + { "from": [ 1, 12.02, 8 ], + "to": [ 8, 12.02, 15 ], + "shade": false, + "faces": { + "down": { "uv": [ 8, 0, 0, 8 ], "texture": "#top" , "rotation": 270}, + "up": { "uv": [ 0, 0, 8, 8 ], "texture": "#top" , "rotation": 270} + } + }, + { "from": [ 8, 2, 8 ], + "to": [ 15, 3, 15 ], + "shade": false, + "faces": { + "east": { "uv": [ 0, 0, 8, 1 ], "texture": "#side" }, + "west": { "uv": [ 0, 0, 8, 1 ], "texture": "#side" }, + "north": { "uv": [ 0, 0, 8, 1 ], "texture": "#side" }, + "south": { "uv": [ 0, 0, 8, 1 ], "texture": "#side" } + } + }, + { "from": [ 1, 7.02, 1 ], + "to": [ 8, 8.02, 8 ], + "shade": false, + "faces": { + "east": { "uv": [ 0, 0, 8, 1 ], "texture": "#side" }, + "west": { "uv": [ 0, 0, 8, 1 ], "texture": "#side" }, + "north": { "uv": [ 0, 0, 8, 1 ], "texture": "#side" }, + "south": { "uv": [ 0, 0, 8, 1 ], "texture": "#side" } + } + }, + { "from": [ 1, 11.02, 8 ], + "to": [ 8, 12.02, 15 ], + "shade": false, + "faces": { + "east": { "uv": [ 0, 0, 8, 1 ], "texture": "#side"}, + "west": { "uv": [ 0, 0, 8, 1 ], "texture": "#side"}, + "north": { "uv": [ 0, 0, 8, 1 ], "texture": "#side"}, + "south": { "uv": [ 0, 0, 8, 1 ], "texture": "#side"} + } + }, + { "from": [ 4.5, 0, 8 ], + "to": [ 11.5, 14, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": false }, + "shade": false, + "faces": { + "north": { "uv": [ 4, 0, 12, 14 ], "texture": "#stem" }, + "south": { "uv": [ 4, 0, 12, 14 ], "texture": "#stem" } + } + }, + { "from": [ 4.5, 0, 8 ], + "to": [ 11.5, 14, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": -45, "rescale": false }, + "shade": false, + "faces": { + "north": { "uv": [ 4, 0, 12, 14 ], "texture": "#stem" }, + "south": { "uv": [ 4, 0, 12, 14 ], "texture": "#stem" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smithing_table.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smithing_table.json new file mode 100644 index 000000000..f7bcd3e1f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smithing_table.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "down": "minecraft:block/smithing_table_bottom", + "east": "minecraft:block/smithing_table_side", + "north": "minecraft:block/smithing_table_front", + "particle": "minecraft:block/smithing_table_front", + "south": "minecraft:block/smithing_table_front", + "up": "minecraft:block/smithing_table_top", + "west": "minecraft:block/smithing_table_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smoker.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smoker.json new file mode 100644 index 000000000..6babece90 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smoker.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/orientable_with_bottom", + "textures": { + "bottom": "minecraft:block/smoker_bottom", + "front": "minecraft:block/smoker_front", + "side": "minecraft:block/smoker_side", + "top": "minecraft:block/smoker_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smoker_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smoker_on.json new file mode 100644 index 000000000..551e0f8a0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smoker_on.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/orientable_with_bottom", + "textures": { + "bottom": "minecraft:block/smoker_bottom", + "front": "minecraft:block/smoker_front_on", + "side": "minecraft:block/smoker_side", + "top": "minecraft:block/smoker_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_basalt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_basalt.json new file mode 100644 index 000000000..c8f8da1cc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_basalt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/smooth_basalt" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz.json new file mode 100644 index 000000000..7af04ba16 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/quartz_block_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz_slab.json new file mode 100644 index 000000000..a22f5b9fa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/quartz_block_bottom", + "side": "minecraft:block/quartz_block_bottom", + "top": "minecraft:block/quartz_block_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz_slab_top.json new file mode 100644 index 000000000..e65cab28e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/quartz_block_bottom", + "side": "minecraft:block/quartz_block_bottom", + "top": "minecraft:block/quartz_block_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs.json new file mode 100644 index 000000000..c75048dd0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/quartz_block_bottom", + "side": "minecraft:block/quartz_block_bottom", + "top": "minecraft:block/quartz_block_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs_inner.json new file mode 100644 index 000000000..d3a0f20ed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/quartz_block_bottom", + "side": "minecraft:block/quartz_block_bottom", + "top": "minecraft:block/quartz_block_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs_outer.json new file mode 100644 index 000000000..2760bd495 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_quartz_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/quartz_block_bottom", + "side": "minecraft:block/quartz_block_bottom", + "top": "minecraft:block/quartz_block_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone.json new file mode 100644 index 000000000..db56d1c0b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_slab.json new file mode 100644 index 000000000..1597dd8b5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/red_sandstone_top", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_slab_top.json new file mode 100644 index 000000000..8ec4c38bb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/red_sandstone_top", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs.json new file mode 100644 index 000000000..97f7801e1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/red_sandstone_top", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs_inner.json new file mode 100644 index 000000000..0a4edbc11 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/red_sandstone_top", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs_outer.json new file mode 100644 index 000000000..20b58b62c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_red_sandstone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/red_sandstone_top", + "side": "minecraft:block/red_sandstone_top", + "top": "minecraft:block/red_sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone.json new file mode 100644 index 000000000..2f886a74c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone_slab.json new file mode 100644 index 000000000..1e59e358e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/sandstone_top", + "side": "minecraft:block/sandstone_top", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone_slab_top.json new file mode 100644 index 000000000..694512d04 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/sandstone_top", + "side": "minecraft:block/sandstone_top", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs.json new file mode 100644 index 000000000..4bba62dbf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/sandstone_top", + "side": "minecraft:block/sandstone_top", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs_inner.json new file mode 100644 index 000000000..50227f027 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/sandstone_top", + "side": "minecraft:block/sandstone_top", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs_outer.json new file mode 100644 index 000000000..c200a8d68 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_sandstone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/sandstone_top", + "side": "minecraft:block/sandstone_top", + "top": "minecraft:block/sandstone_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_stone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_stone.json new file mode 100644 index 000000000..54595f0c7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_stone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/smooth_stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_stone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_stone_slab.json new file mode 100644 index 000000000..1df1c2316 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_stone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/smooth_stone", + "side": "minecraft:block/smooth_stone_slab_side", + "top": "minecraft:block/smooth_stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_stone_slab_double.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_stone_slab_double.json new file mode 100644 index 000000000..f937d93dd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_stone_slab_double.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/smooth_stone", + "side": "minecraft:block/smooth_stone_slab_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_stone_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_stone_slab_top.json new file mode 100644 index 000000000..b4bc88b82 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/smooth_stone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/smooth_stone", + "side": "minecraft:block/smooth_stone_slab_side", + "top": "minecraft:block/smooth_stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sniffer_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sniffer_egg.json new file mode 100644 index 000000000..65d5380a8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sniffer_egg.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "#north" + }, + "elements": [ + { + "from": [1, 0, 2], + "to": [15, 16, 14], + "faces": { + "north": {"uv": [0, 0, 14, 16], "texture": "#north"}, + "east": {"uv": [0, 0, 12, 16], "texture": "#east"}, + "south": {"uv": [0, 0, 14, 16], "texture": "#south"}, + "west": {"uv": [0, 0, 12, 16], "texture": "#west"}, + "up": {"uv": [0, 0, 14, 12], "texture": "#top", "cullface": "up"}, + "down": {"uv": [0, 0, 14, 12], "texture": "#bottom", "cullface": "down"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sniffer_egg_not_cracked.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sniffer_egg_not_cracked.json new file mode 100644 index 000000000..0b05be19a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sniffer_egg_not_cracked.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/sniffer_egg", + "textures": { + "bottom": "minecraft:block/sniffer_egg_not_cracked_bottom", + "east": "minecraft:block/sniffer_egg_not_cracked_east", + "north": "minecraft:block/sniffer_egg_not_cracked_north", + "south": "minecraft:block/sniffer_egg_not_cracked_south", + "top": "minecraft:block/sniffer_egg_not_cracked_top", + "west": "minecraft:block/sniffer_egg_not_cracked_west" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sniffer_egg_slightly_cracked.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sniffer_egg_slightly_cracked.json new file mode 100644 index 000000000..4ee1aaf61 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sniffer_egg_slightly_cracked.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/sniffer_egg", + "textures": { + "bottom": "minecraft:block/sniffer_egg_slightly_cracked_bottom", + "east": "minecraft:block/sniffer_egg_slightly_cracked_east", + "north": "minecraft:block/sniffer_egg_slightly_cracked_north", + "south": "minecraft:block/sniffer_egg_slightly_cracked_south", + "top": "minecraft:block/sniffer_egg_slightly_cracked_top", + "west": "minecraft:block/sniffer_egg_slightly_cracked_west" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sniffer_egg_very_cracked.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sniffer_egg_very_cracked.json new file mode 100644 index 000000000..f989439d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sniffer_egg_very_cracked.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/sniffer_egg", + "textures": { + "bottom": "minecraft:block/sniffer_egg_very_cracked_bottom", + "east": "minecraft:block/sniffer_egg_very_cracked_east", + "north": "minecraft:block/sniffer_egg_very_cracked_north", + "south": "minecraft:block/sniffer_egg_very_cracked_south", + "top": "minecraft:block/sniffer_egg_very_cracked_top", + "west": "minecraft:block/sniffer_egg_very_cracked_west" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_block.json new file mode 100644 index 000000000..c6c8096c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/snow" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height10.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height10.json new file mode 100644 index 000000000..dd72cc9ec --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height10.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "block/snow", + "texture": "block/snow" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 10, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 6, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 6, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 6, 16, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 6, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height12.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height12.json new file mode 100644 index 000000000..bdce96c01 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height12.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "block/snow", + "texture": "block/snow" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 12, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height14.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height14.json new file mode 100644 index 000000000..30e1d8880 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height14.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "block/snow", + "texture": "block/snow" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 14, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 2, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 2, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 2, 16, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 2, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height2.json new file mode 100644 index 000000000..de13fc622 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height2.json @@ -0,0 +1,19 @@ +{ "parent": "block/thin_block", + "textures": { + "particle": "block/snow", + "texture": "block/snow" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 2, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 14, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 14, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 14, 16, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 14, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height4.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height4.json new file mode 100644 index 000000000..650692c53 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height4.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "block/snow", + "texture": "block/snow" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 4, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 12, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 12, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 12, 16, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 12, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height6.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height6.json new file mode 100644 index 000000000..32468b9b8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height6.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "block/snow", + "texture": "block/snow" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 6, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 10, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 10, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 10, 16, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 10, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height8.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height8.json new file mode 100644 index 000000000..53d22828e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/snow_height8.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "block/snow", + "texture": "block/snow" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 8, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_campfire.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_campfire.json new file mode 100644 index 000000000..d3097b59e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_campfire.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_campfire", + "textures": { + "fire": "minecraft:block/soul_campfire_fire", + "lit_log": "minecraft:block/soul_campfire_log_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_floor0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_floor0.json new file mode 100644 index 000000000..5623972ef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_floor0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_floor", + "textures": { + "fire": "minecraft:block/soul_fire_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_floor1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_floor1.json new file mode 100644 index 000000000..19228ef1f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_floor1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_floor", + "textures": { + "fire": "minecraft:block/soul_fire_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_side0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_side0.json new file mode 100644 index 000000000..253bac582 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_side0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_side", + "textures": { + "fire": "minecraft:block/soul_fire_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_side1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_side1.json new file mode 100644 index 000000000..be0004a32 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_side1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_side", + "textures": { + "fire": "minecraft:block/soul_fire_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_side_alt0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_side_alt0.json new file mode 100644 index 000000000..adb4cff6b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_side_alt0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_side_alt", + "textures": { + "fire": "minecraft:block/soul_fire_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_side_alt1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_side_alt1.json new file mode 100644 index 000000000..3e6e709ab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_fire_side_alt1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fire_side_alt", + "textures": { + "fire": "minecraft:block/soul_fire_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_lantern.json new file mode 100644 index 000000000..6a0a0e997 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_lantern", + "textures": { + "lantern": "minecraft:block/soul_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_lantern_hanging.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_lantern_hanging.json new file mode 100644 index 000000000..8aa725b29 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_lantern_hanging.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_hanging_lantern", + "textures": { + "lantern": "minecraft:block/soul_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_sand.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_sand.json new file mode 100644 index 000000000..ca6235424 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_sand.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/soul_sand" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_soil.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_soil.json new file mode 100644 index 000000000..73a888f67 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_soil.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/soul_soil" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_torch.json new file mode 100644 index 000000000..275d76e25 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_torch", + "textures": { + "torch": "minecraft:block/soul_torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_wall_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_wall_torch.json new file mode 100644 index 000000000..22b9e9ed8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/soul_wall_torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_torch_wall", + "textures": { + "torch": "minecraft:block/soul_torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spawner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spawner.json new file mode 100644 index 000000000..720b6d994 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spawner.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all_inner_faces", + "textures": { + "all": "minecraft:block/spawner" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sponge.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sponge.json new file mode 100644 index 000000000..93acf8854 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sponge.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/sponge" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spore_blossom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spore_blossom.json new file mode 100644 index 000000000..b11ad8d5e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spore_blossom.json @@ -0,0 +1,54 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/spore_blossom", + "flower": "block/spore_blossom", + "base": "block/spore_blossom_base" + }, + "elements": [ + { "from": [ 1, 15.9, 1 ], + "to": [ 15, 15.9, 15 ], + "shade": false, + "faces": { + "up": { "uv": [ 1, 1, 15, 15 ], "texture": "#base"}, + "down": { "uv": [ 1, 1, 15, 15 ], "texture": "#base"} + } + }, + { "from": [ 8, 15.7, 0 ], + "to": [ 24, 15.7, 16 ], + "rotation": { "origin": [ 8, 16, 0 ], "axis": "z", "angle": -22.5, "rescale": false }, + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#flower", "rotation": 90 }, + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#flower", "rotation": 270 } + } + }, + { "from": [ -8, 15.7, 0 ], + "to": [ 8, 15.7, 16 ], + "rotation": { "origin": [ 8, 16, 0 ], "axis": "z", "angle": 22.5, "rescale": false }, + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#flower", "rotation": 270 }, + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#flower", "rotation": 90 } + } + }, + { "from": [ 0, 15.7, 8 ], + "to": [ 16, 15.7, 24 ], + "rotation": { "origin": [ 0, 16, 8 ], "axis": "x", "angle": 22.5, "rescale": false }, + "shade": false, + "faces": { + "up": { "uv": [ 16, 16, 0, 0 ], "texture": "#flower" }, + "down": { "uv": [ 16, 0, 0, 16 ], "texture": "#flower" } + } + }, + { "from": [ 0, 15.7, -8 ], + "to": [ 16, 15.7, 8 ], + "rotation": { "origin": [ 0, 16, 8 ], "axis": "x", "angle": -22.5, "rescale": false }, + "shade": false, + "faces": { + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#flower" }, + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#flower" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_button.json new file mode 100644 index 000000000..7c86fded5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_button_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_button_inventory.json new file mode 100644 index 000000000..372657bbb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_button_pressed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_button_pressed.json new file mode 100644 index 000000000..da881755b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_left.json new file mode 100644 index 000000000..d3c5e003e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/spruce_door_bottom", + "top": "minecraft:block/spruce_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_left_open.json new file mode 100644 index 000000000..04569ba02 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/spruce_door_bottom", + "top": "minecraft:block/spruce_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_right.json new file mode 100644 index 000000000..3274bef68 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/spruce_door_bottom", + "top": "minecraft:block/spruce_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_right_open.json new file mode 100644 index 000000000..22f42b3ff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/spruce_door_bottom", + "top": "minecraft:block/spruce_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_top_left.json new file mode 100644 index 000000000..7dfb61b98 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/spruce_door_bottom", + "top": "minecraft:block/spruce_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_top_left_open.json new file mode 100644 index 000000000..a23353d0d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/spruce_door_bottom", + "top": "minecraft:block/spruce_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_top_right.json new file mode 100644 index 000000000..708af6752 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/spruce_door_bottom", + "top": "minecraft:block/spruce_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_top_right_open.json new file mode 100644 index 000000000..9607e97d1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/spruce_door_bottom", + "top": "minecraft:block/spruce_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_gate.json new file mode 100644 index 000000000..ed324b64d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_open.json new file mode 100644 index 000000000..e6308346e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_wall.json new file mode 100644 index 000000000..05914db03 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_wall_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_wall_open.json new file mode 100644 index 000000000..08e41a5b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_inventory.json new file mode 100644 index 000000000..041d3d298 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_post.json new file mode 100644 index 000000000..fb0f1dbd3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_side.json new file mode 100644 index 000000000..3ad6ffc0e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_hanging_sign.json new file mode 100644 index 000000000..b64f9092a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_leaves.json new file mode 100644 index 000000000..fe8ae0dd7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "minecraft:block/spruce_leaves" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_log.json new file mode 100644 index 000000000..85aa89078 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/spruce_log_top", + "side": "minecraft:block/spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_log_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_log_horizontal.json new file mode 100644 index 000000000..9a7e4aadf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/spruce_log_top", + "side": "minecraft:block/spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_planks.json new file mode 100644 index 000000000..1345a1406 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_pressure_plate.json new file mode 100644 index 000000000..89e7400e3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_pressure_plate_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_pressure_plate_down.json new file mode 100644 index 000000000..8fb289a88 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_sapling.json new file mode 100644 index 000000000..99c270a26 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/spruce_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf.json new file mode 100644 index 000000000..718c3192d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_body", + "textures": { + "all": "minecraft:block/spruce_shelf", + "particle": "minecraft:block/stripped_spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_center.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_center.json new file mode 100644 index 000000000..857686365 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_center.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_center", + "textures": { + "all": "minecraft:block/spruce_shelf", + "particle": "minecraft:block/stripped_spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_inventory.json new file mode 100644 index 000000000..5923ebaa0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_inventory.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_inventory", + "textures": { + "all": "minecraft:block/spruce_shelf", + "particle": "minecraft:block/stripped_spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_left.json new file mode 100644 index 000000000..a7bd0fccc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_left", + "textures": { + "all": "minecraft:block/spruce_shelf", + "particle": "minecraft:block/stripped_spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_right.json new file mode 100644 index 000000000..4e982bdfe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_right", + "textures": { + "all": "minecraft:block/spruce_shelf", + "particle": "minecraft:block/stripped_spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_unconnected.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_unconnected.json new file mode 100644 index 000000000..5443688f3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_unconnected.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unconnected", + "textures": { + "all": "minecraft:block/spruce_shelf", + "particle": "minecraft:block/stripped_spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_unpowered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_unpowered.json new file mode 100644 index 000000000..71c5bca70 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_shelf_unpowered.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unpowered", + "textures": { + "all": "minecraft:block/spruce_shelf", + "particle": "minecraft:block/stripped_spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_sign.json new file mode 100644 index 000000000..d4f03b2e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_slab.json new file mode 100644 index 000000000..bcdc4b2a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/spruce_planks", + "side": "minecraft:block/spruce_planks", + "top": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_slab_top.json new file mode 100644 index 000000000..3cbde014f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/spruce_planks", + "side": "minecraft:block/spruce_planks", + "top": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_stairs.json new file mode 100644 index 000000000..7e53bad1b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/spruce_planks", + "side": "minecraft:block/spruce_planks", + "top": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_stairs_inner.json new file mode 100644 index 000000000..5864e0d61 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/spruce_planks", + "side": "minecraft:block/spruce_planks", + "top": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_stairs_outer.json new file mode 100644 index 000000000..b3ba3d53d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/spruce_planks", + "side": "minecraft:block/spruce_planks", + "top": "minecraft:block/spruce_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_bottom.json new file mode 100644 index 000000000..b5dacb638 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/spruce_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_open.json new file mode 100644 index 000000000..f8b61984a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/spruce_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_top.json new file mode 100644 index 000000000..115897224 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/spruce_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_wood.json new file mode 100644 index 000000000..244a9d5a9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/spruce_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/spruce_log", + "side": "minecraft:block/spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stairs.json new file mode 100644 index 000000000..986ce9c6e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stairs.json @@ -0,0 +1,45 @@ +{ "parent": "block/block", + "display": { + "gui": { + "rotation": [ 30, 135, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "head": { + "rotation": [ 0, -90, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ] + }, + "thirdperson_lefthand": { + "rotation": [ 75, -135, 0 ], + "translation": [ 0, 2.5, 0], + "scale": [ 0.375, 0.375, 0.375 ] + } + }, + "textures": { + "particle": "#side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 8, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 8, 16, 16 ], "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 8, 8, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "up": { "uv": [ 8, 0, 16, 16 ], "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 0, 0, 8, 8 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 8, 0, 16, 8 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#side" }, + "east": { "uv": [ 0, 0, 16, 8 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_fruit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_fruit.json new file mode 100644 index 000000000..86d59c663 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_fruit.json @@ -0,0 +1,31 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 7, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 8 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 8 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 7, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 8 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 0, 0, 8 ], + "to": [ 9, 16, 8 ], + "faces": { + "north": { "uv": [ 9, 0, 0, 16 ], "texture": "#upperstem", "tintindex": 0 }, + "south": { "uv": [ 0, 0, 9, 16 ], "texture": "#upperstem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth0.json new file mode 100644 index 000000000..6e9773156 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth0.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 1, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 2 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 2 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 1, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 2 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 2 ], "texture": "#stem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth1.json new file mode 100644 index 000000000..ea97f754e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth1.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 3, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 4 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 4 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 3, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 4 ], "texture": "#stem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth2.json new file mode 100644 index 000000000..4ab6f4c29 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth2.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 5, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 6 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 6 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 5, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 6 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 6 ], "texture": "#stem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth3.json new file mode 100644 index 000000000..542a82053 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth3.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 7, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 8 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 8 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 7, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 8 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 8 ], "texture": "#stem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth4.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth4.json new file mode 100644 index 000000000..77befcebc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth4.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 9, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 10 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 10 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 9, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 10 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 10 ], "texture": "#stem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth5.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth5.json new file mode 100644 index 000000000..678450e60 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth5.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 11, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 12 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 12 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 11, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 12 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 12 ], "texture": "#stem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth6.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth6.json new file mode 100644 index 000000000..523974e2d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth6.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 13, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 14 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 14 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 13, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 14 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 14 ], "texture": "#stem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth7.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth7.json new file mode 100644 index 000000000..bd4f9d182 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stem_growth7.json @@ -0,0 +1,24 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#stem" + }, + "elements": [ + { "from": [ 0, -1, 8 ], + "to": [ 16, 15, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#stem", "tintindex": 0 }, + "south": { "uv": [ 16, 0, 0, 16 ], "texture": "#stem", "tintindex": 0 } + } + }, + { "from": [ 8, -1, 0 ], + "to": [ 8, 15, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#stem", "tintindex": 0 }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#stem", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sticky_piston.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sticky_piston.json new file mode 100644 index 000000000..84fcdca69 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sticky_piston.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/template_piston", + "textures": { + "bottom": "minecraft:block/piston_bottom", + "platform": "minecraft:block/piston_top_sticky", + "side": "minecraft:block/piston_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sticky_piston_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sticky_piston_inventory.json new file mode 100644 index 000000000..24b376ab3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sticky_piston_inventory.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/piston_bottom", + "side": "minecraft:block/piston_side", + "top": "minecraft:block/piston_top_sticky" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone.json new file mode 100644 index 000000000..1a2f6a79a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_slab.json new file mode 100644 index 000000000..8c8e75d21 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/stone_bricks", + "side": "minecraft:block/stone_bricks", + "top": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_slab_top.json new file mode 100644 index 000000000..40d3e83a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/stone_bricks", + "side": "minecraft:block/stone_bricks", + "top": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_stairs.json new file mode 100644 index 000000000..e46882250 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/stone_bricks", + "side": "minecraft:block/stone_bricks", + "top": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_stairs_inner.json new file mode 100644 index 000000000..a4d116596 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/stone_bricks", + "side": "minecraft:block/stone_bricks", + "top": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_stairs_outer.json new file mode 100644 index 000000000..92b707bc9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/stone_bricks", + "side": "minecraft:block/stone_bricks", + "top": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_wall_inventory.json new file mode 100644 index 000000000..b15051bc2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_wall_post.json new file mode 100644 index 000000000..47ee222af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_wall_side.json new file mode 100644 index 000000000..86d914b4d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_wall_side_tall.json new file mode 100644 index 000000000..6dd8aa447 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_bricks.json new file mode 100644 index 000000000..87f6bbe0e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/stone_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_button.json new file mode 100644 index 000000000..42d1cc4d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_button_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_button_inventory.json new file mode 100644 index 000000000..ffee63f28 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_button_pressed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_button_pressed.json new file mode 100644 index 000000000..4606dfa0f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_mirrored.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_mirrored.json new file mode 100644 index 000000000..3cf2cb6d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_mirrored.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_mirrored_all", + "textures": { + "all": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_pressure_plate.json new file mode 100644 index 000000000..98b53783e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_pressure_plate_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_pressure_plate_down.json new file mode 100644 index 000000000..ff0d176c5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_slab.json new file mode 100644 index 000000000..b52b9cd51 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/stone", + "side": "minecraft:block/stone", + "top": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_slab_top.json new file mode 100644 index 000000000..62f911590 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/stone", + "side": "minecraft:block/stone", + "top": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_stairs.json new file mode 100644 index 000000000..fe93e7f60 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/stone", + "side": "minecraft:block/stone", + "top": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_stairs_inner.json new file mode 100644 index 000000000..08f85f6cb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/stone", + "side": "minecraft:block/stone", + "top": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_stairs_outer.json new file mode 100644 index 000000000..24ddd3aeb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/stone", + "side": "minecraft:block/stone", + "top": "minecraft:block/stone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stonecutter.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stonecutter.json new file mode 100644 index 000000000..b89f0aaa1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stonecutter.json @@ -0,0 +1,29 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/stonecutter_bottom", + "bottom": "block/stonecutter_bottom", + "top": "block/stonecutter_top", + "side": "block/stonecutter_side", + "saw": "block/stonecutter_saw" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 9, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 7, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 7, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 7, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 7, 16, 16 ], "texture": "#side", "cullface": "east" } + } + }, + { "from": [ 1, 9, 8 ], + "to": [ 15, 16, 8 ], + "faces": { + "north": { "uv": [ 1, 9, 15, 16 ], "texture": "#saw", "tintindex": 0 }, + "south": { "uv": [ 15, 9, 1, 16 ], "texture": "#saw", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_acacia_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_acacia_log.json new file mode 100644 index 000000000..54d47b631 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_acacia_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_acacia_log_top", + "side": "minecraft:block/stripped_acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_acacia_log_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_acacia_log_horizontal.json new file mode 100644 index 000000000..454c86b53 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_acacia_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/stripped_acacia_log_top", + "side": "minecraft:block/stripped_acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_acacia_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_acacia_wood.json new file mode 100644 index 000000000..1583b0d5a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_acacia_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_acacia_log", + "side": "minecraft:block/stripped_acacia_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block.json new file mode 100644 index 000000000..9e838eac2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_bamboo_block_top", + "side": "minecraft:block/stripped_bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_x.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_x.json new file mode 100644 index 000000000..c657a0ccf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_x.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_x", + "textures": { + "end": "minecraft:block/stripped_bamboo_block_top", + "side": "minecraft:block/stripped_bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_y.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_y.json new file mode 100644 index 000000000..96bd5d24b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_y.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_y", + "textures": { + "end": "minecraft:block/stripped_bamboo_block_top", + "side": "minecraft:block/stripped_bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_z.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_z.json new file mode 100644 index 000000000..21c919af1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_bamboo_block_z.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_z", + "textures": { + "end": "minecraft:block/stripped_bamboo_block_top", + "side": "minecraft:block/stripped_bamboo_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_birch_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_birch_log.json new file mode 100644 index 000000000..d7e395a75 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_birch_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_birch_log_top", + "side": "minecraft:block/stripped_birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_birch_log_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_birch_log_horizontal.json new file mode 100644 index 000000000..6f62e4213 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_birch_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/stripped_birch_log_top", + "side": "minecraft:block/stripped_birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_birch_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_birch_wood.json new file mode 100644 index 000000000..4faf78e3b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_birch_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_birch_log", + "side": "minecraft:block/stripped_birch_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_cherry_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_cherry_log.json new file mode 100644 index 000000000..08f5f52c3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_cherry_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_cherry_log_top", + "side": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_x.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_x.json new file mode 100644 index 000000000..00e524f2a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_x.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_x", + "textures": { + "end": "minecraft:block/stripped_cherry_log_top", + "side": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_y.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_y.json new file mode 100644 index 000000000..8ff831c2c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_y.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_y", + "textures": { + "end": "minecraft:block/stripped_cherry_log_top", + "side": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_z.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_z.json new file mode 100644 index 000000000..8137f6a7a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_cherry_log_z.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_uv_locked_z", + "textures": { + "end": "minecraft:block/stripped_cherry_log_top", + "side": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_cherry_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_cherry_wood.json new file mode 100644 index 000000000..6c9b2d4e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_cherry_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_cherry_log", + "side": "minecraft:block/stripped_cherry_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_crimson_hyphae.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_crimson_hyphae.json new file mode 100644 index 000000000..cbc86c4dc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_crimson_hyphae.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_crimson_stem", + "side": "minecraft:block/stripped_crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_crimson_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_crimson_stem.json new file mode 100644 index 000000000..8104f731f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_crimson_stem.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_crimson_stem_top", + "side": "minecraft:block/stripped_crimson_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_log.json new file mode 100644 index 000000000..fa1dedea2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_dark_oak_log_top", + "side": "minecraft:block/stripped_dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_log_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_log_horizontal.json new file mode 100644 index 000000000..c4e5e432b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/stripped_dark_oak_log_top", + "side": "minecraft:block/stripped_dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_wood.json new file mode 100644 index 000000000..1ca9d015b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_dark_oak_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_dark_oak_log", + "side": "minecraft:block/stripped_dark_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_jungle_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_jungle_log.json new file mode 100644 index 000000000..d40694df0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_jungle_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_jungle_log_top", + "side": "minecraft:block/stripped_jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_jungle_log_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_jungle_log_horizontal.json new file mode 100644 index 000000000..0dd48d1c9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_jungle_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/stripped_jungle_log_top", + "side": "minecraft:block/stripped_jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_jungle_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_jungle_wood.json new file mode 100644 index 000000000..f4b0fe761 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_jungle_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_jungle_log", + "side": "minecraft:block/stripped_jungle_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_mangrove_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_mangrove_log.json new file mode 100644 index 000000000..5a8654ea3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_mangrove_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_mangrove_log_top", + "side": "minecraft:block/stripped_mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_mangrove_log_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_mangrove_log_horizontal.json new file mode 100644 index 000000000..70f40bdfc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_mangrove_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/stripped_mangrove_log_top", + "side": "minecraft:block/stripped_mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_mangrove_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_mangrove_wood.json new file mode 100644 index 000000000..900c73d87 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_mangrove_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_mangrove_log", + "side": "minecraft:block/stripped_mangrove_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_oak_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_oak_log.json new file mode 100644 index 000000000..4b3fc0575 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_oak_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_oak_log_top", + "side": "minecraft:block/stripped_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_oak_log_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_oak_log_horizontal.json new file mode 100644 index 000000000..a1163f03c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_oak_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/stripped_oak_log_top", + "side": "minecraft:block/stripped_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_oak_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_oak_wood.json new file mode 100644 index 000000000..554325dd6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_oak_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_oak_log", + "side": "minecraft:block/stripped_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_log.json new file mode 100644 index 000000000..92a32ce9c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_pale_oak_log_top", + "side": "minecraft:block/stripped_pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_log_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_log_horizontal.json new file mode 100644 index 000000000..eedd285b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/stripped_pale_oak_log_top", + "side": "minecraft:block/stripped_pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_wood.json new file mode 100644 index 000000000..9ace5fd33 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_pale_oak_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_pale_oak_log", + "side": "minecraft:block/stripped_pale_oak_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_spruce_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_spruce_log.json new file mode 100644 index 000000000..665bd31b9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_spruce_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_spruce_log_top", + "side": "minecraft:block/stripped_spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_spruce_log_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_spruce_log_horizontal.json new file mode 100644 index 000000000..7a4c1139c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_spruce_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/stripped_spruce_log_top", + "side": "minecraft:block/stripped_spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_spruce_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_spruce_wood.json new file mode 100644 index 000000000..6c96a668b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_spruce_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_spruce_log", + "side": "minecraft:block/stripped_spruce_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_warped_hyphae.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_warped_hyphae.json new file mode 100644 index 000000000..fa055c378 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_warped_hyphae.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_warped_stem", + "side": "minecraft:block/stripped_warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_warped_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_warped_stem.json new file mode 100644 index 000000000..adcfb5544 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/stripped_warped_stem.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/stripped_warped_stem_top", + "side": "minecraft:block/stripped_warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_block.json new file mode 100644 index 000000000..ab31c0ae2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/structure_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_block_corner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_block_corner.json new file mode 100644 index 000000000..d5522e3be --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_block_corner.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/structure_block_corner" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_block_data.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_block_data.json new file mode 100644 index 000000000..a0e707f6b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_block_data.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/structure_block_data" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_block_load.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_block_load.json new file mode 100644 index 000000000..80e3237bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_block_load.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/structure_block_load" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_block_save.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_block_save.json new file mode 100644 index 000000000..7e6967ac0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_block_save.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/structure_block_save" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_void.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_void.json new file mode 100644 index 000000000..7003f0850 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/structure_void.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:item/structure_void" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sugar_cane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sugar_cane.json new file mode 100644 index 000000000..c40928534 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sugar_cane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/sugar_cane" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sunflower_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sunflower_bottom.json new file mode 100644 index 000000000..f9b91c410 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sunflower_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/sunflower_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sunflower_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sunflower_top.json new file mode 100644 index 000000000..f98a18027 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sunflower_top.json @@ -0,0 +1,53 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/sunflower_front", + "cross": "block/sunflower_top", + "back": "block/sunflower_back", + "front": "block/sunflower_front" + }, + "elements": [ + { "from": [ 0.8, 0, 8 ], + "to": [ 15.2, 8, 8 ], + "rotation": { + "origin": [ 8, 8, 8 ], + "axis": "y", + "angle": 45, + "rescale": true + }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 8, 16, 16 ], "texture": "#cross" }, + "south": { "uv": [ 0, 8, 16, 16 ], "texture": "#cross" } + } + }, + { "from": [ 8, 0, 0.8 ], + "to": [ 8, 8, 15.2 ], + "rotation": { + "origin": [ 8, 8, 8 ], + "axis": "y", + "angle": 45, + "rescale": true + }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 8, 16, 16 ], "texture": "#cross" }, + "east": { "uv": [ 0, 8, 16, 16 ], "texture": "#cross" } + } + }, + { "from": [ 9.6, -1, 1 ], + "to": [ 9.6, 15, 15 ], + "rotation": { + "origin": [ 8, 8, 8 ], + "axis": "z", + "angle": 22.5, + "rescale": true + }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#back" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#front" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_gravel_0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_gravel_0.json new file mode 100644 index 000000000..54ae011c5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_gravel_0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/suspicious_gravel_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_gravel_1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_gravel_1.json new file mode 100644 index 000000000..8c3ef9490 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_gravel_1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/suspicious_gravel_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_gravel_2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_gravel_2.json new file mode 100644 index 000000000..2e6b819b3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_gravel_2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/suspicious_gravel_2" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_gravel_3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_gravel_3.json new file mode 100644 index 000000000..b335d4f87 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_gravel_3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/suspicious_gravel_3" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_sand_0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_sand_0.json new file mode 100644 index 000000000..f021a9628 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_sand_0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/suspicious_sand_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_sand_1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_sand_1.json new file mode 100644 index 000000000..96e970588 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_sand_1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/suspicious_sand_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_sand_2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_sand_2.json new file mode 100644 index 000000000..41542af0b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_sand_2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/suspicious_sand_2" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_sand_3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_sand_3.json new file mode 100644 index 000000000..f4358f741 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/suspicious_sand_3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/suspicious_sand_3" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage0.json new file mode 100644 index 000000000..35d51667e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/sweet_berry_bush_stage0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage1.json new file mode 100644 index 000000000..af18f15bd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/sweet_berry_bush_stage1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage2.json new file mode 100644 index 000000000..d12278451 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/sweet_berry_bush_stage2" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage3.json new file mode 100644 index 000000000..9625d2daf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/sweet_berry_bush_stage3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/sweet_berry_bush_stage3" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tall_dry_grass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tall_dry_grass.json new file mode 100644 index 000000000..eeefccac1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tall_dry_grass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/tall_dry_grass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tall_grass_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tall_grass_bottom.json new file mode 100644 index 000000000..aedd5f4f9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tall_grass_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/tall_grass_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tall_grass_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tall_grass_top.json new file mode 100644 index 000000000..ca1f32dd2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tall_grass_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "minecraft:block/tall_grass_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tall_seagrass_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tall_seagrass_bottom.json new file mode 100644 index 000000000..84613667a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tall_seagrass_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_seagrass", + "textures": { + "texture": "minecraft:block/tall_seagrass_bottom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tall_seagrass_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tall_seagrass_top.json new file mode 100644 index 000000000..ce30eefc2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tall_seagrass_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_seagrass", + "textures": { + "texture": "minecraft:block/tall_seagrass_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/target.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/target.json new file mode 100644 index 000000000..061cd7885 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/target.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/target_top", + "side": "minecraft:block/target_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_anvil.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_anvil.json new file mode 100644 index 000000000..47a37763c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_anvil.json @@ -0,0 +1,65 @@ +{ "parent": "block/block", + "textures": { + "particle": "block/anvil", + "body": "block/anvil" + }, + "display": { + "fixed": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "on_shelf": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ] + } + }, + "elements": [ + { "__comment": "Anvil base", + "from": [ 2, 0, 2 ], + "to": [ 14, 4, 14 ], + "faces": { + "down": { "uv": [ 2, 2, 14, 14 ], "texture": "#body", "rotation": 180, "cullface": "down" }, + "up": { "uv": [ 2, 2, 14, 14 ], "texture": "#body", "rotation": 180 }, + "north": { "uv": [ 2, 12, 14, 16 ], "texture": "#body" }, + "south": { "uv": [ 2, 12, 14, 16 ], "texture": "#body" }, + "west": { "uv": [ 0, 2, 4, 14 ], "texture": "#body", "rotation": 90 }, + "east": { "uv": [ 4, 2, 0, 14 ], "texture": "#body", "rotation": 270 } + } + }, + { "__comment": "Lower narrow portion", + "from": [ 4, 4, 3 ], + "to": [ 12, 5, 13 ], + "faces": { + "up": { "uv": [ 4, 3, 12, 13 ], "texture": "#body", "rotation": 180 }, + "north": { "uv": [ 4, 11, 12, 12 ], "texture": "#body" }, + "south": { "uv": [ 4, 11, 12, 12 ], "texture": "#body" }, + "west": { "uv": [ 4, 3, 5, 13 ], "texture": "#body", "rotation": 90 }, + "east": { "uv": [ 5, 3, 4, 13 ], "texture": "#body", "rotation": 270 } + } + }, + { "__comment": "Wider section beneath top portion", + "from": [ 6, 5, 4 ], + "to": [ 10, 10, 12 ], + "faces": { + "north": { "uv": [ 6, 6, 10, 11 ], "texture": "#body" }, + "south": { "uv": [ 6, 6, 10, 11 ], "texture": "#body" }, + "west": { "uv": [ 5, 4, 10, 12 ], "texture": "#body", "rotation": 90 }, + "east": { "uv": [ 10, 4, 5, 12 ], "texture": "#body", "rotation": 270 } + } + }, + { "__comment": "Anvil top", + "from": [ 3, 10, 0 ], + "to": [ 13, 16, 16 ], + "faces": { + "down": { "uv": [ 3, 0, 13, 16 ], "texture": "#body", "rotation": 180 }, + "up": { "uv": [ 3, 0, 13, 16 ], "texture": "#top", "rotation": 180 }, + "north": { "uv": [ 3, 0, 13, 6 ], "texture": "#body" }, + "south": { "uv": [ 3, 0, 13, 6 ], "texture": "#body" }, + "west": { "uv": [ 10, 0, 16, 16 ], "texture": "#body", "rotation": 90 }, + "east": { "uv": [ 16, 0, 10, 16 ], "texture": "#body", "rotation": 270 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_azalea.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_azalea.json new file mode 100644 index 000000000..2c22ef841 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_azalea.json @@ -0,0 +1,60 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/azalea_plant", + "plant": "block/azalea_plant" + }, + "elements": [ + { "from": [ 0, 16, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#top" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "up" } + } + }, + { "from": [ 0, 5, 0 ], + "to": [ 16, 16, 0.01 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 11 ], "texture": "#side", "cullface": "north"}, + "south": { "uv": [ 16, 0, 0, 11 ], "texture": "#side"} + } + }, + { "from": [ 0, 5, 15.99 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { "uv": [ 16, 0, 0, 11 ], "texture": "#side"}, + "south": { "uv": [ 0, 0, 16, 11 ], "texture": "#side", "cullface": "south"} + } + }, + { "from": [ 0, 5, 0 ], + "to": [ 0.01, 16, 16 ], + "faces": { + "west": { "uv": [ 0, 0, 16, 11 ], "texture": "#side", "cullface": "west"}, + "east": { "uv": [ 16, 0, 0, 11 ], "texture": "#side"} + } + }, + { "from": [ 15.99, 5, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "west": { "uv": [ 16, 0, 0, 11 ], "texture": "#side"}, + "east": { "uv": [ 0, 0, 16, 11 ], "texture": "#side", "cullface": "east"} + } + }, + { "from": [ 0.1, 0, 8 ], + "to": [ 15.9, 15.9, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" } + } + }, + { "from": [ 8, 0, 0.1 ], + "to": [ 8, 15.9, 15.9 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_cap.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_cap.json new file mode 100644 index 000000000..2c6279ce6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_cap.json @@ -0,0 +1,22 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#bars" + }, + "elements": [ + { "from": [ 8, 0, 8 ], + "to": [ 8, 16, 9 ], + "faces": { + "west": { "uv": [ 8, 0, 7, 16 ], "texture": "#bars" }, + "east": { "uv": [ 7, 0, 8, 16 ], "texture": "#bars" } + } + }, + { "from": [ 7, 0, 9 ], + "to": [ 9, 16, 9 ], + "faces": { + "north": { "uv": [ 9, 0, 7, 16 ], "texture": "#bars" }, + "south": { "uv": [ 7, 0, 9, 16 ], "texture": "#bars" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_cap_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_cap_alt.json new file mode 100644 index 000000000..da342ff8f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_cap_alt.json @@ -0,0 +1,22 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#bars" + }, + "elements": [ + { "from": [ 8, 0, 7 ], + "to": [ 8, 16, 8 ], + "faces": { + "west": { "uv": [ 8, 0, 9, 16 ], "texture": "#bars" }, + "east": { "uv": [ 9, 0, 8, 16 ], "texture": "#bars" } + } + }, + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 7 ], + "faces": { + "north": { "uv": [ 7, 0, 9, 16 ], "texture": "#bars" }, + "south": { "uv": [ 9, 0, 7, 16 ], "texture": "#bars" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_post.json new file mode 100644 index 000000000..0f8c67c7f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_post.json @@ -0,0 +1,22 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#bars" + }, + "elements": [ + { "from": [ 8, 0, 7 ], + "to": [ 8, 16, 9 ], + "faces": { + "west": { "uv": [ 7, 0, 9, 16 ], "texture": "#bars" }, + "east": { "uv": [ 9, 0, 7, 16 ], "texture": "#bars" } + } + }, + { "from": [ 7, 0, 8 ], + "to": [ 9, 16, 8 ], + "faces": { + "north": { "uv": [ 7, 0, 9, 16 ], "texture": "#bars" }, + "south": { "uv": [ 9, 0, 7, 16 ], "texture": "#bars" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_post_ends.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_post_ends.json new file mode 100644 index 000000000..0e5871ac3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_post_ends.json @@ -0,0 +1,22 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#bars" + }, + "elements": [ + { "from": [ 7, 0.001, 7 ], + "to": [ 9, 0.001, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 9 ], "texture": "#edge" }, + "up": { "uv": [ 7, 7, 9, 9 ], "texture": "#edge" } + } + }, + { "from": [ 7, 15.999, 7 ], + "to": [ 9, 15.999, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 9 ], "texture": "#edge" }, + "up": { "uv": [ 7, 7, 9, 9 ], "texture": "#edge" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_side.json new file mode 100644 index 000000000..66dbc1d71 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_side.json @@ -0,0 +1,35 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#bars" + }, + "elements": [ + { "from": [ 8, 0, 0 ], + "to": [ 8, 16, 8 ], + "faces": { + "west": { "uv": [ 16, 0, 8, 16 ], "texture": "#bars" }, + "east": { "uv": [ 8, 0, 16, 16 ], "texture": "#bars" } + } + }, + { "from": [ 7, 0, 0 ], + "to": [ 9, 16, 7 ], + "faces": { + "north": { "uv": [ 7, 0, 9, 16 ], "texture": "#edge", "cullface": "north" } + } + }, + { "from": [ 7, 0.001, 0 ], + "to": [ 9, 0.001, 7 ], + "faces": { + "down": { "uv": [ 9, 0, 7, 7 ], "texture": "#edge" }, + "up": { "uv": [ 7, 0, 9, 7 ], "texture": "#edge" } + } + }, + { "from": [ 7, 15.999, 0 ], + "to": [ 9, 15.999, 7 ], + "faces": { + "down": { "uv": [ 9, 0, 7, 7 ], "texture": "#edge" }, + "up": { "uv": [ 7, 0, 9, 7 ], "texture": "#edge" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_side_alt.json new file mode 100644 index 000000000..552424402 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_bars_side_alt.json @@ -0,0 +1,37 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#bars" + }, + "elements": [ + { "from": [ 8, 0, 8 ], + "to": [ 8, 16, 16 ], + "faces": { + "west": { "uv": [ 8, 0, 0, 16 ], "texture": "#bars" }, + "east": { "uv": [ 0, 0, 8, 16 ], "texture": "#bars" } + } + }, + { "from": [ 7, 0, 9 ], + "to": [ 9, 16, 16 ], + "faces": { + "south": { "uv": [ 7, 0, 9, 16 ], "texture": "#edge", "cullface": "south" }, + "down": { "uv": [ 9, 9, 7, 16 ], "texture": "#edge" }, + "up": { "uv": [ 7, 9, 9, 16 ], "texture": "#edge" } + } + }, + { "from": [ 7, 0.001, 9 ], + "to": [ 9, 0.001, 16 ], + "faces": { + "down": { "uv": [ 9, 9, 7, 16 ], "texture": "#edge" }, + "up": { "uv": [ 7, 9, 9, 16 ], "texture": "#edge" } + } + }, + { "from": [ 7, 15.999, 9 ], + "to": [ 9, 15.999, 16 ], + "faces": { + "down": { "uv": [ 9, 9, 7, 16 ], "texture": "#edge" }, + "up": { "uv": [ 7, 9, 9, 16 ], "texture": "#edge" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_cake_with_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_cake_with_candle.json new file mode 100644 index 000000000..82a6ee824 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_cake_with_candle.json @@ -0,0 +1,51 @@ +{ + "textures": { + "particle": "block/cake_side", + "bottom": "block/cake_bottom", + "top": "block/cake_top", + "side": "block/cake_side" + }, + "elements": [ + { "from": [ 1, 0, 1 ], + "to": [ 15, 8, 15 ], + "faces": { + "down": { "texture": "#bottom", "cullface": "down" }, + "up": { "texture": "#top" }, + "north": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "east": { "texture": "#side" } + } + }, + { + "from": [7, 8, 7], + "to": [9, 14, 9], + "faces": { + "north": {"uv": [0, 8, 2, 14], "texture": "#candle"}, + "east": {"uv": [0, 8, 2, 14], "texture": "#candle"}, + "south": {"uv": [0, 8, 2, 14], "texture": "#candle"}, + "west": {"uv": [0, 8, 2, 14], "texture": "#candle"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#candle"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#candle", "cullface": "down"} + } + }, + { + "from": [7.5, 14, 8], + "to": [8.5, 15, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 14, 8]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#candle"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#candle"} + } + }, + { + "from": [7.5, 14, 8], + "to": [8.5, 15, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 14, 8]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#candle"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#candle"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_campfire.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_campfire.json new file mode 100644 index 000000000..855876661 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_campfire.json @@ -0,0 +1,91 @@ +{ + "parent": "block/block", + "display": { + "head": { + "translation": [ 0, 10.5, 0 ] + } + }, + "textures": { + "particle": "block/campfire_log", + "log": "block/campfire_log" + }, + "elements": [ + { + "from": [ 1, 0, 0 ], + "to": [ 5, 4, 16 ], + "faces": { + "north": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "north" }, + "east": { "uv": [ 0, 1, 16, 5 ], "texture": "#lit_log" }, + "south": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "south" }, + "west": { "uv": [ 16, 0, 0, 4 ], "texture": "#log" }, + "up": { "uv": [ 0, 0, 16, 4 ], "rotation": 90, "texture": "#log" }, + "down": { "uv": [ 0, 0, 16, 4 ], "rotation": 90, "texture": "#log", "cullface": "down" } + } + }, + { + "from": [ 0, 3, 11 ], + "to": [ 16, 7, 15 ], + "faces": { + "north": { "uv": [ 16, 0, 0, 4 ], "texture": "#lit_log" }, + "east": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "east" }, + "south": { "uv": [ 0, 0, 16, 4 ], "texture": "#lit_log" }, + "west": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "west" }, + "up": { "uv": [ 0, 0, 16, 4 ], "rotation": 180, "texture": "#log" }, + "down": { "uv": [ 0, 4, 16, 8 ], "texture": "#lit_log" } + } + }, + { + "from": [ 11, 0, 0 ], + "to": [ 15, 4, 16 ], + "faces": { + "north": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "north" }, + "east": { "uv": [ 0, 0, 16, 4 ], "texture": "#log" }, + "south": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "south" }, + "west": { "uv": [ 16, 1, 0, 5 ], "texture": "#lit_log" }, + "up": { "uv": [ 0, 0, 16, 4 ], "rotation": 90, "texture": "#log" }, + "down": { "uv": [ 0, 0, 16, 4 ], "rotation": 90, "texture": "#log", "cullface": "down" } + } + }, + { + "from": [ 0, 3, 1 ], + "to": [ 16, 7, 5 ], + "faces": { + "north": { "uv": [ 0, 0, 16, 4 ], "texture": "#lit_log" }, + "east": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "east" }, + "south": { "uv": [ 16, 0, 0, 4 ], "texture": "#lit_log" }, + "west": { "uv": [ 0, 4, 4, 8 ], "texture": "#log", "cullface": "west" }, + "up": { "uv": [ 0, 0, 16, 4 ], "rotation": 180, "texture": "#log" }, + "down": { "uv": [ 0, 4, 16, 8 ], "texture": "#lit_log" } + } + }, + { + "from": [ 5, 0, 0 ], + "to": [ 11, 1, 16 ], + "faces": { + "north": {"uv": [ 0, 15, 6, 16 ], "texture": "#log", "cullface": "north" }, + "south": {"uv": [ 10, 15, 16, 16 ], "texture": "#log", "cullface": "south" }, + "up": {"uv": [ 0, 8, 16, 14 ], "rotation": 90, "texture": "#lit_log" }, + "down": {"uv": [ 0, 8, 16, 14 ], "rotation": 90, "texture": "#log", "cullface": "down" } + } + }, + { "from": [ 0.8, 1, 8 ], + "to": [ 15.2, 17, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" } + } + }, + { "from": [ 8, 1, 0.8 ], + "to": [ 8, 17, 15.2 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" } + } + } + ] +} + diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_candle.json new file mode 100644 index 000000000..111b3b6ca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_candle.json @@ -0,0 +1,35 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [7, 0, 7], + "to": [9, 6, 9], + "faces": { + "north": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [7.5, 6, 8], + "to": [8.5, 7, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 6, 8]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#all"} + } + }, + { + "from": [7.5, 6, 8], + "to": [8.5, 7, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 6, 8]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_cauldron_full.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_cauldron_full.json new file mode 100644 index 000000000..2925eba4c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_cauldron_full.json @@ -0,0 +1,155 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cauldron_side", + "top": "block/cauldron_top", + "bottom": "block/cauldron_bottom", + "side": "block/cauldron_side", + "inside": "block/cauldron_inner" + }, + "elements": [ + { + "from": [ 0, 3, 0 ], + "to": [ 2, 16, 16 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 2 ], + "to": [ 14, 4, 14 ], + "faces": { + "up": { "texture": "#inside" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 14, 3, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 0 ], + "to": [ 14, 16, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 14 ], + "to": [ 14, 16, 16 ], + "faces": { + "north": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 0, 0, 0 ], + "to": [ 4, 3, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 2 ], + "to": [ 2, 3, 4 ], + "faces": { + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 12, 0, 0 ], + "to": [ 16, 3, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 14, 0, 2 ], + "to": [ 16, 3, 4 ], + "faces": { + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 14 ], + "to": [ 4, 3, 16 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 12 ], + "to": [ 2, 3, 14 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 12, 0, 14 ], + "to": [ 16, 3, 16 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 14, 0, 12 ], + "to": [ 16, 3, 14 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 2, 4, 2 ], + "to": [ 14, 15, 14 ], + "faces": { + "up": { "texture": "#content", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_cauldron_level1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_cauldron_level1.json new file mode 100644 index 000000000..61fb386bd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_cauldron_level1.json @@ -0,0 +1,155 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cauldron_side", + "top": "block/cauldron_top", + "bottom": "block/cauldron_bottom", + "side": "block/cauldron_side", + "inside": "block/cauldron_inner" + }, + "elements": [ + { + "from": [ 0, 3, 0 ], + "to": [ 2, 16, 16 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 2 ], + "to": [ 14, 4, 14 ], + "faces": { + "up": { "texture": "#inside" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 14, 3, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 0 ], + "to": [ 14, 16, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 14 ], + "to": [ 14, 16, 16 ], + "faces": { + "north": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 0, 0, 0 ], + "to": [ 4, 3, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 2 ], + "to": [ 2, 3, 4 ], + "faces": { + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 12, 0, 0 ], + "to": [ 16, 3, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 14, 0, 2 ], + "to": [ 16, 3, 4 ], + "faces": { + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 14 ], + "to": [ 4, 3, 16 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 12 ], + "to": [ 2, 3, 14 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 12, 0, 14 ], + "to": [ 16, 3, 16 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 14, 0, 12 ], + "to": [ 16, 3, 14 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 2, 4, 2 ], + "to": [ 14, 9, 14 ], + "faces": { + "up": { "texture": "#content", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_cauldron_level2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_cauldron_level2.json new file mode 100644 index 000000000..fd7483491 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_cauldron_level2.json @@ -0,0 +1,155 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/cauldron_side", + "top": "block/cauldron_top", + "bottom": "block/cauldron_bottom", + "side": "block/cauldron_side", + "inside": "block/cauldron_inner" + }, + "elements": [ + { + "from": [ 0, 3, 0 ], + "to": [ 2, 16, 16 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 2 ], + "to": [ 14, 4, 14 ], + "faces": { + "up": { "texture": "#inside" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 14, 3, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 0 ], + "to": [ 14, 16, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "south": { "texture": "#side" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 2, 3, 14 ], + "to": [ 14, 16, 16 ], + "faces": { + "north": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "up": { "texture": "#top", "cullface": "up" }, + "down": { "texture": "#inside" } + } + }, + { + "from": [ 0, 0, 0 ], + "to": [ 4, 3, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 2 ], + "to": [ 2, 3, 4 ], + "faces": { + "east": { "texture": "#side" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 12, 0, 0 ], + "to": [ 16, 3, 2 ], + "faces": { + "north": { "texture": "#side", "cullface": "north" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 14, 0, 2 ], + "to": [ 16, 3, 4 ], + "faces": { + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 14 ], + "to": [ 4, 3, 16 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 0, 0, 12 ], + "to": [ 2, 3, 14 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side" }, + "west": { "texture": "#side", "cullface": "west" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 12, 0, 14 ], + "to": [ 16, 3, 16 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "south": { "texture": "#side", "cullface": "south" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 14, 0, 12 ], + "to": [ 16, 3, 14 ], + "faces": { + "north": { "texture": "#side" }, + "east": { "texture": "#side", "cullface": "east" }, + "west": { "texture": "#side" }, + "down": { "texture": "#bottom", "cullface": "down" } + } + }, + { + "from": [ 2, 4, 2 ], + "to": [ 14, 12, 14 ], + "faces": { + "up": { "texture": "#content", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chain.json new file mode 100644 index 000000000..25c72ae8e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chain.json @@ -0,0 +1,29 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#texture", + "all": "#texture" + }, + "elements": [ + { + "from": [ 6.5, 0, 8 ], + "to": [ 9.5, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45}, + "shade": false, + "faces": { + "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#all" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#all" } + } + }, + { + "from": [ 8, 0, 6.5 ], + "to": [ 8, 16, 9.5 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45}, + "shade": false, + "faces": { + "west": { "uv": [ 6, 0, 3, 16 ], "texture": "#all" }, + "east": { "uv": [ 3, 0, 6, 16 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_left.json new file mode 100644 index 000000000..f224a1e88 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_left.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [10, 0, 0], + "to": [16, 8, 0], + "faces": { + "north": {"uv": [0, 8, 6, 16], "texture": "#texture", "cullface": "north"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_mid.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_mid.json new file mode 100644 index 000000000..a1c54d921 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_mid.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [5, 0, 0], + "to": [10, 8, 0], + "faces": { + "north": {"uv": [6, 8, 11, 16], "texture": "#texture", "cullface": "north"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_right.json new file mode 100644 index 000000000..5acdabdfa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_bottom_right.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [5, 8, 0], + "faces": { + "north": {"uv": [11, 8, 16, 16], "texture": "#texture", "cullface": "north"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_left.json new file mode 100644 index 000000000..da9fc5913 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_left.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [10, 8, 0], + "to": [16, 16, 0], + "faces": { + "north": {"uv": [0, 0, 6, 8], "texture": "#texture", "cullface": "north"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_mid.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_mid.json new file mode 100644 index 000000000..25cc8308d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_mid.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [5, 8, 0], + "to": [10, 16, 0], + "faces": { + "north": {"uv": [6, 0, 11, 8], "texture": "#texture", "cullface": "north"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_right.json new file mode 100644 index 000000000..077f1276e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chiseled_bookshelf_slot_top_right.json @@ -0,0 +1,14 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [0, 8, 0], + "to": [5, 16, 0], + "faces": { + "north": {"uv": [11, 0, 16, 8], "texture": "#texture", "cullface": "north"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chorus_flower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chorus_flower.json new file mode 100644 index 000000000..06b850dd0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_chorus_flower.json @@ -0,0 +1,76 @@ +{ + "parent": "block/block", + "textures": { + "bottom": "block/chorus_plant", + "particle": "#texture" + }, + "elements": [ + { + "from": [ 2, 14, 2 ], + "to": [ 14, 16, 14 ], + "faces": { + "up": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture" }, + "north": { "uv": [ 2, 0, 14, 2 ], "texture": "#bottom" }, + "south": { "uv": [ 2, 0, 14, 2 ], "texture": "#bottom" }, + "west": { "uv": [ 2, 0, 14, 2 ], "texture": "#bottom" }, + "east": { "uv": [ 2, 0, 14, 2 ], "texture": "#bottom" } + } + }, + { + "from": [ 0, 2, 2 ], + "to": [ 2, 14, 14 ], + "faces": { + "down": { "uv": [ 16, 14, 14, 2 ], "texture": "#bottom" }, + "up": { "uv": [ 0, 2, 2, 14 ], "texture": "#bottom" }, + "north": { "uv": [ 14, 2, 16, 14 ], "texture": "#bottom" }, + "south": { "uv": [ 0, 2, 2, 14 ], "texture": "#bottom" }, + "west": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture" } + } + }, + { + "from": [ 2, 2, 0 ], + "to": [ 14, 14, 2 ], + "faces": { + "down": { "uv": [ 14, 2, 2, 0 ], "texture": "#bottom" }, + "up": { "uv": [ 2, 0, 14, 2 ], "texture": "#bottom" }, + "north": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture" }, + "west": { "uv": [ 0, 2, 2, 14 ], "texture": "#bottom" }, + "east": { "uv": [ 14, 2, 16, 14 ], "texture": "#bottom" } + } + }, + { + "from": [ 2, 2, 14 ], + "to": [ 14, 14, 16 ], + "faces": { + "down": { "uv": [ 14, 16, 2, 14 ], "texture": "#bottom" }, + "up": { "uv": [ 2, 14, 14, 16 ], "texture": "#bottom" }, + "south": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture" }, + "west": { "uv": [ 14, 2, 16, 14 ], "texture": "#bottom" }, + "east": { "uv": [ 0, 2, 2, 14 ], "texture": "#bottom" } + } + }, + { + "from": [ 14, 2, 2 ], + "to": [ 16, 14, 14 ], + "faces": { + "down": { "uv": [ 2, 14, 0, 2 ], "texture": "#bottom" }, + "up": { "uv": [ 14, 2, 16, 14 ], "texture": "#bottom" }, + "north": { "uv": [ 0, 2, 2, 14 ], "texture": "#bottom" }, + "south": { "uv": [ 14, 2, 16, 14 ], "texture": "#bottom" }, + "east": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture" } + } + }, + { + "from": [ 2, 0, 2 ], + "to": [ 14, 14, 14 ], + "faces": { + "up": { "uv": [ 2, 2, 14, 14 ], "texture": "#bottom" }, + "down": { "uv": [ 14, 14, 2, 2 ], "texture": "#bottom" }, + "north": { "uv": [ 2, 2, 14, 16 ], "texture": "#bottom" }, + "south": { "uv": [ 2, 2, 14, 16 ], "texture": "#bottom" }, + "west": { "uv": [ 2, 2, 14, 16 ], "texture": "#bottom" }, + "east": { "uv": [ 2, 2, 14, 16 ], "texture": "#bottom" } + } + } + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_command_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_command_block.json new file mode 100644 index 000000000..76cbff1ef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_command_block.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube_directional", + "textures": { + "particle": "#back", + "down": "#side", + "up": "#side", + "north": "#front", + "east": "#side", + "south": "#back", + "west": "#side" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate.json new file mode 100644 index 000000000..0d41bf656 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate.json @@ -0,0 +1,112 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#particle" + }, + "elements": [ + { + "name": "Left-hand post", + "from": [0, 5, 7], + "to": [2, 16, 9], + "faces": { + "north": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "east": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "south": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "west": {"uv": [14, 2, 16, 13], "texture": "#texture", "cullface": "west"}, + "up": {"uv": [14, 0, 16, 2], "texture": "#texture"}, + "down": {"uv": [16, 13, 14, 15], "texture": "#texture"} + } + }, + { + "name": "Right-hand post", + "from": [14, 5, 7], + "to": [16, 16, 9], + "faces": { + "north": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "east": {"uv": [0, 2, 2, 13], "texture": "#texture", "cullface": "east"}, + "south": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "west": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#texture"}, + "down": {"uv": [2, 13, 0, 15], "texture": "#texture"} + } + }, + { + "name": "Inner vertical post of left-hand gate door", + "from": [6, 6, 7], + "to": [8, 15, 9], + "faces": { + "north": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "south": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "west": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "up": {"uv": [8, 1, 10, 3], "texture": "#texture"}, + "down": {"uv": [8, 14, 10, 12], "texture": "#texture"} + } + }, + { + "name": "Inner vertical post of right-hand gate door", + "from": [8, 6, 7], + "to": [10, 15, 9], + "faces": { + "north": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "east": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "south": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "up": {"uv": [6, 1, 8, 3], "texture": "#texture"}, + "down": {"uv": [6, 14, 8, 12], "texture": "#texture"} + } + }, + { + "name": "Lower horizontal bar of left-hand gate door", + "from": [2, 6, 7], + "to": [6, 9, 9], + "faces": { + "north": {"uv": [10, 3, 14, 6], "texture": "#texture"}, + "south": {"uv": [10, 9, 14, 12], "texture": "#texture"}, + "up": {"uv": [10, 1, 14, 3], "texture": "#texture"}, + "down": {"uv": [10, 14, 14, 12], "texture": "#texture"} + } + }, + { + "name": "Upper horizontal bar of left-hand gate door", + "from": [2, 12, 7], + "to": [6, 15, 9], + "faces": { + "north": {"uv": [10, 3, 14, 6], "texture": "#texture"}, + "south": {"uv": [10, 9, 14, 12], "texture": "#texture"}, + "up": {"uv": [10, 1, 14, 3], "texture": "#texture"}, + "down": {"uv": [10, 14, 14, 12], "texture": "#texture"} + } + }, + { + "name": "Lower horizontal bar of right-hand gate door", + "from": [10, 6, 7], + "to": [14, 9, 9], + "faces": { + "north": {"uv": [2, 3, 6, 6], "texture": "#texture"}, + "south": {"uv": [2, 9, 6, 12], "texture": "#texture"}, + "up": {"uv": [2, 1, 6, 3], "texture": "#texture"}, + "down": {"uv": [2, 14, 6, 12], "texture": "#texture"} + } + }, + { + "name": "Upper horizontal bar of right-hand gate door", + "from": [10, 12, 7], + "to": [14, 15, 9], + "faces": { + "north": {"uv": [2, 3, 6, 6], "texture": "#texture"}, + "south": {"uv": [2, 9, 6, 12], "texture": "#texture"}, + "up": {"uv": [2, 1, 6, 3], "texture": "#texture"}, + "down": {"uv": [2, 14, 6, 12], "texture": "#texture"} + } + } + ], + "display": { + "gui": { + "rotation": [30, 45, 0], + "translation": [0, -1, 0], + "scale": [0.8, 0.8, 0.8] + }, + "head": { + "translation": [0, -3, -6] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_open.json new file mode 100644 index 000000000..727da9c55 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_open.json @@ -0,0 +1,103 @@ +{ + "textures": { + "particle": "#particle" + }, + "elements": [ + { + "name": "Left-hand post", + "from": [0, 5, 7], + "to": [2, 16, 9], + "faces": { + "north": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "east": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "south": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "west": {"uv": [14, 2, 16, 13], "texture": "#texture", "cullface": "west"}, + "up": {"uv": [14, 0, 16, 2], "texture": "#texture"}, + "down": {"uv": [16, 13, 14, 15], "texture": "#texture"} + } + }, + { + "name": "Right-hand post", + "from": [14, 5, 7], + "to": [16, 16, 9], + "faces": { + "north": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "east": {"uv": [0, 2, 2, 13], "texture": "#texture", "cullface": "east"}, + "south": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "west": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#texture"}, + "down": {"uv": [2, 13, 0, 15], "texture": "#texture"} + } + }, + { + "name": "Inner vertical post of left-hand gate door", + "from": [0, 6, 13], + "to": [2, 15, 15], + "faces": { + "north": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "east": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "south": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "west": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "up": {"uv": [8, 1, 10, 3], "texture": "#texture"}, + "down": {"uv": [8, 14, 10, 12], "texture": "#texture"} + } + }, + { + "name": "Inner vertical post of right-hand gate door", + "from": [14, 6, 13], + "to": [16, 15, 15], + "faces": { + "north": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "east": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "south": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "west": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "up": {"uv": [6, 1, 8, 3], "texture": "#texture"}, + "down": {"uv": [6, 14, 8, 12], "texture": "#texture"} + } + }, + { + "name": "Lower horizontal bar of left-hand gate door", + "from": [0, 6, 9], + "to": [2, 9, 13], + "faces": { + "east": {"uv": [2, 9, 6, 12], "texture": "#texture"}, + "west": {"uv": [2, 3, 6, 6], "texture": "#texture"}, + "up": {"uv": [2, 1, 6, 3], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [2, 12, 6, 14], "rotation": 270, "texture": "#texture"} + } + }, + { + "name": "Upper horizontal bar of left-hand gate door", + "from": [0, 12, 9], + "to": [2, 15, 13], + "faces": { + "east": {"uv": [2, 9, 6, 12], "texture": "#texture"}, + "west": {"uv": [2, 3, 6, 6], "texture": "#texture"}, + "up": {"uv": [2, 1, 6, 3], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [2, 12, 6, 14], "rotation": 270, "texture": "#texture"} + } + }, + { + "name": "Lower horizontal bar of left-hand gate door", + "from": [14, 6, 9], + "to": [16, 9, 13], + "faces": { + "east": {"uv": [10, 9, 14, 12], "texture": "#texture"}, + "west": {"uv": [10, 3, 14, 6], "texture": "#texture"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [10, 12, 14, 14], "rotation": 270, "texture": "#texture"} + } + }, + { + "name": "Upper horizontal bar of left-hand gate door", + "from": [14, 12, 9], + "to": [16, 15, 13], + "faces": { + "east": {"uv": [10, 9, 14, 12], "texture": "#texture"}, + "west": {"uv": [14, 3, 10, 6], "texture": "#texture"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [10, 12, 14, 14], "rotation": 270, "texture": "#texture"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_wall.json new file mode 100644 index 000000000..45f48fc8b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_wall.json @@ -0,0 +1,102 @@ +{ + "ambientocclusion": true, + "textures": { + "particle": "#particle" + }, + "elements": [ + { + "name": "Left-hand post", + "from": [0, 2, 7], + "to": [2, 13, 9], + "faces": { + "north": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "east": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "south": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "west": {"uv": [14, 2, 16, 13], "texture": "#texture", "cullface": "west"}, + "up": {"uv": [14, 0, 16, 2], "texture": "#texture"}, + "down": {"uv": [16, 13, 14, 15], "texture": "#texture"} + } + }, + { + "name": "Right-hand post", + "from": [14, 2, 7], + "to": [16, 13, 9], + "faces": { + "north": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "east": {"uv": [0, 2, 2, 13], "texture": "#texture", "cullface": "east"}, + "south": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "west": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#texture"}, + "down": {"uv": [2, 13, 0, 15], "texture": "#texture"} + } + }, + { + "name": "Inner vertical post of left-hand gate door", + "from": [6, 3, 7], + "to": [8, 12, 9], + "faces": { + "north": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "south": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "west": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "up": {"uv": [8, 1, 10, 3], "texture": "#texture"}, + "down": {"uv": [8, 14, 10, 12], "texture": "#texture"} + } + }, + { + "name": "Inner vertical post of right-hand gate door", + "from": [8, 3, 7], + "to": [10, 12, 9], + "faces": { + "north": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "east": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "south": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "up": {"uv": [6, 1, 8, 3], "texture": "#texture"}, + "down": {"uv": [6, 14, 8, 12], "texture": "#texture"} + } + }, + { + "name": "Lower horizontal bar of left-hand gate door", + "from": [2, 3, 7], + "to": [6, 6, 9], + "faces": { + "north": {"uv": [10, 3, 14, 6], "texture": "#texture"}, + "south": {"uv": [10, 9, 14, 12], "texture": "#texture"}, + "up": {"uv": [10, 1, 14, 3], "texture": "#texture"}, + "down": {"uv": [10, 14, 14, 12], "texture": "#texture"} + } + }, + { + "name": "Upper horizontal bar of left-hand gate door", + "from": [2, 9, 7], + "to": [6, 12, 9], + "faces": { + "north": {"uv": [10, 3, 14, 6], "texture": "#texture"}, + "south": {"uv": [10, 9, 14, 12], "texture": "#texture"}, + "up": {"uv": [10, 1, 14, 3], "texture": "#texture"}, + "down": {"uv": [10, 14, 14, 12], "texture": "#texture"} + } + }, + { + "name": "Lower horizontal bar of right-hand gate door", + "from": [10, 3, 7], + "to": [14, 6, 9], + "faces": { + "north": {"uv": [2, 3, 6, 6], "texture": "#texture"}, + "south": {"uv": [2, 9, 6, 12], "texture": "#texture"}, + "up": {"uv": [2, 1, 6, 3], "texture": "#texture"}, + "down": {"uv": [2, 14, 6, 12], "texture": "#texture"} + } + }, + { + "name": "Upper horizontal bar of right-hand gate door", + "from": [10, 9, 7], + "to": [14, 12, 9], + "faces": { + "north": {"uv": [2, 3, 6, 6], "texture": "#texture"}, + "south": {"uv": [2, 9, 6, 12], "texture": "#texture"}, + "up": {"uv": [2, 1, 6, 3], "texture": "#texture"}, + "down": {"uv": [2, 14, 6, 12], "texture": "#texture"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_wall_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_wall_open.json new file mode 100644 index 000000000..5b5a81d5e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_custom_fence_gate_wall_open.json @@ -0,0 +1,104 @@ +{ + "ambientocclusion": true, + "textures": { + "particle": "#particle" + }, + "elements": [ + { + "name": "Left-hand post", + "from": [0, 2, 7], + "to": [2, 13, 9], + "faces": { + "north": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "east": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "south": {"uv": [14, 2, 16, 13], "texture": "#texture"}, + "west": {"uv": [14, 2, 16, 13], "texture": "#texture", "cullface": "west"}, + "up": {"uv": [14, 0, 16, 2], "texture": "#texture"}, + "down": {"uv": [16, 13, 14, 15], "texture": "#texture"} + } + }, + { + "name": "Right-hand post", + "from": [14, 2, 7], + "to": [16, 13, 9], + "faces": { + "north": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "east": {"uv": [0, 2, 2, 13], "texture": "#texture", "cullface": "east"}, + "south": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "west": {"uv": [0, 2, 2, 13], "texture": "#texture"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#texture"}, + "down": {"uv": [2, 13, 0, 15], "texture": "#texture"} + } + }, + { + "name": "Inner vertical post of left-hand gate door", + "from": [0, 3, 13], + "to": [2, 12, 15], + "faces": { + "north": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "east": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "south": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "west": {"uv": [8, 3, 10, 12], "texture": "#texture"}, + "up": {"uv": [8, 1, 10, 3], "texture": "#texture"}, + "down": {"uv": [8, 14, 10, 12], "texture": "#texture"} + } + }, + { + "name": "Inner vertical post of right-hand gate door", + "from": [14, 3, 13], + "to": [16, 12, 15], + "faces": { + "north": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "east": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "south": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "west": {"uv": [6, 3, 8, 12], "texture": "#texture"}, + "up": {"uv": [6, 1, 8, 3], "texture": "#texture"}, + "down": {"uv": [6, 14, 8, 12], "texture": "#texture"} + } + }, + { + "name": "Lower horizontal bar of left-hand gate door", + "from": [0, 3, 9], + "to": [2, 6, 13], + "faces": { + "east": {"uv": [2, 9, 6, 12], "texture": "#texture"}, + "west": {"uv": [2, 3, 6, 6], "texture": "#texture"}, + "up": {"uv": [2, 1, 6, 3], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [2, 12, 6, 14], "rotation": 270, "texture": "#texture"} + } + }, + { + "name": "Upper horizontal bar of left-hand gate door", + "from": [0, 9, 9], + "to": [2, 12, 13], + "faces": { + "east": {"uv": [2, 9, 6, 12], "texture": "#texture"}, + "west": {"uv": [2, 3, 6, 6], "texture": "#texture"}, + "up": {"uv": [2, 1, 6, 3], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [2, 12, 6, 14], "rotation": 270, "texture": "#texture"} + } + }, + { + "name": "Lower horizontal bar of left-hand gate door", + "from": [14, 3, 9], + "to": [16, 6, 13], + "faces": { + "east": {"uv": [10, 9, 14, 12], "texture": "#texture"}, + "west": {"uv": [10, 3, 14, 6], "texture": "#texture"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [10, 12, 14, 14], "rotation": 270, "texture": "#texture"} + } + }, + { + "name": "Upper horizontal bar of left-hand gate door", + "from": [14, 9, 9], + "to": [16, 12, 13], + "faces": { + "east": {"uv": [10, 9, 14, 12], "texture": "#texture"}, + "west": {"uv": [14, 3, 10, 6], "texture": "#texture"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#texture"}, + "down": {"uv": [10, 12, 14, 14], "rotation": 270, "texture": "#texture"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_daylight_detector.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_daylight_detector.json new file mode 100644 index 000000000..ef2a00217 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_daylight_detector.json @@ -0,0 +1,19 @@ +{ + "parent": "block/thin_block", + "textures": { + "particle": "#top" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 6, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 10, 16, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 10, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 10, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 0, 10, 16, 16 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_farmland.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_farmland.json new file mode 100644 index 000000000..4000d7a24 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_farmland.json @@ -0,0 +1,19 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#dirt" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 15, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#dirt", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 0, 1, 16, 16 ], "texture": "#dirt", "cullface": "north" }, + "south": { "uv": [ 0, 1, 16, 16 ], "texture": "#dirt", "cullface": "south" }, + "west": { "uv": [ 0, 1, 16, 16 ], "texture": "#dirt", "cullface": "west" }, + "east": { "uv": [ 0, 1, 16, 16 ], "texture": "#dirt", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fence_gate.json new file mode 100644 index 000000000..b1a090fa3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fence_gate.json @@ -0,0 +1,107 @@ +{ "parent": "block/block", + "display": { + "gui": { + "rotation": [ 30, 45, 0 ], + "translation": [ 0, -1, 0], + "scale":[ 0.8, 0.8, 0.8 ] + }, + "head": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, -3, -6], + "scale":[ 1, 1, 1] + } + }, + "textures": { + "particle": "#texture" + }, + "elements": [ + { "__comment": "Left-hand post", + "from": [ 0, 5, 7 ], + "to": [ 2, 16, 9 ], + "faces": { + "down": { "uv": [ 0, 7, 2, 9 ], "texture": "#texture" }, + "up": { "uv": [ 0, 7, 2, 9 ], "texture": "#texture" }, + "north": { "uv": [ 0, 0, 2, 11 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 2, 11 ], "texture": "#texture" }, + "west": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture" } + } + }, + { "__comment": "Right-hand post", + "from": [ 14, 5, 7 ], + "to": [ 16, 16, 9 ], + "faces": { + "down": { "uv": [ 14, 7, 16, 9 ], "texture": "#texture" }, + "up": { "uv": [ 14, 7, 16, 9 ], "texture": "#texture" }, + "north": { "uv": [ 14, 0, 16, 11 ], "texture": "#texture" }, + "south": { "uv": [ 14, 0, 16, 11 ], "texture": "#texture" }, + "west": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture", "cullface": "east" } + } + }, + { "__comment": "Inner vertical post of left-hand gate door", + "from": [ 6, 6, 7 ], + "to": [ 8, 15, 9 ], + "faces": { + "down": { "uv": [ 6, 7, 8, 9 ], "texture": "#texture" }, + "up": { "uv": [ 6, 7, 8, 9 ], "texture": "#texture" }, + "north": { "uv": [ 6, 1, 8, 10 ], "texture": "#texture" }, + "south": { "uv": [ 6, 1, 8, 10 ], "texture": "#texture" }, + "west": { "uv": [ 7, 1, 9, 10 ], "texture": "#texture" }, + "east": { "uv": [ 7, 1, 9, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Inner vertical post of right-hand gate door", + "from": [ 8, 6, 7 ], + "to": [ 10, 15, 9 ], + "faces": { + "down": { "uv": [ 8, 7, 10, 9 ], "texture": "#texture" }, + "up": { "uv": [ 8, 7, 10, 9 ], "texture": "#texture" }, + "north": { "uv": [ 8, 1, 10, 10 ], "texture": "#texture" }, + "south": { "uv": [ 8, 1, 10, 10 ], "texture": "#texture" }, + "west": { "uv": [ 7, 1, 9, 10 ], "texture": "#texture" }, + "east": { "uv": [ 7, 1, 9, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Lower horizontal bar of left-hand gate door", + "from": [ 2, 6, 7 ], + "to": [ 6, 9, 9 ], + "faces": { + "down": { "uv": [ 2, 7, 6, 9 ], "texture": "#texture" }, + "up": { "uv": [ 2, 7, 6, 9 ], "texture": "#texture" }, + "north": { "uv": [ 2, 7, 6, 10 ], "texture": "#texture" }, + "south": { "uv": [ 2, 7, 6, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Upper horizontal bar of left-hand gate door", + "from": [ 2, 12, 7 ], + "to": [ 6, 15, 9 ], + "faces": { + "down": { "uv": [ 2, 7, 6, 9 ], "texture": "#texture" }, + "up": { "uv": [ 2, 7, 6, 9 ], "texture": "#texture" }, + "north": { "uv": [ 2, 1, 6, 4 ], "texture": "#texture" }, + "south": { "uv": [ 2, 1, 6, 4 ], "texture": "#texture" } + } + }, + { "__comment": "Lower horizontal bar of right-hand gate door", + "from": [ 10, 6, 7 ], + "to": [ 14, 9, 9 ], + "faces": { + "down": { "uv": [ 10, 7, 14, 9 ], "texture": "#texture" }, + "up": { "uv": [ 10, 7, 14, 9 ], "texture": "#texture" }, + "north": { "uv": [ 10, 7, 14, 10 ], "texture": "#texture" }, + "south": { "uv": [ 10, 7, 14, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Upper horizontal bar of right-hand gate door", + "from": [ 10, 12, 7 ], + "to": [ 14, 15, 9 ], + "faces": { + "down": { "uv": [ 10, 7, 14, 9 ], "texture": "#texture" }, + "up": { "uv": [ 10, 7, 14, 9 ], "texture": "#texture" }, + "north": { "uv": [ 10, 1, 14, 4 ], "texture": "#texture" }, + "south": { "uv": [ 10, 1, 14, 4 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fence_gate_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fence_gate_open.json new file mode 100644 index 000000000..af2062a11 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fence_gate_open.json @@ -0,0 +1,95 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "__comment": "Left-hand post", + "from": [ 0, 5, 7 ], + "to": [ 2, 16, 9 ], + "faces": { + "down": { "uv": [ 0, 7, 2, 9 ], "texture": "#texture" }, + "up": { "uv": [ 0, 7, 2, 9 ], "texture": "#texture" }, + "north": { "uv": [ 0, 0, 2, 11 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 2, 11 ], "texture": "#texture" }, + "west": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture" } + } + }, + { "__comment": "Right-hand post", + "from": [ 14, 5, 7 ], + "to": [ 16, 16, 9 ], + "faces": { + "down": { "uv": [ 14, 7, 16, 9 ], "texture": "#texture" }, + "up": { "uv": [ 14, 7, 16, 9 ], "texture": "#texture" }, + "north": { "uv": [ 14, 0, 16, 11 ], "texture": "#texture" }, + "south": { "uv": [ 14, 0, 16, 11 ], "texture": "#texture" }, + "west": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture", "cullface": "east" } + } + }, + { "__comment": "Inner vertical post of left-hand gate door", + "from": [ 0, 6, 13 ], + "to": [ 2, 15, 15 ], + "faces": { + "down": { "uv": [ 0, 13, 2, 15 ], "texture": "#texture" }, + "up": { "uv": [ 0, 13, 2, 15 ], "texture": "#texture" }, + "north": { "uv": [ 0, 1, 2, 10 ], "texture": "#texture" }, + "south": { "uv": [ 0, 1, 2, 10 ], "texture": "#texture" }, + "west": { "uv": [ 13, 1, 15, 10 ], "texture": "#texture" }, + "east": { "uv": [ 13, 1, 15, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Inner vertical post of right-hand gate door", + "from": [ 14, 6, 13 ], + "to": [ 16, 15, 15 ], + "faces": { + "down": { "uv": [ 14, 13, 16, 15 ], "texture": "#texture" }, + "up": { "uv": [ 14, 13, 16, 15 ], "texture": "#texture" }, + "north": { "uv": [ 14, 1, 16, 10 ], "texture": "#texture" }, + "south": { "uv": [ 14, 1, 16, 10 ], "texture": "#texture" }, + "west": { "uv": [ 13, 1, 15, 10 ], "texture": "#texture" }, + "east": { "uv": [ 13, 1, 15, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Lower horizontal bar of left-hand gate door", + "from": [ 0, 6, 9 ], + "to": [ 2, 9, 13 ], + "faces": { + "down": { "uv": [ 0, 9, 2, 13 ], "texture": "#texture" }, + "up": { "uv": [ 0, 9, 2, 13 ], "texture": "#texture" }, + "west": { "uv": [ 13, 7, 15, 10 ], "texture": "#texture" }, + "east": { "uv": [ 13, 7, 15, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Upper horizontal bar of left-hand gate door", + "from": [ 0, 12, 9 ], + "to": [ 2, 15, 13 ], + "faces": { + "down": { "uv": [ 0, 9, 2, 13 ], "texture": "#texture" }, + "up": { "uv": [ 0, 9, 2, 13 ], "texture": "#texture" }, + "west": { "uv": [ 13, 1, 15, 4 ], "texture": "#texture" }, + "east": { "uv": [ 13, 1, 15, 4 ], "texture": "#texture" } + } + }, + { "__comment": "Lower horizontal bar of left-hand gate door", + "from": [ 14, 6, 9 ], + "to": [ 16, 9, 13 ], + "faces": { + "down": { "uv": [ 14, 9, 16, 13 ], "texture": "#texture" }, + "up": { "uv": [ 14, 9, 16, 13 ], "texture": "#texture" }, + "west": { "uv": [ 13, 7, 15, 10 ], "texture": "#texture" }, + "east": { "uv": [ 13, 7, 15, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Upper horizontal bar of left-hand gate door", + "from": [ 14, 12, 9 ], + "to": [ 16, 15, 13 ], + "faces": { + "down": { "uv": [ 14, 9, 16, 13 ], "texture": "#texture" }, + "up": { "uv": [ 14, 9, 16, 13 ], "texture": "#texture" }, + "west": { "uv": [ 13, 1, 15, 4 ], "texture": "#texture" }, + "east": { "uv": [ 13, 1, 15, 4 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fence_gate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fence_gate_wall.json new file mode 100644 index 000000000..7b301338d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fence_gate_wall.json @@ -0,0 +1,96 @@ +{ + "ambientocclusion": true, + "textures": { + "particle": "#texture" + }, + "elements": [ + { "__comment": "Left-hand post", + "from": [ 0, 2, 7 ], + "to": [ 2, 13, 9 ], + "faces": { + "down": { "uv": [ 0, 7, 2, 9 ], "texture": "#texture" }, + "up": { "uv": [ 0, 7, 2, 9 ], "texture": "#texture" }, + "north": { "uv": [ 0, 0, 2, 11 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 2, 11 ], "texture": "#texture" }, + "west": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture" } + } + }, + { "__comment": "Right-hand post", + "from": [ 14, 2, 7 ], + "to": [ 16, 13, 9 ], + "faces": { + "down": { "uv": [ 14, 7, 16, 9 ], "texture": "#texture" }, + "up": { "uv": [ 14, 7, 16, 9 ], "texture": "#texture" }, + "north": { "uv": [ 14, 0, 16, 11 ], "texture": "#texture" }, + "south": { "uv": [ 14, 0, 16, 11 ], "texture": "#texture" }, + "west": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture", "cullface": "east" } + } + }, + { "__comment": "Inner vertical post of left-hand gate door", + "from": [ 6, 3, 7 ], + "to": [ 8, 12, 9 ], + "faces": { + "down": { "uv": [ 6, 7, 8, 9 ], "texture": "#texture" }, + "up": { "uv": [ 6, 7, 8, 9 ], "texture": "#texture" }, + "north": { "uv": [ 6, 1, 8, 10 ], "texture": "#texture" }, + "south": { "uv": [ 6, 1, 8, 10 ], "texture": "#texture" }, + "west": { "uv": [ 7, 1, 9, 10 ], "texture": "#texture" }, + "east": { "uv": [ 7, 1, 9, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Inner vertical post of right-hand gate door", + "from": [ 8, 3, 7 ], + "to": [ 10, 12, 9 ], + "faces": { + "down": { "uv": [ 8, 7, 10, 9 ], "texture": "#texture" }, + "up": { "uv": [ 8, 7, 10, 9 ], "texture": "#texture" }, + "north": { "uv": [ 8, 1, 10, 10 ], "texture": "#texture" }, + "south": { "uv": [ 8, 1, 10, 10 ], "texture": "#texture" }, + "west": { "uv": [ 7, 1, 9, 10 ], "texture": "#texture" }, + "east": { "uv": [ 7, 1, 9, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Lower horizontal bar of left-hand gate door", + "from": [ 2, 3, 7 ], + "to": [ 6, 6, 9 ], + "faces": { + "down": { "uv": [ 2, 7, 6, 9 ], "texture": "#texture" }, + "up": { "uv": [ 2, 7, 6, 9 ], "texture": "#texture" }, + "north": { "uv": [ 2, 7, 6, 10 ], "texture": "#texture" }, + "south": { "uv": [ 2, 7, 6, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Upper horizontal bar of left-hand gate door", + "from": [ 2, 9, 7 ], + "to": [ 6, 12, 9 ], + "faces": { + "down": { "uv": [ 2, 7, 6, 9 ], "texture": "#texture" }, + "up": { "uv": [ 2, 7, 6, 9 ], "texture": "#texture" }, + "north": { "uv": [ 2, 1, 6, 4 ], "texture": "#texture" }, + "south": { "uv": [ 2, 1, 6, 4 ], "texture": "#texture" } + } + }, + { "__comment": "Lower horizontal bar of right-hand gate door", + "from": [ 10, 3, 7 ], + "to": [ 14, 6, 9 ], + "faces": { + "down": { "uv": [ 10, 7, 14, 9 ], "texture": "#texture" }, + "up": { "uv": [ 10, 7, 14, 9 ], "texture": "#texture" }, + "north": { "uv": [ 10, 7, 14, 10 ], "texture": "#texture" }, + "south": { "uv": [ 10, 7, 14, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Upper horizontal bar of right-hand gate door", + "from": [ 10, 9, 7 ], + "to": [ 14, 12, 9 ], + "faces": { + "down": { "uv": [ 10, 7, 14, 9 ], "texture": "#texture" }, + "up": { "uv": [ 10, 7, 14, 9 ], "texture": "#texture" }, + "north": { "uv": [ 10, 1, 14, 4 ], "texture": "#texture" }, + "south": { "uv": [ 10, 1, 14, 4 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fence_gate_wall_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fence_gate_wall_open.json new file mode 100644 index 000000000..6fddae61c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fence_gate_wall_open.json @@ -0,0 +1,96 @@ +{ + "ambientocclusion": true, + "textures": { + "particle": "#texture" + }, + "elements": [ + { "__comment": "Left-hand post", + "from": [ 0, 2, 7 ], + "to": [ 2, 13, 9 ], + "faces": { + "down": { "uv": [ 0, 7, 2, 9 ], "texture": "#texture" }, + "up": { "uv": [ 0, 7, 2, 9 ], "texture": "#texture" }, + "north": { "uv": [ 0, 0, 2, 11 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 2, 11 ], "texture": "#texture" }, + "west": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture" } + } + }, + { "__comment": "Right-hand post", + "from": [ 14, 2, 7 ], + "to": [ 16, 13, 9 ], + "faces": { + "down": { "uv": [ 14, 7, 16, 9 ], "texture": "#texture" }, + "up": { "uv": [ 14, 7, 16, 9 ], "texture": "#texture" }, + "north": { "uv": [ 14, 0, 16, 11 ], "texture": "#texture" }, + "south": { "uv": [ 14, 0, 16, 11 ], "texture": "#texture" }, + "west": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture" }, + "east": { "uv": [ 7, 0, 9, 11 ], "texture": "#texture", "cullface": "east" } + } + }, + { "__comment": "Inner vertical post of left-hand gate door", + "from": [ 0, 3, 13 ], + "to": [ 2, 12, 15 ], + "faces": { + "down": { "uv": [ 0, 13, 2, 15 ], "texture": "#texture" }, + "up": { "uv": [ 0, 13, 2, 15 ], "texture": "#texture" }, + "north": { "uv": [ 0, 1, 2, 10 ], "texture": "#texture" }, + "south": { "uv": [ 0, 1, 2, 10 ], "texture": "#texture" }, + "west": { "uv": [ 13, 1, 15, 10 ], "texture": "#texture" }, + "east": { "uv": [ 13, 1, 15, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Inner vertical post of right-hand gate door", + "from": [ 14, 3, 13 ], + "to": [ 16, 12, 15 ], + "faces": { + "down": { "uv": [ 14, 13, 16, 15 ], "texture": "#texture" }, + "up": { "uv": [ 14, 13, 16, 15 ], "texture": "#texture" }, + "north": { "uv": [ 14, 1, 16, 10 ], "texture": "#texture" }, + "south": { "uv": [ 14, 1, 16, 10 ], "texture": "#texture" }, + "west": { "uv": [ 13, 1, 15, 10 ], "texture": "#texture" }, + "east": { "uv": [ 13, 1, 15, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Lower horizontal bar of left-hand gate door", + "from": [ 0, 3, 9 ], + "to": [ 2, 6, 13 ], + "faces": { + "down": { "uv": [ 0, 9, 2, 13 ], "texture": "#texture" }, + "up": { "uv": [ 0, 9, 2, 13 ], "texture": "#texture" }, + "west": { "uv": [ 13, 7, 15, 10 ], "texture": "#texture" }, + "east": { "uv": [ 13, 7, 15, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Upper horizontal bar of left-hand gate door", + "from": [ 0, 9, 9 ], + "to": [ 2, 12, 13 ], + "faces": { + "down": { "uv": [ 0, 9, 2, 13 ], "texture": "#texture" }, + "up": { "uv": [ 0, 9, 2, 13 ], "texture": "#texture" }, + "west": { "uv": [ 13, 1, 15, 4 ], "texture": "#texture" }, + "east": { "uv": [ 13, 1, 15, 4 ], "texture": "#texture" } + } + }, + { "__comment": "Lower horizontal bar of left-hand gate door", + "from": [ 14, 3, 9 ], + "to": [ 16, 6, 13 ], + "faces": { + "down": { "uv": [ 14, 9, 16, 13 ], "texture": "#texture" }, + "up": { "uv": [ 14, 9, 16, 13 ], "texture": "#texture" }, + "west": { "uv": [ 13, 7, 15, 10 ], "texture": "#texture" }, + "east": { "uv": [ 13, 7, 15, 10 ], "texture": "#texture" } + } + }, + { "__comment": "Upper horizontal bar of left-hand gate door", + "from": [ 14, 9, 9 ], + "to": [ 16, 12, 13 ], + "faces": { + "down": { "uv": [ 14, 9, 16, 13 ], "texture": "#texture" }, + "up": { "uv": [ 14, 9, 16, 13 ], "texture": "#texture" }, + "west": { "uv": [ 13, 1, 15, 4 ], "texture": "#texture" }, + "east": { "uv": [ 13, 1, 15, 4 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fire_floor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fire_floor.json new file mode 100644 index 000000000..a5e46b559 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fire_floor.json @@ -0,0 +1,32 @@ +{ + "textures": { + "particle": "#fire" + }, + "ambientocclusion": false, + "elements": [ + { "from": [ 0, 0, 8.8 ], + "to": [ 16, 22.4, 8.8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "x", "angle": -22.5, "rescale": true }, + "shade": false, + "faces": { "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" }} + }, + { "from": [ 0, 0, 7.2 ], + "to": [ 16, 22.4, 7.2 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "x", "angle": 22.5, "rescale": true }, + "shade": false, + "faces": { "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" }} + }, + { "from": [ 8.8, 0, 0 ], + "to": [ 8.8, 22.4, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "z", "angle": -22.5, "rescale": true }, + "shade": false, + "faces": { "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" }} + }, + { "from": [ 7.2, 0, 0 ], + "to": [ 7.2, 22.4, 16 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "z", "angle": 22.5, "rescale": true }, + "shade": false, + "faces": { "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" }} + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fire_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fire_side.json new file mode 100644 index 000000000..da323e332 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fire_side.json @@ -0,0 +1,16 @@ +{ + "textures": { + "particle": "#fire" + }, + "ambientocclusion": false, + "elements": [ + { "from": [ 0, 0, 0.01 ], + "to": [ 16, 22.4, 0.01 ], + "shade": false, + "faces": { + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fire_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fire_side_alt.json new file mode 100644 index 000000000..83d76ea3c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fire_side_alt.json @@ -0,0 +1,16 @@ +{ + "textures": { + "particle": "#fire" + }, + "ambientocclusion": false, + "elements": [ + { "from": [ 0, 0, 0.01 ], + "to": [ 16, 22.4, 0.01 ], + "shade": false, + "faces": { + "south": { "uv": [ 16, 0, 0, 16 ], "texture": "#fire" }, + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#fire" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fire_up.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fire_up.json new file mode 100644 index 000000000..1cebdf22f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fire_up.json @@ -0,0 +1,20 @@ +{ + "textures": { + "particle": "#fire" + }, + "ambientocclusion": false, + "elements": [ + { "from": [ 0, 16, 0 ], + "to": [ 16, 16, 16 ], + "rotation": { "origin": [ 16, 16, 8 ], "axis": "z", "angle": 22.5, "rescale": true }, + "shade": false, + "faces": { "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire", "rotation": 270 }} + }, + { "from": [ 0, 16, 0 ], + "to": [ 16, 16, 16 ], + "rotation": { "origin": [ 0, 16, 8 ], "axis": "z", "angle": -22.5, "rescale": true }, + "shade": false, + "faces": { "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire", "rotation": 90 }} + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fire_up_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fire_up_alt.json new file mode 100644 index 000000000..31be9be24 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_fire_up_alt.json @@ -0,0 +1,20 @@ +{ + "textures": { + "particle": "#fire" + }, + "ambientocclusion": false, + "elements": [ + { "from": [ 0, 16, 0 ], + "to": [ 16, 16, 16 ], + "rotation": { "origin": [ 8, 16, 16 ], "axis": "x", "angle": -22.5, "rescale": true }, + "shade": false, + "faces": { "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire", "rotation": 180 }} + }, + { "from": [ 0, 16, 0 ], + "to": [ 16, 16, 16 ], + "rotation": { "origin": [ 8, 16, 0 ], "axis": "x", "angle": 22.5, "rescale": true }, + "shade": false, + "faces": { "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#fire" }} + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_four_candles.json new file mode 100644 index 000000000..7515ba12c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_four_candles.json @@ -0,0 +1,125 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [6, 0, 8], + "to": [8, 3, 10], + "faces": { + "north": {"uv": [0, 8, 2, 11], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 11], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 11], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 11], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [6.5, 3, 9], + "to": [7.5, 4, 9], + "rotation": {"angle": 45, "axis": "y", "origin": [7, 3, 9]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [6.5, 3, 9], + "to": [7.5, 4, 9], + "rotation": {"angle": -45, "axis": "y", "origin": [7, 3, 9]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [9, 0, 8], + "to": [11, 5, 10], + "faces": { + "north": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [9.5, 5, 9], + "to": [10.5, 6, 9], + "rotation": {"angle": 45, "axis": "y", "origin": [10, 5, 9]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [9.5, 5, 9], + "to": [10.5, 6, 9], + "rotation": {"angle": -45, "axis": "y", "origin": [10, 5, 9]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [5, 0, 5], + "to": [7, 5, 7], + "faces": { + "north": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [5.5, 5, 6], + "to": [6.5, 6, 6], + "rotation": {"angle": 45, "axis": "y", "origin": [6, 5, 6]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [5.5, 5, 6], + "to": [6.5, 6, 6], + "rotation": {"angle": -45, "axis": "y", "origin": [6, 5, 6]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [8, 0, 5], + "to": [10, 6, 7], + "faces": { + "north": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [8.5, 6, 6], + "to": [9.5, 7, 6], + "rotation": {"angle": 45, "axis": "y", "origin": [9, 6, 6]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#all"} + } + }, + { + "from": [8.5, 6, 6], + "to": [9.5, 7, 6], + "rotation": {"angle": -45, "axis": "y", "origin": [9, 6, 6]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_four_turtle_eggs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_four_turtle_eggs.json new file mode 100644 index 000000000..93a7ca4b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_four_turtle_eggs.json @@ -0,0 +1,56 @@ +{ + "parent": "block/block", + "textures": { + "all": "block/turtle_egg", + "particle": "#all" + }, + "elements": [ + { "from": [ 5, 0, 4 ], + "to": [ 9, 7, 8 ], + "faces": { + "down": { "uv": [ 0, 0, 4, 4 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 0, 0, 4, 4 ], "texture": "#all" }, + "north": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "south": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "west": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "east": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" } + } + }, + { + "from": [ 1, 0, 7 ], + "to": [ 5, 5, 11 ], + "faces": { + "down": { "uv": [ 6, 7, 10, 11 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 6, 7, 10, 11 ], "texture": "#all" }, + "north": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "south": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "west": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "east": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" } + } + }, + { + "from": [ 11, 0, 7 ], + "to": [ 14, 4, 10 ], + "faces": { + "down": { "uv": [ 5, 0, 8, 3 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 5, 0, 8, 3 ], "texture": "#all" }, + "north": { "uv": [ 8, 3, 11, 7 ], "texture": "#all" }, + "south": { "uv": [ 8, 3, 11, 7 ], "texture": "#all" }, + "west": { "uv": [ 8, 3, 11, 7 ], "texture": "#all" }, + "east": { "uv": [ 8, 3, 11, 7 ], "texture": "#all" } + } + }, + { + "from": [ 6, 0, 9 ], + "to": [ 10, 4, 13 ], + "faces": { + "down": { "uv": [ 0, 11, 4, 15 ], "texture": "#all" }, + "up": { "uv": [ 0, 11, 4, 15 ], "texture": "#all" }, + "north": { "uv": [ 4, 11, 8, 15 ], "texture": "#all" }, + "south": { "uv": [ 4, 11, 8, 15 ], "texture": "#all" }, + "west": { "uv": [ 4, 11, 8, 15 ], "texture": "#all" }, + "east": { "uv": [ 4, 11, 8, 15 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glass_pane_noside.json new file mode 100644 index 000000000..af16ff940 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glass_pane_noside.json @@ -0,0 +1,14 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#pane" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "north": { "uv": [ 9, 0, 7, 16 ], "texture": "#pane" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glass_pane_noside_alt.json new file mode 100644 index 000000000..771d69420 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glass_pane_noside_alt.json @@ -0,0 +1,14 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#pane" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "east": { "uv": [ 7, 0, 9, 16 ], "texture": "#pane" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glass_pane_post.json new file mode 100644 index 000000000..54d7fa88c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glass_pane_post.json @@ -0,0 +1,15 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#pane" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 16, 9 ], + "faces": { + "down": { "uv": [ 7, 7, 9, 9 ], "texture": "#edge" }, + "up": { "uv": [ 7, 7, 9, 9 ], "texture": "#edge" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glass_pane_side.json new file mode 100644 index 000000000..fae06dcc6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glass_pane_side.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#pane" + }, + "elements": [ + { "from": [ 7, 0, 0 ], + "to": [ 9, 16, 7 ], + "faces": { + "down": { "uv": [ 7, 0, 9, 7 ], "texture": "#edge" }, + "up": { "uv": [ 7, 0, 9, 7 ], "texture": "#edge" }, + "north": { "uv": [ 7, 0, 9, 16 ], "texture": "#edge", "cullface": "north" }, + "west": { "uv": [ 16, 0, 9, 16 ], "texture": "#pane" }, + "east": { "uv": [ 9, 0, 16, 16 ], "texture": "#pane" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glass_pane_side_alt.json new file mode 100644 index 000000000..82d0e98e0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glass_pane_side_alt.json @@ -0,0 +1,18 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#pane" + }, + "elements": [ + { "from": [ 7, 0, 9 ], + "to": [ 9, 16, 16 ], + "faces": { + "down": { "uv": [ 7, 0, 9, 7 ], "texture": "#edge" }, + "up": { "uv": [ 7, 0, 9, 7 ], "texture": "#edge" }, + "south": { "uv": [ 7, 0, 9, 16 ], "texture": "#edge", "cullface": "south" }, + "west": { "uv": [ 7, 0, 0, 16 ], "texture": "#pane" }, + "east": { "uv": [ 0, 0, 7, 16 ], "texture": "#pane" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glazed_terracotta.json new file mode 100644 index 000000000..c6574a9f9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_glazed_terracotta.json @@ -0,0 +1,26 @@ +{ + "parent": "block/cube", + "textures": { + "particle": "#pattern" + }, + "display": { + "firstperson_righthand": { + "rotation": [ 0, 135, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.40, 0.40, 0.40 ] + } + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#pattern", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#pattern", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#pattern", "cullface": "north", "rotation": 90 }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#pattern", "cullface": "south", "rotation": 270 }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#pattern", "cullface": "west", "rotation": 0 }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#pattern", "cullface": "east", "rotation": 180 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_hanging_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_hanging_lantern.json new file mode 100644 index 000000000..fb7ebb4d6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_hanging_lantern.json @@ -0,0 +1,50 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#lantern" + }, + "elements": [ + { "from": [ 5, 1, 5 ], + "to": [ 11, 8, 11 ], + "faces": { + "down": { "uv": [ 0, 9, 6, 15 ], "texture": "#lantern"}, + "up": { "uv": [ 0, 9, 6, 15 ], "texture": "#lantern" }, + "north": { "uv": [ 0, 2, 6, 9 ], "texture": "#lantern" }, + "south": { "uv": [ 0, 2, 6, 9 ], "texture": "#lantern" }, + "west": { "uv": [ 0, 2, 6, 9 ], "texture": "#lantern" }, + "east": { "uv": [ 0, 2, 6, 9 ], "texture": "#lantern" } + } + }, + { "from": [ 6, 8, 6 ], + "to": [ 10, 10, 10 ], + "faces": { + "down": { "uv": [ 1, 10, 5, 14 ], "texture": "#lantern"}, + "up": { "uv": [ 1, 10, 5, 14 ], "texture": "#lantern" }, + "north": { "uv": [ 1, 0, 5, 2 ], "texture": "#lantern" }, + "south": { "uv": [ 1, 0, 5, 2 ], "texture": "#lantern" }, + "west": { "uv": [ 1, 0, 5, 2 ], "texture": "#lantern" }, + "east": { "uv": [ 1, 0, 5, 2 ], "texture": "#lantern" } + } + }, + { + "from": [ 6.5, 11, 8 ], + "to": [ 9.5, 15, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45}, + "shade": false, + "faces": { + "north": { "uv": [ 14, 1, 11, 5 ], "texture": "#lantern" }, + "south": { "uv": [ 11, 1, 14, 5 ], "texture": "#lantern" } + } + }, + { + "from": [ 8, 10, 6.5 ], + "to": [ 8, 16, 9.5 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45}, + "shade": false, + "faces": { + "west": { "uv": [ 14, 6, 11, 12 ], "texture": "#lantern" }, + "east": { "uv": [ 11, 6, 14, 12 ], "texture": "#lantern" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_item_frame.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_item_frame.json new file mode 100644 index 000000000..12f519a1a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_item_frame.json @@ -0,0 +1,51 @@ +{ + "elements": [ + { "from": [ 3, 3, 15.5 ], + "to": [ 13, 13, 16 ], + "faces": { + "north": { "uv": [ 3, 3, 13, 13 ], "texture": "#back" }, + "south": { "uv": [ 3, 3, 13, 13 ], "texture": "#back" } + } + }, + { "from": [ 2, 2, 15 ], + "to": [ 14, 3, 16 ], + "faces": { + "down": { "uv": [ 2, 0, 14, 1 ], "texture": "#wood" }, + "up": { "uv": [ 2, 15, 14, 16 ], "texture": "#wood" }, + "north": { "uv": [ 2, 13, 14, 14 ], "texture": "#wood" }, + "south": { "uv": [ 2, 13, 14, 14 ], "texture": "#wood" }, + "west": { "uv": [ 15, 13, 16, 14 ], "texture": "#wood" }, + "east": { "uv": [ 0, 13, 1, 14 ], "texture": "#wood" } + } + }, + { "from": [ 2, 13, 15 ], + "to": [ 14, 14, 16 ], + "faces": { + "down": { "uv": [ 2, 0, 14, 1 ], "texture": "#wood" }, + "up": { "uv": [ 2, 15, 14, 16 ], "texture": "#wood" }, + "north": { "uv": [ 2, 2, 14, 3 ], "texture": "#wood" }, + "south": { "uv": [ 2, 2, 14, 3 ], "texture": "#wood" }, + "west": { "uv": [ 15, 2, 16, 3 ], "texture": "#wood" }, + "east": { "uv": [ 0, 2, 1, 3 ], "texture": "#wood" } + } + }, + { "from": [ 2, 3, 15 ], + "to": [ 3, 13, 16 ], + "faces": { + "north": { "uv": [ 13, 3, 14, 13 ], "texture": "#wood" }, + "south": { "uv": [ 2, 3, 3, 13 ], "texture": "#wood" }, + "west": { "uv": [ 15, 3, 16, 13 ], "texture": "#wood" }, + "east": { "uv": [ 0, 3, 1, 13 ], "texture": "#wood" } + } + }, + { "from": [ 13, 3, 15 ], + "to": [ 14, 13, 16 ], + "faces": { + "north": { "uv": [ 2, 3, 3, 13 ], "texture": "#wood" }, + "south": { "uv": [ 13, 3, 14, 13 ], "texture": "#wood" }, + "west": { "uv": [ 15, 3, 16, 13 ], "texture": "#wood" }, + "east": { "uv": [ 0, 3, 1, 13 ], "texture": "#wood" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_item_frame_map.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_item_frame_map.json new file mode 100644 index 000000000..2a6054e8c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_item_frame_map.json @@ -0,0 +1,51 @@ +{ + "elements": [ + { "from": [ 1, 1, 15.001 ], + "to": [ 15, 15, 16 ], + "faces": { + "north": { "uv": [ 1, 1, 15, 15 ], "texture": "#back" }, + "south": { "uv": [ 1, 1, 15, 15 ], "texture": "#back" } + } + }, + { "from": [ 0, 0, 15.001 ], + "to": [ 16, 1, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 1 ], "texture": "#wood" }, + "up": { "uv": [ 0, 15, 16, 16 ], "texture": "#wood" }, + "north": { "uv": [ 0, 15, 16, 16 ], "texture": "#wood" }, + "south": { "uv": [ 0, 15, 16, 16 ], "texture": "#wood" }, + "west": { "uv": [ 15, 15, 16, 16 ], "texture": "#wood" }, + "east": { "uv": [ 0, 15, 1, 16 ], "texture": "#wood" } + } + }, + { "from": [ 0, 15, 15.001 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 1 ], "texture": "#wood" }, + "up": { "uv": [ 0, 15, 16, 16 ], "texture": "#wood" }, + "north": { "uv": [ 0, 0, 16, 1 ], "texture": "#wood" }, + "south": { "uv": [ 0, 0, 16, 1 ], "texture": "#wood" }, + "west": { "uv": [ 15, 0, 16, 1 ], "texture": "#wood" }, + "east": { "uv": [ 0, 0, 1, 1 ], "texture": "#wood" } + } + }, + { "from": [ 0, 1, 15.001 ], + "to": [ 1, 15, 16 ], + "faces": { + "north": { "uv": [ 15, 1, 16, 15 ], "texture": "#wood" }, + "south": { "uv": [ 0, 1, 1, 15 ], "texture": "#wood" }, + "west": { "uv": [ 15, 1, 16, 15 ], "texture": "#wood" }, + "east": { "uv": [ 0, 1, 1, 15 ], "texture": "#wood" } + } + }, + { "from": [ 15, 1, 15.001 ], + "to": [ 16, 15, 16 ], + "faces": { + "north": { "uv": [ 0, 1, 1, 15 ], "texture": "#wood" }, + "south": { "uv": [ 15, 1, 16, 15 ], "texture": "#wood" }, + "west": { "uv": [ 15, 1, 16, 15 ], "texture": "#wood" }, + "east": { "uv": [ 0, 1, 1, 15 ], "texture": "#wood" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_lantern.json new file mode 100644 index 000000000..d54baf8db --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_lantern.json @@ -0,0 +1,49 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#lantern" + }, + "elements": [ + { "from": [ 5, 0, 5 ], + "to": [ 11, 7, 11 ], + "faces": { + "down": { "uv": [ 0, 9, 6, 15 ], "texture": "#lantern", "cullface": "down" }, + "up": { "uv": [ 0, 9, 6, 15 ], "texture": "#lantern" }, + "north": { "uv": [ 0, 2, 6, 9 ], "texture": "#lantern" }, + "south": { "uv": [ 0, 2, 6, 9 ], "texture": "#lantern" }, + "west": { "uv": [ 0, 2, 6, 9 ], "texture": "#lantern" }, + "east": { "uv": [ 0, 2, 6, 9 ], "texture": "#lantern" } + } + }, + { "from": [ 6, 7, 6 ], + "to": [ 10, 9, 10 ], + "faces": { + "up": { "uv": [ 1, 10, 5, 14 ], "texture": "#lantern" }, + "north": { "uv": [ 1, 0, 5, 2 ], "texture": "#lantern" }, + "south": { "uv": [ 1, 0, 5, 2 ], "texture": "#lantern" }, + "west": { "uv": [ 1, 0, 5, 2 ], "texture": "#lantern" }, + "east": { "uv": [ 1, 0, 5, 2 ], "texture": "#lantern" } + } + }, + { + "from": [ 6.5, 9, 8 ], + "to": [ 9.5, 11, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45}, + "shade": false, + "faces": { + "north": { "uv": [ 14, 1, 11, 3 ], "texture": "#lantern" }, + "south": { "uv": [ 11, 1, 14, 3 ], "texture": "#lantern" } + } + }, + { + "from": [ 8, 9, 6.5 ], + "to": [ 8, 11, 9.5 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45}, + "shade": false, + "faces": { + "west": { "uv": [ 14, 10, 11, 12 ], "texture": "#lantern" }, + "east": { "uv": [ 11, 10, 14, 12 ], "texture": "#lantern" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_leaf_litter_1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_leaf_litter_1.json new file mode 100644 index 000000000..355e715e5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_leaf_litter_1.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [0, 0.25, 0], + "to": [8, 0.25, 8], + "faces": { + "up": {"uv": [0, 0, 8, 8], "texture": "#texture", "tintindex": 0}, + "down": {"uv": [0, 8, 8, 0], "texture": "#texture", "tintindex": 0} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_leaf_litter_2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_leaf_litter_2.json new file mode 100644 index 000000000..06589413d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_leaf_litter_2.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [0, 0.25, 0], + "to": [8, 0.25, 16], + "faces": { + "up": {"uv": [0, 0, 8, 16], "texture": "#texture", "tintindex": 0}, + "down": {"uv": [0, 16, 8, 0], "texture": "#texture", "tintindex": 0} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_leaf_litter_3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_leaf_litter_3.json new file mode 100644 index 000000000..bcd97e3a9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_leaf_litter_3.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [8, 0.25, 8], + "to": [16, 0.25, 16], + "faces": { + "up": {"uv": [8, 8, 16, 16], "texture": "#texture", "tintindex": 0}, + "down": {"uv": [8, 16, 16, 8], "texture": "#texture", "tintindex": 0} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_leaf_litter_4.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_leaf_litter_4.json new file mode 100644 index 000000000..f8d9d4346 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_leaf_litter_4.json @@ -0,0 +1,16 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#texture" + }, + "elements": [ + { + "from": [0, 0.25, 0], + "to": [16, 0.25, 16], + "faces": { + "up": {"uv": [0, 0, 16, 16], "texture": "#texture", "tintindex": 0}, + "down": {"uv": [0, 16, 16, 0], "texture": "#texture", "tintindex": 0} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_lightning_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_lightning_rod.json new file mode 100644 index 000000000..2d6b22cf0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_lightning_rod.json @@ -0,0 +1,39 @@ +{ + "parent": "block/block", + "display": { + "head": { + "rotation": [ -180, 0, 0 ], + "translation": [ 8.5, 4, 0 ] + }, + "thirdperson_righthand": { + "translation": [ 0, 2, 0.5], + "scale": [ 0.40, 0.40, 0.40 ] + } + }, + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 6, 12, 6 ], + "to": [ 10, 16, 10 ], + "faces": { + "north": { "uv": [ 0, 0, 4, 4 ],"texture": "#texture" }, + "south": { "uv": [ 0, 0, 4, 4 ],"texture": "#texture" }, + "west": { "uv": [ 0, 0, 4, 4 ],"texture": "#texture" }, + "east": { "uv": [ 0, 0, 4, 4 ],"texture": "#texture" }, + "down": { "uv": [ 0, 0, 4, 4 ], "texture": "#texture" }, + "up": { "uv": [ 4, 4, 0, 0 ], "texture": "#texture" } + } + }, + { "from": [ 7, 0, 7 ], + "to": [ 9, 12, 9 ], + "faces": { + "north": { "uv": [ 0, 4, 2, 16 ],"texture": "#texture" }, + "south": { "uv": [ 0, 4, 2, 16 ],"texture": "#texture" }, + "west": { "uv": [ 0, 4, 2, 16 ],"texture": "#texture" }, + "east": { "uv": [ 0, 4, 2, 16 ],"texture": "#texture" }, + "down": { "uv": [ 0, 4, 2, 6 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_bottom.json new file mode 100644 index 000000000..5f2ac5e4b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_bottom.json @@ -0,0 +1,18 @@ +{ "parent": "block/thin_block", + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 3, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" }, + "north": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_open.json new file mode 100644 index 000000000..ce447b51e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_open.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 0, 13 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 3, 16, 0 ], "texture": "#texture", "cullface": "up" }, + "north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" }, + "south": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 3 ], "rotation": 90, "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 3, 16, 0 ], "rotation": 90, "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_top.json new file mode 100644 index 000000000..a437e1846 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_orientable_trapdoor_top.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 13, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "up": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 3 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_piston.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_piston.json new file mode 100644 index 000000000..83b4e18ab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_piston.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#side" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "rotation": 180, "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#platform", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "south" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "rotation": 270, "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "rotation": 90, "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_piston_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_piston_head.json new file mode 100644 index 000000000..f4fcb9107 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_piston_head.json @@ -0,0 +1,27 @@ +{ + "textures": { + "particle": "#platform" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 4 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "cullface": "down", "rotation": 180 }, + "up": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#platform", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#unsticky" }, + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "rotation": 270, "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "rotation": 90, "cullface": "east" } + } + }, + { "from": [ 6, 6, 4 ], + "to": [ 10, 10, 20 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "rotation": 270 }, + "west": { "uv": [ 16, 4, 0, 0 ], "texture": "#side" }, + "east": { "uv": [ 0, 0, 16, 4 ], "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_piston_head_short.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_piston_head_short.json new file mode 100644 index 000000000..cdbe9e125 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_piston_head_short.json @@ -0,0 +1,27 @@ +{ + "textures": { + "particle": "#platform" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 4 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "cullface": "down", "rotation": 180 }, + "up": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#platform", "cullface": "north" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#unsticky" }, + "west": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "rotation": 270, "cullface": "west" }, + "east": { "uv": [ 0, 0, 16, 4 ], "texture": "#side", "rotation": 90, "cullface": "east" } + } + }, + { "from": [ 6, 6, 4 ], + "to": [ 10, 10, 16 ], + "faces": { + "down": { "uv": [ 4, 0, 16, 4 ], "texture": "#side", "rotation": 90 }, + "up": { "uv": [ 4, 0, 16, 4 ], "texture": "#side", "rotation": 270 }, + "west": { "uv": [ 16, 4, 4, 0 ], "texture": "#side" }, + "east": { "uv": [ 4, 0, 16, 4 ], "texture": "#side" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_potted_azalea_bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_potted_azalea_bush.json new file mode 100644 index 000000000..d3ce7c09f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_potted_azalea_bush.json @@ -0,0 +1,108 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/flower_pot", + "flowerpot": "block/flower_pot", + "dirt": "block/dirt" + }, + "elements": [ + { "from": [ 5, 0, 5 ], + "to": [ 6, 6, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 10, 0, 5 ], + "to": [ 11, 6, 11 ], + "faces": { + "down": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 5 ], + "to": [ 10, 6, 6 ], + "faces": { + "down": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 10 ], + "to": [ 10, 6, 11 ], + "faces": { + "down": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 6 ], + "to": [ 10, 4, 10 ], + "faces": { + "down": { "uv": [ 6, 12, 10, 16 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#dirt" } + } + }, + { "from": [ 4, 15.9, 4 ], + "to": [ 12, 16, 12 ], + "faces": { + "down": { "uv": [ 4, 12, 12, 4 ], "texture": "#top" }, + "up": { "uv": [ 4, 4, 12, 12 ], "texture": "#top", "cullface": "up" } + } + }, + { "from": [ 4, 8, 4 ], + "to": [ 12, 16, 4 ], + "faces": { + "north": { "uv": [ 4, 5, 12, 13 ], "texture": "#side"}, + "south": { "uv": [ 12, 5, 4, 13 ], "texture": "#side" } + } + }, + { "from": [ 4, 8, 12 ], + "to": [ 12, 16, 12 ], + "faces": { + "north": { "uv": [ 12, 5, 4, 13 ], "texture": "#side" }, + "south": { "uv": [ 4, 5, 12, 13 ], "texture": "#side" } + } + }, + { "from": [ 4, 8, 4 ], + "to": [ 4, 16, 12 ], + "faces": { + "west": { "uv": [ 4, 5, 12, 13 ], "texture": "#side" }, + "east": { "uv": [ 12, 5, 4, 13 ], "texture": "#side" } + } + }, + { "from": [ 12, 8, 4 ], + "to": [ 12, 16, 12 ], + "faces": { + "west": { "uv": [ 12, 5, 4, 13 ], "texture": "#side" }, + "east": { "uv": [ 4, 5, 12, 13 ], "texture": "#side" } + } + }, + { "from": [ 2.6, 4, 8 ], + "to": [ 13.4, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "north": { "uv": [ 0, 4, 16, 16 ], "texture": "#plant" }, + "south": { "uv": [ 0, 4, 16, 16 ], "texture": "#plant" } + } + }, + { "from": [ 8, 4, 2.6 ], + "to": [ 8, 16, 13.4 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "faces": { + "west": { "uv": [ 0, 4, 16, 16 ], "texture": "#plant" }, + "east": { "uv": [ 0, 4, 16, 16 ], "texture": "#plant" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_rail_raised_ne.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_rail_raised_ne.json new file mode 100644 index 000000000..a92e4603f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_rail_raised_ne.json @@ -0,0 +1,21 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#rail" + }, + "elements": [ + { "from": [ 0, 9, 0 ], + "to": [ 16, 9, 16 ], + "rotation": { + "origin": [ 8, 9, 8 ], + "axis": "x", + "angle": 45, + "rescale": true + }, + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#rail" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#rail" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_rail_raised_sw.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_rail_raised_sw.json new file mode 100644 index 000000000..dddc35627 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_rail_raised_sw.json @@ -0,0 +1,21 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#rail" + }, + "elements": [ + { "from": [ 0, 9, 0 ], + "to": [ 16, 9, 16 ], + "rotation": { + "origin": [ 8, 9, 8 ], + "axis": "x", + "angle": -45, + "rescale": true + }, + "faces": { + "down": { "uv": [ 0, 16, 16, 0 ], "texture": "#rail" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#rail" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_redstone_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_redstone_torch.json new file mode 100644 index 000000000..de6022cd6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_redstone_torch.json @@ -0,0 +1,68 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#torch" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 10, 9 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 13, 9, 15 ], "texture": "#torch", "cullface": "down" }, + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#torch" }, + "north": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "east": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "south": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "west": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" } + } + }, + { + "from": [ 6.5, 7.5, 6.5 ], + "to": [ 9.5, 7.5, 9.5 ], + "shade": false, + "faces": { + "up": { "uv": [ 8, 5, 9, 6 ], "texture": "#torch" } + } + }, + { + "from": [ 6.5, 10.5, 6.5 ], + "to": [ 9.5, 10.5, 9.5 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 5, 8, 6 ], "texture": "#torch" } + } + }, + { + "from": [ 6.5, 7.5, 6.5 ], + "to": [ 9.5, 10.5, 6.5 ], + "shade": false, + "faces": { + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#torch" } + } + }, + { + "from": [ 9.5, 7.5, 6.5 ], + "to": [ 9.5, 10.5, 9.5 ], + "shade": false, + "faces": { + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#torch" } + } + }, + { + "from": [ 6.5, 7.5, 9.5 ], + "to": [ 9.5, 10.5, 9.5 ], + "shade": false, + "faces": { + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#torch" } + } + }, + { + "from": [ 6.5, 7.5, 6.5 ], + "to": [ 6.5, 10.5, 9.5 ], + "shade": false, + "faces": { + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#torch" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_redstone_torch_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_redstone_torch_wall.json new file mode 100644 index 000000000..6c11497f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_redstone_torch_wall.json @@ -0,0 +1,75 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#torch" + }, + "elements": [ + { "from": [ -1, 3.5, 7 ], + "to": [ 1, 13.5, 9 ], + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "shade": false, + "faces": { + "down": { "uv": [ 7, 13, 9, 15 ], "texture": "#torch" }, + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#torch" }, + "north": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "east": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "south": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "west": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" } + } + }, + { + "from": [ -1.5, 8, 6.5 ], + "to": [ 1.5, 11, 9.5 ], + "shade": false, + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "faces": { + "up": { "uv": [ 6, 5, 7, 6 ], "texture": "#torch" } + } + }, + { + "from": [ -1.5, 14, 6.5 ], + "to": [ 1.5, 17, 9.5 ], + "shade": false, + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 6, 5, 7, 6 ], "texture": "#torch" } + } + }, + { + "from": [ -1.5, 11, 3.5 ], + "to": [ 1.5, 14, 6.5 ], + "shade": false, + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "faces": { + "south": { "uv": [ 6, 5, 7, 6 ], "texture": "#torch" } + } + }, + { + "from": [ 1.5, 11, 6.5 ], + "to": [ 4.5, 14, 9.5 ], + "shade": false, + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "faces": { + "west": { "uv": [ 6, 5, 7, 6 ], "texture": "#torch" } + } + }, + { + "from": [ -1.5, 11, 9.5 ], + "to": [ 1.5, 14, 12.5 ], + "shade": false, + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "faces": { + "north": { "uv": [ 6, 5, 7, 6 ], "texture": "#torch" } + } + }, + { + "from": [ -4.5, 11, 6.5 ], + "to": [ -1.5, 14, 9.5 ], + "shade": false, + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "faces": { + "east": { "uv": [ 6, 5, 7, 6 ], "texture": "#torch" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_sculk_shrieker.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_sculk_shrieker.json new file mode 100644 index 000000000..f7dac613c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_sculk_shrieker.json @@ -0,0 +1,77 @@ +{ + "parent": "block/block", + "textures": { + "bottom": "block/sculk_shrieker_bottom", + "side": "block/sculk_shrieker_side", + "top": "block/sculk_shrieker_top", + "inner_top": "block/sculk_shrieker_inner_top", + "particle": "block/sculk_shrieker_bottom" + }, + "elements": [ + { + "name": "bottom_slab", + "from": [0, 0, 0], + "to": [16, 8, 16], + "faces": { + "north": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "north"}, + "east": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "east"}, + "south": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "south"}, + "west": {"uv": [0, 8, 16, 16], "texture": "#side", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#inner_top"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#bottom", "cullface": "down"} + } + }, + { + "name": "top_slab", + "from": [1, 8, 1], + "to": [15, 15, 15], + "faces": { + "north": {"uv": [1, 1, 15, 8], "texture": "#side"}, + "east": {"uv": [1, 1, 15, 8], "texture": "#side"}, + "south": {"uv": [1, 1, 15, 8], "texture": "#side"}, + "west": {"uv": [1, 1, 15, 8], "texture": "#side"}, + "up": {"uv": [1, 1, 15, 15], "texture": "#top"} + } + }, + { + "name": "up", + "from": [1, 14.98, 1], + "to": [15, 14.98, 15], + "faces": { + "down": {"uv": [1, 1, 15, 15], "texture": "#top"} + } + }, + { + "name": "south", + "from": [1, 8, 14.98], + "to": [15, 15, 14.98], + "faces": { + "north": {"uv": [1, 1, 15, 8], "texture": "#side"} + } + }, + { + "name": "north", + "from": [1, 8, 1.02], + "to": [15, 15, 1.02], + "faces": { + "south": {"uv": [1, 1, 15, 8], "texture": "#side"} + } + }, + { + "name": "east", + "from": [14.98, 8, 1], + "to": [14.98, 15, 15], + "faces": { + "west": {"uv": [1, 1, 15, 8], "texture": "#side"} + } + }, + { + "name": "west", + "from": [1.02, 8, 1], + "to": [1.02, 15, 15], + "faces": { + "east": {"uv": [1, 1, 15, 8], "texture": "#side"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_seagrass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_seagrass.json new file mode 100644 index 000000000..4324e3da2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_seagrass.json @@ -0,0 +1,40 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 0, 4 ], + "to": [ 16, 16, 4 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } + } + }, + { "from": [ 12, 0, 0 ], + "to": [ 12, 16, 16 ], + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } + } + }, + { "from": [ 4, 0, 0 ], + "to": [ 4, 16, 16 ], + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } + } + }, + { "from": [ 0, 0, 12 ], + "to": [ 16, 16, 12 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_body.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_body.json new file mode 100644 index 000000000..2f258411f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_body.json @@ -0,0 +1,56 @@ +{ + "parent": "block/block", + "display": { + "gui": { + "rotation": [ 30, 225, 0 ], + "translation": [ 2.5, -1.5, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "fixed": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 0, -4 ], + "scale": [ 0.5, 0.5, 0.5 ] + } + }, + "textures": { + "particle": "#particle" + }, + "elements": [ + { + "name": "shelf_body", + "from": [0, 0, 13], + "to": [16, 16, 16], + "faces": { + "east": {"uv": [8, 0, 9.5, 8], "texture": "#all", "cullface": "east"}, + "south": {"uv": [8, 0, 16, 8], "texture": "#all", "cullface": "south"}, + "west": {"uv": [14.5, 0, 16, 8], "texture": "#all", "cullface": "west"}, + "up": {"uv": [16, 5, 8, 3.5], "texture": "#all", "cullface": "up"}, + "down": {"uv": [16, 6, 8, 4.5], "texture": "#all", "cullface": "down"} + } + }, + { + "name": "shelf_bottom", + "from": [0, 0, 11], + "to": [16, 4, 13], + "faces": { + "north": {"uv": [0, 6, 8, 8], "texture": "#all"}, + "east": {"uv": [1.5, 6, 2.5, 8], "texture": "#all", "cullface": "east"}, + "west": {"uv": [5.5, 6, 6.5, 8], "texture": "#all", "cullface": "west"}, + "up": {"uv": [8, 3.5, 16, 4.5], "texture": "#all"}, + "down": {"uv": [16, 4.5, 8, 3.5], "texture": "#all", "cullface": "down"} + } + }, + { + "name": "shelf_top", + "from": [0, 12, 11], + "to": [16, 16, 13], + "faces": { + "north": {"uv": [0, 0, 8, 2], "texture": "#all"}, + "east": {"uv": [1.5, 0, 2.5, 2], "texture": "#all", "cullface": "east"}, + "west": {"uv": [5.5, 0, 6.5, 2], "texture": "#all", "cullface": "west"}, + "up": {"uv": [16, 6, 8, 5], "texture": "#all", "cullface": "up"}, + "down": {"uv": [8, 5, 16, 6], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_center.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_center.json new file mode 100644 index 000000000..20b1449c2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_center.json @@ -0,0 +1,15 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#particle" + }, + "elements": [ + { + "from": [0, 4, 13], + "to": [16, 12, 13], + "faces": { + "north": {"uv": [0, 12, 8, 16], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_inventory.json new file mode 100644 index 000000000..da5420ad4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_inventory.json @@ -0,0 +1,74 @@ +{ + "parent": "block/block", + "display": { + "gui": { + "rotation": [ 30, 225, 0 ], + "translation": [ 2.5, -1.5, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "fixed": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 0, -4 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "on_shelf": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 4 ], + "scale": [ 1, 1, 1 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 135, 0 ], + "translation": [ 0, -2, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "thirdperson_righthand": { + "rotation": [ 75, 135, 0 ], + "translation": [ -3, 1, 0 ], + "scale": [ 0.4, 0.4, 0.4 ] + } + }, + "textures": { + "particle": "#particle" + }, + "elements": [ + { + "name": "shelf_body", + "from": [0, 0, 13], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 2, 8, 6], "texture": "#all"}, + "east": {"uv": [8, 0, 9.5, 8], "texture": "#all", "cullface": "east"}, + "south": {"uv": [8, 0, 16, 8], "texture": "#all", "cullface": "south"}, + "west": {"uv": [14.5, 0, 16, 8], "texture": "#all", "cullface": "west"}, + "up": {"uv": [16, 5, 8, 3.5], "texture": "#all"}, + "down": {"uv": [16, 6, 8, 4.5], "texture": "#all", "cullface": "down"} + } + }, + { + "name": "shelf_bottom", + "from": [0, 0, 11], + "to": [16, 4, 13], + "faces": { + "north": {"uv": [0, 6, 8, 8], "texture": "#all"}, + "east": {"uv": [1.5, 6, 2.5, 8], "texture": "#all", "cullface": "east"}, + "south": {"uv": [0, 0, 8, 1], "texture": "#all", "cullface": "south"}, + "west": {"uv": [5.5, 6, 6.5, 8], "texture": "#all", "cullface": "west"}, + "up": {"uv": [8, 3.5, 16, 4.5], "texture": "#all"}, + "down": {"uv": [16, 4.5, 8, 3.5], "texture": "#all", "cullface": "down"} + } + }, + { + "name": "shelf_top", + "from": [0, 12, 11], + "to": [16, 16, 13], + "faces": { + "north": {"uv": [0, 0, 8, 2], "texture": "#all"}, + "east": {"uv": [1.5, 0, 2.5, 2], "texture": "#all", "cullface": "east"}, + "south": {"uv": [0, 0, 8, 1], "texture": "#all", "cullface": "south"}, + "west": {"uv": [5.5, 0, 6.5, 2], "texture": "#all", "cullface": "west"}, + "up": {"uv": [16, 6, 8, 5], "texture": "#all", "cullface": "up"}, + "down": {"uv": [8, 5, 16, 6], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_left.json new file mode 100644 index 000000000..ecb099d69 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_left.json @@ -0,0 +1,15 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#particle" + }, + "elements": [ + { + "from": [0, 4, 13], + "to": [16, 12, 13], + "faces": { + "north": {"uv": [0, 8, 8, 12], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_right.json new file mode 100644 index 000000000..5e58b7f2c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_right.json @@ -0,0 +1,15 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#particle" + }, + "elements": [ + { + "from": [0, 4, 13], + "to": [16, 12, 13], + "faces": { + "north": {"uv": [8, 8, 16, 12], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_unconnected.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_unconnected.json new file mode 100644 index 000000000..3b82ae614 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_unconnected.json @@ -0,0 +1,15 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#particle" + }, + "elements": [ + { + "from": [0, 4, 13], + "to": [16, 12, 13], + "faces": { + "north": {"uv": [8, 12, 16, 16], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_unpowered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_unpowered.json new file mode 100644 index 000000000..ad5b6a3fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_shelf_unpowered.json @@ -0,0 +1,15 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#particle" + }, + "elements": [ + { + "from": [0, 4, 13], + "to": [16, 12, 13], + "faces": { + "north": {"uv": [0, 2, 8, 6], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_single_face.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_single_face.json new file mode 100644 index 000000000..d23e5f207 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_single_face.json @@ -0,0 +1,13 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 16, 0 ], + "faces": { + "north": { "texture": "#texture", "cullface":"north" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_three_candles.json new file mode 100644 index 000000000..d9963dc7b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_three_candles.json @@ -0,0 +1,95 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [7, 0, 9], + "to": [9, 3, 11], + "faces": { + "north": {"uv": [0, 8, 2, 11], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 11], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 11], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 11], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [7.5, 3, 10], + "to": [8.5, 4, 10], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 3, 10]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [7.5, 3, 10], + "to": [8.5, 4, 10], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 3, 10]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [5, 0, 7], + "to": [7, 5, 9], + "faces": { + "north": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [5.5, 5, 8], + "to": [6.5, 6, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [6, 5, 8]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [5.5, 5, 8], + "to": [6.5, 6, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [6, 5, 8]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [8, 0, 6], + "to": [10, 6, 8], + "faces": { + "north": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [8.5, 6, 7], + "to": [9.5, 7, 7], + "rotation": {"angle": 45, "axis": "y", "origin": [9, 6, 7]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#all"} + } + }, + { + "from": [8.5, 6, 7], + "to": [9.5, 7, 7], + "rotation": {"angle": -45, "axis": "y", "origin": [9, 6, 7]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_three_turtle_eggs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_three_turtle_eggs.json new file mode 100644 index 000000000..c6ce2d8a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_three_turtle_eggs.json @@ -0,0 +1,43 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#all" + }, + "elements": [ + { "from": [ 5, 0, 4 ], + "to": [ 9, 7, 8 ], + "faces": { + "down": { "uv": [ 0, 0, 4, 4 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 0, 0, 4, 4 ], "texture": "#all" }, + "north": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "south": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "west": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "east": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" } + } + }, + { + "from": [ 1, 0, 7 ], + "to": [ 5, 5, 11 ], + "faces": { + "down": { "uv": [ 6, 7, 10, 11 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 6, 7, 10, 11 ], "texture": "#all" }, + "north": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "south": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "west": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "east": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" } + } + }, + { + "from": [ 11, 0, 7 ], + "to": [ 14, 4, 10 ], + "faces": { + "down": { "uv": [ 5, 0, 8, 3 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 5, 0, 8, 3 ], "texture": "#all" }, + "north": { "uv": [ 8, 3, 11, 7 ], "texture": "#all" }, + "south": { "uv": [ 8, 3, 11, 7 ], "texture": "#all" }, + "west": { "uv": [ 8, 3, 11, 7 ], "texture": "#all" }, + "east": { "uv": [ 8, 3, 11, 7 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_torch.json new file mode 100644 index 000000000..21ed11386 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_torch.json @@ -0,0 +1,20 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#torch" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 10, 9 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 13, 9, 15 ], "texture": "#torch", "cullface": "down" }, + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#torch" }, + "north": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "east": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "south": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "west": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_torch_unlit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_torch_unlit.json new file mode 100644 index 000000000..ef0829e27 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_torch_unlit.json @@ -0,0 +1,19 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#torch" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 10, 9 ], + "faces": { + "down": { "uv": [ 7, 13, 9, 15 ], "texture": "#torch", "cullface": "down" }, + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#torch" }, + "north": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "east": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "south": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "west": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_torch_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_torch_wall.json new file mode 100644 index 000000000..a7083f018 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_torch_wall.json @@ -0,0 +1,21 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#torch" + }, + "elements": [ + { "from": [ -1, 3.5, 7 ], + "to": [ 1, 13.5, 9 ], + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "shade": false, + "faces": { + "down": { "uv": [ 7, 13, 9, 15 ], "texture": "#torch" }, + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#torch" }, + "north": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "east": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "south": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "west": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_torch_wall_unlit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_torch_wall_unlit.json new file mode 100644 index 000000000..3b11230ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_torch_wall_unlit.json @@ -0,0 +1,20 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#torch" + }, + "elements": [ + { "from": [ -1, 3.5, 7 ], + "to": [ 1, 13.5, 9 ], + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 7, 13, 9, 15 ], "texture": "#torch" }, + "up": { "uv": [ 7, 6, 9, 8 ], "texture": "#torch" }, + "north": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "east": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "south": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" }, + "west": { "uv": [ 7, 6, 9, 16 ], "texture": "#torch" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_trapdoor_bottom.json new file mode 100644 index 000000000..2b6c8daa9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_trapdoor_bottom.json @@ -0,0 +1,18 @@ +{ "parent": "block/thin_block", + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 0, 0 ], + "to": [ 16, 3, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "north": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_trapdoor_open.json new file mode 100644 index 000000000..b301619c2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_trapdoor_open.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 0, 13 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 13, 16, 16 ], "texture": "#texture", "cullface": "down" }, + "up": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "up" }, + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 16, 0, 13, 16 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 13, 0, 16, 16 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_trapdoor_top.json new file mode 100644 index 000000000..036aeb7b9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_trapdoor_top.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#texture" + }, + "elements": [ + { "from": [ 0, 13, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "up" }, + "north": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "north" }, + "south": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "west" }, + "east": { "uv": [ 0, 16, 16, 13 ], "texture": "#texture", "cullface": "east" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_turtle_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_turtle_egg.json new file mode 100644 index 000000000..b42b49eab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_turtle_egg.json @@ -0,0 +1,19 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#all" + }, + "elements": [ + { "from": [ 5, 0, 4 ], + "to": [ 9, 7, 8 ], + "faces": { + "down": { "uv": [ 0, 0, 4, 4 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 0, 0, 4, 4 ], "texture": "#all" }, + "north": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "south": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "west": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "east": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_two_candles.json new file mode 100644 index 000000000..2abbb10c2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_two_candles.json @@ -0,0 +1,65 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [5, 0, 7], + "to": [7, 5, 9], + "faces": { + "north": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 13], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [5.5, 5, 8], + "to": [6.5, 6, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [6, 5, 8]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [5.5, 5, 8], + "to": [6.5, 6, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [6, 5, 8]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [1, 5, 0, 6], "texture": "#all"} + } + }, + { + "from": [9, 0, 6], + "to": [11, 6, 8], + "faces": { + "north": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "east": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "south": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "west": {"uv": [0, 8, 2, 14], "texture": "#all"}, + "up": {"uv": [0, 6, 2, 8], "texture": "#all"}, + "down": {"uv": [0, 14, 2, 16], "texture": "#all", "cullface": "down"} + } + }, + { + "from": [9.5, 6, 7], + "to": [10.5, 7, 7], + "rotation": {"angle": 45, "axis": "y", "origin": [10, 6, 7]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#all"} + } + }, + { + "from": [9.5, 6, 7], + "to": [10.5, 7, 7], + "rotation": {"angle": -45, "axis": "y", "origin": [10, 6, 7]}, + "faces": { + "north": {"uv": [0, 5, 1, 6], "texture": "#all"}, + "south": {"uv": [0, 5, 1, 6], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_two_turtle_eggs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_two_turtle_eggs.json new file mode 100644 index 000000000..a5faf35db --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_two_turtle_eggs.json @@ -0,0 +1,31 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#all" + }, + "elements": [ + { "from": [ 5, 0, 4 ], + "to": [ 9, 7, 8 ], + "faces": { + "down": { "uv": [ 0, 0, 4, 4 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 0, 0, 4, 4 ], "texture": "#all" }, + "north": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "south": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "west": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" }, + "east": { "uv": [ 1, 4, 5, 11 ], "texture": "#all" } + } + }, + { + "from": [ 1, 0, 7 ], + "to": [ 5, 5, 11 ], + "faces": { + "down": { "uv": [ 6, 7, 10, 11 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 6, 7, 10, 11 ], "texture": "#all" }, + "north": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "south": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "west": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" }, + "east": { "uv": [ 10, 10, 14, 15 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_vault.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_vault.json new file mode 100644 index 000000000..d88a37093 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_vault.json @@ -0,0 +1,34 @@ +{ + "parent": "block/block", + "textures": { + "particle": "#side" + }, + "elements": [ + { + "name": "cage", + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#front", "cullface": "north"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "south"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#side", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#top", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#bottom", "cullface": "down"} + } + }, + { + "name": "cage_inverted_faces", + "from": [15.998, 3.002, 0.002], + "to": [0.002, 15.998, 15.998], + "faces": { + "north": {"uv": [16, 0, 0, 13], "texture": "#front"}, + "east": {"uv": [16, 0, 0, 13], "texture": "#side"}, + "south": {"uv": [16, 0, 0, 13], "texture": "#side"}, + "west": {"uv": [16, 0, 0, 13], "texture": "#side"}, + "up": {"uv": [16, 0, 0, 16], "texture": "#top"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#bottom"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_wall_post.json new file mode 100644 index 000000000..c1c40e47e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_wall_post.json @@ -0,0 +1,19 @@ +{ + "textures": { + "particle": "#wall" + }, + "elements": [ + { "from": [ 4, 0, 4 ], + "to": [ 12, 16, 12 ], + "faces": { + "down": { "texture": "#wall", "cullface": "down" }, + "up": { "texture": "#wall", "cullface": "up" }, + "north": { "texture": "#wall" }, + "south": { "texture": "#wall" }, + "west": { "texture": "#wall" }, + "east": { "texture": "#wall" } + }, + "__comment": "Center post" + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_wall_side.json new file mode 100644 index 000000000..301854c84 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_wall_side.json @@ -0,0 +1,18 @@ +{ + "textures": { + "particle": "#wall" + }, + "elements": [ + { "from": [ 5, 0, 0 ], + "to": [ 11, 14, 8 ], + "faces": { + "down": { "texture": "#wall", "cullface": "down" }, + "up": { "texture": "#wall" }, + "north": { "texture": "#wall", "cullface": "north" }, + "west": { "texture": "#wall" }, + "east": { "texture": "#wall" } + }, + "__comment": "wall" + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_wall_side_tall.json new file mode 100644 index 000000000..379a9e3cc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/template_wall_side_tall.json @@ -0,0 +1,17 @@ +{ + "textures": { + "particle": "#wall" + }, + "elements": [ + { "from": [ 5, 0, 0 ], + "to": [ 11, 16, 8 ], + "faces": { + "down": { "texture": "#wall", "cullface": "down" }, + "up": { "texture": "#wall", "cullface": "up"}, + "north": { "texture": "#wall", "cullface": "north" }, + "west": { "texture": "#wall" }, + "east": { "texture": "#wall" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/terracotta.json new file mode 100644 index 000000000..abdc18d7e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/test_block_accept.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/test_block_accept.json new file mode 100644 index 000000000..e9bf9b1ce --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/test_block_accept.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/test_block_accept" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/test_block_fail.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/test_block_fail.json new file mode 100644 index 000000000..04fd1773f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/test_block_fail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/test_block_fail" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/test_block_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/test_block_log.json new file mode 100644 index 000000000..9799e8dfc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/test_block_log.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/test_block_log" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/test_block_start.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/test_block_start.json new file mode 100644 index 000000000..387827a40 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/test_block_start.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/test_block_start" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/test_instance_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/test_instance_block.json new file mode 100644 index 000000000..dae43c633 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/test_instance_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/test_instance_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/thin_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/thin_block.json new file mode 100644 index 000000000..1adb58ab7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/thin_block.json @@ -0,0 +1,19 @@ +{ "parent": "block/block", + "display": { + "thirdperson_righthand": { + "rotation": [ 75, 45, 0 ], + "translation": [ 0, 2.5, 2], + "scale": [ 0.375, 0.375, 0.375 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 45, 0 ], + "translation": [ 0, 4.2, 0 ], + "scale": [ 0.40, 0.40, 0.40 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 225, 0 ], + "translation": [ 0, 4.2, 0 ], + "scale": [ 0.40, 0.40, 0.40 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/three_dead_sea_pickles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/three_dead_sea_pickles.json new file mode 100644 index 000000000..8eff63de9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/three_dead_sea_pickles.json @@ -0,0 +1,65 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/sea_pickle", + "all": "block/sea_pickle" + }, + "elements": [ + { "from": [ 6, 0, 9 ], + "to": [ 10, 6, 13 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 6, 5.95, 9 ], + "to": [ 10, 5.95, 13 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 2, 0, 2 ], + "to": [ 6, 4, 6 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 9 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 9 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 9 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 9 ], "texture": "#all" } + } + }, + { + "from": [ 2, 3.95, 2 ], + "to": [ 6, 3.95, 6 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 8, 0, 4 ], + "to": [ 12, 6, 8 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 8, 5.95, 4 ], + "to": [ 12, 5.95, 8 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/three_sea_pickles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/three_sea_pickles.json new file mode 100644 index 000000000..aeb475008 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/three_sea_pickles.json @@ -0,0 +1,125 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/sea_pickle", + "all": "block/sea_pickle" + }, + "elements": [ + { "from": [ 6, 0, 9 ], + "to": [ 10, 6, 13 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 6, 5.95, 9 ], + "to": [ 10, 5.95, 13 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 2, 0, 2 ], + "to": [ 6, 4, 6 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 9 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 9 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 9 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 9 ], "texture": "#all" } + } + }, + { + "from": [ 2, 3.95, 2 ], + "to": [ 6, 3.95, 6 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 8, 0, 4 ], + "to": [ 12, 6, 8 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 8, 5.95, 4 ], + "to": [ 12, 5.95, 8 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 7.5, 5.2, 11 ], + "to": [ 8.5, 8.7, 11 ], + "rotation": { "origin": [ 8, 8, 11 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 8, 5.2, 10.5 ], + "to": [ 8, 8.7, 11.5 ], + "rotation": { "origin": [ 8, 8, 11 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + }, + { + "from": [ 3.5, 3.2, 4 ], + "to": [ 4.5, 6.7, 4 ], + "rotation": { "origin": [ 4, 8, 4 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 4, 3.2, 3.5 ], + "to": [ 4, 6.7, 4.5 ], + "rotation": { "origin": [ 4, 8, 4 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + }, + { + "from": [ 9.5, 5.2, 6 ], + "to": [ 10.5, 8.7, 6 ], + "rotation": { "origin": [ 10, 8, 6 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 10, 5.2, 5.5 ], + "to": [ 10, 8.7, 6.5 ], + "rotation": { "origin": [ 10, 8, 6 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/three_slightly_cracked_turtle_eggs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/three_slightly_cracked_turtle_eggs.json new file mode 100644 index 000000000..a50fdeeff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/three_slightly_cracked_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_three_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg_slightly_cracked" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/three_turtle_eggs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/three_turtle_eggs.json new file mode 100644 index 000000000..7f8937957 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/three_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_three_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/three_very_cracked_turtle_eggs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/three_very_cracked_turtle_eggs.json new file mode 100644 index 000000000..7c8e2046c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/three_very_cracked_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_three_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg_very_cracked" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tinted_cross.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tinted_cross.json new file mode 100644 index 000000000..d3b5474e8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tinted_cross.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#cross" + }, + "elements": [ + { "from": [ 0.8, 0, 8 ], + "to": [ 15.2, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross", "tintindex": 0 }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross", "tintindex": 0 } + } + }, + { "from": [ 8, 0, 0.8 ], + "to": [ 8, 16, 15.2 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross", "tintindex": 0 }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tinted_flower_pot_cross.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tinted_flower_pot_cross.json new file mode 100644 index 000000000..1fabc7a12 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tinted_flower_pot_cross.json @@ -0,0 +1,75 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/flower_pot", + "flowerpot": "block/flower_pot", + "dirt": "block/dirt" + }, + "elements": [ + { "from": [ 5, 0, 5 ], + "to": [ 6, 6, 11 ], + "faces": { + "down": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 5, 5, 6, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 10, 0, 5 ], + "to": [ 11, 6, 11 ], + "faces": { + "down": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 10, 5, 11, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 5, 10, 6, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 10, 10, 11, 16 ], "texture": "#flowerpot" }, + "west": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" }, + "east": { "uv": [ 5, 10, 11, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 5 ], + "to": [ 10, 6, 6 ], + "faces": { + "down": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 10 ], + "to": [ 10, 6, 11 ], + "faces": { + "down": { "uv": [ 6, 5, 10, 6 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 10, 10, 11 ], "texture": "#flowerpot" }, + "north": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" }, + "south": { "uv": [ 6, 10, 10, 16 ], "texture": "#flowerpot" } + } + }, + { "from": [ 6, 0, 6 ], + "to": [ 10, 4, 10 ], + "faces": { + "down": { "uv": [ 6, 12, 10, 16 ], "texture": "#flowerpot", "cullface": "down" }, + "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#dirt" } + } + }, + { "from": [ 2.6, 4, 8 ], + "to": [ 13.4, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant", "tintindex": 0 }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant", "tintindex": 0 } + } + }, + { "from": [ 8, 4, 2.6 ], + "to": [ 8, 16, 13.4 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant", "tintindex": 0 }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#plant", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tinted_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tinted_glass.json new file mode 100644 index 000000000..7c6f495d2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tinted_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/tinted_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tnt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tnt.json new file mode 100644 index 000000000..c4023fda6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tnt.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/tnt_bottom", + "side": "minecraft:block/tnt_side", + "top": "minecraft:block/tnt_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/torch.json new file mode 100644 index 000000000..7c6241d04 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_torch", + "textures": { + "torch": "minecraft:block/torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/torchflower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/torchflower.json new file mode 100644 index 000000000..633e42e24 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/torchflower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/torchflower" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/torchflower_crop_stage0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/torchflower_crop_stage0.json new file mode 100644 index 000000000..3f5a48961 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/torchflower_crop_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/torchflower_crop_stage0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/torchflower_crop_stage1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/torchflower_crop_stage1.json new file mode 100644 index 000000000..cb14cf9ea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/torchflower_crop_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/torchflower_crop_stage1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trapped_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trapped_chest.json new file mode 100644 index 000000000..9406a8491 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trapped_chest.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner.json new file mode 100644 index 000000000..3b99cb12a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top_inner_faces", + "textures": { + "bottom": "minecraft:block/trial_spawner_bottom", + "side": "minecraft:block/trial_spawner_side_inactive", + "top": "minecraft:block/trial_spawner_top_inactive" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner_active.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner_active.json new file mode 100644 index 000000000..0ddc5ea9b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner_active.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top_inner_faces", + "textures": { + "bottom": "minecraft:block/trial_spawner_bottom", + "side": "minecraft:block/trial_spawner_side_active", + "top": "minecraft:block/trial_spawner_top_active" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner_active_ominous.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner_active_ominous.json new file mode 100644 index 000000000..af2010383 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner_active_ominous.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top_inner_faces", + "textures": { + "bottom": "minecraft:block/trial_spawner_bottom", + "side": "minecraft:block/trial_spawner_side_active_ominous", + "top": "minecraft:block/trial_spawner_top_active_ominous" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner_ejecting_reward.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner_ejecting_reward.json new file mode 100644 index 000000000..8bbb2cd47 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner_ejecting_reward.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top_inner_faces", + "textures": { + "bottom": "minecraft:block/trial_spawner_bottom", + "side": "minecraft:block/trial_spawner_side_active", + "top": "minecraft:block/trial_spawner_top_ejecting_reward" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner_ejecting_reward_ominous.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner_ejecting_reward_ominous.json new file mode 100644 index 000000000..d4575518c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner_ejecting_reward_ominous.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top_inner_faces", + "textures": { + "bottom": "minecraft:block/trial_spawner_bottom", + "side": "minecraft:block/trial_spawner_side_active_ominous", + "top": "minecraft:block/trial_spawner_top_ejecting_reward_ominous" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner_inactive_ominous.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner_inactive_ominous.json new file mode 100644 index 000000000..badc28ce2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/trial_spawner_inactive_ominous.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top_inner_faces", + "textures": { + "bottom": "minecraft:block/trial_spawner_bottom", + "side": "minecraft:block/trial_spawner_side_inactive_ominous", + "top": "minecraft:block/trial_spawner_top_inactive_ominous" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_attached_n.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_attached_n.json new file mode 100644 index 000000000..a0ecc5d7e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_attached_n.json @@ -0,0 +1,33 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 8 ], + "to": [ 8.25, 1.5, 12 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_attached_ne.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_attached_ne.json new file mode 100644 index 000000000..7fa445fc4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_attached_ne.json @@ -0,0 +1,41 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 8, 1.5, 7.75 ], + "to": [ 12, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 4, 16, 2 ], "texture": "#texture" }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture" } + } + }, + { "from": [ 12, 1.5, 7.75 ], + "to": [ 16, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 4, 16, 2 ], "texture": "#texture" }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_attached_ns.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_attached_ns.json new file mode 100644 index 000000000..e7d8d9cfa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_attached_ns.json @@ -0,0 +1,41 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 8 ], + "to": [ 8.25, 1.5, 12 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 12 ], + "to": [ 8.25, 1.5, 16 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_attached_nse.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_attached_nse.json new file mode 100644 index 000000000..745983f58 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_attached_nse.json @@ -0,0 +1,57 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 8 ], + "to": [ 8.25, 1.5, 12 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 12 ], + "to": [ 8.25, 1.5, 16 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 8, 1.5, 7.75 ], + "to": [ 12, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 4, 16, 2 ], "texture": "#texture" }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture" } + } + }, + { "from": [ 12, 1.5, 7.75 ], + "to": [ 16, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 4, 16, 2 ], "texture": "#texture" }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_attached_nsew.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_attached_nsew.json new file mode 100644 index 000000000..b34593d4b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_attached_nsew.json @@ -0,0 +1,73 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 8 ], + "to": [ 8.25, 1.5, 12 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 12 ], + "to": [ 8.25, 1.5, 16 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 2, 0, 4 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 0, 1.5, 7.75 ], + "to": [ 4, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 4, 16, 2 ], "texture": "#texture" }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture" } + } + }, + { "from": [ 4, 1.5, 7.75 ], + "to": [ 8, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 4, 16, 2 ], "texture": "#texture" }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture" } + } + }, + { "from": [ 8, 1.5, 7.75 ], + "to": [ 12, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 4, 16, 2 ], "texture": "#texture" }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture" } + } + }, + { "from": [ 12, 1.5, 7.75 ], + "to": [ 16, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 4, 16, 2 ], "texture": "#texture" }, + "up": { "uv": [ 0, 2, 16, 4 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_hook.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_hook.json new file mode 100644 index 000000000..95279bd3f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_hook.json @@ -0,0 +1,72 @@ +{ + "textures": { + "particle": "block/oak_planks", + "hook": "block/tripwire_hook", + "wood": "block/oak_planks" + }, + "elements": [ + { "from": [ 6.2, 3.8, 7.9 ], + "to": [ 9.8, 4.6, 11.5 ], + "rotation": { "origin": [ 8, 6, 5.2 ], "axis": "x", "angle": -45 }, + "faces": { + "down": { "uv": [ 5, 3, 11, 9 ], "texture": "#hook" }, + "up": { "uv": [ 5, 3, 11, 9 ], "texture": "#hook" }, + "north": { "uv": [ 5, 3, 11, 4 ], "texture": "#hook" }, + "south": { "uv": [ 5, 8, 11, 9 ], "texture": "#hook" }, + "west": { "uv": [ 5, 8, 11, 9 ], "texture": "#hook" }, + "east": { "uv": [ 5, 3, 11, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 3.8, 10.3 ], + "to": [ 8.6, 4.6, 10.3 ], + "rotation": { "origin": [ 8, 6, 5.2 ], "axis": "x", "angle": -45 }, + "faces": { + "north": { "uv": [ 7, 8, 9, 9 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 3.8, 9.1 ], + "to": [ 8.6, 4.6, 9.1 ], + "rotation": { "origin": [ 8, 6, 5.2 ], "axis": "x", "angle": -45 }, + "faces": { + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 3.8, 9.1 ], + "to": [ 7.4, 4.6, 10.3 ], + "rotation": { "origin": [ 8, 6, 5.2 ], "axis": "x", "angle": -45 }, + "faces": { + "east": { "uv": [ 7, 8, 9, 9 ], "texture": "#hook" } + } + }, + { "from": [ 8.6, 3.8, 9.1 ], + "to": [ 8.6, 4.6, 10.3 ], + "rotation": { "origin": [ 8, 6, 5.2 ], "axis": "x", "angle": -45 }, + "faces": { + "west": { "uv": [ 7, 3, 9, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 5.2, 10 ], + "to": [ 8.8, 6.8, 14 ], + "rotation": { "origin": [ 8, 6, 14 ], "axis": "x", "angle": 45 }, + "faces": { + "down": { "uv": [ 7, 9, 9, 14 ], "texture": "#wood" }, + "up": { "uv": [ 7, 2, 9, 7 ], "texture": "#wood" }, + "north": { "uv": [ 7, 9, 9, 11 ], "texture": "#wood" }, + "south": { "uv": [ 7, 9, 9, 11 ], "texture": "#wood" }, + "west": { "uv": [ 2, 9, 7, 11 ], "texture": "#wood" }, + "east": { "uv": [ 9, 9, 14, 11 ], "texture": "#wood" } + } + }, + { "from": [ 6, 1, 14 ], + "to": [ 10, 9, 16 ], + "faces": { + "down": { "uv": [ 6, 14, 10, 16 ], "texture": "#wood" }, + "up": { "uv": [ 6, 0, 10, 2 ], "texture": "#wood" }, + "north": { "uv": [ 6, 7, 10, 15 ], "texture": "#wood" }, + "south": { "uv": [ 6, 7, 10, 15 ], "texture": "#wood", "cullface": "south" }, + "west": { "uv": [ 0, 7, 2, 15 ], "texture": "#wood" }, + "east": { "uv": [ 14, 7, 16, 15 ], "texture": "#wood" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_hook_attached.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_hook_attached.json new file mode 100644 index 000000000..582284448 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_hook_attached.json @@ -0,0 +1,79 @@ +{ + "textures": { + "particle": "block/oak_planks", + "hook": "block/tripwire_hook", + "wood": "block/oak_planks", + "tripwire": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 6.7 ], + "rotation": { "origin": [ 8, 0, 0 ], "axis": "x", "angle": -22.5, "rescale": true }, + "faces": { + "down": { "uv": [ 16, 6, 0, 8 ], "texture": "#tripwire", "rotation": 90 }, + "up": { "uv": [ 0, 6, 16, 8 ], "texture": "#tripwire", "rotation": 90 } + } + }, + { "from": [ 6.2, 4.2, 6.7 ], + "to": [ 9.8, 5, 10.3 ], + "rotation": { "origin": [ 8, 4.2, 6.7 ], "axis": "x", "angle": -22.5, "rescale": false }, + "faces": { + "down": { "uv": [ 5, 3, 11, 9 ], "texture": "#hook" }, + "up": { "uv": [ 5, 3, 11, 9 ], "texture": "#hook" }, + "north": { "uv": [ 5, 3, 11, 4 ], "texture": "#hook" }, + "south": { "uv": [ 5, 8, 11, 9 ], "texture": "#hook" }, + "west": { "uv": [ 5, 8, 11, 9 ], "texture": "#hook" }, + "east": { "uv": [ 5, 3, 11, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 4.2, 9.1 ], + "to": [ 8.6, 5, 9.1 ], + "rotation": { "origin": [ 8, 4.2, 6.7 ], "axis": "x", "angle": -22.5, "rescale": false }, + "faces": { + "north": { "uv": [ 7, 8, 9, 9 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 4.2, 7.9 ], + "to": [ 8.6, 5, 7.9 ], + "rotation": { "origin": [ 8, 4.2, 6.7 ], "axis": "x", "angle": -22.5, "rescale": false }, + "faces": { + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 4.2, 7.9 ], + "to": [ 7.4, 5, 9.1 ], + "rotation": { "origin": [ 8, 4.2, 6.7 ], "axis": "x", "angle": -22.5, "rescale": false }, + "faces": { + "east": { "uv": [ 7, 8, 9, 9 ], "texture": "#hook" } + } + }, + { "from": [ 8.6, 4.2, 7.9 ], + "to": [ 8.6, 5, 9.1 ], + "rotation": { "origin": [ 8, 4.2, 6.7 ], "axis": "x", "angle": -22.5, "rescale": false }, + "faces": { + "west": { "uv": [ 7, 3, 9, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 5.2, 10 ], + "to": [ 8.8, 6.8, 14 ], + "faces": { + "down": { "uv": [ 7, 9, 9, 14 ], "texture": "#wood" }, + "up": { "uv": [ 7, 2, 9, 7 ], "texture": "#wood" }, + "north": { "uv": [ 7, 9, 9, 11 ], "texture": "#wood" }, + "west": { "uv": [ 2, 9, 7, 11 ], "texture": "#wood" }, + "east": { "uv": [ 9, 9, 14, 11 ], "texture": "#wood" } + } + }, + { "from": [ 6, 1, 14 ], + "to": [ 10, 9, 16 ], + "faces": { + "down": { "uv": [ 6, 14, 10, 16 ], "texture": "#wood" }, + "up": { "uv": [ 6, 0, 10, 2 ], "texture": "#wood" }, + "north": { "uv": [ 6, 7, 10, 15 ], "texture": "#wood" }, + "south": { "uv": [ 6, 7, 10, 15 ], "texture": "#wood", "cullface": "south" }, + "west": { "uv": [ 0, 7, 2, 15 ], "texture": "#wood" }, + "east": { "uv": [ 14, 7, 16, 15 ], "texture": "#wood" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_hook_attached_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_hook_attached_on.json new file mode 100644 index 000000000..c0e4d1adb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_hook_attached_on.json @@ -0,0 +1,76 @@ +{ + "textures": { + "particle": "block/oak_planks", + "hook": "block/tripwire_hook", + "wood": "block/oak_planks", + "tripwire": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 0.5, 0 ], + "to": [ 8.25, 0.5, 6.7 ], + "rotation": { "origin": [ 8, 0, 0 ], "axis": "x", "angle": -22.5, "rescale": true }, + "faces": { + "down": { "uv": [ 16, 6, 0, 8 ], "texture": "#tripwire", "rotation": 90 }, + "up": { "uv": [ 0, 6, 16, 8 ], "texture": "#tripwire", "rotation": 90 } + } + }, + { "from": [ 6.2, 3.4, 6.7 ], + "to": [ 9.8, 4.2, 10.3 ], + "faces": { + "down": { "uv": [ 5, 3, 11, 9 ], "texture": "#hook" }, + "up": { "uv": [ 5, 3, 11, 9 ], "texture": "#hook" }, + "north": { "uv": [ 5, 3, 11, 4 ], "texture": "#hook" }, + "south": { "uv": [ 5, 8, 11, 9 ], "texture": "#hook" }, + "west": { "uv": [ 5, 8, 11, 9 ], "texture": "#hook" }, + "east": { "uv": [ 5, 3, 11, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 3.4, 9.1 ], + "to": [ 8.6, 4.2, 9.1 ], + "faces": { + "north": { "uv": [ 7, 8, 9, 9 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 3.4, 7.9 ], + "to": [ 8.6, 4.2, 7.9 ], + "faces": { + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 3.4, 7.9 ], + "to": [ 7.4, 4.2, 9.1 ], + "faces": { + "east": { "uv": [ 7, 8, 9, 9 ], "texture": "#hook" } + } + }, + { "from": [ 8.6, 3.4, 7.9 ], + "to": [ 8.6, 4.2, 9.1 ], + "faces": { + "west": { "uv": [ 7, 3, 9, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 5.2, 10 ], + "to": [ 8.8, 6.8, 14 ], + "rotation": { "origin": [ 8, 6, 14 ], "axis": "x", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 7, 9, 9, 14 ], "texture": "#wood" }, + "up": { "uv": [ 7, 2, 9, 7 ], "texture": "#wood" }, + "north": { "uv": [ 7, 9, 9, 11 ], "texture": "#wood" }, + "south": { "uv": [ 7, 9, 9, 11 ], "texture": "#wood" }, + "west": { "uv": [ 2, 9, 7, 11 ], "texture": "#wood" }, + "east": { "uv": [ 9, 9, 14, 11 ], "texture": "#wood" } + } + }, + { "from": [ 6, 1, 14 ], + "to": [ 10, 9, 16 ], + "faces": { + "down": { "uv": [ 6, 14, 10, 16 ], "texture": "#wood" }, + "up": { "uv": [ 6, 0, 10, 2 ], "texture": "#wood" }, + "north": { "uv": [ 6, 7, 10, 15 ], "texture": "#wood" }, + "south": { "uv": [ 6, 7, 10, 15 ], "texture": "#wood", "cullface": "south" }, + "west": { "uv": [ 0, 7, 2, 15 ], "texture": "#wood" }, + "east": { "uv": [ 14, 7, 16, 15 ], "texture": "#wood" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_hook_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_hook_on.json new file mode 100644 index 000000000..5b2494b14 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_hook_on.json @@ -0,0 +1,67 @@ +{ + "textures": { + "particle": "block/oak_planks", + "hook": "block/tripwire_hook", + "wood": "block/oak_planks" + }, + "elements": [ + { "from": [ 6.2, 4.2, 6.7 ], + "to": [ 9.8, 5, 10.3 ], + "faces": { + "down": { "uv": [ 5, 3, 11, 9 ], "texture": "#hook" }, + "up": { "uv": [ 5, 3, 11, 9 ], "texture": "#hook" }, + "north": { "uv": [ 5, 3, 11, 4 ], "texture": "#hook" }, + "south": { "uv": [ 5, 8, 11, 9 ], "texture": "#hook" }, + "west": { "uv": [ 5, 8, 11, 9 ], "texture": "#hook" }, + "east": { "uv": [ 5, 3, 11, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 4.2, 9.1 ], + "to": [ 8.6, 5, 9.1 ], + "faces": { + "north": { "uv": [ 7, 8, 9, 9 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 4.2, 7.9 ], + "to": [ 8.6, 5, 7.9 ], + "faces": { + "south": { "uv": [ 7, 3, 9, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 4.2, 7.9 ], + "to": [ 7.4, 5, 9.1 ], + "faces": { + "east": { "uv": [ 7, 8, 9, 9 ], "texture": "#hook" } + } + }, + { "from": [ 8.6, 4.2, 7.9 ], + "to": [ 8.6, 5, 9.1 ], + "faces": { + "west": { "uv": [ 7, 3, 9, 4 ], "texture": "#hook" } + } + }, + { "from": [ 7.4, 5.2, 10 ], + "to": [ 8.8, 6.8, 14 ], + "rotation": { "origin": [ 8, 6, 14 ], "axis": "x", "angle": -22.5 }, + "faces": { + "down": { "uv": [ 7, 9, 9, 14 ], "texture": "#wood" }, + "up": { "uv": [ 7, 2, 9, 7 ], "texture": "#wood" }, + "north": { "uv": [ 7, 9, 9, 11 ], "texture": "#wood" }, + "south": { "uv": [ 7, 9, 9, 11 ], "texture": "#wood" }, + "west": { "uv": [ 2, 9, 7, 11 ], "texture": "#wood" }, + "east": { "uv": [ 9, 9, 14, 11 ], "texture": "#wood" } + } + }, + { "from": [ 6, 1, 14 ], + "to": [ 10, 9, 16 ], + "faces": { + "down": { "uv": [ 6, 14, 10, 16 ], "texture": "#wood" }, + "up": { "uv": [ 6, 0, 10, 2 ], "texture": "#wood" }, + "north": { "uv": [ 6, 7, 10, 15 ], "texture": "#wood" }, + "south": { "uv": [ 6, 7, 10, 15 ], "texture": "#wood", "cullface": "south" }, + "west": { "uv": [ 0, 7, 2, 15 ], "texture": "#wood" }, + "east": { "uv": [ 14, 7, 16, 15 ], "texture": "#wood" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_n.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_n.json new file mode 100644 index 000000000..fe858fece --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_n.json @@ -0,0 +1,33 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 8 ], + "to": [ 8.25, 1.5, 12 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_ne.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_ne.json new file mode 100644 index 000000000..6ce78f4c3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_ne.json @@ -0,0 +1,41 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 8, 1.5, 7.75 ], + "to": [ 12, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 2, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture" } + } + }, + { "from": [ 12, 1.5, 7.75 ], + "to": [ 16, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 2, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_ns.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_ns.json new file mode 100644 index 000000000..9c87db52f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_ns.json @@ -0,0 +1,41 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 8 ], + "to": [ 8.25, 1.5, 12 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 12 ], + "to": [ 8.25, 1.5, 16 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_nse.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_nse.json new file mode 100644 index 000000000..2ab3aa758 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_nse.json @@ -0,0 +1,57 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 8 ], + "to": [ 8.25, 1.5, 12 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 12 ], + "to": [ 8.25, 1.5, 16 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 8, 1.5, 7.75 ], + "to": [ 12, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 2, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture" } + } + }, + { "from": [ 12, 1.5, 7.75 ], + "to": [ 16, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 2, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_nsew.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_nsew.json new file mode 100644 index 000000000..9f96d4039 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tripwire_nsew.json @@ -0,0 +1,73 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/tripwire", + "texture": "block/tripwire" + }, + "elements": [ + { "from": [ 7.75, 1.5, 0 ], + "to": [ 8.25, 1.5, 4 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 4 ], + "to": [ 8.25, 1.5, 8 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 8 ], + "to": [ 8.25, 1.5, 12 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 7.75, 1.5, 12 ], + "to": [ 8.25, 1.5, 16 ], + "shade": false, + "faces": { + "down": { "uv": [ 16, 0, 0, 2 ], "texture": "#texture", "rotation": 90 }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture", "rotation": 90 } + } + }, + { "from": [ 0, 1.5, 7.75 ], + "to": [ 4, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 2, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture" } + } + }, + { "from": [ 4, 1.5, 7.75 ], + "to": [ 8, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 2, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture" } + } + }, + { "from": [ 8, 1.5, 7.75 ], + "to": [ 12, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 2, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture" } + } + }, + { "from": [ 12, 1.5, 7.75 ], + "to": [ 16, 1.5, 8.25 ], + "shade": false, + "faces": { + "down": { "uv": [ 0, 2, 16, 0 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tube_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tube_coral.json new file mode 100644 index 000000000..0a1597096 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tube_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/tube_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tube_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tube_coral_block.json new file mode 100644 index 000000000..4de67c0b4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tube_coral_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/tube_coral_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tube_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tube_coral_fan.json new file mode 100644 index 000000000..6a5e968c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tube_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_fan", + "textures": { + "fan": "minecraft:block/tube_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tube_coral_wall_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tube_coral_wall_fan.json new file mode 100644 index 000000000..6a36d289c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tube_coral_wall_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/coral_wall_fan", + "textures": { + "fan": "minecraft:block/tube_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff.json new file mode 100644 index 000000000..80ca09340 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_slab.json new file mode 100644 index 000000000..b0b0e379a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks", + "top": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_slab_top.json new file mode 100644 index 000000000..092a7f5b8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks", + "top": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs.json new file mode 100644 index 000000000..a6dc2d357 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks", + "top": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs_inner.json new file mode 100644 index 000000000..537c7b594 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks", + "top": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs_outer.json new file mode 100644 index 000000000..f7ed13e9b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/tuff_bricks", + "side": "minecraft:block/tuff_bricks", + "top": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_inventory.json new file mode 100644 index 000000000..05c36dae4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_post.json new file mode 100644 index 000000000..1c8723f56 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_side.json new file mode 100644 index 000000000..72c095e35 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_side_tall.json new file mode 100644 index 000000000..3ff51373f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_bricks.json new file mode 100644 index 000000000..3ba4278bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_bricks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/tuff_bricks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_slab.json new file mode 100644 index 000000000..b77e66fd4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/tuff", + "side": "minecraft:block/tuff", + "top": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_slab_top.json new file mode 100644 index 000000000..c4bbe6e3d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/tuff", + "side": "minecraft:block/tuff", + "top": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_stairs.json new file mode 100644 index 000000000..ba84f4e72 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/tuff", + "side": "minecraft:block/tuff", + "top": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_stairs_inner.json new file mode 100644 index 000000000..cb7a1db83 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/tuff", + "side": "minecraft:block/tuff", + "top": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_stairs_outer.json new file mode 100644 index 000000000..7b8b85a88 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/tuff", + "side": "minecraft:block/tuff", + "top": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_wall_inventory.json new file mode 100644 index 000000000..f07195021 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_wall_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_wall_post.json new file mode 100644 index 000000000..66c478765 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_wall_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_wall_side.json new file mode 100644 index 000000000..1590701ca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_wall_side_tall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_wall_side_tall.json new file mode 100644 index 000000000..9b7e3338c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/tuff_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/tuff" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/turtle_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/turtle_egg.json new file mode 100644 index 000000000..94ce75f72 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/turtle_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_turtle_egg", + "textures": { + "all": "minecraft:block/turtle_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/twisting_vines.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/twisting_vines.json new file mode 100644 index 000000000..1e0770280 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/twisting_vines.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/twisting_vines" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/twisting_vines_plant.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/twisting_vines_plant.json new file mode 100644 index 000000000..20a056e0f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/twisting_vines_plant.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/twisting_vines_plant" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/two_dead_sea_pickles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/two_dead_sea_pickles.json new file mode 100644 index 000000000..0a618603b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/two_dead_sea_pickles.json @@ -0,0 +1,46 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/sea_pickle", + "all": "block/sea_pickle" + }, + "elements": [ + { "from": [ 3, 0, 3 ], + "to": [ 7, 6, 7 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 3, 5.95, 3 ], + "to": [ 7, 5.95, 7 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 8, 0, 8 ], + "to": [ 12, 4, 12 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 9 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 9 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 9 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 9 ], "texture": "#all" } + } + }, + { + "from": [ 8, 3.95, 8 ], + "to": [ 12, 3.95, 12 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/two_sea_pickles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/two_sea_pickles.json new file mode 100644 index 000000000..612d0ff99 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/two_sea_pickles.json @@ -0,0 +1,86 @@ +{ + "parent": "block/block", + "textures": { + "particle": "block/sea_pickle", + "all": "block/sea_pickle" + }, + "elements": [ + { "from": [ 3, 0, 3 ], + "to": [ 7, 6, 7 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 11 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 11 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 11 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 11 ], "texture": "#all" } + } + }, + { + "from": [ 3, 5.95, 3 ], + "to": [ 7, 5.95, 7 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 8, 0, 8 ], + "to": [ 12, 4, 12 ], + "faces": { + "down": { "uv": [ 8, 1, 12, 5 ], "texture": "#all", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#all" }, + "north": { "uv": [ 4, 5, 8, 9 ], "texture": "#all" }, + "south": { "uv": [ 0, 5, 4, 9 ], "texture": "#all" }, + "west": { "uv": [ 8, 5, 12, 9 ], "texture": "#all" }, + "east": { "uv": [ 12, 5, 16, 9 ], "texture": "#all" } + } + }, + { + "from": [ 8, 3.95, 8 ], + "to": [ 12, 3.95, 12 ], + "faces": { + "up": {"uv": [ 8, 1, 12, 5 ], "texture": "#all"} + } + }, + { + "from": [ 4.5, 5.2, 5 ], + "to": [ 5.5, 8.7, 5 ], + "rotation": { "origin": [ 5, 5.6, 5 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 5, 5.2, 4.5 ], + "to": [ 5, 8.7, 5.5 ], + "rotation": { "origin": [ 5, 5.6, 5 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + }, + { + "from": [ 9.5, 3.2, 10 ], + "to": [ 10.5, 6.7, 10 ], + "rotation": { "origin": [10, 8, 10 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 1, 0, 3, 5 ], "texture": "#all" }, + "south": { "uv": [ 3, 0, 1, 5 ], "texture": "#all" } + } + }, + { + "from": [ 10, 3.2, 9.5 ], + "to": [ 10, 6.7, 10.5 ], + "rotation": { "origin": [ 10, 8, 10 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 13, 0, 15, 5 ], "texture": "#all" }, + "east": { "uv": [ 15, 0, 13, 5 ], "texture": "#all" } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/two_slightly_cracked_turtle_eggs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/two_slightly_cracked_turtle_eggs.json new file mode 100644 index 000000000..4d1a9503b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/two_slightly_cracked_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_two_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg_slightly_cracked" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/two_turtle_eggs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/two_turtle_eggs.json new file mode 100644 index 000000000..22209d56a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/two_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_two_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/two_very_cracked_turtle_eggs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/two_very_cracked_turtle_eggs.json new file mode 100644 index 000000000..1408a48fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/two_very_cracked_turtle_eggs.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_two_turtle_eggs", + "textures": { + "all": "minecraft:block/turtle_egg_very_cracked" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault.json new file mode 100644 index 000000000..f9e887f41 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/template_vault", + "textures": { + "bottom": "minecraft:block/vault_bottom", + "front": "minecraft:block/vault_front_off", + "side": "minecraft:block/vault_side_off", + "top": "minecraft:block/vault_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_active.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_active.json new file mode 100644 index 000000000..c7adf1dd3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_active.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/template_vault", + "textures": { + "bottom": "minecraft:block/vault_bottom", + "front": "minecraft:block/vault_front_on", + "side": "minecraft:block/vault_side_on", + "top": "minecraft:block/vault_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_active_ominous.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_active_ominous.json new file mode 100644 index 000000000..494416020 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_active_ominous.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/template_vault", + "textures": { + "bottom": "minecraft:block/vault_bottom_ominous", + "front": "minecraft:block/vault_front_on_ominous", + "side": "minecraft:block/vault_side_on_ominous", + "top": "minecraft:block/vault_top_ominous" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_ejecting_reward.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_ejecting_reward.json new file mode 100644 index 000000000..f903d6ae4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_ejecting_reward.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/template_vault", + "textures": { + "bottom": "minecraft:block/vault_bottom", + "front": "minecraft:block/vault_front_ejecting", + "side": "minecraft:block/vault_side_on", + "top": "minecraft:block/vault_top_ejecting" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_ejecting_reward_ominous.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_ejecting_reward_ominous.json new file mode 100644 index 000000000..eb382fdcf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_ejecting_reward_ominous.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/template_vault", + "textures": { + "bottom": "minecraft:block/vault_bottom_ominous", + "front": "minecraft:block/vault_front_ejecting_ominous", + "side": "minecraft:block/vault_side_on_ominous", + "top": "minecraft:block/vault_top_ejecting_ominous" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_ominous.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_ominous.json new file mode 100644 index 000000000..8e40a6ea7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_ominous.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/template_vault", + "textures": { + "bottom": "minecraft:block/vault_bottom_ominous", + "front": "minecraft:block/vault_front_off_ominous", + "side": "minecraft:block/vault_side_off_ominous", + "top": "minecraft:block/vault_top_ominous" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_unlocking.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_unlocking.json new file mode 100644 index 000000000..a5d94da7e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_unlocking.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/template_vault", + "textures": { + "bottom": "minecraft:block/vault_bottom", + "front": "minecraft:block/vault_front_ejecting", + "side": "minecraft:block/vault_side_on", + "top": "minecraft:block/vault_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_unlocking_ominous.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_unlocking_ominous.json new file mode 100644 index 000000000..7b9f1ddfc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vault_unlocking_ominous.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/template_vault", + "textures": { + "bottom": "minecraft:block/vault_bottom_ominous", + "front": "minecraft:block/vault_front_ejecting_ominous", + "side": "minecraft:block/vault_side_on_ominous", + "top": "minecraft:block/vault_top_ominous" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/verdant_froglight.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/verdant_froglight.json new file mode 100644 index 000000000..092d7455d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/verdant_froglight.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/verdant_froglight_top", + "side": "minecraft:block/verdant_froglight_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/verdant_froglight_horizontal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/verdant_froglight_horizontal.json new file mode 100644 index 000000000..83001ec8a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/verdant_froglight_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "minecraft:block/verdant_froglight_top", + "side": "minecraft:block/verdant_froglight_side" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/very_cracked_turtle_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/very_cracked_turtle_egg.json new file mode 100644 index 000000000..74ff16061 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/very_cracked_turtle_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_turtle_egg", + "textures": { + "all": "minecraft:block/turtle_egg_very_cracked" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vine.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vine.json new file mode 100644 index 000000000..6a48a4708 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/vine.json @@ -0,0 +1,17 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "block/vine", + "vine": "block/vine" + }, + "elements": [ + { "from": [ 0, 0, 0.8 ], + "to": [ 16, 16, 0.8 ], + "shade": false, + "faces": { + "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#vine", "tintindex": 0 }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#vine", "tintindex": 0 } + } + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wall_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wall_inventory.json new file mode 100644 index 000000000..e387054c6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wall_inventory.json @@ -0,0 +1,48 @@ +{ "parent": "block/block", + "display": { + "gui": { + "rotation": [ 30, 135, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "fixed": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "on_shelf": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ] + } + }, + "textures": { + "particle": "#wall" + }, + "elements": [ + { "from": [ 4, 0, 4 ], + "to": [ 12, 16, 12 ], + "faces": { + "down": { "uv": [ 4, 4, 12, 12 ], "texture": "#wall", "cullface": "down" }, + "up": { "uv": [ 4, 4, 12, 12 ], "texture": "#wall" }, + "north": { "uv": [ 4, 0, 12, 16 ], "texture": "#wall" }, + "south": { "uv": [ 4, 0, 12, 16 ], "texture": "#wall" }, + "west": { "uv": [ 4, 0, 12, 16 ], "texture": "#wall" }, + "east": { "uv": [ 4, 0, 12, 16 ], "texture": "#wall" } + }, + "__comment": "Center post" + }, + { "from": [ 5, 0, 0 ], + "to": [ 11, 13, 16 ], + "faces": { + "down": { "uv": [ 5, 0, 11, 16 ], "texture": "#wall", "cullface": "down" }, + "up": { "uv": [ 5, 0, 11, 16 ], "texture": "#wall" }, + "north": { "uv": [ 5, 3, 11, 16 ], "texture": "#wall", "cullface": "north" }, + "south": { "uv": [ 5, 3, 11, 16 ], "texture": "#wall", "cullface": "south" }, + "west": { "uv": [ 0, 3, 16, 16 ], "texture": "#wall" }, + "east": { "uv": [ 0, 3, 16, 16 ], "texture": "#wall" } + }, + "__comment": "Full wall" + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wall_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wall_torch.json new file mode 100644 index 000000000..e30eec7f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wall_torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_torch_wall", + "textures": { + "torch": "minecraft:block/torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_button.json new file mode 100644 index 000000000..bdf5bc88b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_button.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_button_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_button_inventory.json new file mode 100644 index 000000000..2332270f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_button_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_inventory", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_button_pressed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_button_pressed.json new file mode 100644 index 000000000..feb58b7a9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_button_pressed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/button_pressed", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_bottom_left.json new file mode 100644 index 000000000..be46139aa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/warped_door_bottom", + "top": "minecraft:block/warped_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_bottom_left_open.json new file mode 100644 index 000000000..82a610082 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/warped_door_bottom", + "top": "minecraft:block/warped_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_bottom_right.json new file mode 100644 index 000000000..a094977e6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/warped_door_bottom", + "top": "minecraft:block/warped_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_bottom_right_open.json new file mode 100644 index 000000000..844828eb6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/warped_door_bottom", + "top": "minecraft:block/warped_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_top_left.json new file mode 100644 index 000000000..0ad4e6ba9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/warped_door_bottom", + "top": "minecraft:block/warped_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_top_left_open.json new file mode 100644 index 000000000..350c45329 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/warped_door_bottom", + "top": "minecraft:block/warped_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_top_right.json new file mode 100644 index 000000000..2340de27f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/warped_door_bottom", + "top": "minecraft:block/warped_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_top_right_open.json new file mode 100644 index 000000000..892224d46 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/warped_door_bottom", + "top": "minecraft:block/warped_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_gate.json new file mode 100644 index 000000000..11e873bef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_gate_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_gate_open.json new file mode 100644 index 000000000..f4f3f82d9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_gate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_gate_wall.json new file mode 100644 index 000000000..ad90d1538 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_gate_wall_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_gate_wall_open.json new file mode 100644 index 000000000..af30e1e67 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_inventory.json new file mode 100644 index 000000000..296e99f98 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_post.json new file mode 100644 index 000000000..51ef01dd8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_side.json new file mode 100644 index 000000000..6dba3fec7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fungus.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fungus.json new file mode 100644 index 000000000..c07b792a9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_fungus.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/warped_fungus" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_hanging_sign.json new file mode 100644 index 000000000..8d0629a43 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_hanging_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/stripped_warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_hyphae.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_hyphae.json new file mode 100644 index 000000000..eb9e767f1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_hyphae.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/warped_stem", + "side": "minecraft:block/warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_nylium.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_nylium.json new file mode 100644 index 000000000..2b283233b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_nylium.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "bottom": "minecraft:block/netherrack", + "side": "minecraft:block/warped_nylium_side", + "top": "minecraft:block/warped_nylium" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_planks.json new file mode 100644 index 000000000..993971b55 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_pressure_plate.json new file mode 100644 index 000000000..7cf3ebd76 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_pressure_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_up", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_pressure_plate_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_pressure_plate_down.json new file mode 100644 index 000000000..1ec67ce33 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_pressure_plate_down.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/pressure_plate_down", + "textures": { + "texture": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_roots.json new file mode 100644 index 000000000..85bc33166 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_roots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/warped_roots" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf.json new file mode 100644 index 000000000..71fa936e9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_body", + "textures": { + "all": "minecraft:block/warped_shelf", + "particle": "minecraft:block/stripped_warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_center.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_center.json new file mode 100644 index 000000000..e850669e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_center.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_center", + "textures": { + "all": "minecraft:block/warped_shelf", + "particle": "minecraft:block/stripped_warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_inventory.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_inventory.json new file mode 100644 index 000000000..a15e532c2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_inventory.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_inventory", + "textures": { + "all": "minecraft:block/warped_shelf", + "particle": "minecraft:block/stripped_warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_left.json new file mode 100644 index 000000000..7f96f9115 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_left", + "textures": { + "all": "minecraft:block/warped_shelf", + "particle": "minecraft:block/stripped_warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_right.json new file mode 100644 index 000000000..465a67691 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_right", + "textures": { + "all": "minecraft:block/warped_shelf", + "particle": "minecraft:block/stripped_warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_unconnected.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_unconnected.json new file mode 100644 index 000000000..a2e723205 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_unconnected.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unconnected", + "textures": { + "all": "minecraft:block/warped_shelf", + "particle": "minecraft:block/stripped_warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_unpowered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_unpowered.json new file mode 100644 index 000000000..d5265aca5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_shelf_unpowered.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_shelf_unpowered", + "textures": { + "all": "minecraft:block/warped_shelf", + "particle": "minecraft:block/stripped_warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_sign.json new file mode 100644 index 000000000..b7b47f672 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_slab.json new file mode 100644 index 000000000..fafb50154 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/warped_planks", + "side": "minecraft:block/warped_planks", + "top": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_slab_top.json new file mode 100644 index 000000000..712a48e5f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/warped_planks", + "side": "minecraft:block/warped_planks", + "top": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_stairs.json new file mode 100644 index 000000000..b18eb1d3b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/warped_planks", + "side": "minecraft:block/warped_planks", + "top": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_stairs_inner.json new file mode 100644 index 000000000..6641754f3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/warped_planks", + "side": "minecraft:block/warped_planks", + "top": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_stairs_outer.json new file mode 100644 index 000000000..22716e7b7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/warped_planks", + "side": "minecraft:block/warped_planks", + "top": "minecraft:block/warped_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_stem.json new file mode 100644 index 000000000..2d1fcc344 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_stem.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "minecraft:block/warped_stem_top", + "side": "minecraft:block/warped_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_trapdoor_bottom.json new file mode 100644 index 000000000..211b1addc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/warped_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_trapdoor_open.json new file mode 100644 index 000000000..cfcf7177c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "minecraft:block/warped_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_trapdoor_top.json new file mode 100644 index 000000000..daac6db98 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "minecraft:block/warped_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_wart_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_wart_block.json new file mode 100644 index 000000000..7f41d1a56 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/warped_wart_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/warped_wart_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/water.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/water.json new file mode 100644 index 000000000..759074723 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/water.json @@ -0,0 +1,6 @@ +{ + "textures": { + "particle": "block/water_still" + } +} + diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/water_cauldron_full.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/water_cauldron_full.json new file mode 100644 index 000000000..7e246053f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/water_cauldron_full.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/template_cauldron_full", + "textures": { + "bottom": "minecraft:block/cauldron_bottom", + "content": "minecraft:block/water_still", + "inside": "minecraft:block/cauldron_inner", + "particle": "minecraft:block/cauldron_side", + "side": "minecraft:block/cauldron_side", + "top": "minecraft:block/cauldron_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/water_cauldron_level1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/water_cauldron_level1.json new file mode 100644 index 000000000..83648ba95 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/water_cauldron_level1.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/template_cauldron_level1", + "textures": { + "bottom": "minecraft:block/cauldron_bottom", + "content": "minecraft:block/water_still", + "inside": "minecraft:block/cauldron_inner", + "particle": "minecraft:block/cauldron_side", + "side": "minecraft:block/cauldron_side", + "top": "minecraft:block/cauldron_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/water_cauldron_level2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/water_cauldron_level2.json new file mode 100644 index 000000000..0b19a8167 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/water_cauldron_level2.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:block/template_cauldron_level2", + "textures": { + "bottom": "minecraft:block/cauldron_bottom", + "content": "minecraft:block/water_still", + "inside": "minecraft:block/cauldron_inner", + "particle": "minecraft:block/cauldron_side", + "side": "minecraft:block/cauldron_side", + "top": "minecraft:block/cauldron_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_chiseled_copper.json new file mode 100644 index 000000000..f11c331cd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_chiseled_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper.json new file mode 100644 index 000000000..aa42be792 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/weathered_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_cap.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_cap.json new file mode 100644 index 000000000..d8c28756b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_cap.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_cap", + "textures": { + "bars": "minecraft:block/weathered_copper_bars", + "edge": "minecraft:block/weathered_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_cap_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_cap_alt.json new file mode 100644 index 000000000..9ff38a168 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_cap_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_cap_alt", + "textures": { + "bars": "minecraft:block/weathered_copper_bars", + "edge": "minecraft:block/weathered_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_post.json new file mode 100644 index 000000000..59ce7f4ec --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_post", + "textures": { + "bars": "minecraft:block/weathered_copper_bars", + "edge": "minecraft:block/weathered_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_post_ends.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_post_ends.json new file mode 100644 index 000000000..905375d3b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_post_ends.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_post_ends", + "textures": { + "bars": "minecraft:block/weathered_copper_bars", + "edge": "minecraft:block/weathered_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_side.json new file mode 100644 index 000000000..cc8e50096 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_side", + "textures": { + "bars": "minecraft:block/weathered_copper_bars", + "edge": "minecraft:block/weathered_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_side_alt.json new file mode 100644 index 000000000..490d12455 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bars_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_bars_side_alt", + "textures": { + "bars": "minecraft:block/weathered_copper_bars", + "edge": "minecraft:block/weathered_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb.json new file mode 100644 index 000000000..442b89ff6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/weathered_copper_bulb" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_lit.json new file mode 100644 index 000000000..969c5c1d4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_lit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/weathered_copper_bulb_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_lit_powered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_lit_powered.json new file mode 100644 index 000000000..1d21a1c6d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_lit_powered.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/weathered_copper_bulb_lit_powered" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_powered.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_powered.json new file mode 100644 index 000000000..e70687424 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_bulb_powered.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/weathered_copper_bulb_powered" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_chain.json new file mode 100644 index 000000000..cba75082d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_chain.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_chain", + "textures": { + "texture": "minecraft:block/weathered_copper_chain" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_chest.json new file mode 100644 index 000000000..30e8ccc71 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_chest.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/weathered_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_left.json new file mode 100644 index 000000000..b833db921 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "minecraft:block/weathered_copper_door_bottom", + "top": "minecraft:block/weathered_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_left_open.json new file mode 100644 index 000000000..fc40f5cb8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "minecraft:block/weathered_copper_door_bottom", + "top": "minecraft:block/weathered_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_right.json new file mode 100644 index 000000000..a9c531398 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "minecraft:block/weathered_copper_door_bottom", + "top": "minecraft:block/weathered_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_right_open.json new file mode 100644 index 000000000..11845962c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "minecraft:block/weathered_copper_door_bottom", + "top": "minecraft:block/weathered_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_left.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_left.json new file mode 100644 index 000000000..893750c64 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "minecraft:block/weathered_copper_door_bottom", + "top": "minecraft:block/weathered_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_left_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_left_open.json new file mode 100644 index 000000000..13aac26a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "minecraft:block/weathered_copper_door_bottom", + "top": "minecraft:block/weathered_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_right.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_right.json new file mode 100644 index 000000000..19ff9ae35 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "minecraft:block/weathered_copper_door_bottom", + "top": "minecraft:block/weathered_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_right_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_right_open.json new file mode 100644 index 000000000..4ee275088 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "minecraft:block/weathered_copper_door_bottom", + "top": "minecraft:block/weathered_copper_door_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_golem_statue.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_golem_statue.json new file mode 100644 index 000000000..30e8ccc71 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_golem_statue.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/weathered_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_grate.json new file mode 100644 index 000000000..2902a24ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_grate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/weathered_copper_grate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_lantern.json new file mode 100644 index 000000000..a93e1438a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_lantern", + "textures": { + "lantern": "minecraft:block/weathered_copper_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_lantern_hanging.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_lantern_hanging.json new file mode 100644 index 000000000..e6667436f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_lantern_hanging.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_hanging_lantern", + "textures": { + "lantern": "minecraft:block/weathered_copper_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_bottom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_bottom.json new file mode 100644 index 000000000..6bc6f0d6d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_bottom", + "textures": { + "texture": "minecraft:block/weathered_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_open.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_open.json new file mode 100644 index 000000000..a73f59ab0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_open", + "textures": { + "texture": "minecraft:block/weathered_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_top.json new file mode 100644 index 000000000..ebb49ffd9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_copper_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_trapdoor_top", + "textures": { + "texture": "minecraft:block/weathered_copper_trapdoor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper.json new file mode 100644 index 000000000..061c79cbc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/weathered_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_slab.json new file mode 100644 index 000000000..e5c0d887b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/weathered_cut_copper", + "side": "minecraft:block/weathered_cut_copper", + "top": "minecraft:block/weathered_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_slab_top.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_slab_top.json new file mode 100644 index 000000000..82dfb4368 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/weathered_cut_copper", + "side": "minecraft:block/weathered_cut_copper", + "top": "minecraft:block/weathered_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs.json new file mode 100644 index 000000000..db06d2ae0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/weathered_cut_copper", + "side": "minecraft:block/weathered_cut_copper", + "top": "minecraft:block/weathered_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs_inner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs_inner.json new file mode 100644 index 000000000..4850db433 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/weathered_cut_copper", + "side": "minecraft:block/weathered_cut_copper", + "top": "minecraft:block/weathered_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs_outer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs_outer.json new file mode 100644 index 000000000..7804f7236 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_cut_copper_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/weathered_cut_copper", + "side": "minecraft:block/weathered_cut_copper", + "top": "minecraft:block/weathered_cut_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_lightning_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_lightning_rod.json new file mode 100644 index 000000000..62882d258 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weathered_lightning_rod.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_lightning_rod", + "textures": { + "texture": "minecraft:block/weathered_lightning_rod" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weeping_vines.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weeping_vines.json new file mode 100644 index 000000000..a675fda16 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weeping_vines.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/weeping_vines" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weeping_vines_plant.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weeping_vines_plant.json new file mode 100644 index 000000000..c7a9ae05d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/weeping_vines_plant.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/weeping_vines_plant" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wet_sponge.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wet_sponge.json new file mode 100644 index 000000000..1b0b8a973 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wet_sponge.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/wet_sponge" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage0.json new file mode 100644 index 000000000..8343729c1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/wheat_stage0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage1.json new file mode 100644 index 000000000..1fa14ff8f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/wheat_stage1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage2.json new file mode 100644 index 000000000..9c2e59a1d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/wheat_stage2" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage3.json new file mode 100644 index 000000000..75b167dd2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/wheat_stage3" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage4.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage4.json new file mode 100644 index 000000000..3dae7e5e7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/wheat_stage4" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage5.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage5.json new file mode 100644 index 000000000..1cd7d96be --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/wheat_stage5" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage6.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage6.json new file mode 100644 index 000000000..7201c51a5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/wheat_stage6" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage7.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage7.json new file mode 100644 index 000000000..492b67150 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wheat_stage7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/crop", + "textures": { + "crop": "minecraft:block/wheat_stage7" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_cake.json new file mode 100644 index 000000000..568f818a4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/white_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_cake_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_cake_lit.json new file mode 100644 index 000000000..6bd9fca0e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/white_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_four_candles.json new file mode 100644 index 000000000..64ad91d27 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/white_candle", + "particle": "minecraft:block/white_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_four_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_four_candles_lit.json new file mode 100644 index 000000000..0504735b5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/white_candle_lit", + "particle": "minecraft:block/white_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_one_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_one_candle.json new file mode 100644 index 000000000..61585d993 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/white_candle", + "particle": "minecraft:block/white_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_one_candle_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_one_candle_lit.json new file mode 100644 index 000000000..3a3758315 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/white_candle_lit", + "particle": "minecraft:block/white_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_three_candles.json new file mode 100644 index 000000000..fd58e51cd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/white_candle", + "particle": "minecraft:block/white_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_three_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_three_candles_lit.json new file mode 100644 index 000000000..3c4b7aa74 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/white_candle_lit", + "particle": "minecraft:block/white_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_two_candles.json new file mode 100644 index 000000000..4aa5d6405 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/white_candle", + "particle": "minecraft:block/white_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_two_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_two_candles_lit.json new file mode 100644 index 000000000..cf27452f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/white_candle_lit", + "particle": "minecraft:block/white_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_carpet.json new file mode 100644 index 000000000..08d5186e6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/white_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_concrete.json new file mode 100644 index 000000000..92188f478 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/white_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_concrete_powder.json new file mode 100644 index 000000000..2c8c16b17 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/white_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_glazed_terracotta.json new file mode 100644 index 000000000..e33fbedc0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/white_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_shulker_box.json new file mode 100644 index 000000000..3a9a58d33 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/white_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass.json new file mode 100644 index 000000000..4e135e3dc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/white_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_noside.json new file mode 100644 index 000000000..b854d5438 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/white_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..a4cf80c37 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/white_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_post.json new file mode 100644 index 000000000..5762d3d7b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/white_stained_glass_pane_top", + "pane": "minecraft:block/white_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_side.json new file mode 100644 index 000000000..5e5dabbc3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/white_stained_glass_pane_top", + "pane": "minecraft:block/white_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..8f1f74bed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/white_stained_glass_pane_top", + "pane": "minecraft:block/white_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_terracotta.json new file mode 100644 index 000000000..eb6bc0069 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/white_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_tulip.json new file mode 100644 index 000000000..d31ceab86 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/white_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_wool.json new file mode 100644 index 000000000..8af86fa1b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/white_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/white_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wildflowers_1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wildflowers_1.json new file mode 100644 index 000000000..d6ec7f174 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wildflowers_1.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flowerbed_1", + "textures": { + "flowerbed": "minecraft:block/wildflowers", + "stem": "minecraft:block/wildflowers_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wildflowers_2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wildflowers_2.json new file mode 100644 index 000000000..7bb30b8b0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wildflowers_2.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flowerbed_2", + "textures": { + "flowerbed": "minecraft:block/wildflowers", + "stem": "minecraft:block/wildflowers_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wildflowers_3.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wildflowers_3.json new file mode 100644 index 000000000..e2e004f5f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wildflowers_3.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flowerbed_3", + "textures": { + "flowerbed": "minecraft:block/wildflowers", + "stem": "minecraft:block/wildflowers_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wildflowers_4.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wildflowers_4.json new file mode 100644 index 000000000..ee50217b0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wildflowers_4.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/flowerbed_4", + "textures": { + "flowerbed": "minecraft:block/wildflowers", + "stem": "minecraft:block/wildflowers_stem" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wither_rose.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wither_rose.json new file mode 100644 index 000000000..470894581 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/wither_rose.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "minecraft:block/wither_rose" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_cake.json new file mode 100644 index 000000000..f84e4f7ca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_cake.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/yellow_candle", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_cake_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_cake_lit.json new file mode 100644 index 000000000..4a3388b02 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_cake_lit.json @@ -0,0 +1,10 @@ +{ + "parent": "minecraft:block/template_cake_with_candle", + "textures": { + "bottom": "minecraft:block/cake_bottom", + "candle": "minecraft:block/yellow_candle_lit", + "particle": "minecraft:block/cake_side", + "side": "minecraft:block/cake_side", + "top": "minecraft:block/cake_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_four_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_four_candles.json new file mode 100644 index 000000000..ee076d7eb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_four_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/yellow_candle", + "particle": "minecraft:block/yellow_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_four_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_four_candles_lit.json new file mode 100644 index 000000000..ce1d68448 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_four_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_four_candles", + "textures": { + "all": "minecraft:block/yellow_candle_lit", + "particle": "minecraft:block/yellow_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_one_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_one_candle.json new file mode 100644 index 000000000..187fb20f1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_one_candle.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/yellow_candle", + "particle": "minecraft:block/yellow_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_one_candle_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_one_candle_lit.json new file mode 100644 index 000000000..d40198468 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_one_candle_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_candle", + "textures": { + "all": "minecraft:block/yellow_candle_lit", + "particle": "minecraft:block/yellow_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_three_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_three_candles.json new file mode 100644 index 000000000..69260bbe1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_three_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/yellow_candle", + "particle": "minecraft:block/yellow_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_three_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_three_candles_lit.json new file mode 100644 index 000000000..cdbf4fea0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_three_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_three_candles", + "textures": { + "all": "minecraft:block/yellow_candle_lit", + "particle": "minecraft:block/yellow_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_two_candles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_two_candles.json new file mode 100644 index 000000000..1167ec7b7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_two_candles.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/yellow_candle", + "particle": "minecraft:block/yellow_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_two_candles_lit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_two_candles_lit.json new file mode 100644 index 000000000..d53b38667 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_candle_two_candles_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_two_candles", + "textures": { + "all": "minecraft:block/yellow_candle_lit", + "particle": "minecraft:block/yellow_candle_lit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_carpet.json new file mode 100644 index 000000000..7d08c9e1e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "minecraft:block/yellow_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_concrete.json new file mode 100644 index 000000000..b89815249 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_concrete.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/yellow_concrete" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_concrete_powder.json new file mode 100644 index 000000000..8882b67bd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_concrete_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/yellow_concrete_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_glazed_terracotta.json new file mode 100644 index 000000000..fa60d0dcc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_glazed_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glazed_terracotta", + "textures": { + "pattern": "minecraft:block/yellow_glazed_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_shulker_box.json new file mode 100644 index 000000000..c54fe67ce --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/yellow_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass.json new file mode 100644 index 000000000..cd225fdc5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/yellow_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_noside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_noside.json new file mode 100644 index 000000000..d8c226134 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_noside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside", + "textures": { + "pane": "minecraft:block/yellow_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_noside_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_noside_alt.json new file mode 100644 index 000000000..668a6ef29 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_noside_alt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_glass_pane_noside_alt", + "textures": { + "pane": "minecraft:block/yellow_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_post.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_post.json new file mode 100644 index 000000000..e2b57957e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_post.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_post", + "textures": { + "edge": "minecraft:block/yellow_stained_glass_pane_top", + "pane": "minecraft:block/yellow_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_side.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_side.json new file mode 100644 index 000000000..2f5a1c2b5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_side.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side", + "textures": { + "edge": "minecraft:block/yellow_stained_glass_pane_top", + "pane": "minecraft:block/yellow_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_side_alt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_side_alt.json new file mode 100644 index 000000000..acd867a1a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_stained_glass_pane_side_alt.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/template_glass_pane_side_alt", + "textures": { + "edge": "minecraft:block/yellow_stained_glass_pane_top", + "pane": "minecraft:block/yellow_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_terracotta.json new file mode 100644 index 000000000..8f3e76eed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_terracotta.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/yellow_terracotta" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_wool.json new file mode 100644 index 000000000..2f0dab367 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/block/yellow_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/yellow_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_boat.json new file mode 100644 index 000000000..5b93e9865 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/acacia_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_button.json new file mode 100644 index 000000000..d5affffa7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_button.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/acacia_button_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_chest_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_chest_boat.json new file mode 100644 index 000000000..fbac5cb80 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/acacia_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_door.json new file mode 100644 index 000000000..7ecc5bbd8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/acacia_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_fence.json new file mode 100644 index 000000000..4db3c8918 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_fence.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/acacia_fence_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_fence_gate.json new file mode 100644 index 000000000..f58755330 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_fence_gate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/acacia_fence_gate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_hanging_sign.json new file mode 100644 index 000000000..16c7c4030 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/acacia_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_leaves.json new file mode 100644 index 000000000..b1ef8fa9a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_leaves.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/acacia_leaves" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_log.json new file mode 100644 index 000000000..0b9f607e0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_log.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/acacia_log" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_planks.json new file mode 100644 index 000000000..3c90abef5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_planks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/acacia_planks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_pressure_plate.json new file mode 100644 index 000000000..318e49ad9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_pressure_plate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/acacia_pressure_plate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_sapling.json new file mode 100644 index 000000000..89e557914 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/acacia_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_sign.json new file mode 100644 index 000000000..05032df9c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/acacia_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_slab.json new file mode 100644 index 000000000..bb3480c72 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/acacia_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_stairs.json new file mode 100644 index 000000000..58ab5e2d4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/acacia_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_trapdoor.json new file mode 100644 index 000000000..701a68627 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/acacia_trapdoor_bottom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_wood.json new file mode 100644 index 000000000..4a5086de4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/acacia_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/acacia_wood" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/activator_rail.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/activator_rail.json new file mode 100644 index 000000000..9ae2bd074 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/activator_rail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/activator_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/air.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/air.json new file mode 100644 index 000000000..e7062e637 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/air.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:missingno" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/allay_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/allay_spawn_egg.json new file mode 100644 index 000000000..b7365fef2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/allay_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/allay_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/allium.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/allium.json new file mode 100644 index 000000000..cf132b4b3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/allium.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/allium" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/amethyst_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/amethyst_block.json new file mode 100644 index 000000000..b48995154 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/amethyst_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/amethyst_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/amethyst_bud.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/amethyst_bud.json new file mode 100644 index 000000000..d3bd62823 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/amethyst_bud.json @@ -0,0 +1,20 @@ +{ + "parent": "minecraft:item/generated", + "display": { + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 0, 5, 0 ], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "thirdperson_righthand": { + "translation": [ 0, 4, 1 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "head": { + "translation": [ 0, 14, -5 ] + }, + "gui": { + "translation": [ 0, 2, 0 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/amethyst_cluster.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/amethyst_cluster.json new file mode 100644 index 000000000..abc8c7d35 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/amethyst_cluster.json @@ -0,0 +1,11 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/amethyst_cluster" + }, + "display": { + "head": { + "translation": [ 0, 14, -5 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/amethyst_shard.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/amethyst_shard.json new file mode 100644 index 000000000..a0bab4ff7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/amethyst_shard.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/amethyst_shard" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ancient_debris.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ancient_debris.json new file mode 100644 index 000000000..f8c6c3d5f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ancient_debris.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/ancient_debris" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/andesite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/andesite.json new file mode 100644 index 000000000..d6b76e17b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/andesite.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/andesite" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/andesite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/andesite_slab.json new file mode 100644 index 000000000..4bd787706 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/andesite_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/andesite_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/andesite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/andesite_stairs.json new file mode 100644 index 000000000..03e452df3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/andesite_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/andesite_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/andesite_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/andesite_wall.json new file mode 100644 index 000000000..f10f1ec36 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/andesite_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/andesite_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/angler_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/angler_pottery_sherd.json new file mode 100644 index 000000000..b805ab216 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/angler_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/angler_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/anvil.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/anvil.json new file mode 100644 index 000000000..9168b26bb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/anvil.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/anvil" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/apple.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/apple.json new file mode 100644 index 000000000..c314b0587 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/apple.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/apple" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/archer_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/archer_pottery_sherd.json new file mode 100644 index 000000000..1b73b22dc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/archer_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/archer_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/armadillo_scute.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/armadillo_scute.json new file mode 100644 index 000000000..ca4d17d0d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/armadillo_scute.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/armadillo_scute" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/armadillo_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/armadillo_spawn_egg.json new file mode 100644 index 000000000..73c5e6911 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/armadillo_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/armadillo_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/armor_stand.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/armor_stand.json new file mode 100644 index 000000000..f8f34a7b5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/armor_stand.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/armor_stand" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/arms_up_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/arms_up_pottery_sherd.json new file mode 100644 index 000000000..94339d522 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/arms_up_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/arms_up_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/arrow.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/arrow.json new file mode 100644 index 000000000..37689ea02 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/arrow.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/arrow" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/axolotl_bucket.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/axolotl_bucket.json new file mode 100644 index 000000000..221f7fa6e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/axolotl_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/axolotl_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/axolotl_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/axolotl_spawn_egg.json new file mode 100644 index 000000000..90a124222 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/axolotl_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/axolotl_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/azalea.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/azalea.json new file mode 100644 index 000000000..062330c7e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/azalea.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/azalea" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/azalea_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/azalea_leaves.json new file mode 100644 index 000000000..6b26318be --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/azalea_leaves.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/azalea_leaves" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/azure_bluet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/azure_bluet.json new file mode 100644 index 000000000..5d4725150 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/azure_bluet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/azure_bluet" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/baked_potato.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/baked_potato.json new file mode 100644 index 000000000..b9324fe71 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/baked_potato.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/baked_potato" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo.json new file mode 100644 index 000000000..2a46e1c3e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/bamboo" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_block.json new file mode 100644 index 000000000..f75fac0f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bamboo_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_button.json new file mode 100644 index 000000000..c1152b507 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_button.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bamboo_button_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_chest_raft.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_chest_raft.json new file mode 100644 index 000000000..93370902d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_chest_raft.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bamboo_chest_raft" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_door.json new file mode 100644 index 000000000..ff7c997db --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bamboo_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_fence.json new file mode 100644 index 000000000..2b11ca8c7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_fence.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bamboo_fence_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_fence_gate.json new file mode 100644 index 000000000..eba9a06e1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_fence_gate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bamboo_fence_gate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_hanging_sign.json new file mode 100644 index 000000000..a634960ab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bamboo_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_mosaic.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_mosaic.json new file mode 100644 index 000000000..6892f31f0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_mosaic.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bamboo_mosaic" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_mosaic_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_mosaic_slab.json new file mode 100644 index 000000000..d7b3e3e2e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_mosaic_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bamboo_mosaic_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_mosaic_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_mosaic_stairs.json new file mode 100644 index 000000000..e6ae86d05 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_mosaic_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bamboo_mosaic_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_planks.json new file mode 100644 index 000000000..4e591abe4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_planks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bamboo_planks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_pressure_plate.json new file mode 100644 index 000000000..8a7a0ff5a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_pressure_plate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bamboo_pressure_plate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_raft.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_raft.json new file mode 100644 index 000000000..84ded131a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_raft.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bamboo_raft" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_sign.json new file mode 100644 index 000000000..2d6bb57c7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bamboo_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_slab.json new file mode 100644 index 000000000..0d94c19fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bamboo_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_stairs.json new file mode 100644 index 000000000..c96c60693 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bamboo_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_trapdoor.json new file mode 100644 index 000000000..cd10b18e9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bamboo_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bamboo_trapdoor_bottom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/barrel.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/barrel.json new file mode 100644 index 000000000..553ec3e04 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/barrel.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/barrel" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/barrier.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/barrier.json new file mode 100644 index 000000000..080cff20c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/barrier.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/barrier" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/basalt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/basalt.json new file mode 100644 index 000000000..eaa67e624 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/basalt.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/basalt" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bat_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bat_spawn_egg.json new file mode 100644 index 000000000..1d2f04751 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bat_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bat_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beacon.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beacon.json new file mode 100644 index 000000000..b6a014e6f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beacon.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/beacon" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bedrock.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bedrock.json new file mode 100644 index 000000000..c1b8427e8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bedrock.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bedrock" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bee_nest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bee_nest.json new file mode 100644 index 000000000..3298365ac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bee_nest.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bee_nest" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bee_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bee_spawn_egg.json new file mode 100644 index 000000000..93aed8c10 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bee_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bee_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beef.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beef.json new file mode 100644 index 000000000..5545b3c82 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beef.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/beef" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beehive.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beehive.json new file mode 100644 index 000000000..cf1475c38 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beehive.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/beehive" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beetroot.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beetroot.json new file mode 100644 index 000000000..dcc7276a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beetroot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/beetroot" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beetroot_seeds.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beetroot_seeds.json new file mode 100644 index 000000000..d20b2cd44 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beetroot_seeds.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/beetroot_seeds" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beetroot_soup.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beetroot_soup.json new file mode 100644 index 000000000..3a0755d68 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/beetroot_soup.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/beetroot_soup" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bell.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bell.json new file mode 100644 index 000000000..fe24c1f4c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bell.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bell" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/big_dripleaf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/big_dripleaf.json new file mode 100644 index 000000000..56cc7f0ed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/big_dripleaf.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:block/big_dripleaf", + "display": { + "gui": { + "rotation": [ 30, 225, 0 ], + "translation": [ 0, -2, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "fixed": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 0, -1 ], + "scale":[ 0.5, 0.5, 0.5 ] + }, + "thirdperson_righthand": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 1, 0 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 0, 0 ], + "translation": [ 1.13, 0, 1.13], + "scale": [ 0.68, 0.68, 0.68 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_boat.json new file mode 100644 index 000000000..20f68b32d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/birch_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_button.json new file mode 100644 index 000000000..f0065c479 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_button.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/birch_button_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_chest_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_chest_boat.json new file mode 100644 index 000000000..b7549aeb9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/birch_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_door.json new file mode 100644 index 000000000..2b0e4f916 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/birch_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_fence.json new file mode 100644 index 000000000..ca097fb1a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_fence.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/birch_fence_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_fence_gate.json new file mode 100644 index 000000000..732026b87 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_fence_gate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/birch_fence_gate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_hanging_sign.json new file mode 100644 index 000000000..9d15f706c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/birch_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_leaves.json new file mode 100644 index 000000000..4f543d46a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_leaves.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/birch_leaves" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_log.json new file mode 100644 index 000000000..cd42b0b7a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_log.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/birch_log" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_planks.json new file mode 100644 index 000000000..06e3a6d36 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_planks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/birch_planks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_pressure_plate.json new file mode 100644 index 000000000..e8dfb6427 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_pressure_plate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/birch_pressure_plate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_sapling.json new file mode 100644 index 000000000..3c45f3b6a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/birch_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_sign.json new file mode 100644 index 000000000..d10beadcd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/birch_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_slab.json new file mode 100644 index 000000000..c17a8e794 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/birch_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_stairs.json new file mode 100644 index 000000000..ec8fd2b96 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/birch_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_trapdoor.json new file mode 100644 index 000000000..7db49741f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/birch_trapdoor_bottom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_wood.json new file mode 100644 index 000000000..cd1881b08 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/birch_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/birch_wood" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_banner.json new file mode 100644 index 000000000..661a106df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_banner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_bed.json new file mode 100644 index 000000000..c8757a9ae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/black_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_bundle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_bundle.json new file mode 100644 index 000000000..84299e450 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/black_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_bundle_open_back.json new file mode 100644 index 000000000..ff313951b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/black_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_bundle_open_front.json new file mode 100644 index 000000000..d31bc086c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/black_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_candle.json new file mode 100644 index 000000000..837c9349a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/black_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_carpet.json new file mode 100644 index 000000000..618d21305 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/black_carpet" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_concrete.json new file mode 100644 index 000000000..eb5aadc33 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/black_concrete" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_concrete_powder.json new file mode 100644 index 000000000..03af09ea0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_concrete_powder.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/black_concrete_powder" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_dye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_dye.json new file mode 100644 index 000000000..0502b4054 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/black_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_glazed_terracotta.json new file mode 100644 index 000000000..e1f73ff88 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_glazed_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/black_glazed_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_harness.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_harness.json new file mode 100644 index 000000000..c8216ebe6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/black_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_shulker_box.json new file mode 100644 index 000000000..5f45328d1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/black_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_stained_glass.json new file mode 100644 index 000000000..dfc8fab34 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_stained_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/black_stained_glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_stained_glass_pane.json new file mode 100644 index 000000000..75081749e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/black_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_terracotta.json new file mode 100644 index 000000000..eee57e8e1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/black_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_wool.json new file mode 100644 index 000000000..a0e49abc2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/black_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/black_wool" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blackstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blackstone.json new file mode 100644 index 000000000..e4defbd65 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blackstone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/blackstone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blackstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blackstone_slab.json new file mode 100644 index 000000000..481376f49 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blackstone_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/blackstone_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blackstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blackstone_stairs.json new file mode 100644 index 000000000..83a61e181 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blackstone_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/blackstone_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blackstone_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blackstone_wall.json new file mode 100644 index 000000000..8c2bc6d61 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blackstone_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/blackstone_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blade_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blade_pottery_sherd.json new file mode 100644 index 000000000..0795cc804 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blade_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/blade_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blast_furnace.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blast_furnace.json new file mode 100644 index 000000000..5189a0134 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blast_furnace.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/blast_furnace" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blaze_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blaze_powder.json new file mode 100644 index 000000000..1e735c193 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blaze_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/blaze_powder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blaze_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blaze_rod.json new file mode 100644 index 000000000..2c8c052a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blaze_rod.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/blaze_rod" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blaze_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blaze_spawn_egg.json new file mode 100644 index 000000000..468642924 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blaze_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/blaze_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_banner.json new file mode 100644 index 000000000..661a106df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_banner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_bed.json new file mode 100644 index 000000000..59f7f2ba3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/blue_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_bundle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_bundle.json new file mode 100644 index 000000000..f6005a3c9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/blue_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_bundle_open_back.json new file mode 100644 index 000000000..ff7d420e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/blue_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_bundle_open_front.json new file mode 100644 index 000000000..3e06e408a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/blue_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_candle.json new file mode 100644 index 000000000..e561230f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_carpet.json new file mode 100644 index 000000000..0ced6287e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/blue_carpet" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_concrete.json new file mode 100644 index 000000000..4c15897c1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/blue_concrete" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_concrete_powder.json new file mode 100644 index 000000000..e5f13d4a5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_concrete_powder.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/blue_concrete_powder" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_dye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_dye.json new file mode 100644 index 000000000..4235b5988 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/blue_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_egg.json new file mode 100644 index 000000000..5d2aa874b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/blue_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_glazed_terracotta.json new file mode 100644 index 000000000..f7b0efbbc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_glazed_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/blue_glazed_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_harness.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_harness.json new file mode 100644 index 000000000..77d82cf29 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/blue_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_ice.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_ice.json new file mode 100644 index 000000000..86d267e58 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_ice.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/blue_ice" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_orchid.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_orchid.json new file mode 100644 index 000000000..13449dc1a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_orchid.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/blue_orchid" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_shulker_box.json new file mode 100644 index 000000000..62a9dfd81 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/blue_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_stained_glass.json new file mode 100644 index 000000000..c3727cd87 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_stained_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/blue_stained_glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_stained_glass_pane.json new file mode 100644 index 000000000..c48900628 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_terracotta.json new file mode 100644 index 000000000..a89b057d0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/blue_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_wool.json new file mode 100644 index 000000000..22458dbdf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/blue_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/blue_wool" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bogged_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bogged_spawn_egg.json new file mode 100644 index 000000000..fb5ddc078 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bogged_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bogged_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bolt_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bolt_armor_trim_smithing_template.json new file mode 100644 index 000000000..dfaada50d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bolt_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bolt_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bone.json new file mode 100644 index 000000000..3063401c6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bone.json @@ -0,0 +1,13 @@ +{ + "parent": "item/handheld", + "textures": { + "layer0": "item/bone" + }, + "display": { + "head": { + "rotation": [ 0, 0, -45 ], + "translation": [ 0, -4.5, -6.5], + "scale":[ 1, 1, 1 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bone_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bone_block.json new file mode 100644 index 000000000..1374ccda6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bone_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bone_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bone_meal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bone_meal.json new file mode 100644 index 000000000..60f7c5f09 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bone_meal.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bone_meal" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/book.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/book.json new file mode 100644 index 000000000..1ca201bfe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/book.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/book" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bookshelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bookshelf.json new file mode 100644 index 000000000..57943d425 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bookshelf.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bookshelf" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bordure_indented_banner_pattern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bordure_indented_banner_pattern.json new file mode 100644 index 000000000..02706b20c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bordure_indented_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bordure_indented_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bow.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bow.json new file mode 100644 index 000000000..f6c193305 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bow.json @@ -0,0 +1,28 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/bow" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ -80, 260, -40 ], + "translation": [ -1, -2, 2.5 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "thirdperson_lefthand": { + "rotation": [ -80, -280, 40 ], + "translation": [ -1, -2, 2.5 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 1.13, 3.2, 1.13], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 90, -25 ], + "translation": [ 1.13, 3.2, 1.13], + "scale": [ 0.68, 0.68, 0.68 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bow_pulling_0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bow_pulling_0.json new file mode 100644 index 000000000..065264811 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bow_pulling_0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/bow", + "textures": { + "layer0": "minecraft:item/bow_pulling_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bow_pulling_1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bow_pulling_1.json new file mode 100644 index 000000000..bc1f9778f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bow_pulling_1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/bow", + "textures": { + "layer0": "minecraft:item/bow_pulling_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bow_pulling_2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bow_pulling_2.json new file mode 100644 index 000000000..cec87c74e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bow_pulling_2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/bow", + "textures": { + "layer0": "minecraft:item/bow_pulling_2" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bowl.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bowl.json new file mode 100644 index 000000000..d6a579ca4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bowl.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bowl" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brain_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brain_coral.json new file mode 100644 index 000000000..68c13d9d0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brain_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/brain_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brain_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brain_coral_block.json new file mode 100644 index 000000000..04d112ab0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brain_coral_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/brain_coral_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brain_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brain_coral_fan.json new file mode 100644 index 000000000..9b00117a0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brain_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/brain_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bread.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bread.json new file mode 100644 index 000000000..9f62cd758 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bread.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bread" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/breeze_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/breeze_rod.json new file mode 100644 index 000000000..3e621f36d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/breeze_rod.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/breeze_rod" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/breeze_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/breeze_spawn_egg.json new file mode 100644 index 000000000..e421a5907 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/breeze_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/breeze_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brewer_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brewer_pottery_sherd.json new file mode 100644 index 000000000..88b36e178 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brewer_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/brewer_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brewing_stand.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brewing_stand.json new file mode 100644 index 000000000..414f4eccd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brewing_stand.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/brewing_stand" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brick.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brick.json new file mode 100644 index 000000000..4ba38e868 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/brick" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brick_slab.json new file mode 100644 index 000000000..754deec6c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brick_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/brick_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brick_stairs.json new file mode 100644 index 000000000..2a2318dce --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/brick_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brick_wall.json new file mode 100644 index 000000000..52dcc04ef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brick_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/brick_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bricks.json new file mode 100644 index 000000000..dd257a865 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/broken_elytra.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/broken_elytra.json new file mode 100644 index 000000000..ca77df44f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/broken_elytra.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/broken_elytra" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_banner.json new file mode 100644 index 000000000..661a106df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_banner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_bed.json new file mode 100644 index 000000000..fd4abaa04 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/brown_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_bundle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_bundle.json new file mode 100644 index 000000000..7f289642b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/brown_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_bundle_open_back.json new file mode 100644 index 000000000..fa9041ebb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/brown_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_bundle_open_front.json new file mode 100644 index 000000000..e0fa96f04 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/brown_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_candle.json new file mode 100644 index 000000000..0486b2818 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/brown_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_carpet.json new file mode 100644 index 000000000..144ce5ad6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/brown_carpet" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_concrete.json new file mode 100644 index 000000000..7aec153e9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/brown_concrete" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_concrete_powder.json new file mode 100644 index 000000000..e228eaaa9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_concrete_powder.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/brown_concrete_powder" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_dye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_dye.json new file mode 100644 index 000000000..d9cb87fbf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/brown_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_egg.json new file mode 100644 index 000000000..900e61a9d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/brown_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_glazed_terracotta.json new file mode 100644 index 000000000..8ed9bac45 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_glazed_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/brown_glazed_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_harness.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_harness.json new file mode 100644 index 000000000..ec3ce2b40 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/brown_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_mushroom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_mushroom.json new file mode 100644 index 000000000..f1779d5c9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_mushroom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/brown_mushroom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_mushroom_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_mushroom_block.json new file mode 100644 index 000000000..c9d6b06e7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_mushroom_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/brown_mushroom_block_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_shulker_box.json new file mode 100644 index 000000000..c28ee18a0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/brown_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_stained_glass.json new file mode 100644 index 000000000..a3aac5722 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_stained_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/brown_stained_glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_stained_glass_pane.json new file mode 100644 index 000000000..0a40ae5fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/brown_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_terracotta.json new file mode 100644 index 000000000..17f524a73 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/brown_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_wool.json new file mode 100644 index 000000000..85520a1bc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brown_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/brown_wool" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brush.json new file mode 100644 index 000000000..8973ac981 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brush.json @@ -0,0 +1,23 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/brush" + }, + "display": { + "firstperson_lefthand": { + "rotation": [ 55, -85, 0 ], + "translation": [ 8.0, 0.5, -5.5 ], + "scale": [ 1.0, 1.0, 1.0 ] + }, + "thirdperson_righthand": { + "rotation": [ 0, 0, 45 ], + "translation": [ 0, 4, 0 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 0, -45 ], + "translation": [ 0, 4, 0 ], + "scale": [ 0.9, 0.9, 0.9 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brush_brushing_0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brush_brushing_0.json new file mode 100644 index 000000000..672921573 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brush_brushing_0.json @@ -0,0 +1,23 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/brush" + }, + "display": { + "firstperson_lefthand": { + "rotation": [ 55, -85, 0 ], + "translation": [ 8.0, 0.5, -5.5 ], + "scale": [ 1.0, 1.0, 1.0 ] + }, + "thirdperson_righthand": { + "rotation": [ 0, 0, 0 ], + "translation": [ 4, 2, 0 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 0, 0], + "translation": [ -4, 2, 0 ], + "scale": [ 0.9, 0.9, 0.9 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brush_brushing_1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brush_brushing_1.json new file mode 100644 index 000000000..8973ac981 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brush_brushing_1.json @@ -0,0 +1,23 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/brush" + }, + "display": { + "firstperson_lefthand": { + "rotation": [ 55, -85, 0 ], + "translation": [ 8.0, 0.5, -5.5 ], + "scale": [ 1.0, 1.0, 1.0 ] + }, + "thirdperson_righthand": { + "rotation": [ 0, 0, 45 ], + "translation": [ 0, 4, 0 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 0, -45 ], + "translation": [ 0, 4, 0 ], + "scale": [ 0.9, 0.9, 0.9 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brush_brushing_2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brush_brushing_2.json new file mode 100644 index 000000000..729697bec --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/brush_brushing_2.json @@ -0,0 +1,23 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/brush" + }, + "display": { + "firstperson_lefthand": { + "rotation": [ 55, -85, 0 ], + "translation": [ 8.0, 0.5, -5.5 ], + "scale": [ 1.0, 1.0, 1.0 ] + }, + "thirdperson_righthand": { + "rotation": [ 0, 0, 90 ], + "translation": [ -4, 2, 0 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 0, -90 ], + "translation": [ 4, 2, 0 ], + "scale": [ 0.9, 0.9, 0.9 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bubble_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bubble_coral.json new file mode 100644 index 000000000..8d8ea3f8e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bubble_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/bubble_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bubble_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bubble_coral_block.json new file mode 100644 index 000000000..05a1309f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bubble_coral_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/bubble_coral_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bubble_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bubble_coral_fan.json new file mode 100644 index 000000000..40a144167 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bubble_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/bubble_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bucket.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bucket.json new file mode 100644 index 000000000..727318a40 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/budding_amethyst.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/budding_amethyst.json new file mode 100644 index 000000000..c210bd6e9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/budding_amethyst.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/budding_amethyst" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bundle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bundle.json new file mode 100644 index 000000000..af189a9c9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bundle_filled.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bundle_filled.json new file mode 100644 index 000000000..cf601f5a9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bundle_filled.json @@ -0,0 +1,6 @@ +{ + "parent": "item/bundle", + "textures": { + "layer0": "item/bundle_filled" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bundle_open_back.json new file mode 100644 index 000000000..18ed887f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bundle_open_front.json new file mode 100644 index 000000000..aa799600c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/burn_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/burn_pottery_sherd.json new file mode 100644 index 000000000..1c81d466b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/burn_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/burn_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bush.json new file mode 100644 index 000000000..b9945900a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/bush.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/bush" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cactus.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cactus.json new file mode 100644 index 000000000..d1413ecfa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cactus.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cactus" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cactus_flower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cactus_flower.json new file mode 100644 index 000000000..c97601721 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cactus_flower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/cactus_flower" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cake.json new file mode 100644 index 000000000..70a9bd0af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cake.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cake" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/calcite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/calcite.json new file mode 100644 index 000000000..11a880b3c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/calcite.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/calcite" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/calibrated_sculk_sensor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/calibrated_sculk_sensor.json new file mode 100644 index 000000000..d99476e50 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/calibrated_sculk_sensor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/calibrated_sculk_sensor_inactive" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/camel_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/camel_spawn_egg.json new file mode 100644 index 000000000..1ac9acb3f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/camel_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/camel_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/campfire.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/campfire.json new file mode 100644 index 000000000..8042feb6d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/campfire.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/campfire" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/candle.json new file mode 100644 index 000000000..9e4f4d11a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/carrot.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/carrot.json new file mode 100644 index 000000000..3fe4125ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/carrot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/carrot" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/carrot_on_a_stick.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/carrot_on_a_stick.json new file mode 100644 index 000000000..a768c1f25 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/carrot_on_a_stick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld_rod", + "textures": { + "layer0": "minecraft:item/carrot_on_a_stick" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cartography_table.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cartography_table.json new file mode 100644 index 000000000..b7fe4e474 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cartography_table.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cartography_table" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/carved_pumpkin.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/carved_pumpkin.json new file mode 100644 index 000000000..54f009c07 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/carved_pumpkin.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/carved_pumpkin" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cat_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cat_spawn_egg.json new file mode 100644 index 000000000..385f2c10f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cat_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cat_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cauldron.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cauldron.json new file mode 100644 index 000000000..43b8a2480 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cauldron.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cauldron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cave_spider_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cave_spider_spawn_egg.json new file mode 100644 index 000000000..f5f57afb3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cave_spider_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cave_spider_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chain.json new file mode 100644 index 000000000..c6ed30bf1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chain.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chain" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chain_command_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chain_command_block.json new file mode 100644 index 000000000..44af865a8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chain_command_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/chain_command_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots.json new file mode 100644 index 000000000..35126d5ef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_amethyst_trim.json new file mode 100644 index 000000000..14ea3c2b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_copper_trim.json new file mode 100644 index 000000000..d05f56ae5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_diamond_trim.json new file mode 100644 index 000000000..c66f7f1cc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_emerald_trim.json new file mode 100644 index 000000000..748078fe8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_gold_trim.json new file mode 100644 index 000000000..6be04b71a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_iron_trim.json new file mode 100644 index 000000000..fc71c6d8b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_lapis_trim.json new file mode 100644 index 000000000..105d7c72d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_netherite_trim.json new file mode 100644 index 000000000..ecc9975e1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_quartz_trim.json new file mode 100644 index 000000000..2657964ae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_redstone_trim.json new file mode 100644 index 000000000..48eee0190 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_resin_trim.json new file mode 100644 index 000000000..b6c36c2d9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_boots_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_boots", + "layer1": "minecraft:trims/items/boots_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate.json new file mode 100644 index 000000000..3efbf4107 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_amethyst_trim.json new file mode 100644 index 000000000..d3af51849 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_copper_trim.json new file mode 100644 index 000000000..7c8c3c439 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_diamond_trim.json new file mode 100644 index 000000000..374ccdb9a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_emerald_trim.json new file mode 100644 index 000000000..3e871cda2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_gold_trim.json new file mode 100644 index 000000000..cc80f46da --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_iron_trim.json new file mode 100644 index 000000000..81a5242c5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_lapis_trim.json new file mode 100644 index 000000000..865560ab4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_netherite_trim.json new file mode 100644 index 000000000..4c9e2289d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_quartz_trim.json new file mode 100644 index 000000000..291441ae8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_redstone_trim.json new file mode 100644 index 000000000..4ee218315 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_resin_trim.json new file mode 100644 index 000000000..f44bdc5e3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_chestplate_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet.json new file mode 100644 index 000000000..e5bd2d42d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_amethyst_trim.json new file mode 100644 index 000000000..d1fdcc920 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_copper_trim.json new file mode 100644 index 000000000..ef16e96f3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_diamond_trim.json new file mode 100644 index 000000000..e004f2d17 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_emerald_trim.json new file mode 100644 index 000000000..cf1b7fb64 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_gold_trim.json new file mode 100644 index 000000000..c83e53433 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_iron_trim.json new file mode 100644 index 000000000..56b43947f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_lapis_trim.json new file mode 100644 index 000000000..8cae5aea5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_netherite_trim.json new file mode 100644 index 000000000..d7b200160 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_quartz_trim.json new file mode 100644 index 000000000..83b8eba24 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_redstone_trim.json new file mode 100644 index 000000000..03406139f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_resin_trim.json new file mode 100644 index 000000000..0d8593073 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_helmet_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_helmet", + "layer1": "minecraft:trims/items/helmet_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings.json new file mode 100644 index 000000000..22530cf97 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_amethyst_trim.json new file mode 100644 index 000000000..7c1b0e8f0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_copper_trim.json new file mode 100644 index 000000000..510189833 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_diamond_trim.json new file mode 100644 index 000000000..6344872e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_emerald_trim.json new file mode 100644 index 000000000..747b1f3a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_gold_trim.json new file mode 100644 index 000000000..4d23f0579 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_iron_trim.json new file mode 100644 index 000000000..71034c608 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_lapis_trim.json new file mode 100644 index 000000000..d54897c6c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_netherite_trim.json new file mode 100644 index 000000000..ff14a3878 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_quartz_trim.json new file mode 100644 index 000000000..97a0aa847 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_redstone_trim.json new file mode 100644 index 000000000..8117e44af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_resin_trim.json new file mode 100644 index 000000000..359125397 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chainmail_leggings_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chainmail_leggings", + "layer1": "minecraft:trims/items/leggings_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/charcoal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/charcoal.json new file mode 100644 index 000000000..d50222351 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/charcoal.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/charcoal" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_boat.json new file mode 100644 index 000000000..dae18f875 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cherry_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_button.json new file mode 100644 index 000000000..bec3bdc69 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_button.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cherry_button_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_chest_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_chest_boat.json new file mode 100644 index 000000000..3be1e98f8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cherry_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_door.json new file mode 100644 index 000000000..bd650f606 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cherry_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_fence.json new file mode 100644 index 000000000..ffe1fb32f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_fence.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cherry_fence_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_fence_gate.json new file mode 100644 index 000000000..b4137071d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_fence_gate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cherry_fence_gate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_hanging_sign.json new file mode 100644 index 000000000..0d513d12b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cherry_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_leaves.json new file mode 100644 index 000000000..0b0683e9a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_leaves.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cherry_leaves" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_log.json new file mode 100644 index 000000000..7aceccbdf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_log.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cherry_log" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_planks.json new file mode 100644 index 000000000..d4f8dfeff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_planks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cherry_planks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_pressure_plate.json new file mode 100644 index 000000000..b207b042a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_pressure_plate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cherry_pressure_plate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_sapling.json new file mode 100644 index 000000000..44470b530 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/cherry_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_sign.json new file mode 100644 index 000000000..e82a317d1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cherry_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_slab.json new file mode 100644 index 000000000..507749105 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cherry_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_stairs.json new file mode 100644 index 000000000..df08ac739 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cherry_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_trapdoor.json new file mode 100644 index 000000000..19daaafae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cherry_trapdoor_bottom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_wood.json new file mode 100644 index 000000000..71e59d450 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cherry_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cherry_wood" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chest.json new file mode 100644 index 000000000..fb1b4c691 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chest.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_chest", + "textures": { + "particle": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chest_minecart.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chest_minecart.json new file mode 100644 index 000000000..bacac30e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chest_minecart.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chest_minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chicken.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chicken.json new file mode 100644 index 000000000..661e00acf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chicken.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chicken" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chicken_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chicken_spawn_egg.json new file mode 100644 index 000000000..bd2b54fd4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chicken_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chicken_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chipped_anvil.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chipped_anvil.json new file mode 100644 index 000000000..46804e59c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chipped_anvil.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/chipped_anvil" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_bookshelf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_bookshelf.json new file mode 100644 index 000000000..90befea8a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_bookshelf.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/chiseled_bookshelf_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_copper.json new file mode 100644 index 000000000..b88e810ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/chiseled_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_deepslate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_deepslate.json new file mode 100644 index 000000000..811f62f9d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_deepslate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/chiseled_deepslate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_nether_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_nether_bricks.json new file mode 100644 index 000000000..fb134fe3d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_nether_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/chiseled_nether_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_polished_blackstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_polished_blackstone.json new file mode 100644 index 000000000..a26153457 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_polished_blackstone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/chiseled_polished_blackstone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_quartz_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_quartz_block.json new file mode 100644 index 000000000..f8b206168 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_quartz_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/chiseled_quartz_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_red_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_red_sandstone.json new file mode 100644 index 000000000..e3ded796d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_red_sandstone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/chiseled_red_sandstone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_sandstone.json new file mode 100644 index 000000000..f62617250 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_sandstone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/chiseled_sandstone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_stone_bricks.json new file mode 100644 index 000000000..ac7e5e66f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_stone_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/chiseled_stone_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_tuff.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_tuff.json new file mode 100644 index 000000000..845bc289b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_tuff.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/chiseled_tuff" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_tuff_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_tuff_bricks.json new file mode 100644 index 000000000..6bea9351d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chiseled_tuff_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/chiseled_tuff_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chorus_flower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chorus_flower.json new file mode 100644 index 000000000..dc807298f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chorus_flower.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/chorus_flower" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chorus_fruit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chorus_fruit.json new file mode 100644 index 000000000..8c84c4f33 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chorus_fruit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/chorus_fruit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chorus_plant.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chorus_plant.json new file mode 100644 index 000000000..b0741a699 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/chorus_plant.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/chorus_plant" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clay.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clay.json new file mode 100644 index 000000000..2510d78a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clay.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/clay" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clay_ball.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clay_ball.json new file mode 100644 index 000000000..1cfb12b5f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clay_ball.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clay_ball" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock.json new file mode 100644 index 000000000..407b8aa72 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock.json @@ -0,0 +1,73 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/clock_00" + }, + "overrides": [ + { "predicate": { "time": 0.0000000 }, "model": "item/clock" }, + { "predicate": { "time": 0.0078125 }, "model": "item/clock_01" }, + { "predicate": { "time": 0.0234375 }, "model": "item/clock_02" }, + { "predicate": { "time": 0.0390625 }, "model": "item/clock_03" }, + { "predicate": { "time": 0.0546875 }, "model": "item/clock_04" }, + { "predicate": { "time": 0.0703125 }, "model": "item/clock_05" }, + { "predicate": { "time": 0.0859375 }, "model": "item/clock_06" }, + { "predicate": { "time": 0.1015625 }, "model": "item/clock_07" }, + { "predicate": { "time": 0.1171875 }, "model": "item/clock_08" }, + { "predicate": { "time": 0.1328125 }, "model": "item/clock_09" }, + { "predicate": { "time": 0.1484375 }, "model": "item/clock_10" }, + { "predicate": { "time": 0.1640625 }, "model": "item/clock_11" }, + { "predicate": { "time": 0.1796875 }, "model": "item/clock_12" }, + { "predicate": { "time": 0.1953125 }, "model": "item/clock_13" }, + { "predicate": { "time": 0.2109375 }, "model": "item/clock_14" }, + { "predicate": { "time": 0.2265625 }, "model": "item/clock_15" }, + { "predicate": { "time": 0.2421875 }, "model": "item/clock_16" }, + { "predicate": { "time": 0.2578125 }, "model": "item/clock_17" }, + { "predicate": { "time": 0.2734375 }, "model": "item/clock_18" }, + { "predicate": { "time": 0.2890625 }, "model": "item/clock_19" }, + { "predicate": { "time": 0.3046875 }, "model": "item/clock_20" }, + { "predicate": { "time": 0.3203125 }, "model": "item/clock_21" }, + { "predicate": { "time": 0.3359375 }, "model": "item/clock_22" }, + { "predicate": { "time": 0.3515625 }, "model": "item/clock_23" }, + { "predicate": { "time": 0.3671875 }, "model": "item/clock_24" }, + { "predicate": { "time": 0.3828125 }, "model": "item/clock_25" }, + { "predicate": { "time": 0.3984375 }, "model": "item/clock_26" }, + { "predicate": { "time": 0.4140625 }, "model": "item/clock_27" }, + { "predicate": { "time": 0.4296875 }, "model": "item/clock_28" }, + { "predicate": { "time": 0.4453125 }, "model": "item/clock_29" }, + { "predicate": { "time": 0.4609375 }, "model": "item/clock_30" }, + { "predicate": { "time": 0.4765625 }, "model": "item/clock_31" }, + { "predicate": { "time": 0.4921875 }, "model": "item/clock_32" }, + { "predicate": { "time": 0.5078125 }, "model": "item/clock_33" }, + { "predicate": { "time": 0.5234375 }, "model": "item/clock_34" }, + { "predicate": { "time": 0.5390625 }, "model": "item/clock_35" }, + { "predicate": { "time": 0.5546875 }, "model": "item/clock_36" }, + { "predicate": { "time": 0.5703125 }, "model": "item/clock_37" }, + { "predicate": { "time": 0.5859375 }, "model": "item/clock_38" }, + { "predicate": { "time": 0.6015625 }, "model": "item/clock_39" }, + { "predicate": { "time": 0.6171875 }, "model": "item/clock_40" }, + { "predicate": { "time": 0.6328125 }, "model": "item/clock_41" }, + { "predicate": { "time": 0.6484375 }, "model": "item/clock_42" }, + { "predicate": { "time": 0.6640625 }, "model": "item/clock_43" }, + { "predicate": { "time": 0.6796875 }, "model": "item/clock_44" }, + { "predicate": { "time": 0.6953125 }, "model": "item/clock_45" }, + { "predicate": { "time": 0.7109375 }, "model": "item/clock_46" }, + { "predicate": { "time": 0.7265625 }, "model": "item/clock_47" }, + { "predicate": { "time": 0.7421875 }, "model": "item/clock_48" }, + { "predicate": { "time": 0.7578125 }, "model": "item/clock_49" }, + { "predicate": { "time": 0.7734375 }, "model": "item/clock_50" }, + { "predicate": { "time": 0.7890625 }, "model": "item/clock_51" }, + { "predicate": { "time": 0.8046875 }, "model": "item/clock_52" }, + { "predicate": { "time": 0.8203125 }, "model": "item/clock_53" }, + { "predicate": { "time": 0.8359375 }, "model": "item/clock_54" }, + { "predicate": { "time": 0.8515625 }, "model": "item/clock_55" }, + { "predicate": { "time": 0.8671875 }, "model": "item/clock_56" }, + { "predicate": { "time": 0.8828125 }, "model": "item/clock_57" }, + { "predicate": { "time": 0.8984375 }, "model": "item/clock_58" }, + { "predicate": { "time": 0.9140625 }, "model": "item/clock_59" }, + { "predicate": { "time": 0.9296875 }, "model": "item/clock_60" }, + { "predicate": { "time": 0.9453125 }, "model": "item/clock_61" }, + { "predicate": { "time": 0.9609375 }, "model": "item/clock_62" }, + { "predicate": { "time": 0.9765625 }, "model": "item/clock_63" }, + { "predicate": { "time": 0.9921875 }, "model": "item/clock" } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_00.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_00.json new file mode 100644 index 000000000..e8dfc6093 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_00.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_00" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_01.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_01.json new file mode 100644 index 000000000..fc6b62936 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_01.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_01" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_02.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_02.json new file mode 100644 index 000000000..329f07c4b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_02.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_02" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_03.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_03.json new file mode 100644 index 000000000..2f727967d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_03.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_03" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_04.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_04.json new file mode 100644 index 000000000..a29f62930 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_04.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_04" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_05.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_05.json new file mode 100644 index 000000000..c054a610d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_05.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_05" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_06.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_06.json new file mode 100644 index 000000000..45d346d6a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_06.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_06" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_07.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_07.json new file mode 100644 index 000000000..6e218b17e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_07.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_07" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_08.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_08.json new file mode 100644 index 000000000..5bacb1d17 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_08.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_08" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_09.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_09.json new file mode 100644 index 000000000..af1b9d9eb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_09.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_09" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_10.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_10.json new file mode 100644 index 000000000..f4c66214e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_10.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_10" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_11.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_11.json new file mode 100644 index 000000000..9ddde2ece --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_11.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_11" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_12.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_12.json new file mode 100644 index 000000000..42cdfdde0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_12.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_12" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_13.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_13.json new file mode 100644 index 000000000..a81db14bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_13.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_13" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_14.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_14.json new file mode 100644 index 000000000..5eb2e365f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_14.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_14" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_15.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_15.json new file mode 100644 index 000000000..34b71c539 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_15.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_15" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_16.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_16.json new file mode 100644 index 000000000..6ad0e2c4c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_16.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_16" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_17.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_17.json new file mode 100644 index 000000000..ce4688087 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_17.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_17" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_18.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_18.json new file mode 100644 index 000000000..ecda55f2b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_18.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_18" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_19.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_19.json new file mode 100644 index 000000000..750bf76e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_19.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_19" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_20.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_20.json new file mode 100644 index 000000000..aa1136d58 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_20.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_20" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_21.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_21.json new file mode 100644 index 000000000..aabcd1303 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_21.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_21" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_22.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_22.json new file mode 100644 index 000000000..0c9cfe8ea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_22.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_22" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_23.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_23.json new file mode 100644 index 000000000..18752a4ce --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_23.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_23" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_24.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_24.json new file mode 100644 index 000000000..7e875df9a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_24.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_24" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_25.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_25.json new file mode 100644 index 000000000..4c939e6a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_25.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_25" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_26.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_26.json new file mode 100644 index 000000000..8039bdef0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_26.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_26" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_27.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_27.json new file mode 100644 index 000000000..76fd7d6e5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_27.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_27" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_28.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_28.json new file mode 100644 index 000000000..ef5c699b6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_28.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_28" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_29.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_29.json new file mode 100644 index 000000000..f95d697fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_29.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_29" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_30.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_30.json new file mode 100644 index 000000000..328a5161e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_30.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_30" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_31.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_31.json new file mode 100644 index 000000000..28b91d101 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_31.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_31" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_32.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_32.json new file mode 100644 index 000000000..c6d18099b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_32.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_32" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_33.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_33.json new file mode 100644 index 000000000..c5a1932f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_33.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_33" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_34.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_34.json new file mode 100644 index 000000000..584f10d3e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_34.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_34" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_35.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_35.json new file mode 100644 index 000000000..aad78040a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_35.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_35" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_36.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_36.json new file mode 100644 index 000000000..d1a8c92bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_36.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_36" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_37.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_37.json new file mode 100644 index 000000000..ef30c8237 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_37.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_37" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_38.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_38.json new file mode 100644 index 000000000..243825acf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_38.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_38" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_39.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_39.json new file mode 100644 index 000000000..59de1c0a9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_39.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_39" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_40.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_40.json new file mode 100644 index 000000000..1c629d8f0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_40.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_40" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_41.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_41.json new file mode 100644 index 000000000..646d162e0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_41.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_41" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_42.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_42.json new file mode 100644 index 000000000..8f3f38d11 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_42.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_42" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_43.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_43.json new file mode 100644 index 000000000..4930ee49d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_43.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_43" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_44.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_44.json new file mode 100644 index 000000000..e98964dad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_44.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_44" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_45.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_45.json new file mode 100644 index 000000000..dd8a50ea7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_45.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_45" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_46.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_46.json new file mode 100644 index 000000000..7bc0f9beb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_46.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_46" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_47.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_47.json new file mode 100644 index 000000000..97835facd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_47.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_47" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_48.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_48.json new file mode 100644 index 000000000..617408133 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_48.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_48" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_49.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_49.json new file mode 100644 index 000000000..3c6067e62 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_49.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_49" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_50.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_50.json new file mode 100644 index 000000000..3e30e1d8b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_50.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_50" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_51.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_51.json new file mode 100644 index 000000000..45af5151e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_51.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_51" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_52.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_52.json new file mode 100644 index 000000000..9a28ead08 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_52.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_52" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_53.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_53.json new file mode 100644 index 000000000..85176573d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_53.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_53" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_54.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_54.json new file mode 100644 index 000000000..096b67a56 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_54.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_54" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_55.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_55.json new file mode 100644 index 000000000..730b22c00 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_55.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_55" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_56.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_56.json new file mode 100644 index 000000000..ad087180d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_56.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_56" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_57.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_57.json new file mode 100644 index 000000000..47711b17c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_57.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_57" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_58.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_58.json new file mode 100644 index 000000000..420370eae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_58.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_58" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_59.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_59.json new file mode 100644 index 000000000..d8ca2ed35 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_59.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_59" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_60.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_60.json new file mode 100644 index 000000000..2b50d056d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_60.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_60" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_61.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_61.json new file mode 100644 index 000000000..c0cba9653 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_61.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_61" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_62.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_62.json new file mode 100644 index 000000000..cb92524ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_62.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_62" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_63.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_63.json new file mode 100644 index 000000000..db6691c95 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/clock_63.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/clock_63" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/closed_eyeblossom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/closed_eyeblossom.json new file mode 100644 index 000000000..a75232fd7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/closed_eyeblossom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/closed_eyeblossom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/coal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/coal.json new file mode 100644 index 000000000..551d462ed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/coal.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/coal" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/coal_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/coal_block.json new file mode 100644 index 000000000..ee2426737 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/coal_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/coal_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/coal_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/coal_ore.json new file mode 100644 index 000000000..d6971d353 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/coal_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/coal_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/coarse_dirt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/coarse_dirt.json new file mode 100644 index 000000000..797b7cc79 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/coarse_dirt.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/coarse_dirt" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/coast_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/coast_armor_trim_smithing_template.json new file mode 100644 index 000000000..598b27c88 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/coast_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/coast_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobbled_deepslate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobbled_deepslate.json new file mode 100644 index 000000000..aceda4d8d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobbled_deepslate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cobbled_deepslate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobbled_deepslate_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobbled_deepslate_slab.json new file mode 100644 index 000000000..a4ea4d2d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobbled_deepslate_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cobbled_deepslate_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobbled_deepslate_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobbled_deepslate_stairs.json new file mode 100644 index 000000000..054c8e6cc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobbled_deepslate_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cobbled_deepslate_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobbled_deepslate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobbled_deepslate_wall.json new file mode 100644 index 000000000..25b446455 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobbled_deepslate_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cobbled_deepslate_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobblestone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobblestone.json new file mode 100644 index 000000000..35e828df6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobblestone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cobblestone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobblestone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobblestone_slab.json new file mode 100644 index 000000000..701123f08 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobblestone_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cobblestone_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobblestone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobblestone_stairs.json new file mode 100644 index 000000000..48910bcc5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobblestone_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cobblestone_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobblestone_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobblestone_wall.json new file mode 100644 index 000000000..5c603a85e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobblestone_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cobblestone_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobweb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobweb.json new file mode 100644 index 000000000..64ebc0bd1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cobweb.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/cobweb" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cocoa_beans.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cocoa_beans.json new file mode 100644 index 000000000..cb83b5d4d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cocoa_beans.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cocoa_beans" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cod.json new file mode 100644 index 000000000..a36ba0c8e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cod.json @@ -0,0 +1,13 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/cod" + }, + "display": { + "head": { + "rotation": [ 0, 90, -60 ], + "translation": [ -7, -4, -7], + "scale":[ 0.8, 0.8, 0.8] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cod_bucket.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cod_bucket.json new file mode 100644 index 000000000..35c4ca0f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cod_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cod_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cod_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cod_spawn_egg.json new file mode 100644 index 000000000..f77e73aa1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cod_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cod_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/command_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/command_block.json new file mode 100644 index 000000000..43605276d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/command_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/command_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/command_block_minecart.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/command_block_minecart.json new file mode 100644 index 000000000..7a3cf69b6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/command_block_minecart.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/command_block_minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/comparator.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/comparator.json new file mode 100644 index 000000000..6aa4fbe2d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/comparator.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/comparator" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass.json new file mode 100644 index 000000000..ec66bb16d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass.json @@ -0,0 +1,41 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/compass_16" + }, + "overrides": [ + { "predicate": { "angle": 0.000000 }, "model": "item/compass" }, + { "predicate": { "angle": 0.015625 }, "model": "item/compass_17" }, + { "predicate": { "angle": 0.046875 }, "model": "item/compass_18" }, + { "predicate": { "angle": 0.078125 }, "model": "item/compass_19" }, + { "predicate": { "angle": 0.109375 }, "model": "item/compass_20" }, + { "predicate": { "angle": 0.140625 }, "model": "item/compass_21" }, + { "predicate": { "angle": 0.171875 }, "model": "item/compass_22" }, + { "predicate": { "angle": 0.203125 }, "model": "item/compass_23" }, + { "predicate": { "angle": 0.234375 }, "model": "item/compass_24" }, + { "predicate": { "angle": 0.265625 }, "model": "item/compass_25" }, + { "predicate": { "angle": 0.296875 }, "model": "item/compass_26" }, + { "predicate": { "angle": 0.328125 }, "model": "item/compass_27" }, + { "predicate": { "angle": 0.359375 }, "model": "item/compass_28" }, + { "predicate": { "angle": 0.390625 }, "model": "item/compass_29" }, + { "predicate": { "angle": 0.421875 }, "model": "item/compass_30" }, + { "predicate": { "angle": 0.453125 }, "model": "item/compass_31" }, + { "predicate": { "angle": 0.484375 }, "model": "item/compass_00" }, + { "predicate": { "angle": 0.515625 }, "model": "item/compass_01" }, + { "predicate": { "angle": 0.546875 }, "model": "item/compass_02" }, + { "predicate": { "angle": 0.578125 }, "model": "item/compass_03" }, + { "predicate": { "angle": 0.609375 }, "model": "item/compass_04" }, + { "predicate": { "angle": 0.640625 }, "model": "item/compass_05" }, + { "predicate": { "angle": 0.671875 }, "model": "item/compass_06" }, + { "predicate": { "angle": 0.703125 }, "model": "item/compass_07" }, + { "predicate": { "angle": 0.734375 }, "model": "item/compass_08" }, + { "predicate": { "angle": 0.765625 }, "model": "item/compass_09" }, + { "predicate": { "angle": 0.796875 }, "model": "item/compass_10" }, + { "predicate": { "angle": 0.828125 }, "model": "item/compass_11" }, + { "predicate": { "angle": 0.859375 }, "model": "item/compass_12" }, + { "predicate": { "angle": 0.890625 }, "model": "item/compass_13" }, + { "predicate": { "angle": 0.921875 }, "model": "item/compass_14" }, + { "predicate": { "angle": 0.953125 }, "model": "item/compass_15" }, + { "predicate": { "angle": 0.984375 }, "model": "item/compass" } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_00.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_00.json new file mode 100644 index 000000000..dc856843d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_00.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_00" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_01.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_01.json new file mode 100644 index 000000000..75d4178dc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_01.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_01" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_02.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_02.json new file mode 100644 index 000000000..b91b4ba83 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_02.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_02" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_03.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_03.json new file mode 100644 index 000000000..10bf34a65 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_03.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_03" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_04.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_04.json new file mode 100644 index 000000000..cf2e7eb7a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_04.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_04" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_05.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_05.json new file mode 100644 index 000000000..e78ede9ca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_05.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_05" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_06.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_06.json new file mode 100644 index 000000000..3679f2293 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_06.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_06" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_07.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_07.json new file mode 100644 index 000000000..37c1d3102 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_07.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_07" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_08.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_08.json new file mode 100644 index 000000000..706d7fb84 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_08.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_08" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_09.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_09.json new file mode 100644 index 000000000..1a0dd1a36 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_09.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_09" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_10.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_10.json new file mode 100644 index 000000000..965ec5602 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_10.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_10" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_11.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_11.json new file mode 100644 index 000000000..dde2e5592 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_11.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_11" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_12.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_12.json new file mode 100644 index 000000000..ffe3aa7dc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_12.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_12" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_13.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_13.json new file mode 100644 index 000000000..985d2d38b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_13.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_13" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_14.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_14.json new file mode 100644 index 000000000..27fc108b4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_14.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_14" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_15.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_15.json new file mode 100644 index 000000000..0b72926ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_15.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_15" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_16.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_16.json new file mode 100644 index 000000000..19788d5e9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_16.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_16" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_17.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_17.json new file mode 100644 index 000000000..ddcb506f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_17.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_17" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_18.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_18.json new file mode 100644 index 000000000..5f47bcdbe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_18.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_18" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_19.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_19.json new file mode 100644 index 000000000..256894713 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_19.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_19" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_20.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_20.json new file mode 100644 index 000000000..26b95b334 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_20.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_20" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_21.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_21.json new file mode 100644 index 000000000..0948b81aa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_21.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_21" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_22.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_22.json new file mode 100644 index 000000000..a594efd24 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_22.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_22" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_23.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_23.json new file mode 100644 index 000000000..8e7b9c002 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_23.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_23" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_24.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_24.json new file mode 100644 index 000000000..b9bba9033 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_24.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_24" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_25.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_25.json new file mode 100644 index 000000000..b896c210c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_25.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_25" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_26.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_26.json new file mode 100644 index 000000000..8c6c7aac3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_26.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_26" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_27.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_27.json new file mode 100644 index 000000000..f5e26c56e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_27.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_27" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_28.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_28.json new file mode 100644 index 000000000..7a766cfd2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_28.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_28" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_29.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_29.json new file mode 100644 index 000000000..990c9054f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_29.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_29" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_30.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_30.json new file mode 100644 index 000000000..725443ad2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_30.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_30" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_31.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_31.json new file mode 100644 index 000000000..bbbd539fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/compass_31.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/compass_31" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/composter.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/composter.json new file mode 100644 index 000000000..a8a9be3b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/composter.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/composter" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/conduit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/conduit.json new file mode 100644 index 000000000..c8efa7857 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/conduit.json @@ -0,0 +1,37 @@ +{ + "textures": { + "particle": "block/conduit" + }, + "display": { + "gui": { + "rotation": [ 30, 45, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 1.0, 1.0, 1.0 ] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 3, 0], + "scale":[ 0.5, 0.5, 0.5 ] + }, + "head": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 1, 1, 1] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 1, 1, 1 ] + }, + "thirdperson_righthand": { + "rotation": [ 75, 315, 0 ], + "translation": [ 0, 2.5, 0], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 315, 0 ], + "translation": [ 0, 0, 0], + "scale": [ 0.8, 0.8, 0.8 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_beef.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_beef.json new file mode 100644 index 000000000..2360514a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_beef.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cooked_beef" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_chicken.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_chicken.json new file mode 100644 index 000000000..6608b49c2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_chicken.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cooked_chicken" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_cod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_cod.json new file mode 100644 index 000000000..ed4d23924 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_cod.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cooked_cod" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_mutton.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_mutton.json new file mode 100644 index 000000000..41455e0e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_mutton.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cooked_mutton" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_porkchop.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_porkchop.json new file mode 100644 index 000000000..85a6bb4f0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_porkchop.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cooked_porkchop" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_rabbit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_rabbit.json new file mode 100644 index 000000000..7217b8a86 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_rabbit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cooked_rabbit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_salmon.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_salmon.json new file mode 100644 index 000000000..d4be30a79 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cooked_salmon.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cooked_salmon" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cookie.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cookie.json new file mode 100644 index 000000000..c1addfd8f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cookie.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cookie" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_axe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_axe.json new file mode 100644 index 000000000..b43ad830f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_axe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/copper_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_bars.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_bars.json new file mode 100644 index 000000000..a6f66e846 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_bars.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_block.json new file mode 100644 index 000000000..7bc2c0184 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/copper_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots.json new file mode 100644 index 000000000..a19f66926 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_boots" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_amethyst_trim.json new file mode 100644 index 000000000..4ae18613d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_boots", + "layer1": "minecraft:trims/items/boots_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_copper_trim.json new file mode 100644 index 000000000..eab991be5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_boots", + "layer1": "minecraft:trims/items/boots_trim_copper_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_diamond_trim.json new file mode 100644 index 000000000..78ad9b4aa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_boots", + "layer1": "minecraft:trims/items/boots_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_emerald_trim.json new file mode 100644 index 000000000..7d37b4fc9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_boots", + "layer1": "minecraft:trims/items/boots_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_gold_trim.json new file mode 100644 index 000000000..22e75eee7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_boots", + "layer1": "minecraft:trims/items/boots_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_iron_trim.json new file mode 100644 index 000000000..469b29194 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_boots", + "layer1": "minecraft:trims/items/boots_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_lapis_trim.json new file mode 100644 index 000000000..49f075252 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_boots", + "layer1": "minecraft:trims/items/boots_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_netherite_trim.json new file mode 100644 index 000000000..0bdf4afb3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_boots", + "layer1": "minecraft:trims/items/boots_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_quartz_trim.json new file mode 100644 index 000000000..23608587f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_boots", + "layer1": "minecraft:trims/items/boots_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_redstone_trim.json new file mode 100644 index 000000000..fdad8d7e7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_boots", + "layer1": "minecraft:trims/items/boots_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_resin_trim.json new file mode 100644 index 000000000..cfd7d94ec --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_boots_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_boots", + "layer1": "minecraft:trims/items/boots_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_bulb.json new file mode 100644 index 000000000..bdf2e1755 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_bulb.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/copper_bulb" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chain.json new file mode 100644 index 000000000..33be837da --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chain.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_chain" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chest.json new file mode 100644 index 000000000..1dff673e9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chest.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_chest", + "textures": { + "particle": "minecraft:block/copper_block" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate.json new file mode 100644 index 000000000..a4325b9d9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_chestplate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_amethyst_trim.json new file mode 100644 index 000000000..e89fdba7a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_copper_trim.json new file mode 100644 index 000000000..594b3e6b8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_copper_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_diamond_trim.json new file mode 100644 index 000000000..821d09a99 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_emerald_trim.json new file mode 100644 index 000000000..9e6105e69 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_gold_trim.json new file mode 100644 index 000000000..7066be379 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_iron_trim.json new file mode 100644 index 000000000..21e1712d0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_lapis_trim.json new file mode 100644 index 000000000..9e8da9a2b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_netherite_trim.json new file mode 100644 index 000000000..bce779280 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_quartz_trim.json new file mode 100644 index 000000000..f8ef0b075 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_redstone_trim.json new file mode 100644 index 000000000..dab53441b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_resin_trim.json new file mode 100644 index 000000000..466a7e848 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_chestplate_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_door.json new file mode 100644 index 000000000..88468c6b4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_golem_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_golem_spawn_egg.json new file mode 100644 index 000000000..7b64326f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_golem_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_golem_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_grate.json new file mode 100644 index 000000000..f4cff5139 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_grate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/copper_grate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet.json new file mode 100644 index 000000000..cee5f82cd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_helmet" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_amethyst_trim.json new file mode 100644 index 000000000..3a35eae64 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_helmet", + "layer1": "minecraft:trims/items/helmet_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_copper_trim.json new file mode 100644 index 000000000..de7560b31 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_helmet", + "layer1": "minecraft:trims/items/helmet_trim_copper_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_diamond_trim.json new file mode 100644 index 000000000..6d3784143 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_helmet", + "layer1": "minecraft:trims/items/helmet_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_emerald_trim.json new file mode 100644 index 000000000..4b6868e58 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_helmet", + "layer1": "minecraft:trims/items/helmet_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_gold_trim.json new file mode 100644 index 000000000..fda330a88 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_helmet", + "layer1": "minecraft:trims/items/helmet_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_iron_trim.json new file mode 100644 index 000000000..d888e7fc4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_helmet", + "layer1": "minecraft:trims/items/helmet_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_lapis_trim.json new file mode 100644 index 000000000..b067a7748 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_helmet", + "layer1": "minecraft:trims/items/helmet_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_netherite_trim.json new file mode 100644 index 000000000..ca725127c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_helmet", + "layer1": "minecraft:trims/items/helmet_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_quartz_trim.json new file mode 100644 index 000000000..3720df050 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_helmet", + "layer1": "minecraft:trims/items/helmet_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_redstone_trim.json new file mode 100644 index 000000000..7a2bf217c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_helmet", + "layer1": "minecraft:trims/items/helmet_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_resin_trim.json new file mode 100644 index 000000000..0440d69d3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_helmet_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_helmet", + "layer1": "minecraft:trims/items/helmet_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_hoe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_hoe.json new file mode 100644 index 000000000..800dc59f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_hoe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/copper_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_horse_armor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_horse_armor.json new file mode 100644 index 000000000..8db433d0c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_horse_armor.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_horse_armor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_ingot.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_ingot.json new file mode 100644 index 000000000..c8feae647 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_ingot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_ingot" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_lantern.json new file mode 100644 index 000000000..7f9766dc0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings.json new file mode 100644 index 000000000..e11cb1d80 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_leggings" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_amethyst_trim.json new file mode 100644 index 000000000..5e3d5d267 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_leggings", + "layer1": "minecraft:trims/items/leggings_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_copper_trim.json new file mode 100644 index 000000000..70df34ac2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_leggings", + "layer1": "minecraft:trims/items/leggings_trim_copper_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_diamond_trim.json new file mode 100644 index 000000000..03bb5a704 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_leggings", + "layer1": "minecraft:trims/items/leggings_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_emerald_trim.json new file mode 100644 index 000000000..5b7da264b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_leggings", + "layer1": "minecraft:trims/items/leggings_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_gold_trim.json new file mode 100644 index 000000000..9ffa530d5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_leggings", + "layer1": "minecraft:trims/items/leggings_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_iron_trim.json new file mode 100644 index 000000000..fd53be593 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_leggings", + "layer1": "minecraft:trims/items/leggings_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_lapis_trim.json new file mode 100644 index 000000000..afcbe03f9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_leggings", + "layer1": "minecraft:trims/items/leggings_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_netherite_trim.json new file mode 100644 index 000000000..90f54f2fd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_leggings", + "layer1": "minecraft:trims/items/leggings_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_quartz_trim.json new file mode 100644 index 000000000..79f2b89d2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_leggings", + "layer1": "minecraft:trims/items/leggings_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_redstone_trim.json new file mode 100644 index 000000000..f0837eba6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_leggings", + "layer1": "minecraft:trims/items/leggings_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_resin_trim.json new file mode 100644 index 000000000..fe7af37fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_leggings_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_leggings", + "layer1": "minecraft:trims/items/leggings_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_nugget.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_nugget.json new file mode 100644 index 000000000..b00f496bc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_nugget.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/copper_nugget" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_ore.json new file mode 100644 index 000000000..773d45934 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/copper_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_pickaxe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_pickaxe.json new file mode 100644 index 000000000..4d2d504b6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_pickaxe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/copper_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_shovel.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_shovel.json new file mode 100644 index 000000000..d374c6852 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_shovel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/copper_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_sword.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_sword.json new file mode 100644 index 000000000..7a2464f8d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_sword.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/copper_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_torch.json new file mode 100644 index 000000000..d9590e278 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/copper_torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_trapdoor.json new file mode 100644 index 000000000..77db2f8d3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/copper_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/copper_trapdoor_bottom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cornflower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cornflower.json new file mode 100644 index 000000000..ca317c8b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cornflower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/cornflower" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cow_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cow_spawn_egg.json new file mode 100644 index 000000000..dff99686c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cow_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cow_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cracked_deepslate_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cracked_deepslate_bricks.json new file mode 100644 index 000000000..5edc2399b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cracked_deepslate_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cracked_deepslate_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cracked_deepslate_tiles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cracked_deepslate_tiles.json new file mode 100644 index 000000000..9fc7a8c02 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cracked_deepslate_tiles.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cracked_deepslate_tiles" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cracked_nether_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cracked_nether_bricks.json new file mode 100644 index 000000000..09da8a18a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cracked_nether_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cracked_nether_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cracked_polished_blackstone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cracked_polished_blackstone_bricks.json new file mode 100644 index 000000000..87b9f26e6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cracked_polished_blackstone_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cracked_polished_blackstone_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cracked_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cracked_stone_bricks.json new file mode 100644 index 000000000..46802074e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cracked_stone_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cracked_stone_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crafter.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crafter.json new file mode 100644 index 000000000..65fda3009 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crafter.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/crafter" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crafting_table.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crafting_table.json new file mode 100644 index 000000000..323e84b6e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crafting_table.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/crafting_table" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/creaking_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/creaking_spawn_egg.json new file mode 100644 index 000000000..7f7e2f933 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/creaking_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/creaking_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/creeper_banner_pattern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/creeper_banner_pattern.json new file mode 100644 index 000000000..d626b7310 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/creeper_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/creeper_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/creeper_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/creeper_head.json new file mode 100644 index 000000000..364b6e65f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/creeper_head.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_skull" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/creeper_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/creeper_spawn_egg.json new file mode 100644 index 000000000..226a73e77 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/creeper_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/creeper_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_button.json new file mode 100644 index 000000000..f58c71fc6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_button.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/crimson_button_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_door.json new file mode 100644 index 000000000..ef94c1cc8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/crimson_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_fence.json new file mode 100644 index 000000000..3bdd71d1d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_fence.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/crimson_fence_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_fence_gate.json new file mode 100644 index 000000000..36ef1c8ca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_fence_gate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/crimson_fence_gate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_fungus.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_fungus.json new file mode 100644 index 000000000..6fdfd2fa2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_fungus.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/crimson_fungus" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_hanging_sign.json new file mode 100644 index 000000000..47d3729d9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/crimson_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_hyphae.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_hyphae.json new file mode 100644 index 000000000..6efe46101 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_hyphae.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/crimson_hyphae" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_nylium.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_nylium.json new file mode 100644 index 000000000..74f939241 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_nylium.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/crimson_nylium" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_planks.json new file mode 100644 index 000000000..759128e13 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_planks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/crimson_planks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_pressure_plate.json new file mode 100644 index 000000000..436b0ba9a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_pressure_plate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/crimson_pressure_plate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_roots.json new file mode 100644 index 000000000..19ea0092c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_roots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/crimson_roots" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_sign.json new file mode 100644 index 000000000..3d2a86b74 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/crimson_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_slab.json new file mode 100644 index 000000000..63ad29274 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/crimson_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_stairs.json new file mode 100644 index 000000000..9cefb2d27 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/crimson_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_stem.json new file mode 100644 index 000000000..56d2001dc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_stem.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/crimson_stem" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_trapdoor.json new file mode 100644 index 000000000..b1cba031f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crimson_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/crimson_trapdoor_bottom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow.json new file mode 100644 index 000000000..173cac0f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow.json @@ -0,0 +1,28 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/crossbow_standby" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ -90, 0, -60 ], + "translation": [ 2, 0.1, -3 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "thirdperson_lefthand": { + "rotation": [ -90, 0, 30 ], + "translation": [ 2, 0.1, -3 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "firstperson_righthand": { + "rotation": [ -90, 0, -55 ], + "translation": [ 1.13, 3.2, 1.13], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "firstperson_lefthand": { + "rotation": [ -90, 0, 35 ], + "translation": [ 1.13, 3.2, 1.13], + "scale": [ 0.68, 0.68, 0.68 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow_arrow.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow_arrow.json new file mode 100644 index 000000000..5d324f9ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow_arrow.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/crossbow", + "textures": { + "layer0": "minecraft:item/crossbow_arrow" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow_firework.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow_firework.json new file mode 100644 index 000000000..577cfeac5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow_firework.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/crossbow", + "textures": { + "layer0": "minecraft:item/crossbow_firework" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow_pulling_0.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow_pulling_0.json new file mode 100644 index 000000000..1eca0652e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow_pulling_0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/crossbow", + "textures": { + "layer0": "minecraft:item/crossbow_pulling_0" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow_pulling_1.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow_pulling_1.json new file mode 100644 index 000000000..d704c814a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow_pulling_1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/crossbow", + "textures": { + "layer0": "minecraft:item/crossbow_pulling_1" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow_pulling_2.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow_pulling_2.json new file mode 100644 index 000000000..aa95a9440 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crossbow_pulling_2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/crossbow", + "textures": { + "layer0": "minecraft:item/crossbow_pulling_2" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crying_obsidian.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crying_obsidian.json new file mode 100644 index 000000000..0d94bfb8e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/crying_obsidian.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/crying_obsidian" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_copper.json new file mode 100644 index 000000000..ce1ec597d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cut_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_copper_slab.json new file mode 100644 index 000000000..b6b05101c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_copper_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cut_copper_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_copper_stairs.json new file mode 100644 index 000000000..7376f52cc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_copper_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cut_copper_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_red_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_red_sandstone.json new file mode 100644 index 000000000..665df158c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_red_sandstone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cut_red_sandstone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_red_sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_red_sandstone_slab.json new file mode 100644 index 000000000..7767595ca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_red_sandstone_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cut_red_sandstone_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_sandstone.json new file mode 100644 index 000000000..865262dc0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_sandstone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cut_sandstone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_sandstone_slab.json new file mode 100644 index 000000000..cccc00353 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cut_sandstone_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cut_sandstone_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_banner.json new file mode 100644 index 000000000..661a106df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_banner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_bed.json new file mode 100644 index 000000000..046fa8118 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/cyan_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_bundle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_bundle.json new file mode 100644 index 000000000..996896862 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cyan_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_bundle_open_back.json new file mode 100644 index 000000000..44e1d54a8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/cyan_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_bundle_open_front.json new file mode 100644 index 000000000..e5e484d88 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/cyan_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_candle.json new file mode 100644 index 000000000..4b565936e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cyan_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_carpet.json new file mode 100644 index 000000000..f67e70625 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cyan_carpet" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_concrete.json new file mode 100644 index 000000000..210de1016 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cyan_concrete" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_concrete_powder.json new file mode 100644 index 000000000..8fe4c5464 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_concrete_powder.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cyan_concrete_powder" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_dye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_dye.json new file mode 100644 index 000000000..634aa6ec1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cyan_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_glazed_terracotta.json new file mode 100644 index 000000000..c98c2ac8e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_glazed_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cyan_glazed_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_harness.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_harness.json new file mode 100644 index 000000000..11c6b9315 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/cyan_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_shulker_box.json new file mode 100644 index 000000000..e06a479cd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/cyan_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_stained_glass.json new file mode 100644 index 000000000..8cdd4b939 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_stained_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cyan_stained_glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_stained_glass_pane.json new file mode 100644 index 000000000..61db9a4d2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/cyan_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_terracotta.json new file mode 100644 index 000000000..4053734c1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cyan_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_wool.json new file mode 100644 index 000000000..30c92e7a3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/cyan_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cyan_wool" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/damaged_anvil.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/damaged_anvil.json new file mode 100644 index 000000000..657cbd68a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/damaged_anvil.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/damaged_anvil" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dandelion.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dandelion.json new file mode 100644 index 000000000..1628250e4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dandelion.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dandelion" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/danger_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/danger_pottery_sherd.json new file mode 100644 index 000000000..136b5d965 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/danger_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/danger_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_boat.json new file mode 100644 index 000000000..66ced7960 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dark_oak_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_button.json new file mode 100644 index 000000000..f2ff59ba9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_button.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dark_oak_button_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_chest_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_chest_boat.json new file mode 100644 index 000000000..bc981607d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dark_oak_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_door.json new file mode 100644 index 000000000..89ad212f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dark_oak_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_fence.json new file mode 100644 index 000000000..c624d9c99 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_fence.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dark_oak_fence_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_fence_gate.json new file mode 100644 index 000000000..25cbe8054 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_fence_gate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dark_oak_fence_gate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_hanging_sign.json new file mode 100644 index 000000000..5d095e988 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dark_oak_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_leaves.json new file mode 100644 index 000000000..395882a7a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_leaves.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dark_oak_leaves" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_log.json new file mode 100644 index 000000000..6304aefb9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_log.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dark_oak_log" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_planks.json new file mode 100644 index 000000000..a3adda1d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_planks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dark_oak_planks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_pressure_plate.json new file mode 100644 index 000000000..7cd16b9d6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_pressure_plate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dark_oak_pressure_plate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_sapling.json new file mode 100644 index 000000000..1a02b3242 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dark_oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_sign.json new file mode 100644 index 000000000..962a237af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dark_oak_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_slab.json new file mode 100644 index 000000000..c66e4e434 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dark_oak_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_stairs.json new file mode 100644 index 000000000..1d7b821bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dark_oak_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_trapdoor.json new file mode 100644 index 000000000..a91f3c8fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dark_oak_trapdoor_bottom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_wood.json new file mode 100644 index 000000000..3a285ba3d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_oak_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dark_oak_wood" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_prismarine.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_prismarine.json new file mode 100644 index 000000000..461468dff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_prismarine.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dark_prismarine" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_prismarine_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_prismarine_slab.json new file mode 100644 index 000000000..a9605d9f8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_prismarine_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dark_prismarine_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_prismarine_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_prismarine_stairs.json new file mode 100644 index 000000000..2a11deadb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dark_prismarine_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dark_prismarine_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/daylight_detector.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/daylight_detector.json new file mode 100644 index 000000000..f52d6d9a8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/daylight_detector.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/daylight_detector" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_brain_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_brain_coral.json new file mode 100644 index 000000000..8e2439122 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_brain_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_brain_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_brain_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_brain_coral_block.json new file mode 100644 index 000000000..3134d2b74 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_brain_coral_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dead_brain_coral_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_brain_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_brain_coral_fan.json new file mode 100644 index 000000000..a6488a838 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_brain_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_brain_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_bubble_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_bubble_coral.json new file mode 100644 index 000000000..7802938b9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_bubble_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_bubble_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_bubble_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_bubble_coral_block.json new file mode 100644 index 000000000..ba3411da6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_bubble_coral_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dead_bubble_coral_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_bubble_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_bubble_coral_fan.json new file mode 100644 index 000000000..e06ea5f95 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_bubble_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_bubble_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_bush.json new file mode 100644 index 000000000..cb8a5f08f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_bush.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_bush" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_fire_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_fire_coral.json new file mode 100644 index 000000000..7795cff34 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_fire_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_fire_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_fire_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_fire_coral_block.json new file mode 100644 index 000000000..f169720a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_fire_coral_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dead_fire_coral_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_fire_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_fire_coral_fan.json new file mode 100644 index 000000000..7d33a6e77 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_fire_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_fire_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_horn_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_horn_coral.json new file mode 100644 index 000000000..8dc414ad3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_horn_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_horn_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_horn_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_horn_coral_block.json new file mode 100644 index 000000000..a7ed136d5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_horn_coral_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dead_horn_coral_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_horn_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_horn_coral_fan.json new file mode 100644 index 000000000..4e2715a9b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_horn_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_horn_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_tube_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_tube_coral.json new file mode 100644 index 000000000..1d08eff69 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_tube_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_tube_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_tube_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_tube_coral_block.json new file mode 100644 index 000000000..a16902f98 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_tube_coral_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dead_tube_coral_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_tube_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_tube_coral_fan.json new file mode 100644 index 000000000..86ad4fd4c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dead_tube_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/dead_tube_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/debug_stick.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/debug_stick.json new file mode 100644 index 000000000..f0dc3b971 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/debug_stick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stick" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/decorated_pot.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/decorated_pot.json new file mode 100644 index 000000000..27f62a4a7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/decorated_pot.json @@ -0,0 +1,38 @@ +{ + "gui_light": "front", + "textures": { + "particle": "entity/decorated_pot/decorated_pot_side" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 2, 0.5], + "scale":[ 0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.375, 0.375, 0.375] + }, + "gui": { + "rotation": [ 30, 45, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.60, 0.60, 0.60] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 1, 0], + "scale":[ 0.25, 0.25, 0.25] + }, + "head": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 16, 0], + "scale":[ 1.5, 1.5, 1.5 ] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.5, 0.5, 0.5] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate.json new file mode 100644 index 000000000..13980a844 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_brick_slab.json new file mode 100644 index 000000000..7e35175de --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_brick_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate_brick_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_brick_stairs.json new file mode 100644 index 000000000..38c5e3f96 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate_brick_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_brick_wall.json new file mode 100644 index 000000000..d13b4d425 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_brick_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate_brick_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_bricks.json new file mode 100644 index 000000000..5c1525883 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_coal_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_coal_ore.json new file mode 100644 index 000000000..f94aeadab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_coal_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate_coal_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_copper_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_copper_ore.json new file mode 100644 index 000000000..b5425550d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_copper_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate_copper_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_diamond_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_diamond_ore.json new file mode 100644 index 000000000..24eb2e5af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_diamond_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate_diamond_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_emerald_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_emerald_ore.json new file mode 100644 index 000000000..a5354b18c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_emerald_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate_emerald_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_gold_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_gold_ore.json new file mode 100644 index 000000000..910ff2f7b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_gold_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate_gold_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_iron_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_iron_ore.json new file mode 100644 index 000000000..0b10edeaa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_iron_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate_iron_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_lapis_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_lapis_ore.json new file mode 100644 index 000000000..d829cea2f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_lapis_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate_lapis_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_redstone_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_redstone_ore.json new file mode 100644 index 000000000..c9832e9a8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_redstone_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate_redstone_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_tile_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_tile_slab.json new file mode 100644 index 000000000..f09796405 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate_tile_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_tile_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_tile_stairs.json new file mode 100644 index 000000000..2a7ec05e6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate_tile_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_tile_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_tile_wall.json new file mode 100644 index 000000000..226fa452a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate_tile_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_tiles.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_tiles.json new file mode 100644 index 000000000..bdaaaec5f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/deepslate_tiles.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate_tiles" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/detector_rail.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/detector_rail.json new file mode 100644 index 000000000..707b24920 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/detector_rail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/detector_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond.json new file mode 100644 index 000000000..dacde7f16 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_axe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_axe.json new file mode 100644 index 000000000..9ab049970 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_axe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/diamond_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_block.json new file mode 100644 index 000000000..48d351c4b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/diamond_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots.json new file mode 100644 index 000000000..d32578216 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_amethyst_trim.json new file mode 100644 index 000000000..a193a70c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_copper_trim.json new file mode 100644 index 000000000..5ad8de504 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_diamond_darker_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_diamond_darker_trim.json new file mode 100644 index 000000000..9dd940a29 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_diamond_darker_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_diamond_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_diamond_trim.json new file mode 100644 index 000000000..9dd940a29 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_diamond_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_emerald_trim.json new file mode 100644 index 000000000..039509d04 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_gold_trim.json new file mode 100644 index 000000000..99c5a53b8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_iron_trim.json new file mode 100644 index 000000000..f692720f3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_lapis_trim.json new file mode 100644 index 000000000..411b13107 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_netherite_trim.json new file mode 100644 index 000000000..55b29ae24 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_quartz_trim.json new file mode 100644 index 000000000..fdecfc8b8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_redstone_trim.json new file mode 100644 index 000000000..5661c5216 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_resin_trim.json new file mode 100644 index 000000000..ffe193dc0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_boots_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_boots", + "layer1": "minecraft:trims/items/boots_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate.json new file mode 100644 index 000000000..2ca3222a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_amethyst_trim.json new file mode 100644 index 000000000..34901619b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_copper_trim.json new file mode 100644 index 000000000..9a1c45212 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_diamond_darker_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_diamond_darker_trim.json new file mode 100644 index 000000000..731236728 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_diamond_darker_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_diamond_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_diamond_trim.json new file mode 100644 index 000000000..731236728 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_diamond_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_emerald_trim.json new file mode 100644 index 000000000..7656f0b93 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_gold_trim.json new file mode 100644 index 000000000..b3b7c9916 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_iron_trim.json new file mode 100644 index 000000000..6eeae07fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_lapis_trim.json new file mode 100644 index 000000000..a973c512c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_netherite_trim.json new file mode 100644 index 000000000..bb5a1007a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_quartz_trim.json new file mode 100644 index 000000000..937d5ee31 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_redstone_trim.json new file mode 100644 index 000000000..63d776079 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_resin_trim.json new file mode 100644 index 000000000..5c70bed5d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_chestplate_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet.json new file mode 100644 index 000000000..8ab9fc022 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_amethyst_trim.json new file mode 100644 index 000000000..623a571ed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_copper_trim.json new file mode 100644 index 000000000..c0a1d8824 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_diamond_darker_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_diamond_darker_trim.json new file mode 100644 index 000000000..0d82b9c02 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_diamond_darker_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_diamond_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_diamond_trim.json new file mode 100644 index 000000000..0d82b9c02 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_diamond_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_emerald_trim.json new file mode 100644 index 000000000..d23a9a6ea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_gold_trim.json new file mode 100644 index 000000000..cd80cebe0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_iron_trim.json new file mode 100644 index 000000000..694acc9b5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_lapis_trim.json new file mode 100644 index 000000000..014fe7355 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_netherite_trim.json new file mode 100644 index 000000000..35098eb05 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_quartz_trim.json new file mode 100644 index 000000000..104fb171a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_redstone_trim.json new file mode 100644 index 000000000..f520dae20 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_resin_trim.json new file mode 100644 index 000000000..3acc4297a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_helmet_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_helmet", + "layer1": "minecraft:trims/items/helmet_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_hoe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_hoe.json new file mode 100644 index 000000000..c777b6d39 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_hoe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/diamond_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_horse_armor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_horse_armor.json new file mode 100644 index 000000000..017194b73 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_horse_armor.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_horse_armor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings.json new file mode 100644 index 000000000..11622ca5e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_amethyst_trim.json new file mode 100644 index 000000000..355ce9663 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_copper_trim.json new file mode 100644 index 000000000..882c71998 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_diamond_darker_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_diamond_darker_trim.json new file mode 100644 index 000000000..2d6367397 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_diamond_darker_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_diamond_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_diamond_trim.json new file mode 100644 index 000000000..2d6367397 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_diamond_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_emerald_trim.json new file mode 100644 index 000000000..4bacdd8b6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_gold_trim.json new file mode 100644 index 000000000..90655d486 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_iron_trim.json new file mode 100644 index 000000000..7503db5e3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_lapis_trim.json new file mode 100644 index 000000000..8f0a3f847 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_netherite_trim.json new file mode 100644 index 000000000..9d8085c8e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_quartz_trim.json new file mode 100644 index 000000000..85edee564 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_redstone_trim.json new file mode 100644 index 000000000..2232f1a3b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_resin_trim.json new file mode 100644 index 000000000..bf555e5d4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_leggings_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/diamond_leggings", + "layer1": "minecraft:trims/items/leggings_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_ore.json new file mode 100644 index 000000000..da18313d3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/diamond_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_pickaxe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_pickaxe.json new file mode 100644 index 000000000..88301e5cf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_pickaxe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/diamond_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_shovel.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_shovel.json new file mode 100644 index 000000000..dc4e6c84b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_shovel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/diamond_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_sword.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_sword.json new file mode 100644 index 000000000..26f4a2e09 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diamond_sword.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/diamond_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diorite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diorite.json new file mode 100644 index 000000000..f9d3f6b46 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diorite.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/diorite" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diorite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diorite_slab.json new file mode 100644 index 000000000..fbfbc7a6f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diorite_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/diorite_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diorite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diorite_stairs.json new file mode 100644 index 000000000..fdfa11abe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diorite_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/diorite_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diorite_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diorite_wall.json new file mode 100644 index 000000000..192d72827 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/diorite_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/diorite_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dirt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dirt.json new file mode 100644 index 000000000..8f9dbab5e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dirt.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dirt" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dirt_path.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dirt_path.json new file mode 100644 index 000000000..e60515e4d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dirt_path.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dirt_path" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/disc_fragment_5.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/disc_fragment_5.json new file mode 100644 index 000000000..806624c7b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/disc_fragment_5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/disc_fragment_5" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dispenser.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dispenser.json new file mode 100644 index 000000000..b88156bcf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dispenser.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dispenser" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dolphin_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dolphin_spawn_egg.json new file mode 100644 index 000000000..91e8a5df5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dolphin_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dolphin_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/donkey_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/donkey_spawn_egg.json new file mode 100644 index 000000000..77caa0439 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/donkey_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/donkey_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dragon_breath.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dragon_breath.json new file mode 100644 index 000000000..424980b1d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dragon_breath.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dragon_breath" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dragon_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dragon_egg.json new file mode 100644 index 000000000..1570a78ad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dragon_egg.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dragon_egg" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dragon_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dragon_head.json new file mode 100644 index 000000000..333e5b78f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dragon_head.json @@ -0,0 +1,20 @@ +{ + "parent": "item/template_skull", + "display": { + "gui": { + "translation": [ -2, 2, 0 ], + "rotation": [ 30, 45, 0 ], + "scale": [ 0.6, 0.6, 0.6 ] + }, + "thirdperson_righthand": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, -1, 2 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "on_shelf": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 2, 0], + "scale": [ 1.25, 1.25, 1.25 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dried_kelp.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dried_kelp.json new file mode 100644 index 000000000..a4e4efffc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dried_kelp.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dried_kelp" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dried_kelp_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dried_kelp_block.json new file mode 100644 index 000000000..2f3f1c329 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dried_kelp_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dried_kelp_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dripstone_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dripstone_block.json new file mode 100644 index 000000000..d6d9c09d6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dripstone_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dripstone_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dropper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dropper.json new file mode 100644 index 000000000..a8b40e592 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dropper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/dropper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/drowned_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/drowned_spawn_egg.json new file mode 100644 index 000000000..c1ec42509 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/drowned_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/drowned_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dune_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dune_armor_trim_smithing_template.json new file mode 100644 index 000000000..eaf0f46c1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/dune_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/dune_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/echo_shard.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/echo_shard.json new file mode 100644 index 000000000..a6f71e738 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/echo_shard.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/echo_shard" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/egg.json new file mode 100644 index 000000000..86ec3cae9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/elder_guardian_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/elder_guardian_spawn_egg.json new file mode 100644 index 000000000..8d432b667 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/elder_guardian_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/elder_guardian_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/elytra.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/elytra.json new file mode 100644 index 000000000..2f1789e6a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/elytra.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/elytra" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/elytra_broken.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/elytra_broken.json new file mode 100644 index 000000000..6751976a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/elytra_broken.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/elytra_broken" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/emerald.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/emerald.json new file mode 100644 index 000000000..4f19c1d9f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/emerald.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/emerald_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/emerald_block.json new file mode 100644 index 000000000..27c3713ad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/emerald_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/emerald_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/emerald_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/emerald_ore.json new file mode 100644 index 000000000..3569bde18 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/emerald_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/emerald_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/enchanted_book.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/enchanted_book.json new file mode 100644 index 000000000..b6a35e577 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/enchanted_book.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/enchanted_book" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/enchanted_golden_apple.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/enchanted_golden_apple.json new file mode 100644 index 000000000..868c92193 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/enchanted_golden_apple.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_apple" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/enchanting_table.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/enchanting_table.json new file mode 100644 index 000000000..9f76fca22 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/enchanting_table.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/enchanting_table" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_crystal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_crystal.json new file mode 100644 index 000000000..15aa5897f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_crystal.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/end_crystal" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_portal_frame.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_portal_frame.json new file mode 100644 index 000000000..718814c22 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_portal_frame.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/end_portal_frame" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_rod.json new file mode 100644 index 000000000..809dec3fd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_rod.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/end_rod" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_stone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_stone.json new file mode 100644 index 000000000..fc4cf92a4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_stone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/end_stone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_stone_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_stone_brick_slab.json new file mode 100644 index 000000000..3daf70724 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_stone_brick_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/end_stone_brick_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_stone_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_stone_brick_stairs.json new file mode 100644 index 000000000..b43fdfe6d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_stone_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/end_stone_brick_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_stone_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_stone_brick_wall.json new file mode 100644 index 000000000..a0a4f8439 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_stone_brick_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/end_stone_brick_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_stone_bricks.json new file mode 100644 index 000000000..a0bb1b983 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/end_stone_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/end_stone_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ender_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ender_chest.json new file mode 100644 index 000000000..31a5c7d7a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ender_chest.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_chest", + "textures": { + "particle": "minecraft:block/obsidian" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ender_dragon_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ender_dragon_spawn_egg.json new file mode 100644 index 000000000..d0a2206df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ender_dragon_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ender_dragon_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ender_eye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ender_eye.json new file mode 100644 index 000000000..d29cc4e08 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ender_eye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ender_eye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ender_pearl.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ender_pearl.json new file mode 100644 index 000000000..e6ccd02fa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ender_pearl.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ender_pearl" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/enderman_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/enderman_spawn_egg.json new file mode 100644 index 000000000..6ea7d6888 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/enderman_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/enderman_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/endermite_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/endermite_spawn_egg.json new file mode 100644 index 000000000..775b5e8ac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/endermite_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/endermite_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/evoker_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/evoker_spawn_egg.json new file mode 100644 index 000000000..4b1201247 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/evoker_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/evoker_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/experience_bottle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/experience_bottle.json new file mode 100644 index 000000000..22a77fe72 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/experience_bottle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/experience_bottle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/explorer_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/explorer_pottery_sherd.json new file mode 100644 index 000000000..affa6dd29 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/explorer_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/explorer_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_chiseled_copper.json new file mode 100644 index 000000000..11278b6ad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_chiseled_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/exposed_chiseled_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper.json new file mode 100644 index 000000000..5881fd7b3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/exposed_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_bars.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_bars.json new file mode 100644 index 000000000..44ce33db9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_bars.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/exposed_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_bulb.json new file mode 100644 index 000000000..6ddcba9ae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_bulb.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/exposed_copper_bulb" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_chain.json new file mode 100644 index 000000000..dc075f5f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_chain.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/exposed_copper_chain" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_chest.json new file mode 100644 index 000000000..4f63c352c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_chest.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_chest", + "textures": { + "particle": "minecraft:block/exposed_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_door.json new file mode 100644 index 000000000..78a9d4d8d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/exposed_copper_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_grate.json new file mode 100644 index 000000000..b7a3c78e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_grate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/exposed_copper_grate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_lantern.json new file mode 100644 index 000000000..662b5d386 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/exposed_copper_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_trapdoor.json new file mode 100644 index 000000000..7546ce3c9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_copper_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/exposed_copper_trapdoor_bottom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_cut_copper.json new file mode 100644 index 000000000..b5c7d8f01 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_cut_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/exposed_cut_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_cut_copper_slab.json new file mode 100644 index 000000000..29ce47239 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_cut_copper_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/exposed_cut_copper_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_cut_copper_stairs.json new file mode 100644 index 000000000..24bdd2851 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/exposed_cut_copper_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/exposed_cut_copper_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/eye_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/eye_armor_trim_smithing_template.json new file mode 100644 index 000000000..d629fc1b6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/eye_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/eye_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/farmland.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/farmland.json new file mode 100644 index 000000000..1c5eceae5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/farmland.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/farmland" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/feather.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/feather.json new file mode 100644 index 000000000..1b88f92d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/feather.json @@ -0,0 +1,13 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/feather" + }, + "display": { + "head": { + "rotation": [ 0, 0, 45 ], + "translation": [ -1, 13, 7], + "scale":[ 1, 1, 1] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fermented_spider_eye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fermented_spider_eye.json new file mode 100644 index 000000000..06bbefceb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fermented_spider_eye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/fermented_spider_eye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fern.json new file mode 100644 index 000000000..851ce5d38 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/fern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/field_masoned_banner_pattern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/field_masoned_banner_pattern.json new file mode 100644 index 000000000..404fbedee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/field_masoned_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/field_masoned_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/filled_map.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/filled_map.json new file mode 100644 index 000000000..2d681387f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/filled_map.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/filled_map", + "layer1": "minecraft:item/filled_map_markings" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fire_charge.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fire_charge.json new file mode 100644 index 000000000..27d3f0d81 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fire_charge.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/fire_charge" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fire_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fire_coral.json new file mode 100644 index 000000000..8585f4c8f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fire_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/fire_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fire_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fire_coral_block.json new file mode 100644 index 000000000..eebe05e14 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fire_coral_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/fire_coral_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fire_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fire_coral_fan.json new file mode 100644 index 000000000..c27e2d3a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fire_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/fire_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/firefly_bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/firefly_bush.json new file mode 100644 index 000000000..e166c3576 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/firefly_bush.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/firefly_bush" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/firework_rocket.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/firework_rocket.json new file mode 100644 index 000000000..cb7cf197c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/firework_rocket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/firework_rocket" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/firework_star.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/firework_star.json new file mode 100644 index 000000000..b54ca29d1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/firework_star.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/firework_star", + "layer1": "minecraft:item/firework_star_overlay" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fishing_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fishing_rod.json new file mode 100644 index 000000000..32143f32d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fishing_rod.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld_rod", + "textures": { + "layer0": "minecraft:item/fishing_rod" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fishing_rod_cast.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fishing_rod_cast.json new file mode 100644 index 000000000..63190afc7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fishing_rod_cast.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld_rod", + "textures": { + "layer0": "minecraft:item/fishing_rod_cast" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fletching_table.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fletching_table.json new file mode 100644 index 000000000..bc2b1bdc7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fletching_table.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/fletching_table" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flint.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flint.json new file mode 100644 index 000000000..3a5572958 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flint.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/flint" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flint_and_steel.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flint_and_steel.json new file mode 100644 index 000000000..d11a12a90 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flint_and_steel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/flint_and_steel" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flow_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flow_armor_trim_smithing_template.json new file mode 100644 index 000000000..0aec5a447 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flow_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/flow_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flow_banner_pattern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flow_banner_pattern.json new file mode 100644 index 000000000..82c9af4ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flow_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/flow_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flow_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flow_pottery_sherd.json new file mode 100644 index 000000000..ad6dac5dc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flow_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/flow_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flower_banner_pattern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flower_banner_pattern.json new file mode 100644 index 000000000..ea8b8215f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flower_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/flower_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flower_pot.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flower_pot.json new file mode 100644 index 000000000..e50e0fa1a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flower_pot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/flower_pot" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flowering_azalea.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flowering_azalea.json new file mode 100644 index 000000000..e5f437e8c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flowering_azalea.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/flowering_azalea" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flowering_azalea_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flowering_azalea_leaves.json new file mode 100644 index 000000000..c3ecf6e7d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/flowering_azalea_leaves.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/flowering_azalea_leaves" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fox_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fox_spawn_egg.json new file mode 100644 index 000000000..3a3fd8d45 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/fox_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/fox_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/friend_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/friend_pottery_sherd.json new file mode 100644 index 000000000..b618f305d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/friend_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/friend_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/frog_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/frog_spawn_egg.json new file mode 100644 index 000000000..08e60641b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/frog_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/frog_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/frogspawn.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/frogspawn.json new file mode 100644 index 000000000..6fd44430f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/frogspawn.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/frogspawn" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/furnace.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/furnace.json new file mode 100644 index 000000000..593027e9d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/furnace.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/furnace" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/furnace_minecart.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/furnace_minecart.json new file mode 100644 index 000000000..e3e6f2223 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/furnace_minecart.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/furnace_minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/generated.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/generated.json new file mode 100644 index 000000000..89aa79e95 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/generated.json @@ -0,0 +1,30 @@ +{ + "parent": "builtin/generated", + "gui_light": "front", + "display": { + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 2, 0], + "scale":[ 0.5, 0.5, 0.5 ] + }, + "head": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 13, 7], + "scale":[ 1, 1, 1] + }, + "thirdperson_righthand": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 3, 1 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 1.13, 3.2, 1.13], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "scale": [ 1, 1, 1 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ghast_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ghast_spawn_egg.json new file mode 100644 index 000000000..727230af5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ghast_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ghast_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ghast_tear.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ghast_tear.json new file mode 100644 index 000000000..d7d6e6f3a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ghast_tear.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ghast_tear" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gilded_blackstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gilded_blackstone.json new file mode 100644 index 000000000..a0779ccd8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gilded_blackstone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/gilded_blackstone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glass.json new file mode 100644 index 000000000..658254343 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glass_bottle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glass_bottle.json new file mode 100644 index 000000000..9b4ab510c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glass_bottle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/glass_bottle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glass_pane.json new file mode 100644 index 000000000..de799dcff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glistering_melon_slice.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glistering_melon_slice.json new file mode 100644 index 000000000..90c290a08 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glistering_melon_slice.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/glistering_melon_slice" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/globe_banner_pattern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/globe_banner_pattern.json new file mode 100644 index 000000000..3948f16f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/globe_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/globe_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glow_berries.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glow_berries.json new file mode 100644 index 000000000..b77ea725e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glow_berries.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/glow_berries" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glow_ink_sac.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glow_ink_sac.json new file mode 100644 index 000000000..fc21cec42 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glow_ink_sac.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/glow_ink_sac" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glow_item_frame.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glow_item_frame.json new file mode 100644 index 000000000..a2323a19b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glow_item_frame.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/glow_item_frame" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glow_lichen.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glow_lichen.json new file mode 100644 index 000000000..7b796f838 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glow_lichen.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/glow_lichen" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glow_squid_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glow_squid_spawn_egg.json new file mode 100644 index 000000000..1cfe9f30b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glow_squid_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/glow_squid_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glowstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glowstone.json new file mode 100644 index 000000000..5567a8878 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glowstone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/glowstone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glowstone_dust.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glowstone_dust.json new file mode 100644 index 000000000..4b78f60be --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/glowstone_dust.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/glowstone_dust" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/goat_horn.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/goat_horn.json new file mode 100644 index 000000000..d2632890f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/goat_horn.json @@ -0,0 +1,28 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/goat_horn" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 3, 1 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 3, 1 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 1.13, 3.2, 1.13 ], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 90, -25 ], + "translation": [ 1.13, 3.2, 1.13 ], + "scale": [ 0.68, 0.68, 0.68 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/goat_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/goat_spawn_egg.json new file mode 100644 index 000000000..145421ec3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/goat_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/goat_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gold_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gold_block.json new file mode 100644 index 000000000..f9cefd04e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gold_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/gold_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gold_ingot.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gold_ingot.json new file mode 100644 index 000000000..230e3111f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gold_ingot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/gold_ingot" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gold_nugget.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gold_nugget.json new file mode 100644 index 000000000..3da43c93d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gold_nugget.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/gold_nugget" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gold_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gold_ore.json new file mode 100644 index 000000000..64c164535 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gold_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/gold_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_apple.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_apple.json new file mode 100644 index 000000000..868c92193 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_apple.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_apple" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_axe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_axe.json new file mode 100644 index 000000000..42008eeae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_axe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/golden_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots.json new file mode 100644 index 000000000..24f3c5879 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_amethyst_trim.json new file mode 100644 index 000000000..da31bd587 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_copper_trim.json new file mode 100644 index 000000000..e79eb60a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_diamond_trim.json new file mode 100644 index 000000000..2ced80f9a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_emerald_trim.json new file mode 100644 index 000000000..78154d772 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_gold_darker_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_gold_darker_trim.json new file mode 100644 index 000000000..354544588 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_gold_darker_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_gold_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_gold_trim.json new file mode 100644 index 000000000..354544588 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_gold_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_iron_trim.json new file mode 100644 index 000000000..b63010f02 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_lapis_trim.json new file mode 100644 index 000000000..268ab549a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_netherite_trim.json new file mode 100644 index 000000000..e329b9cbc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_quartz_trim.json new file mode 100644 index 000000000..4e8cc2d3b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_redstone_trim.json new file mode 100644 index 000000000..bda608e0b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_resin_trim.json new file mode 100644 index 000000000..3bf3bb8ef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_boots_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_boots", + "layer1": "minecraft:trims/items/boots_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_carrot.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_carrot.json new file mode 100644 index 000000000..8d36365f3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_carrot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_carrot" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate.json new file mode 100644 index 000000000..8c7b0bbf7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_amethyst_trim.json new file mode 100644 index 000000000..d0b4b1816 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_copper_trim.json new file mode 100644 index 000000000..f9b9f9382 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_diamond_trim.json new file mode 100644 index 000000000..adf1bc6f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_emerald_trim.json new file mode 100644 index 000000000..af97428b3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_gold_darker_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_gold_darker_trim.json new file mode 100644 index 000000000..3328597c2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_gold_darker_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_gold_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_gold_trim.json new file mode 100644 index 000000000..3328597c2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_gold_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_iron_trim.json new file mode 100644 index 000000000..ed2aa0edd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_lapis_trim.json new file mode 100644 index 000000000..4c748a101 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_netherite_trim.json new file mode 100644 index 000000000..aab4dfb37 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_quartz_trim.json new file mode 100644 index 000000000..1632e6ce6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_redstone_trim.json new file mode 100644 index 000000000..2f24fa905 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_resin_trim.json new file mode 100644 index 000000000..98f609a05 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_chestplate_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet.json new file mode 100644 index 000000000..d0c081568 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_amethyst_trim.json new file mode 100644 index 000000000..47ccae21b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_copper_trim.json new file mode 100644 index 000000000..4a3ee8e40 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_diamond_trim.json new file mode 100644 index 000000000..2ad2462a9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_emerald_trim.json new file mode 100644 index 000000000..f9623b16d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_gold_darker_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_gold_darker_trim.json new file mode 100644 index 000000000..2276b5ad1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_gold_darker_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_gold_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_gold_trim.json new file mode 100644 index 000000000..2276b5ad1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_gold_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_iron_trim.json new file mode 100644 index 000000000..81f10c4d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_lapis_trim.json new file mode 100644 index 000000000..ff7d2b4d6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_netherite_trim.json new file mode 100644 index 000000000..bbbb72913 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_quartz_trim.json new file mode 100644 index 000000000..583d8cda9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_redstone_trim.json new file mode 100644 index 000000000..3a85360b6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_resin_trim.json new file mode 100644 index 000000000..d9d23f2eb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_helmet_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_helmet", + "layer1": "minecraft:trims/items/helmet_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_hoe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_hoe.json new file mode 100644 index 000000000..7d2a2e5df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_hoe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/golden_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_horse_armor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_horse_armor.json new file mode 100644 index 000000000..9fbc0e909 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_horse_armor.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_horse_armor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings.json new file mode 100644 index 000000000..cb5bd0e69 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_amethyst_trim.json new file mode 100644 index 000000000..3d4bb850b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_copper_trim.json new file mode 100644 index 000000000..41e999edc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_diamond_trim.json new file mode 100644 index 000000000..d85fda9b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_emerald_trim.json new file mode 100644 index 000000000..544b209fa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_gold_darker_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_gold_darker_trim.json new file mode 100644 index 000000000..23eae507f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_gold_darker_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_gold_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_gold_trim.json new file mode 100644 index 000000000..23eae507f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_gold_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_iron_trim.json new file mode 100644 index 000000000..877cb174d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_lapis_trim.json new file mode 100644 index 000000000..bb2fca2b8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_netherite_trim.json new file mode 100644 index 000000000..0a41f244c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_quartz_trim.json new file mode 100644 index 000000000..c966b6d5e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_redstone_trim.json new file mode 100644 index 000000000..ec9e671ff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_resin_trim.json new file mode 100644 index 000000000..b685dc674 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_leggings_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/golden_leggings", + "layer1": "minecraft:trims/items/leggings_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_pickaxe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_pickaxe.json new file mode 100644 index 000000000..185c855bc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_pickaxe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/golden_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_shovel.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_shovel.json new file mode 100644 index 000000000..c2d1dc003 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_shovel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/golden_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_sword.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_sword.json new file mode 100644 index 000000000..02e540976 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/golden_sword.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/golden_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/granite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/granite.json new file mode 100644 index 000000000..4dd54d023 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/granite.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/granite" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/granite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/granite_slab.json new file mode 100644 index 000000000..95ee61093 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/granite_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/granite_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/granite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/granite_stairs.json new file mode 100644 index 000000000..68b4e669c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/granite_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/granite_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/granite_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/granite_wall.json new file mode 100644 index 000000000..de4942707 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/granite_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/granite_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/grass_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/grass_block.json new file mode 100644 index 000000000..f54d345a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/grass_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/grass_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gravel.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gravel.json new file mode 100644 index 000000000..ee8cbc03e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gravel.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/gravel" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_banner.json new file mode 100644 index 000000000..661a106df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_banner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_bed.json new file mode 100644 index 000000000..306670549 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/gray_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_bundle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_bundle.json new file mode 100644 index 000000000..a076d1563 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/gray_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_bundle_open_back.json new file mode 100644 index 000000000..f27e95531 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/gray_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_bundle_open_front.json new file mode 100644 index 000000000..9c7bb376b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/gray_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_candle.json new file mode 100644 index 000000000..176cf59ff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_carpet.json new file mode 100644 index 000000000..5fe85f098 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/gray_carpet" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_concrete.json new file mode 100644 index 000000000..9b89dd7b6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/gray_concrete" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_concrete_powder.json new file mode 100644 index 000000000..47d3dd50c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_concrete_powder.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/gray_concrete_powder" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_dye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_dye.json new file mode 100644 index 000000000..f3c301065 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/gray_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_glazed_terracotta.json new file mode 100644 index 000000000..d58bce8a9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_glazed_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/gray_glazed_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_harness.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_harness.json new file mode 100644 index 000000000..20d4b49b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/gray_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_shulker_box.json new file mode 100644 index 000000000..c70434932 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/gray_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_stained_glass.json new file mode 100644 index 000000000..34c0fa6cc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_stained_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/gray_stained_glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_stained_glass_pane.json new file mode 100644 index 000000000..e2b88aa70 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_terracotta.json new file mode 100644 index 000000000..6c415c038 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/gray_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_wool.json new file mode 100644 index 000000000..88c930a64 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gray_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/gray_wool" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_banner.json new file mode 100644 index 000000000..661a106df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_banner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_bed.json new file mode 100644 index 000000000..d7c7154a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/green_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_bundle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_bundle.json new file mode 100644 index 000000000..c4589577d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/green_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_bundle_open_back.json new file mode 100644 index 000000000..81ffde325 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/green_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_bundle_open_front.json new file mode 100644 index 000000000..a188a6a14 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/green_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_candle.json new file mode 100644 index 000000000..494c6ed42 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/green_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_carpet.json new file mode 100644 index 000000000..772c294ff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/green_carpet" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_concrete.json new file mode 100644 index 000000000..0e3b0f95d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/green_concrete" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_concrete_powder.json new file mode 100644 index 000000000..4c9c70f0e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_concrete_powder.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/green_concrete_powder" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_dye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_dye.json new file mode 100644 index 000000000..2ded932e7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/green_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_glazed_terracotta.json new file mode 100644 index 000000000..68333f848 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_glazed_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/green_glazed_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_harness.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_harness.json new file mode 100644 index 000000000..e26462865 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/green_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_shulker_box.json new file mode 100644 index 000000000..6e8e01e7a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/green_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_stained_glass.json new file mode 100644 index 000000000..e10e37a8a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_stained_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/green_stained_glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_stained_glass_pane.json new file mode 100644 index 000000000..ff4a30f74 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/green_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_terracotta.json new file mode 100644 index 000000000..bf20f272f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/green_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_wool.json new file mode 100644 index 000000000..a8cfdf478 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/green_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/green_wool" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/grindstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/grindstone.json new file mode 100644 index 000000000..2faa8ae80 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/grindstone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/grindstone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/guardian_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/guardian_spawn_egg.json new file mode 100644 index 000000000..da7bdc47b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/guardian_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/guardian_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gunpowder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gunpowder.json new file mode 100644 index 000000000..82faa64c6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/gunpowder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/gunpowder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/guster_banner_pattern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/guster_banner_pattern.json new file mode 100644 index 000000000..c24b83c7c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/guster_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/guster_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/guster_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/guster_pottery_sherd.json new file mode 100644 index 000000000..f1bda3e1f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/guster_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/guster_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/handheld.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/handheld.json new file mode 100644 index 000000000..51ea90fc5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/handheld.json @@ -0,0 +1,25 @@ +{ + "parent": "item/generated", + "display": { + "thirdperson_righthand": { + "rotation": [ 0, -90, 55 ], + "translation": [ 0, 4.0, 0.5 ], + "scale": [ 0.85, 0.85, 0.85 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 90, -55 ], + "translation": [ 0, 4.0, 0.5 ], + "scale": [ 0.85, 0.85, 0.85 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 1.13, 3.2, 1.13 ], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 90, -25 ], + "translation": [ 1.13, 3.2, 1.13 ], + "scale": [ 0.68, 0.68, 0.68 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/handheld_mace.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/handheld_mace.json new file mode 100644 index 000000000..928ce0d22 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/handheld_mace.json @@ -0,0 +1,25 @@ +{ + "parent": "item/handheld", + "display": { + "thirdperson_righthand": { + "rotation": [ 0, -90, 55 ], + "translation": [ 0, 4.0, 1 ], + "scale": [ 1, 1, 1 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 90, -55 ], + "translation": [ 0, 4.0, 1 ], + "scale": [ 1, 1, 1 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 0, 3, 0.8 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 90, -25 ], + "translation": [ 0, 3, 0.8 ], + "scale": [ 0.9, 0.9, 0.9 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/handheld_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/handheld_rod.json new file mode 100644 index 000000000..de794a4ad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/handheld_rod.json @@ -0,0 +1,25 @@ +{ + "parent": "item/handheld", + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 90, 55 ], + "translation": [ 0, 4.0, 2.5 ], + "scale": [ 0.85, 0.85, 0.85 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, -90, -55 ], + "translation": [ 0, 4.0, 2.5 ], + "scale": [ 0.85, 0.85, 0.85 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 90, 25 ], + "translation": [ 0, 1.6, 0.8 ], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, -90, -25 ], + "translation": [ 0, 1.6, 0.8 ], + "scale": [ 0.68, 0.68, 0.68 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/hanging_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/hanging_roots.json new file mode 100644 index 000000000..05320edbb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/hanging_roots.json @@ -0,0 +1,18 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "minecraft:block/hanging_roots" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 0, 1 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 1.13, 0, 1.13], + "scale": [ 0.68, 0.68, 0.68 ] + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/happy_ghast_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/happy_ghast_spawn_egg.json new file mode 100644 index 000000000..2a1ccf308 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/happy_ghast_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/happy_ghast_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/hay_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/hay_block.json new file mode 100644 index 000000000..6c92e25d0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/hay_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/hay_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/heart_of_the_sea.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/heart_of_the_sea.json new file mode 100644 index 000000000..eb299204f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/heart_of_the_sea.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/heart_of_the_sea" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/heart_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/heart_pottery_sherd.json new file mode 100644 index 000000000..e5c457415 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/heart_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/heart_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/heartbreak_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/heartbreak_pottery_sherd.json new file mode 100644 index 000000000..48c49fa4f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/heartbreak_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/heartbreak_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/heavy_core.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/heavy_core.json new file mode 100644 index 000000000..aed92e076 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/heavy_core.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/heavy_core" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/heavy_weighted_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/heavy_weighted_pressure_plate.json new file mode 100644 index 000000000..ef384772b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/heavy_weighted_pressure_plate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/heavy_weighted_pressure_plate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/hoglin_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/hoglin_spawn_egg.json new file mode 100644 index 000000000..f70b2420d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/hoglin_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/hoglin_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/honey_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/honey_block.json new file mode 100644 index 000000000..29818ade0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/honey_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/honey_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/honey_bottle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/honey_bottle.json new file mode 100644 index 000000000..2a69e5f9d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/honey_bottle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/honey_bottle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/honeycomb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/honeycomb.json new file mode 100644 index 000000000..b183a8eca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/honeycomb.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/honeycomb" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/honeycomb_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/honeycomb_block.json new file mode 100644 index 000000000..0a2c9541e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/honeycomb_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/honeycomb_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/hopper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/hopper.json new file mode 100644 index 000000000..b9e548805 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/hopper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/hopper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/hopper_minecart.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/hopper_minecart.json new file mode 100644 index 000000000..8bf456072 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/hopper_minecart.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/hopper_minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/horn_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/horn_coral.json new file mode 100644 index 000000000..5994465ff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/horn_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/horn_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/horn_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/horn_coral_block.json new file mode 100644 index 000000000..ba702d24c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/horn_coral_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/horn_coral_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/horn_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/horn_coral_fan.json new file mode 100644 index 000000000..e2078bf4b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/horn_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/horn_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/horse_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/horse_spawn_egg.json new file mode 100644 index 000000000..acd1d7e3a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/horse_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/horse_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/host_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/host_armor_trim_smithing_template.json new file mode 100644 index 000000000..cff91b211 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/host_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/host_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/howl_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/howl_pottery_sherd.json new file mode 100644 index 000000000..377031992 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/howl_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/howl_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/husk_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/husk_spawn_egg.json new file mode 100644 index 000000000..67e1acb11 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/husk_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/husk_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ice.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ice.json new file mode 100644 index 000000000..1ec90d771 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ice.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/ice" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_chiseled_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_chiseled_stone_bricks.json new file mode 100644 index 000000000..ac7e5e66f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_chiseled_stone_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/chiseled_stone_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_cobblestone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_cobblestone.json new file mode 100644 index 000000000..35e828df6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_cobblestone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cobblestone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_cracked_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_cracked_stone_bricks.json new file mode 100644 index 000000000..46802074e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_cracked_stone_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cracked_stone_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_deepslate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_deepslate.json new file mode 100644 index 000000000..13980a844 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_deepslate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/deepslate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_mossy_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_mossy_stone_bricks.json new file mode 100644 index 000000000..a9fe750fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_mossy_stone_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mossy_stone_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_stone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_stone.json new file mode 100644 index 000000000..37f27f10b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_stone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_stone_bricks.json new file mode 100644 index 000000000..51de871c0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/infested_stone_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stone_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ink_sac.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ink_sac.json new file mode 100644 index 000000000..4e528dcd0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ink_sac.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ink_sac" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_axe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_axe.json new file mode 100644 index 000000000..6ddc54911 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_axe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/iron_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_bars.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_bars.json new file mode 100644 index 000000000..97aa41fc7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_bars.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/iron_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_block.json new file mode 100644 index 000000000..acac52cae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/iron_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots.json new file mode 100644 index 000000000..ee127da27 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_amethyst_trim.json new file mode 100644 index 000000000..c520b66aa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_copper_trim.json new file mode 100644 index 000000000..f4321a79a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_diamond_trim.json new file mode 100644 index 000000000..58dfbd8a3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_emerald_trim.json new file mode 100644 index 000000000..ebba41162 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_gold_trim.json new file mode 100644 index 000000000..b1601c91a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_iron_darker_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_iron_darker_trim.json new file mode 100644 index 000000000..65b960829 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_iron_darker_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_iron_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_iron_trim.json new file mode 100644 index 000000000..65b960829 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_iron_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_lapis_trim.json new file mode 100644 index 000000000..1aefdf66a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_netherite_trim.json new file mode 100644 index 000000000..f6a2d1021 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_quartz_trim.json new file mode 100644 index 000000000..52af0ee74 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_redstone_trim.json new file mode 100644 index 000000000..a838412c6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_resin_trim.json new file mode 100644 index 000000000..50976be49 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_boots_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_boots", + "layer1": "minecraft:trims/items/boots_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chain.json new file mode 100644 index 000000000..568536512 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chain.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chain" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate.json new file mode 100644 index 000000000..2c52d1bde --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_amethyst_trim.json new file mode 100644 index 000000000..ab82095dc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_copper_trim.json new file mode 100644 index 000000000..956ba4845 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_diamond_trim.json new file mode 100644 index 000000000..e559d7cc5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_emerald_trim.json new file mode 100644 index 000000000..e143c99de --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_gold_trim.json new file mode 100644 index 000000000..f5dfee4c3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_iron_darker_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_iron_darker_trim.json new file mode 100644 index 000000000..38ba7c1b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_iron_darker_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_iron_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_iron_trim.json new file mode 100644 index 000000000..38ba7c1b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_iron_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_lapis_trim.json new file mode 100644 index 000000000..03ae6fbd1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_netherite_trim.json new file mode 100644 index 000000000..ccb152452 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_quartz_trim.json new file mode 100644 index 000000000..981e14a3e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_redstone_trim.json new file mode 100644 index 000000000..208a2524f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_resin_trim.json new file mode 100644 index 000000000..2b877534b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_chestplate_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_door.json new file mode 100644 index 000000000..a057f8f8c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_golem_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_golem_spawn_egg.json new file mode 100644 index 000000000..833cd364b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_golem_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_golem_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet.json new file mode 100644 index 000000000..8203b8a5d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_amethyst_trim.json new file mode 100644 index 000000000..53b64e68a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_copper_trim.json new file mode 100644 index 000000000..61314f95e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_diamond_trim.json new file mode 100644 index 000000000..d469b22f0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_emerald_trim.json new file mode 100644 index 000000000..bc596c65b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_gold_trim.json new file mode 100644 index 000000000..f68de78da --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_iron_darker_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_iron_darker_trim.json new file mode 100644 index 000000000..b471361fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_iron_darker_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_iron_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_iron_trim.json new file mode 100644 index 000000000..b471361fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_iron_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_lapis_trim.json new file mode 100644 index 000000000..ef272104f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_netherite_trim.json new file mode 100644 index 000000000..9f6c5f523 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_quartz_trim.json new file mode 100644 index 000000000..c34faf479 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_redstone_trim.json new file mode 100644 index 000000000..9ad0a7b50 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_resin_trim.json new file mode 100644 index 000000000..0292053d7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_helmet_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_helmet", + "layer1": "minecraft:trims/items/helmet_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_hoe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_hoe.json new file mode 100644 index 000000000..889dd3a38 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_hoe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/iron_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_horse_armor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_horse_armor.json new file mode 100644 index 000000000..3a560516f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_horse_armor.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_horse_armor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_ingot.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_ingot.json new file mode 100644 index 000000000..1fc74dfc6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_ingot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_ingot" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings.json new file mode 100644 index 000000000..324b71c18 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_amethyst_trim.json new file mode 100644 index 000000000..e64f52a62 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_copper_trim.json new file mode 100644 index 000000000..48a46fe8c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_diamond_trim.json new file mode 100644 index 000000000..a706ce346 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_emerald_trim.json new file mode 100644 index 000000000..88c613757 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_gold_trim.json new file mode 100644 index 000000000..90ca5a6ad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_iron_darker_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_iron_darker_trim.json new file mode 100644 index 000000000..e85d215ec --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_iron_darker_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_iron_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_iron_trim.json new file mode 100644 index 000000000..e85d215ec --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_iron_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_lapis_trim.json new file mode 100644 index 000000000..063137c1f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_netherite_trim.json new file mode 100644 index 000000000..5afcdf928 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_quartz_trim.json new file mode 100644 index 000000000..5ce4703ca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_redstone_trim.json new file mode 100644 index 000000000..c907c7a1e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_resin_trim.json new file mode 100644 index 000000000..11dba3be5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_leggings_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_leggings", + "layer1": "minecraft:trims/items/leggings_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_nugget.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_nugget.json new file mode 100644 index 000000000..3873a52ac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_nugget.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/iron_nugget" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_ore.json new file mode 100644 index 000000000..5a3561391 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/iron_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_pickaxe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_pickaxe.json new file mode 100644 index 000000000..8a5f40797 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_pickaxe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/iron_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_shovel.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_shovel.json new file mode 100644 index 000000000..26674cfb2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_shovel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/iron_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_sword.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_sword.json new file mode 100644 index 000000000..ebbcd4118 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_sword.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/iron_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_trapdoor.json new file mode 100644 index 000000000..b3a30b76d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/iron_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/iron_trapdoor_bottom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/item_frame.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/item_frame.json new file mode 100644 index 000000000..09797547d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/item_frame.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/item_frame" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jack_o_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jack_o_lantern.json new file mode 100644 index 000000000..d23072034 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jack_o_lantern.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/jack_o_lantern" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jigsaw.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jigsaw.json new file mode 100644 index 000000000..b0c476303 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jigsaw.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/jigsaw" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jukebox.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jukebox.json new file mode 100644 index 000000000..4d2923ac5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jukebox.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/jukebox" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_boat.json new file mode 100644 index 000000000..4cc14d5c7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/jungle_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_button.json new file mode 100644 index 000000000..360738a39 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_button.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/jungle_button_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_chest_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_chest_boat.json new file mode 100644 index 000000000..e2b2e3bbf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/jungle_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_door.json new file mode 100644 index 000000000..2fbc71f50 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/jungle_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_fence.json new file mode 100644 index 000000000..c5e6b2aa0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_fence.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/jungle_fence_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_fence_gate.json new file mode 100644 index 000000000..8612c91d2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_fence_gate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/jungle_fence_gate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_hanging_sign.json new file mode 100644 index 000000000..19222949e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/jungle_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_leaves.json new file mode 100644 index 000000000..4be7c1ad4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_leaves.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/jungle_leaves" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_log.json new file mode 100644 index 000000000..2e6c371bd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_log.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/jungle_log" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_planks.json new file mode 100644 index 000000000..03f6926ae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_planks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/jungle_planks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_pressure_plate.json new file mode 100644 index 000000000..18a6d0f5a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_pressure_plate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/jungle_pressure_plate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_sapling.json new file mode 100644 index 000000000..4dd71de23 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/jungle_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_sign.json new file mode 100644 index 000000000..2ee2828e1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/jungle_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_slab.json new file mode 100644 index 000000000..ed5a4321f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/jungle_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_stairs.json new file mode 100644 index 000000000..87e9264c6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/jungle_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_trapdoor.json new file mode 100644 index 000000000..996f2808f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/jungle_trapdoor_bottom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_wood.json new file mode 100644 index 000000000..c993caea2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/jungle_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/jungle_wood" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/kelp.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/kelp.json new file mode 100644 index 000000000..b701d7b50 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/kelp.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/kelp" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/knowledge_book.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/knowledge_book.json new file mode 100644 index 000000000..bc355f72a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/knowledge_book.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/knowledge_book" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ladder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ladder.json new file mode 100644 index 000000000..b4fd6267c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ladder.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/ladder" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lantern.json new file mode 100644 index 000000000..ce9e5c103 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lapis_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lapis_block.json new file mode 100644 index 000000000..1dcdaf6e8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lapis_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/lapis_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lapis_lazuli.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lapis_lazuli.json new file mode 100644 index 000000000..ee8bdea52 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lapis_lazuli.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/lapis_lazuli" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lapis_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lapis_ore.json new file mode 100644 index 000000000..87cec1e47 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lapis_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/lapis_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/large_amethyst_bud.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/large_amethyst_bud.json new file mode 100644 index 000000000..0e601416d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/large_amethyst_bud.json @@ -0,0 +1,11 @@ + { + "parent": "item/amethyst_bud", + "textures": { + "layer0": "minecraft:block/large_amethyst_bud" + }, + "display": { + "fixed": { + "translation": [ 0, 4, 0 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/large_fern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/large_fern.json new file mode 100644 index 000000000..1072e9402 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/large_fern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/large_fern_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lava_bucket.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lava_bucket.json new file mode 100644 index 000000000..4052c615e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lava_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/lava_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lead.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lead.json new file mode 100644 index 000000000..df628d663 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lead.json @@ -0,0 +1,13 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/lead" + }, + "display": { + "head": { + "rotation": [ 0, 0, 0 ], + "translation": [ 2.75, -2.75, -6.5], + "scale":[ 0.8, 0.8, 0.8] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leaf_litter.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leaf_litter.json new file mode 100644 index 000000000..3c03d48c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leaf_litter.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leaf_litter" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather.json new file mode 100644 index 000000000..2b48d1f83 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots.json new file mode 100644 index 000000000..54bdcdbf6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_amethyst_trim.json new file mode 100644 index 000000000..2b6f4a7e5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_amethyst_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_copper_trim.json new file mode 100644 index 000000000..e6a7f7c87 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_copper_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_diamond_trim.json new file mode 100644 index 000000000..07dc69b0f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_diamond_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_emerald_trim.json new file mode 100644 index 000000000..9ebfe59ed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_emerald_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_gold_trim.json new file mode 100644 index 000000000..e17c9a74b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_gold_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_iron_trim.json new file mode 100644 index 000000000..196913b60 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_iron_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_lapis_trim.json new file mode 100644 index 000000000..8c5b3bdd5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_lapis_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_netherite_trim.json new file mode 100644 index 000000000..254a56366 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_netherite_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_quartz_trim.json new file mode 100644 index 000000000..5d056ad76 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_quartz_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_redstone_trim.json new file mode 100644 index 000000000..c85de7a41 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_redstone_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_resin_trim.json new file mode 100644 index 000000000..43fcb574c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_boots_resin_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_boots", + "layer1": "minecraft:item/leather_boots_overlay", + "layer2": "minecraft:trims/items/boots_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate.json new file mode 100644 index 000000000..4628d113f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_amethyst_trim.json new file mode 100644 index 000000000..b615e9476 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_amethyst_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_copper_trim.json new file mode 100644 index 000000000..cccfd3c0a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_copper_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_diamond_trim.json new file mode 100644 index 000000000..660d6665a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_diamond_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_emerald_trim.json new file mode 100644 index 000000000..38ab18ae7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_emerald_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_gold_trim.json new file mode 100644 index 000000000..7dd884934 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_gold_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_iron_trim.json new file mode 100644 index 000000000..9b6fcf497 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_iron_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_lapis_trim.json new file mode 100644 index 000000000..343d68283 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_lapis_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_netherite_trim.json new file mode 100644 index 000000000..a95532ca9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_netherite_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_quartz_trim.json new file mode 100644 index 000000000..319aa4473 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_quartz_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_redstone_trim.json new file mode 100644 index 000000000..cb2008c1a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_redstone_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_resin_trim.json new file mode 100644 index 000000000..41205308d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_chestplate_resin_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_chestplate", + "layer1": "minecraft:item/leather_chestplate_overlay", + "layer2": "minecraft:trims/items/chestplate_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet.json new file mode 100644 index 000000000..74041e7cb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_amethyst_trim.json new file mode 100644 index 000000000..6f4df1bbe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_amethyst_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_copper_trim.json new file mode 100644 index 000000000..2c1275a89 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_copper_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_diamond_trim.json new file mode 100644 index 000000000..315eb0dec --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_diamond_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_emerald_trim.json new file mode 100644 index 000000000..0167efb86 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_emerald_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_gold_trim.json new file mode 100644 index 000000000..0e8c4560c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_gold_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_iron_trim.json new file mode 100644 index 000000000..7b1b8b853 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_iron_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_lapis_trim.json new file mode 100644 index 000000000..555c28286 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_lapis_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_netherite_trim.json new file mode 100644 index 000000000..9e3ddb7db --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_netherite_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_quartz_trim.json new file mode 100644 index 000000000..63fe5bc15 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_quartz_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_redstone_trim.json new file mode 100644 index 000000000..df0448307 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_redstone_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_resin_trim.json new file mode 100644 index 000000000..1812bdd3a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_helmet_resin_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_helmet", + "layer1": "minecraft:item/leather_helmet_overlay", + "layer2": "minecraft:trims/items/helmet_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_horse_armor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_horse_armor.json new file mode 100644 index 000000000..f96eae753 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_horse_armor.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_horse_armor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings.json new file mode 100644 index 000000000..0d101f4e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_amethyst_trim.json new file mode 100644 index 000000000..331e2096c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_amethyst_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_copper_trim.json new file mode 100644 index 000000000..cc6a39454 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_copper_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_diamond_trim.json new file mode 100644 index 000000000..9a5313eae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_diamond_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_emerald_trim.json new file mode 100644 index 000000000..71156943a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_emerald_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_gold_trim.json new file mode 100644 index 000000000..528c94e7a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_gold_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_iron_trim.json new file mode 100644 index 000000000..3e9d66348 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_iron_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_lapis_trim.json new file mode 100644 index 000000000..6858077cd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_lapis_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_netherite_trim.json new file mode 100644 index 000000000..abf3b6157 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_netherite_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_quartz_trim.json new file mode 100644 index 000000000..29b21d50c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_quartz_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_redstone_trim.json new file mode 100644 index 000000000..9b35d59f1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_redstone_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_resin_trim.json new file mode 100644 index 000000000..73cde2c43 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/leather_leggings_resin_trim.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/leather_leggings", + "layer1": "minecraft:item/leather_leggings_overlay", + "layer2": "minecraft:trims/items/leggings_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lectern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lectern.json new file mode 100644 index 000000000..4f2c887a5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lectern.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/lectern" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lever.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lever.json new file mode 100644 index 000000000..d5a62d479 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lever.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/lever" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light.json new file mode 100644 index 000000000..9afb5f2d6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_00.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_00.json new file mode 100644 index 000000000..f6029196c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_00.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_00" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_01.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_01.json new file mode 100644 index 000000000..50fe9d526 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_01.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_01" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_02.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_02.json new file mode 100644 index 000000000..3112e828d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_02.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_02" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_03.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_03.json new file mode 100644 index 000000000..7b7d13046 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_03.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_03" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_04.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_04.json new file mode 100644 index 000000000..eeca8b9c1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_04.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_04" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_05.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_05.json new file mode 100644 index 000000000..920f2957c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_05.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_05" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_06.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_06.json new file mode 100644 index 000000000..f60f6bf7e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_06.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_06" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_07.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_07.json new file mode 100644 index 000000000..b795ac71e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_07.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_07" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_08.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_08.json new file mode 100644 index 000000000..d34ca3a15 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_08.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_08" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_09.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_09.json new file mode 100644 index 000000000..861002fe1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_09.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_09" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_10.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_10.json new file mode 100644 index 000000000..3bda0d190 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_10.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_10" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_11.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_11.json new file mode 100644 index 000000000..582b6183d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_11.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_11" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_12.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_12.json new file mode 100644 index 000000000..f9dc8d109 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_12.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_12" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_13.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_13.json new file mode 100644 index 000000000..2f9d3815e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_13.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_13" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_14.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_14.json new file mode 100644 index 000000000..263b45fe3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_14.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_14" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_15.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_15.json new file mode 100644 index 000000000..6f39d142a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_15.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_15" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_banner.json new file mode 100644 index 000000000..661a106df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_banner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_bed.json new file mode 100644 index 000000000..fac4cda76 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/light_blue_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_bundle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_bundle.json new file mode 100644 index 000000000..7f4e733b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_blue_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_bundle_open_back.json new file mode 100644 index 000000000..e5a589c94 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/light_blue_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_bundle_open_front.json new file mode 100644 index 000000000..02e939218 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/light_blue_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_candle.json new file mode 100644 index 000000000..e445d4ad5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_blue_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_carpet.json new file mode 100644 index 000000000..9f199e5c9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/light_blue_carpet" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_concrete.json new file mode 100644 index 000000000..68a0890f1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/light_blue_concrete" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_concrete_powder.json new file mode 100644 index 000000000..22ec71d5a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_concrete_powder.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/light_blue_concrete_powder" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_dye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_dye.json new file mode 100644 index 000000000..297407daf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_blue_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_glazed_terracotta.json new file mode 100644 index 000000000..3d2b3bd70 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_glazed_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/light_blue_glazed_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_harness.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_harness.json new file mode 100644 index 000000000..31259cdd3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_blue_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_shulker_box.json new file mode 100644 index 000000000..d17a7729e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/light_blue_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_stained_glass.json new file mode 100644 index 000000000..0aef7a927 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_stained_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/light_blue_stained_glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_stained_glass_pane.json new file mode 100644 index 000000000..d810047f1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/light_blue_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_terracotta.json new file mode 100644 index 000000000..06294ea2e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/light_blue_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_wool.json new file mode 100644 index 000000000..4f7bd4de3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_blue_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/light_blue_wool" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_banner.json new file mode 100644 index 000000000..661a106df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_banner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_bed.json new file mode 100644 index 000000000..67c2af9eb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/light_gray_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_bundle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_bundle.json new file mode 100644 index 000000000..88a6b82d3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_gray_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_bundle_open_back.json new file mode 100644 index 000000000..91f04e7c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/light_gray_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_bundle_open_front.json new file mode 100644 index 000000000..3887d1bb4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/light_gray_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_candle.json new file mode 100644 index 000000000..332e87c61 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_gray_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_carpet.json new file mode 100644 index 000000000..f603263e1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/light_gray_carpet" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_concrete.json new file mode 100644 index 000000000..9a4e67de2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/light_gray_concrete" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_concrete_powder.json new file mode 100644 index 000000000..6726d5691 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_concrete_powder.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/light_gray_concrete_powder" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_dye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_dye.json new file mode 100644 index 000000000..40a44accb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_gray_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_glazed_terracotta.json new file mode 100644 index 000000000..46b9f1765 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_glazed_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/light_gray_glazed_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_harness.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_harness.json new file mode 100644 index 000000000..432f83fd8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/light_gray_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_shulker_box.json new file mode 100644 index 000000000..0efe127aa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/light_gray_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_stained_glass.json new file mode 100644 index 000000000..e05c7e8d5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_stained_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/light_gray_stained_glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_stained_glass_pane.json new file mode 100644 index 000000000..502847437 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/light_gray_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_terracotta.json new file mode 100644 index 000000000..a6cbc2418 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/light_gray_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_wool.json new file mode 100644 index 000000000..0bdc80f41 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_gray_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/light_gray_wool" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_weighted_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_weighted_pressure_plate.json new file mode 100644 index 000000000..0922c6701 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/light_weighted_pressure_plate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/light_weighted_pressure_plate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lightning_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lightning_rod.json new file mode 100644 index 000000000..d701601a0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lightning_rod.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/lightning_rod" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lilac.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lilac.json new file mode 100644 index 000000000..7e062c921 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lilac.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/lilac_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lily_of_the_valley.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lily_of_the_valley.json new file mode 100644 index 000000000..2cd5a1cd0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lily_of_the_valley.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/lily_of_the_valley" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lily_pad.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lily_pad.json new file mode 100644 index 000000000..e3aaf7f9e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lily_pad.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/lily_pad" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_banner.json new file mode 100644 index 000000000..661a106df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_banner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_bed.json new file mode 100644 index 000000000..3efda22b0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/lime_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_bundle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_bundle.json new file mode 100644 index 000000000..3af851fbf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/lime_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_bundle_open_back.json new file mode 100644 index 000000000..c4aae6421 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/lime_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_bundle_open_front.json new file mode 100644 index 000000000..a79171845 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/lime_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_candle.json new file mode 100644 index 000000000..84617ccf8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/lime_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_carpet.json new file mode 100644 index 000000000..b6f18c0a3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/lime_carpet" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_concrete.json new file mode 100644 index 000000000..6becad9d9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/lime_concrete" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_concrete_powder.json new file mode 100644 index 000000000..a74380d09 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_concrete_powder.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/lime_concrete_powder" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_dye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_dye.json new file mode 100644 index 000000000..36ae6c824 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/lime_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_glazed_terracotta.json new file mode 100644 index 000000000..14b5723d0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_glazed_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/lime_glazed_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_harness.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_harness.json new file mode 100644 index 000000000..cade16bf2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/lime_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_shulker_box.json new file mode 100644 index 000000000..5e0062e22 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/lime_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_stained_glass.json new file mode 100644 index 000000000..becc32963 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_stained_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/lime_stained_glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_stained_glass_pane.json new file mode 100644 index 000000000..7f15356d4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/lime_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_terracotta.json new file mode 100644 index 000000000..e61230306 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/lime_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_wool.json new file mode 100644 index 000000000..e6600fa83 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lime_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/lime_wool" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lingering_potion.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lingering_potion.json new file mode 100644 index 000000000..a786fc0aa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lingering_potion.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/potion_overlay", + "layer1": "minecraft:item/lingering_potion" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/llama_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/llama_spawn_egg.json new file mode 100644 index 000000000..4950af13a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/llama_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/llama_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lodestone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lodestone.json new file mode 100644 index 000000000..f926ec2e0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/lodestone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/lodestone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/loom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/loom.json new file mode 100644 index 000000000..0fe6a7fa6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/loom.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/loom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mace.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mace.json new file mode 100644 index 000000000..b62af83de --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mace.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld_mace", + "textures": { + "layer0": "minecraft:item/mace" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_banner.json new file mode 100644 index 000000000..661a106df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_banner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_bed.json new file mode 100644 index 000000000..19af87b67 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/magenta_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_bundle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_bundle.json new file mode 100644 index 000000000..973ef505f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/magenta_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_bundle_open_back.json new file mode 100644 index 000000000..2cb31ce2c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/magenta_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_bundle_open_front.json new file mode 100644 index 000000000..925f1c1c7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/magenta_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_candle.json new file mode 100644 index 000000000..b4b756203 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/magenta_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_carpet.json new file mode 100644 index 000000000..386f8fcc7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/magenta_carpet" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_concrete.json new file mode 100644 index 000000000..8dce5e8f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/magenta_concrete" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_concrete_powder.json new file mode 100644 index 000000000..e221911bd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_concrete_powder.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/magenta_concrete_powder" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_dye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_dye.json new file mode 100644 index 000000000..f1ebae5bc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/magenta_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_glazed_terracotta.json new file mode 100644 index 000000000..45b94ea37 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_glazed_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/magenta_glazed_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_harness.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_harness.json new file mode 100644 index 000000000..f51483f50 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/magenta_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_shulker_box.json new file mode 100644 index 000000000..f21cad42d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/magenta_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_stained_glass.json new file mode 100644 index 000000000..62ff86a5e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_stained_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/magenta_stained_glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_stained_glass_pane.json new file mode 100644 index 000000000..ad9621d10 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/magenta_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_terracotta.json new file mode 100644 index 000000000..07d441995 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/magenta_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_wool.json new file mode 100644 index 000000000..e3ef178ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magenta_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/magenta_wool" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magma_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magma_block.json new file mode 100644 index 000000000..ac1aa2f4b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magma_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/magma_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magma_cream.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magma_cream.json new file mode 100644 index 000000000..f9d7a14d7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magma_cream.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/magma_cream" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magma_cube_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magma_cube_spawn_egg.json new file mode 100644 index 000000000..5fd646c61 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/magma_cube_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/magma_cube_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_boat.json new file mode 100644 index 000000000..6816d9e02 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mangrove_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_button.json new file mode 100644 index 000000000..4bab5228e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_button.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mangrove_button_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_chest_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_chest_boat.json new file mode 100644 index 000000000..006def690 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mangrove_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_door.json new file mode 100644 index 000000000..c67a120c4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mangrove_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_fence.json new file mode 100644 index 000000000..b0d4d8c40 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_fence.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mangrove_fence_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_fence_gate.json new file mode 100644 index 000000000..7eddb3396 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_fence_gate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mangrove_fence_gate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_hanging_sign.json new file mode 100644 index 000000000..431863612 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mangrove_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_leaves.json new file mode 100644 index 000000000..be1fca786 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_leaves.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mangrove_leaves" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_log.json new file mode 100644 index 000000000..9dbddf082 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_log.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mangrove_log" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_planks.json new file mode 100644 index 000000000..4c4f23bc2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_planks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mangrove_planks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_pressure_plate.json new file mode 100644 index 000000000..90b728fe2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_pressure_plate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mangrove_pressure_plate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_propagule.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_propagule.json new file mode 100644 index 000000000..38a689e6b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_propagule.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mangrove_propagule" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_roots.json new file mode 100644 index 000000000..39131b24f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_roots.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mangrove_roots" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_sign.json new file mode 100644 index 000000000..867584b16 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mangrove_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_slab.json new file mode 100644 index 000000000..036a10f77 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mangrove_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_stairs.json new file mode 100644 index 000000000..281b61b54 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mangrove_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_trapdoor.json new file mode 100644 index 000000000..dec13fdec --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mangrove_trapdoor_bottom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_wood.json new file mode 100644 index 000000000..99e25bc79 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mangrove_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mangrove_wood" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/map.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/map.json new file mode 100644 index 000000000..282650e26 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/map.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/map" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/medium_amethyst_bud.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/medium_amethyst_bud.json new file mode 100644 index 000000000..686d48f48 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/medium_amethyst_bud.json @@ -0,0 +1,11 @@ + { + "parent": "item/amethyst_bud", + "textures": { + "layer0": "minecraft:block/medium_amethyst_bud" + }, + "display": { + "fixed": { + "translation": [ 0, 6, 0 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/melon.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/melon.json new file mode 100644 index 000000000..f0bcf44e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/melon.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/melon" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/melon_seeds.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/melon_seeds.json new file mode 100644 index 000000000..71e34075f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/melon_seeds.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/melon_seeds" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/melon_slice.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/melon_slice.json new file mode 100644 index 000000000..70a587eb8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/melon_slice.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/melon_slice" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/milk_bucket.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/milk_bucket.json new file mode 100644 index 000000000..4f4a252f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/milk_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/milk_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/minecart.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/minecart.json new file mode 100644 index 000000000..f478d37cc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/minecart.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/miner_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/miner_pottery_sherd.json new file mode 100644 index 000000000..c31761d1e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/miner_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/miner_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mojang_banner_pattern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mojang_banner_pattern.json new file mode 100644 index 000000000..bfac8a9e3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mojang_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mojang_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mooshroom_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mooshroom_spawn_egg.json new file mode 100644 index 000000000..9b53bf4e1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mooshroom_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mooshroom_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/moss_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/moss_block.json new file mode 100644 index 000000000..14bf2a81b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/moss_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/moss_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/moss_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/moss_carpet.json new file mode 100644 index 000000000..86a4dfd8e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/moss_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/moss_carpet" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_cobblestone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_cobblestone.json new file mode 100644 index 000000000..e865e8fc8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_cobblestone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mossy_cobblestone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_cobblestone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_cobblestone_slab.json new file mode 100644 index 000000000..814e6a7a8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_cobblestone_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mossy_cobblestone_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_cobblestone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_cobblestone_stairs.json new file mode 100644 index 000000000..bc2712d25 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_cobblestone_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mossy_cobblestone_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_cobblestone_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_cobblestone_wall.json new file mode 100644 index 000000000..8baaff2b7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_cobblestone_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mossy_cobblestone_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_stone_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_stone_brick_slab.json new file mode 100644 index 000000000..539b74242 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_stone_brick_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mossy_stone_brick_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_stone_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_stone_brick_stairs.json new file mode 100644 index 000000000..2366348b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_stone_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mossy_stone_brick_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_stone_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_stone_brick_wall.json new file mode 100644 index 000000000..185b158a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_stone_brick_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mossy_stone_brick_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_stone_bricks.json new file mode 100644 index 000000000..a9fe750fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mossy_stone_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mossy_stone_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mourner_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mourner_pottery_sherd.json new file mode 100644 index 000000000..08950424b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mourner_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mourner_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mud.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mud.json new file mode 100644 index 000000000..bee0b1b02 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mud.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mud" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mud_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mud_brick_slab.json new file mode 100644 index 000000000..06e29291c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mud_brick_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mud_brick_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mud_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mud_brick_stairs.json new file mode 100644 index 000000000..f6d908dd1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mud_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mud_brick_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mud_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mud_brick_wall.json new file mode 100644 index 000000000..1679aa639 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mud_brick_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mud_brick_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mud_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mud_bricks.json new file mode 100644 index 000000000..4ff42f1ca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mud_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mud_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/muddy_mangrove_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/muddy_mangrove_roots.json new file mode 100644 index 000000000..a23b27d15 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/muddy_mangrove_roots.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/muddy_mangrove_roots" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mule_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mule_spawn_egg.json new file mode 100644 index 000000000..1b73ff677 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mule_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mule_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mushroom_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mushroom_stem.json new file mode 100644 index 000000000..b791415fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mushroom_stem.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mushroom_stem_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mushroom_stew.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mushroom_stew.json new file mode 100644 index 000000000..70e31deb8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mushroom_stew.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mushroom_stew" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_11.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_11.json new file mode 100644 index 000000000..aa9afb6fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_11.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_11" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_13.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_13.json new file mode 100644 index 000000000..eb7eee8b7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_13.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_13" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_5.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_5.json new file mode 100644 index 000000000..c431c6704 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_5" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_blocks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_blocks.json new file mode 100644 index 000000000..fa70fbc5d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_blocks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_blocks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_cat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_cat.json new file mode 100644 index 000000000..86c9ff552 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_cat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_cat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_chirp.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_chirp.json new file mode 100644 index 000000000..b89464c2e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_chirp.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_chirp" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_creator.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_creator.json new file mode 100644 index 000000000..cd8e281c1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_creator.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_creator" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_creator_music_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_creator_music_box.json new file mode 100644 index 000000000..eeece1829 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_creator_music_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_creator_music_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_far.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_far.json new file mode 100644 index 000000000..3fe312854 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_far.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_far" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_lava_chicken.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_lava_chicken.json new file mode 100644 index 000000000..ada6dd1fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_lava_chicken.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_lava_chicken" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_mall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_mall.json new file mode 100644 index 000000000..41eea3675 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_mall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_mall" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_mellohi.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_mellohi.json new file mode 100644 index 000000000..8b6fc61cc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_mellohi.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_mellohi" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_otherside.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_otherside.json new file mode 100644 index 000000000..3cfc540e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_otherside.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_otherside" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_pigstep.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_pigstep.json new file mode 100644 index 000000000..241ffa8e1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_pigstep.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_pigstep" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_precipice.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_precipice.json new file mode 100644 index 000000000..051ae5e8a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_precipice.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_precipice" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_relic.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_relic.json new file mode 100644 index 000000000..d225ce681 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_relic.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_relic" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_stal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_stal.json new file mode 100644 index 000000000..b9b968211 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_stal.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_stal" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_strad.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_strad.json new file mode 100644 index 000000000..add37ea1d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_strad.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_strad" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_tears.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_tears.json new file mode 100644 index 000000000..97bafe41b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_tears.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_tears" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_wait.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_wait.json new file mode 100644 index 000000000..215e160de --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_wait.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_wait" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_ward.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_ward.json new file mode 100644 index 000000000..24bb7ee92 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/music_disc_ward.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_music_disc", + "textures": { + "layer0": "minecraft:item/music_disc_ward" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mutton.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mutton.json new file mode 100644 index 000000000..56c070d45 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mutton.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/mutton" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mycelium.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mycelium.json new file mode 100644 index 000000000..c97f2ec0a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/mycelium.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/mycelium" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/name_tag.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/name_tag.json new file mode 100644 index 000000000..ee668ff55 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/name_tag.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/name_tag" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nautilus_shell.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nautilus_shell.json new file mode 100644 index 000000000..35a8e5097 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nautilus_shell.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/nautilus_shell" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_brick.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_brick.json new file mode 100644 index 000000000..b72605844 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/nether_brick" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_brick_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_brick_fence.json new file mode 100644 index 000000000..5a72d31a7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_brick_fence.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/nether_brick_fence_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_brick_slab.json new file mode 100644 index 000000000..dc7b20972 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_brick_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/nether_brick_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_brick_stairs.json new file mode 100644 index 000000000..c0669dfe3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/nether_brick_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_brick_wall.json new file mode 100644 index 000000000..e01270d4c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_brick_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/nether_brick_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_bricks.json new file mode 100644 index 000000000..ada571f62 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/nether_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_gold_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_gold_ore.json new file mode 100644 index 000000000..ca989c791 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_gold_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/nether_gold_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_quartz_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_quartz_ore.json new file mode 100644 index 000000000..4c6d1bf76 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_quartz_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/nether_quartz_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_sprouts.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_sprouts.json new file mode 100644 index 000000000..847698f84 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_sprouts.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/nether_sprouts" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_star.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_star.json new file mode 100644 index 000000000..b2874c285 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_star.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/nether_star" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_wart.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_wart.json new file mode 100644 index 000000000..de82d450e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_wart.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/nether_wart" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_wart_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_wart_block.json new file mode 100644 index 000000000..a66f9a274 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/nether_wart_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/nether_wart_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_axe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_axe.json new file mode 100644 index 000000000..50d50009a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_axe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_block.json new file mode 100644 index 000000000..828da634f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/netherite_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots.json new file mode 100644 index 000000000..c7dae9029 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_amethyst_trim.json new file mode 100644 index 000000000..e2049a22f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_copper_trim.json new file mode 100644 index 000000000..f0b92c017 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_diamond_trim.json new file mode 100644 index 000000000..8be51aca8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_emerald_trim.json new file mode 100644 index 000000000..65a08e500 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_gold_trim.json new file mode 100644 index 000000000..806f861b3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_iron_trim.json new file mode 100644 index 000000000..2bffc3498 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_lapis_trim.json new file mode 100644 index 000000000..5d68abb3d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_netherite_darker_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_netherite_darker_trim.json new file mode 100644 index 000000000..b5c31415d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_netherite_darker_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_netherite_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_netherite_trim.json new file mode 100644 index 000000000..b5c31415d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_netherite_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_quartz_trim.json new file mode 100644 index 000000000..23ff1d64a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_redstone_trim.json new file mode 100644 index 000000000..1c68b81f3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_resin_trim.json new file mode 100644 index 000000000..a6395da18 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_boots_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_boots", + "layer1": "minecraft:trims/items/boots_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate.json new file mode 100644 index 000000000..61d2982ad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_amethyst_trim.json new file mode 100644 index 000000000..945363a35 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_copper_trim.json new file mode 100644 index 000000000..51c30e494 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_diamond_trim.json new file mode 100644 index 000000000..3a38051a9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_emerald_trim.json new file mode 100644 index 000000000..e774df9d7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_gold_trim.json new file mode 100644 index 000000000..fcd52da7d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_iron_trim.json new file mode 100644 index 000000000..09d65529f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_lapis_trim.json new file mode 100644 index 000000000..ee2a9d3e3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_netherite_darker_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_netherite_darker_trim.json new file mode 100644 index 000000000..b80d9cff2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_netherite_darker_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_netherite_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_netherite_trim.json new file mode 100644 index 000000000..b80d9cff2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_netherite_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_quartz_trim.json new file mode 100644 index 000000000..51af51b88 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_redstone_trim.json new file mode 100644 index 000000000..a1979f266 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_resin_trim.json new file mode 100644 index 000000000..b352e3beb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_chestplate_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_chestplate", + "layer1": "minecraft:trims/items/chestplate_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet.json new file mode 100644 index 000000000..4df20a59b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_amethyst_trim.json new file mode 100644 index 000000000..534ef695d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_copper_trim.json new file mode 100644 index 000000000..d435422bd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_diamond_trim.json new file mode 100644 index 000000000..e50ce756c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_emerald_trim.json new file mode 100644 index 000000000..22876e114 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_gold_trim.json new file mode 100644 index 000000000..405e6bbce --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_iron_trim.json new file mode 100644 index 000000000..c7afe68c0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_lapis_trim.json new file mode 100644 index 000000000..3bc06d400 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_netherite_darker_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_netherite_darker_trim.json new file mode 100644 index 000000000..630061661 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_netherite_darker_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_netherite_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_netherite_trim.json new file mode 100644 index 000000000..630061661 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_netherite_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_quartz_trim.json new file mode 100644 index 000000000..3b614408a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_redstone_trim.json new file mode 100644 index 000000000..533466cb3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_resin_trim.json new file mode 100644 index 000000000..07e5f3e58 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_helmet_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_helmet", + "layer1": "minecraft:trims/items/helmet_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_hoe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_hoe.json new file mode 100644 index 000000000..d9c185dcd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_hoe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_ingot.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_ingot.json new file mode 100644 index 000000000..0ef436c07 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_ingot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_ingot" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings.json new file mode 100644 index 000000000..e3e889cc2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_amethyst_trim.json new file mode 100644 index 000000000..7a254f283 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_copper_trim.json new file mode 100644 index 000000000..3c2f5f3fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_diamond_trim.json new file mode 100644 index 000000000..ac71f9eed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_emerald_trim.json new file mode 100644 index 000000000..a30340338 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_gold_trim.json new file mode 100644 index 000000000..1e49fde47 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_iron_trim.json new file mode 100644 index 000000000..09d1dbb99 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_lapis_trim.json new file mode 100644 index 000000000..62a4e71d9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_netherite_darker_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_netherite_darker_trim.json new file mode 100644 index 000000000..734ea70e5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_netherite_darker_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_netherite_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_netherite_trim.json new file mode 100644 index 000000000..734ea70e5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_netherite_darker" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_quartz_trim.json new file mode 100644 index 000000000..55e5445e4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_redstone_trim.json new file mode 100644 index 000000000..e6bafbe73 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_resin_trim.json new file mode 100644 index 000000000..46652a0dd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_leggings_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_leggings", + "layer1": "minecraft:trims/items/leggings_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_pickaxe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_pickaxe.json new file mode 100644 index 000000000..663d51627 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_pickaxe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_scrap.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_scrap.json new file mode 100644 index 000000000..8465c6781 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_scrap.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_scrap" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_shovel.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_shovel.json new file mode 100644 index 000000000..88e93948e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_shovel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_sword.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_sword.json new file mode 100644 index 000000000..a2d7ef428 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_sword.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_upgrade_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_upgrade_smithing_template.json new file mode 100644 index 000000000..17012d1bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherite_upgrade_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/netherite_upgrade_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherrack.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherrack.json new file mode 100644 index 000000000..39d75ee84 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/netherrack.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/netherrack" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/note_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/note_block.json new file mode 100644 index 000000000..dd873344e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/note_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/note_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_boat.json new file mode 100644 index 000000000..793cf5206 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/oak_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_button.json new file mode 100644 index 000000000..7e99608e5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_button.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oak_button_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_chest_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_chest_boat.json new file mode 100644 index 000000000..0d6c1c49b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/oak_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_door.json new file mode 100644 index 000000000..93f7e7351 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/oak_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_fence.json new file mode 100644 index 000000000..039fd9143 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_fence.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oak_fence_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_fence_gate.json new file mode 100644 index 000000000..04dee087b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_fence_gate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oak_fence_gate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_hanging_sign.json new file mode 100644 index 000000000..400c727f1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/oak_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_leaves.json new file mode 100644 index 000000000..a54fc8a7a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_leaves.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oak_leaves" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_log.json new file mode 100644 index 000000000..b450f38fa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_log.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oak_log" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_planks.json new file mode 100644 index 000000000..a03517532 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_planks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oak_planks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_pressure_plate.json new file mode 100644 index 000000000..ec3f44562 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_pressure_plate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oak_pressure_plate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_sapling.json new file mode 100644 index 000000000..93a96b44e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_sign.json new file mode 100644 index 000000000..0f6a0f050 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/oak_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_slab.json new file mode 100644 index 000000000..263d7d00d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oak_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_stairs.json new file mode 100644 index 000000000..282b43100 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oak_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_trapdoor.json new file mode 100644 index 000000000..a041a5b48 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oak_trapdoor_bottom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_wood.json new file mode 100644 index 000000000..a51270ef8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oak_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oak_wood" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/observer.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/observer.json new file mode 100644 index 000000000..c1e1ddfed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/observer.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/observer" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/obsidian.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/obsidian.json new file mode 100644 index 000000000..0c124ed6f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/obsidian.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/obsidian" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ocelot_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ocelot_spawn_egg.json new file mode 100644 index 000000000..4adda9300 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ocelot_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ocelot_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ochre_froglight.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ochre_froglight.json new file mode 100644 index 000000000..d5bf2ba40 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ochre_froglight.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/ochre_froglight" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ominous_bottle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ominous_bottle.json new file mode 100644 index 000000000..de2d68f74 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ominous_bottle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ominous_bottle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ominous_trial_key.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ominous_trial_key.json new file mode 100644 index 000000000..32057a58b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ominous_trial_key.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ominous_trial_key" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/open_eyeblossom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/open_eyeblossom.json new file mode 100644 index 000000000..ac735ccd9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/open_eyeblossom.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/open_eyeblossom", + "layer1": "minecraft:block/open_eyeblossom_emissive" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_banner.json new file mode 100644 index 000000000..661a106df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_banner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_bed.json new file mode 100644 index 000000000..c014375aa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/orange_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_bundle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_bundle.json new file mode 100644 index 000000000..593cfc8d3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/orange_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_bundle_open_back.json new file mode 100644 index 000000000..b484ed1fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/orange_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_bundle_open_front.json new file mode 100644 index 000000000..7f55075b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/orange_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_candle.json new file mode 100644 index 000000000..9f35bc60e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/orange_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_carpet.json new file mode 100644 index 000000000..f1421e235 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/orange_carpet" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_concrete.json new file mode 100644 index 000000000..6238369f9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/orange_concrete" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_concrete_powder.json new file mode 100644 index 000000000..3c854fe1a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_concrete_powder.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/orange_concrete_powder" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_dye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_dye.json new file mode 100644 index 000000000..4c5e5e9b9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/orange_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_glazed_terracotta.json new file mode 100644 index 000000000..9a67ff627 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_glazed_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/orange_glazed_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_harness.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_harness.json new file mode 100644 index 000000000..3f2180821 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/orange_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_shulker_box.json new file mode 100644 index 000000000..e8a725a2b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/orange_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_stained_glass.json new file mode 100644 index 000000000..b00fed28b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_stained_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/orange_stained_glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_stained_glass_pane.json new file mode 100644 index 000000000..756f767a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/orange_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_terracotta.json new file mode 100644 index 000000000..6d399783a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/orange_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_tulip.json new file mode 100644 index 000000000..70ba2d3af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/orange_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_wool.json new file mode 100644 index 000000000..e7c54f33f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/orange_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/orange_wool" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxeye_daisy.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxeye_daisy.json new file mode 100644 index 000000000..dc6eaab32 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxeye_daisy.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/oxeye_daisy" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_chiseled_copper.json new file mode 100644 index 000000000..720204270 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_chiseled_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oxidized_chiseled_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper.json new file mode 100644 index 000000000..63a0dabe3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oxidized_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_bars.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_bars.json new file mode 100644 index 000000000..81ff60338 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_bars.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/oxidized_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_bulb.json new file mode 100644 index 000000000..1624fe6e0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_bulb.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oxidized_copper_bulb" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_chain.json new file mode 100644 index 000000000..223833c2b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_chain.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/oxidized_copper_chain" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_chest.json new file mode 100644 index 000000000..e2dd3e0da --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_chest.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_chest", + "textures": { + "particle": "minecraft:block/oxidized_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_door.json new file mode 100644 index 000000000..cd2edca38 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/oxidized_copper_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_grate.json new file mode 100644 index 000000000..e2521c38e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_grate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oxidized_copper_grate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_lantern.json new file mode 100644 index 000000000..6d400c839 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/oxidized_copper_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_trapdoor.json new file mode 100644 index 000000000..3685e9b2e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_copper_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oxidized_copper_trapdoor_bottom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_cut_copper.json new file mode 100644 index 000000000..36dfa030a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_cut_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oxidized_cut_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_cut_copper_slab.json new file mode 100644 index 000000000..a3d022426 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_cut_copper_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oxidized_cut_copper_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_cut_copper_stairs.json new file mode 100644 index 000000000..fd8af1aab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/oxidized_cut_copper_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oxidized_cut_copper_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/packed_ice.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/packed_ice.json new file mode 100644 index 000000000..bada5d8ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/packed_ice.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/packed_ice" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/packed_mud.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/packed_mud.json new file mode 100644 index 000000000..8ac65758b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/packed_mud.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/packed_mud" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/painting.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/painting.json new file mode 100644 index 000000000..0222609b7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/painting.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/painting" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_hanging_moss.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_hanging_moss.json new file mode 100644 index 000000000..41100eeda --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_hanging_moss.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/pale_hanging_moss" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_boat.json new file mode 100644 index 000000000..d40a5136e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pale_oak_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_chest_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_chest_boat.json new file mode 100644 index 000000000..00d122ead --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pale_oak_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_door.json new file mode 100644 index 000000000..0f7964be1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pale_oak_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_hanging_sign.json new file mode 100644 index 000000000..4d5f08f48 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pale_oak_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_sapling.json new file mode 100644 index 000000000..7c162db68 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/pale_oak_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_sign.json new file mode 100644 index 000000000..c9018638a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pale_oak_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pale_oak_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/panda_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/panda_spawn_egg.json new file mode 100644 index 000000000..e18ff722b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/panda_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/panda_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/paper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/paper.json new file mode 100644 index 000000000..5cfa9dd85 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/paper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/paper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/parrot_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/parrot_spawn_egg.json new file mode 100644 index 000000000..dbda1d12f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/parrot_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/parrot_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pearlescent_froglight.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pearlescent_froglight.json new file mode 100644 index 000000000..3a9d87f48 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pearlescent_froglight.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/pearlescent_froglight" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/peony.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/peony.json new file mode 100644 index 000000000..b87b076e9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/peony.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/peony_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/petrified_oak_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/petrified_oak_slab.json new file mode 100644 index 000000000..36ecfd7c2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/petrified_oak_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/petrified_oak_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/phantom_membrane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/phantom_membrane.json new file mode 100644 index 000000000..aa7891ced --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/phantom_membrane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/phantom_membrane" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/phantom_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/phantom_spawn_egg.json new file mode 100644 index 000000000..0e9a87845 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/phantom_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/phantom_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pig_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pig_spawn_egg.json new file mode 100644 index 000000000..c9f75608d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pig_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pig_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/piglin_banner_pattern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/piglin_banner_pattern.json new file mode 100644 index 000000000..e19d96c8c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/piglin_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/piglin_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/piglin_brute_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/piglin_brute_spawn_egg.json new file mode 100644 index 000000000..040d3224a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/piglin_brute_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/piglin_brute_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/piglin_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/piglin_head.json new file mode 100644 index 000000000..364b6e65f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/piglin_head.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_skull" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/piglin_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/piglin_spawn_egg.json new file mode 100644 index 000000000..79439547d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/piglin_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/piglin_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pillager_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pillager_spawn_egg.json new file mode 100644 index 000000000..54ab4a3f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pillager_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pillager_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_banner.json new file mode 100644 index 000000000..661a106df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_banner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_bed.json new file mode 100644 index 000000000..7565d98f1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/pink_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_bundle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_bundle.json new file mode 100644 index 000000000..2d76ab30e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pink_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_bundle_open_back.json new file mode 100644 index 000000000..a99ca47fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/pink_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_bundle_open_front.json new file mode 100644 index 000000000..4f7b5fb44 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/pink_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_candle.json new file mode 100644 index 000000000..0d64b1caf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pink_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_carpet.json new file mode 100644 index 000000000..b27091087 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/pink_carpet" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_concrete.json new file mode 100644 index 000000000..770e1febc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/pink_concrete" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_concrete_powder.json new file mode 100644 index 000000000..29803f664 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_concrete_powder.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/pink_concrete_powder" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_dye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_dye.json new file mode 100644 index 000000000..bf230ebc6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pink_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_glazed_terracotta.json new file mode 100644 index 000000000..c8ea2b254 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_glazed_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/pink_glazed_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_harness.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_harness.json new file mode 100644 index 000000000..cbaf8262d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pink_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_petals.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_petals.json new file mode 100644 index 000000000..ce099c8a5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_petals.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pink_petals" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_shulker_box.json new file mode 100644 index 000000000..e71465fea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/pink_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_stained_glass.json new file mode 100644 index 000000000..b0bc89687 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_stained_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/pink_stained_glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_stained_glass_pane.json new file mode 100644 index 000000000..13681586a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/pink_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_terracotta.json new file mode 100644 index 000000000..2e5587491 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/pink_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_tulip.json new file mode 100644 index 000000000..9d76762d5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/pink_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_wool.json new file mode 100644 index 000000000..9f1e510fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pink_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/pink_wool" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/piston.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/piston.json new file mode 100644 index 000000000..669d1c40d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/piston.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/piston_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pitcher_plant.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pitcher_plant.json new file mode 100644 index 000000000..e5898a0fa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pitcher_plant.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pitcher_plant" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pitcher_pod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pitcher_pod.json new file mode 100644 index 000000000..b5f561ac3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pitcher_pod.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pitcher_pod" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/player_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/player_head.json new file mode 100644 index 000000000..364b6e65f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/player_head.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_skull" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/plenty_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/plenty_pottery_sherd.json new file mode 100644 index 000000000..c3fd23217 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/plenty_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/plenty_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/podzol.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/podzol.json new file mode 100644 index 000000000..ec0474983 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/podzol.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/podzol" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pointed_dripstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pointed_dripstone.json new file mode 100644 index 000000000..f30f9594f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pointed_dripstone.json @@ -0,0 +1,18 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pointed_dripstone" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 100, 0 ], + "translation": [ -1, -1, 0], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 100, 0 ], + "translation": [ 0, -2, 0], + "scale": [ 0.9, 0.9, 0.9 ] + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/poisonous_potato.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/poisonous_potato.json new file mode 100644 index 000000000..f35777956 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/poisonous_potato.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/poisonous_potato" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polar_bear_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polar_bear_spawn_egg.json new file mode 100644 index 000000000..01d5fd1a7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polar_bear_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/polar_bear_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_andesite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_andesite.json new file mode 100644 index 000000000..4968aa477 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_andesite.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_andesite" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_andesite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_andesite_slab.json new file mode 100644 index 000000000..dbaf20ca5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_andesite_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_andesite_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_andesite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_andesite_stairs.json new file mode 100644 index 000000000..0695848c6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_andesite_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_andesite_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_basalt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_basalt.json new file mode 100644 index 000000000..00d0a8ab0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_basalt.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_basalt" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone.json new file mode 100644 index 000000000..b60255afe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_blackstone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_brick_slab.json new file mode 100644 index 000000000..35a5786cb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_brick_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_blackstone_brick_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_brick_stairs.json new file mode 100644 index 000000000..bfdf49c15 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_blackstone_brick_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_brick_wall.json new file mode 100644 index 000000000..58262eeda --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_brick_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_blackstone_brick_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_bricks.json new file mode 100644 index 000000000..2c7c6530e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_blackstone_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_button.json new file mode 100644 index 000000000..e815336ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_button.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_blackstone_button_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_pressure_plate.json new file mode 100644 index 000000000..766e8c663 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_pressure_plate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_blackstone_pressure_plate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_slab.json new file mode 100644 index 000000000..ab598bb6e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_blackstone_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_stairs.json new file mode 100644 index 000000000..a21c5771d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_blackstone_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_wall.json new file mode 100644 index 000000000..23e2c0d43 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_blackstone_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_blackstone_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_deepslate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_deepslate.json new file mode 100644 index 000000000..a2e3fde15 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_deepslate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_deepslate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_deepslate_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_deepslate_slab.json new file mode 100644 index 000000000..0bb032412 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_deepslate_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_deepslate_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_deepslate_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_deepslate_stairs.json new file mode 100644 index 000000000..06f41f9f6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_deepslate_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_deepslate_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_deepslate_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_deepslate_wall.json new file mode 100644 index 000000000..1d05cf88b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_deepslate_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_deepslate_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_diorite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_diorite.json new file mode 100644 index 000000000..aed477503 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_diorite.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_diorite" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_diorite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_diorite_slab.json new file mode 100644 index 000000000..2fd79e187 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_diorite_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_diorite_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_diorite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_diorite_stairs.json new file mode 100644 index 000000000..0ec5d5a68 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_diorite_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_diorite_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_granite.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_granite.json new file mode 100644 index 000000000..11ee51c44 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_granite.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_granite" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_granite_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_granite_slab.json new file mode 100644 index 000000000..add758b6b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_granite_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_granite_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_granite_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_granite_stairs.json new file mode 100644 index 000000000..083d71c89 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_granite_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_granite_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_tuff.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_tuff.json new file mode 100644 index 000000000..a34c7b0a7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_tuff.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_tuff" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_tuff_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_tuff_slab.json new file mode 100644 index 000000000..948607bf7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_tuff_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_tuff_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_tuff_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_tuff_stairs.json new file mode 100644 index 000000000..98b91c002 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_tuff_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_tuff_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_tuff_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_tuff_wall.json new file mode 100644 index 000000000..c0a8bed68 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/polished_tuff_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/polished_tuff_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/popped_chorus_fruit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/popped_chorus_fruit.json new file mode 100644 index 000000000..b5357bde3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/popped_chorus_fruit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/popped_chorus_fruit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/poppy.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/poppy.json new file mode 100644 index 000000000..089cf3ed3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/poppy.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/poppy" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/porkchop.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/porkchop.json new file mode 100644 index 000000000..7de45731d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/porkchop.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/porkchop" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/potato.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/potato.json new file mode 100644 index 000000000..3ba923817 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/potato.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/potato" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/potion.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/potion.json new file mode 100644 index 000000000..b4ae02ba6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/potion.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/potion_overlay", + "layer1": "minecraft:item/potion" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/powder_snow_bucket.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/powder_snow_bucket.json new file mode 100644 index 000000000..e99a5f9f0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/powder_snow_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/powder_snow_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/powered_rail.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/powered_rail.json new file mode 100644 index 000000000..ecaf13bf2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/powered_rail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/powered_rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine.json new file mode 100644 index 000000000..052a4159f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/prismarine" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_brick_slab.json new file mode 100644 index 000000000..905e44298 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_brick_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/prismarine_brick_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_brick_stairs.json new file mode 100644 index 000000000..e5f6c0f4a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/prismarine_brick_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_bricks.json new file mode 100644 index 000000000..dfe1634ff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/prismarine_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_crystals.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_crystals.json new file mode 100644 index 000000000..6883eebef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_crystals.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/prismarine_crystals" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_shard.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_shard.json new file mode 100644 index 000000000..7b533d3f9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_shard.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/prismarine_shard" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_slab.json new file mode 100644 index 000000000..9894ef18d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/prismarine_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_stairs.json new file mode 100644 index 000000000..356abf591 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/prismarine_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_wall.json new file mode 100644 index 000000000..16dec992c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prismarine_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/prismarine_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prize_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prize_pottery_sherd.json new file mode 100644 index 000000000..f73490ab0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/prize_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/prize_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pufferfish.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pufferfish.json new file mode 100644 index 000000000..11ebd2190 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pufferfish.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pufferfish" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pufferfish_bucket.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pufferfish_bucket.json new file mode 100644 index 000000000..b5abbd8f1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pufferfish_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pufferfish_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pufferfish_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pufferfish_spawn_egg.json new file mode 100644 index 000000000..f1e839df6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pufferfish_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pufferfish_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pumpkin.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pumpkin.json new file mode 100644 index 000000000..f725b4769 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pumpkin.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/pumpkin" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pumpkin_pie.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pumpkin_pie.json new file mode 100644 index 000000000..72ba77d56 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pumpkin_pie.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pumpkin_pie" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pumpkin_seeds.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pumpkin_seeds.json new file mode 100644 index 000000000..bd203f063 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/pumpkin_seeds.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/pumpkin_seeds" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_banner.json new file mode 100644 index 000000000..661a106df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_banner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_bed.json new file mode 100644 index 000000000..606fae8c2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/purple_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_bundle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_bundle.json new file mode 100644 index 000000000..a6a56bf61 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/purple_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_bundle_open_back.json new file mode 100644 index 000000000..51c7f27fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/purple_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_bundle_open_front.json new file mode 100644 index 000000000..55a80b560 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/purple_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_candle.json new file mode 100644 index 000000000..9a0d2020a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/purple_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_carpet.json new file mode 100644 index 000000000..94ffd9f44 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/purple_carpet" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_concrete.json new file mode 100644 index 000000000..437f58fcf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/purple_concrete" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_concrete_powder.json new file mode 100644 index 000000000..77dba4327 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_concrete_powder.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/purple_concrete_powder" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_dye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_dye.json new file mode 100644 index 000000000..a4082d107 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/purple_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_glazed_terracotta.json new file mode 100644 index 000000000..be42ab1a7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_glazed_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/purple_glazed_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_harness.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_harness.json new file mode 100644 index 000000000..1693ad854 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/purple_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_shulker_box.json new file mode 100644 index 000000000..8521d10fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/purple_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_stained_glass.json new file mode 100644 index 000000000..cf2ee6736 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_stained_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/purple_stained_glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_stained_glass_pane.json new file mode 100644 index 000000000..646a69b90 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/purple_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_terracotta.json new file mode 100644 index 000000000..a69670d85 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/purple_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_wool.json new file mode 100644 index 000000000..71160d268 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purple_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/purple_wool" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purpur_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purpur_block.json new file mode 100644 index 000000000..3e7dfa5a4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purpur_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/purpur_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purpur_pillar.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purpur_pillar.json new file mode 100644 index 000000000..2cb1ab30e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purpur_pillar.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/purpur_pillar" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purpur_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purpur_slab.json new file mode 100644 index 000000000..385a03bef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purpur_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/purpur_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purpur_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purpur_stairs.json new file mode 100644 index 000000000..4f8810267 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/purpur_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/purpur_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz.json new file mode 100644 index 000000000..6da4a8601 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz_block.json new file mode 100644 index 000000000..f0966126c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/quartz_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz_bricks.json new file mode 100644 index 000000000..d2d45cf7c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/quartz_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz_pillar.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz_pillar.json new file mode 100644 index 000000000..52905d111 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz_pillar.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/quartz_pillar" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz_slab.json new file mode 100644 index 000000000..9cd0ebe73 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/quartz_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz_stairs.json new file mode 100644 index 000000000..4126d6e4d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/quartz_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/quartz_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rabbit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rabbit.json new file mode 100644 index 000000000..0c0294fff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rabbit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/rabbit" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rabbit_foot.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rabbit_foot.json new file mode 100644 index 000000000..dc68690a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rabbit_foot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/rabbit_foot" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rabbit_hide.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rabbit_hide.json new file mode 100644 index 000000000..b6327793e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rabbit_hide.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/rabbit_hide" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rabbit_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rabbit_spawn_egg.json new file mode 100644 index 000000000..df2a0fec5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rabbit_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/rabbit_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rabbit_stew.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rabbit_stew.json new file mode 100644 index 000000000..311dfe991 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rabbit_stew.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/rabbit_stew" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rail.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rail.json new file mode 100644 index 000000000..4e07db100 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rail.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/rail" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raiser_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raiser_armor_trim_smithing_template.json new file mode 100644 index 000000000..b80f4a01d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raiser_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/raiser_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ravager_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ravager_spawn_egg.json new file mode 100644 index 000000000..8f1f906de --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ravager_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ravager_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_copper.json new file mode 100644 index 000000000..94712fdeb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_copper.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/raw_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_copper_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_copper_block.json new file mode 100644 index 000000000..d24df4666 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_copper_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/raw_copper_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_gold.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_gold.json new file mode 100644 index 000000000..df31aa71a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_gold.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/raw_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_gold_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_gold_block.json new file mode 100644 index 000000000..915e94b9c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_gold_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/raw_gold_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_iron.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_iron.json new file mode 100644 index 000000000..57ba62723 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_iron.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/raw_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_iron_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_iron_block.json new file mode 100644 index 000000000..b6e6e032f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/raw_iron_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/raw_iron_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass.json new file mode 100644 index 000000000..91fb13b8c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass.json @@ -0,0 +1,41 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/recovery_compass_16" + }, + "overrides": [ + { "predicate": { "angle": 0.000000 }, "model": "item/recovery_compass" }, + { "predicate": { "angle": 0.015625 }, "model": "item/recovery_compass_17" }, + { "predicate": { "angle": 0.046875 }, "model": "item/recovery_compass_18" }, + { "predicate": { "angle": 0.078125 }, "model": "item/recovery_compass_19" }, + { "predicate": { "angle": 0.109375 }, "model": "item/recovery_compass_20" }, + { "predicate": { "angle": 0.140625 }, "model": "item/recovery_compass_21" }, + { "predicate": { "angle": 0.171875 }, "model": "item/recovery_compass_22" }, + { "predicate": { "angle": 0.203125 }, "model": "item/recovery_compass_23" }, + { "predicate": { "angle": 0.234375 }, "model": "item/recovery_compass_24" }, + { "predicate": { "angle": 0.265625 }, "model": "item/recovery_compass_25" }, + { "predicate": { "angle": 0.296875 }, "model": "item/recovery_compass_26" }, + { "predicate": { "angle": 0.328125 }, "model": "item/recovery_compass_27" }, + { "predicate": { "angle": 0.359375 }, "model": "item/recovery_compass_28" }, + { "predicate": { "angle": 0.390625 }, "model": "item/recovery_compass_29" }, + { "predicate": { "angle": 0.421875 }, "model": "item/recovery_compass_30" }, + { "predicate": { "angle": 0.453125 }, "model": "item/recovery_compass_31" }, + { "predicate": { "angle": 0.484375 }, "model": "item/recovery_compass_00" }, + { "predicate": { "angle": 0.515625 }, "model": "item/recovery_compass_01" }, + { "predicate": { "angle": 0.546875 }, "model": "item/recovery_compass_02" }, + { "predicate": { "angle": 0.578125 }, "model": "item/recovery_compass_03" }, + { "predicate": { "angle": 0.609375 }, "model": "item/recovery_compass_04" }, + { "predicate": { "angle": 0.640625 }, "model": "item/recovery_compass_05" }, + { "predicate": { "angle": 0.671875 }, "model": "item/recovery_compass_06" }, + { "predicate": { "angle": 0.703125 }, "model": "item/recovery_compass_07" }, + { "predicate": { "angle": 0.734375 }, "model": "item/recovery_compass_08" }, + { "predicate": { "angle": 0.765625 }, "model": "item/recovery_compass_09" }, + { "predicate": { "angle": 0.796875 }, "model": "item/recovery_compass_10" }, + { "predicate": { "angle": 0.828125 }, "model": "item/recovery_compass_11" }, + { "predicate": { "angle": 0.859375 }, "model": "item/recovery_compass_12" }, + { "predicate": { "angle": 0.890625 }, "model": "item/recovery_compass_13" }, + { "predicate": { "angle": 0.921875 }, "model": "item/recovery_compass_14" }, + { "predicate": { "angle": 0.953125 }, "model": "item/recovery_compass_15" }, + { "predicate": { "angle": 0.984375 }, "model": "item/recovery_compass" } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_00.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_00.json new file mode 100644 index 000000000..753be1b22 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_00.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_00" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_01.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_01.json new file mode 100644 index 000000000..3e0630888 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_01.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_01" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_02.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_02.json new file mode 100644 index 000000000..c6bfef5db --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_02.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_02" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_03.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_03.json new file mode 100644 index 000000000..874a349e1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_03.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_03" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_04.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_04.json new file mode 100644 index 000000000..d1fb39c2f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_04.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_04" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_05.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_05.json new file mode 100644 index 000000000..c1958b511 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_05.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_05" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_06.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_06.json new file mode 100644 index 000000000..7ebdd8c82 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_06.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_06" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_07.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_07.json new file mode 100644 index 000000000..eabb1f035 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_07.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_07" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_08.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_08.json new file mode 100644 index 000000000..d59f4c131 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_08.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_08" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_09.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_09.json new file mode 100644 index 000000000..cb2ddbc9f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_09.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_09" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_10.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_10.json new file mode 100644 index 000000000..30618a33f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_10.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_10" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_11.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_11.json new file mode 100644 index 000000000..6d29eae1f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_11.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_11" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_12.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_12.json new file mode 100644 index 000000000..c455ce86f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_12.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_12" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_13.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_13.json new file mode 100644 index 000000000..9982cc53d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_13.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_13" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_14.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_14.json new file mode 100644 index 000000000..0ba7e45b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_14.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_14" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_15.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_15.json new file mode 100644 index 000000000..adb5c1298 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_15.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_15" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_16.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_16.json new file mode 100644 index 000000000..ff17fc8ed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_16.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_16" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_17.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_17.json new file mode 100644 index 000000000..5a906f0b0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_17.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_17" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_18.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_18.json new file mode 100644 index 000000000..d2665866a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_18.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_18" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_19.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_19.json new file mode 100644 index 000000000..fe36dcac0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_19.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_19" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_20.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_20.json new file mode 100644 index 000000000..1632015ef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_20.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_20" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_21.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_21.json new file mode 100644 index 000000000..1f52a2cfb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_21.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_21" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_22.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_22.json new file mode 100644 index 000000000..bae9ef118 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_22.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_22" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_23.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_23.json new file mode 100644 index 000000000..f46180c5c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_23.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_23" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_24.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_24.json new file mode 100644 index 000000000..c7acb6b87 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_24.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_24" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_25.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_25.json new file mode 100644 index 000000000..234b7ab93 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_25.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_25" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_26.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_26.json new file mode 100644 index 000000000..0f988f3b6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_26.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_26" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_27.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_27.json new file mode 100644 index 000000000..1587617bc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_27.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_27" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_28.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_28.json new file mode 100644 index 000000000..4153fb073 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_28.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_28" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_29.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_29.json new file mode 100644 index 000000000..47e3fff10 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_29.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_29" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_30.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_30.json new file mode 100644 index 000000000..6a39baad3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_30.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_30" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_31.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_31.json new file mode 100644 index 000000000..e1bb4c130 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/recovery_compass_31.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/recovery_compass_31" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_banner.json new file mode 100644 index 000000000..661a106df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_banner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_bed.json new file mode 100644 index 000000000..7a15f5512 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/red_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_bundle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_bundle.json new file mode 100644 index 000000000..2b450a41e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/red_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_bundle_open_back.json new file mode 100644 index 000000000..8d01e6cde --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/red_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_bundle_open_front.json new file mode 100644 index 000000000..502fe44a9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/red_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_candle.json new file mode 100644 index 000000000..54fbba028 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/red_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_carpet.json new file mode 100644 index 000000000..18e4d52eb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/red_carpet" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_concrete.json new file mode 100644 index 000000000..34a0630b7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/red_concrete" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_concrete_powder.json new file mode 100644 index 000000000..36e0ede7a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_concrete_powder.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/red_concrete_powder" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_dye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_dye.json new file mode 100644 index 000000000..77765d363 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/red_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_glazed_terracotta.json new file mode 100644 index 000000000..3870bc2ca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_glazed_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/red_glazed_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_harness.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_harness.json new file mode 100644 index 000000000..55b06b9fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/red_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_mushroom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_mushroom.json new file mode 100644 index 000000000..3be0c03ff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_mushroom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/red_mushroom" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_mushroom_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_mushroom_block.json new file mode 100644 index 000000000..5ed44fb45 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_mushroom_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/red_mushroom_block_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_nether_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_nether_brick_slab.json new file mode 100644 index 000000000..73ba1684a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_nether_brick_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/red_nether_brick_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_nether_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_nether_brick_stairs.json new file mode 100644 index 000000000..98d716be0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_nether_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/red_nether_brick_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_nether_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_nether_brick_wall.json new file mode 100644 index 000000000..48f50a647 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_nether_brick_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/red_nether_brick_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_nether_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_nether_bricks.json new file mode 100644 index 000000000..51d3d11c2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_nether_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/red_nether_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_sand.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_sand.json new file mode 100644 index 000000000..f3459a820 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_sand.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/red_sand" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_sandstone.json new file mode 100644 index 000000000..305751fa5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_sandstone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/red_sandstone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_sandstone_slab.json new file mode 100644 index 000000000..c74735659 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_sandstone_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/red_sandstone_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_sandstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_sandstone_stairs.json new file mode 100644 index 000000000..6c0f1c52e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_sandstone_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/red_sandstone_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_sandstone_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_sandstone_wall.json new file mode 100644 index 000000000..7dc10d93d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_sandstone_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/red_sandstone_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_shulker_box.json new file mode 100644 index 000000000..618ccff66 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/red_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_stained_glass.json new file mode 100644 index 000000000..235d35da2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_stained_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/red_stained_glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_stained_glass_pane.json new file mode 100644 index 000000000..699b006f1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/red_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_terracotta.json new file mode 100644 index 000000000..2ded3a9d5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/red_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_tulip.json new file mode 100644 index 000000000..406b1ecef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/red_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_wool.json new file mode 100644 index 000000000..b0dd8dd66 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/red_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/red_wool" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/redstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/redstone.json new file mode 100644 index 000000000..d273009e4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/redstone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/redstone_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/redstone_block.json new file mode 100644 index 000000000..71d9d176c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/redstone_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/redstone_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/redstone_lamp.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/redstone_lamp.json new file mode 100644 index 000000000..47f36c435 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/redstone_lamp.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/redstone_lamp" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/redstone_ore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/redstone_ore.json new file mode 100644 index 000000000..503fed06e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/redstone_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/redstone_ore" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/redstone_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/redstone_torch.json new file mode 100644 index 000000000..ba2060bba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/redstone_torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/redstone_torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/reinforced_deepslate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/reinforced_deepslate.json new file mode 100644 index 000000000..624fd3c45 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/reinforced_deepslate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/reinforced_deepslate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/repeater.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/repeater.json new file mode 100644 index 000000000..7a8b05fb4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/repeater.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/repeater" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/repeating_command_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/repeating_command_block.json new file mode 100644 index 000000000..75492a4b9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/repeating_command_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/repeating_command_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/resin_brick.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/resin_brick.json new file mode 100644 index 000000000..4b91fc38e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/resin_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/resin_brick" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/resin_clump.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/resin_clump.json new file mode 100644 index 000000000..edfacb65b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/resin_clump.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/resin_clump" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/respawn_anchor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/respawn_anchor.json new file mode 100644 index 000000000..7fa102a3d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/respawn_anchor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/respawn_anchor_0" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rib_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rib_armor_trim_smithing_template.json new file mode 100644 index 000000000..dce771717 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rib_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/rib_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rooted_dirt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rooted_dirt.json new file mode 100644 index 000000000..3d6a9cda4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rooted_dirt.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/rooted_dirt" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rose_bush.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rose_bush.json new file mode 100644 index 000000000..4a71ea357 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rose_bush.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/rose_bush_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rotten_flesh.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rotten_flesh.json new file mode 100644 index 000000000..6d7899529 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/rotten_flesh.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/rotten_flesh" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/saddle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/saddle.json new file mode 100644 index 000000000..91895cb40 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/saddle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/saddle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/salmon.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/salmon.json new file mode 100644 index 000000000..dcac1db78 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/salmon.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/salmon" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/salmon_bucket.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/salmon_bucket.json new file mode 100644 index 000000000..15217f222 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/salmon_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/salmon_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/salmon_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/salmon_spawn_egg.json new file mode 100644 index 000000000..c5c93b26e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/salmon_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/salmon_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sand.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sand.json new file mode 100644 index 000000000..96c1d00d9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sand.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/sand" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sandstone.json new file mode 100644 index 000000000..474b0ddba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sandstone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/sandstone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sandstone_slab.json new file mode 100644 index 000000000..7b8fc6bdf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sandstone_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/sandstone_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sandstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sandstone_stairs.json new file mode 100644 index 000000000..989e41fff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sandstone_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/sandstone_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sandstone_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sandstone_wall.json new file mode 100644 index 000000000..b4f2149ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sandstone_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/sandstone_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/scaffolding.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/scaffolding.json new file mode 100644 index 000000000..1946d80f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/scaffolding.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/scaffolding_stable" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/scrape_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/scrape_pottery_sherd.json new file mode 100644 index 000000000..52717375a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/scrape_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/scrape_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sculk.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sculk.json new file mode 100644 index 000000000..12d25d5fa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sculk.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/sculk" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sculk_catalyst.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sculk_catalyst.json new file mode 100644 index 000000000..89e0b5f7b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sculk_catalyst.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/sculk_catalyst" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sculk_sensor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sculk_sensor.json new file mode 100644 index 000000000..a2b8a77da --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sculk_sensor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/sculk_sensor_inactive" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sculk_shrieker.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sculk_shrieker.json new file mode 100644 index 000000000..a6c19ae0b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sculk_shrieker.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/sculk_shrieker" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sculk_vein.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sculk_vein.json new file mode 100644 index 000000000..78df0e28f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sculk_vein.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/sculk_vein" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sea_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sea_lantern.json new file mode 100644 index 000000000..72561fc08 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sea_lantern.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/sea_lantern" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sea_pickle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sea_pickle.json new file mode 100644 index 000000000..c7f2f9688 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sea_pickle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sea_pickle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/seagrass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/seagrass.json new file mode 100644 index 000000000..91c88ccb5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/seagrass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/seagrass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sentry_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sentry_armor_trim_smithing_template.json new file mode 100644 index 000000000..37c62bc90 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sentry_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sentry_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shaper_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shaper_armor_trim_smithing_template.json new file mode 100644 index 000000000..0d10c46b6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shaper_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/shaper_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sheaf_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sheaf_pottery_sherd.json new file mode 100644 index 000000000..f5f85477d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sheaf_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sheaf_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shears.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shears.json new file mode 100644 index 000000000..bc9bf0148 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shears.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/shears" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sheep_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sheep_spawn_egg.json new file mode 100644 index 000000000..89c13e318 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sheep_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sheep_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shelter_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shelter_pottery_sherd.json new file mode 100644 index 000000000..11fc43b3c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shelter_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/shelter_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shield.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shield.json new file mode 100644 index 000000000..b9f751035 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shield.json @@ -0,0 +1,48 @@ +{ + "gui_light": "front", + "textures": { + "particle": "block/dark_oak_planks" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 90, 0 ], + "translation": [ 10, 6, -4 ], + "scale": [ 1, 1, 1 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 90, 0 ], + "translation": [ 10, 6, 12 ], + "scale": [ 1, 1, 1 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 180, 5 ], + "translation": [ -10, 2, -10 ], + "scale": [ 1.25, 1.25, 1.25 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 180, 5 ], + "translation": [ 10, 0, -10 ], + "scale": [ 1.25, 1.25, 1.25 ] + }, + "gui": { + "rotation": [ 15, -25, -5 ], + "translation": [ 2, 3, 0 ], + "scale": [ 0.65, 0.65, 0.65 ] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ -4.5, 4.5, -5], + "scale":[ 0.55, 0.55, 0.55] + }, + "on_shelf": { + "rotation": [ 0, 0, 0 ], + "translation": [ 11, 18.5, 8.7 ], + "scale": [ 1.4, 1.4, 1.4 ] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 2, 4, 2], + "scale":[ 0.25, 0.25, 0.25] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shield_blocking.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shield_blocking.json new file mode 100644 index 000000000..c688ef03e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shield_blocking.json @@ -0,0 +1,33 @@ +{ + "gui_light": "front", + "textures": { + "particle": "block/dark_oak_planks" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 45, 155, 0 ], + "translation": [ -3.49, 11, -2 ], + "scale": [ 1, 1, 1 ] + }, + "thirdperson_lefthand": { + "rotation": [ 45, 155, 0 ], + "translation": [ 11.51, 7, 2.5 ], + "scale": [ 1, 1, 1 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 180, -5 ], + "translation": [ -15, 5, -11 ], + "scale": [ 1.25, 1.25, 1.25 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 180, -5 ], + "translation": [ 5, 5, -11 ], + "scale": [ 1.25, 1.25, 1.25 ] + }, + "gui": { + "rotation": [ 15, -25, -5 ], + "translation": [ 2, 3, 0 ], + "scale": [ 0.65, 0.65, 0.65 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/short_dry_grass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/short_dry_grass.json new file mode 100644 index 000000000..9f128fa5a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/short_dry_grass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/short_dry_grass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/short_grass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/short_grass.json new file mode 100644 index 000000000..50fc8466b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/short_grass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/short_grass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shroomlight.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shroomlight.json new file mode 100644 index 000000000..5d8aef635 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shroomlight.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/shroomlight" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shulker_box.json new file mode 100644 index 000000000..f547516b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shulker_shell.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shulker_shell.json new file mode 100644 index 000000000..6aae0f45e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shulker_shell.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/shulker_shell" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shulker_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shulker_spawn_egg.json new file mode 100644 index 000000000..d73111776 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/shulker_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/shulker_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/silence_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/silence_armor_trim_smithing_template.json new file mode 100644 index 000000000..5254eced6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/silence_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/silence_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/silverfish_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/silverfish_spawn_egg.json new file mode 100644 index 000000000..1d4c065e1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/silverfish_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/silverfish_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/skeleton_horse_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/skeleton_horse_spawn_egg.json new file mode 100644 index 000000000..648137002 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/skeleton_horse_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/skeleton_horse_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/skeleton_skull.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/skeleton_skull.json new file mode 100644 index 000000000..364b6e65f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/skeleton_skull.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_skull" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/skeleton_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/skeleton_spawn_egg.json new file mode 100644 index 000000000..7913cb6d1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/skeleton_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/skeleton_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/skull_banner_pattern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/skull_banner_pattern.json new file mode 100644 index 000000000..a39281f76 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/skull_banner_pattern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/skull_banner_pattern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/skull_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/skull_pottery_sherd.json new file mode 100644 index 000000000..b7765121c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/skull_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/skull_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/slime_ball.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/slime_ball.json new file mode 100644 index 000000000..812f0860a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/slime_ball.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/slime_ball" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/slime_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/slime_block.json new file mode 100644 index 000000000..848fbdafc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/slime_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/slime_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/slime_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/slime_spawn_egg.json new file mode 100644 index 000000000..3f86521f3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/slime_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/slime_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/small_amethyst_bud.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/small_amethyst_bud.json new file mode 100644 index 000000000..cfa83d8e1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/small_amethyst_bud.json @@ -0,0 +1,16 @@ +{ + "parent": "item/amethyst_bud", + "textures": { + "layer0": "minecraft:block/small_amethyst_bud" + }, + "display": { + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ 0, 6, 0 ], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "fixed": { + "translation": [ 0, 7, 0 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/small_dripleaf.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/small_dripleaf.json new file mode 100644 index 000000000..488841ff7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/small_dripleaf.json @@ -0,0 +1,15 @@ +{ + "parent": "minecraft:block/small_dripleaf_top", + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 4, 1 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 45, 0 ], + "translation": [ 0, 3.2, 0 ], + "scale": [ 0.40, 0.40, 0.40 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smithing_table.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smithing_table.json new file mode 100644 index 000000000..3028d70f1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smithing_table.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/smithing_table" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smoker.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smoker.json new file mode 100644 index 000000000..7d2740184 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smoker.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/smoker" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_basalt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_basalt.json new file mode 100644 index 000000000..327e00547 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_basalt.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/smooth_basalt" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_quartz.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_quartz.json new file mode 100644 index 000000000..b2047c832 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_quartz.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/smooth_quartz" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_quartz_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_quartz_slab.json new file mode 100644 index 000000000..55c15fa9e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_quartz_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/smooth_quartz_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_quartz_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_quartz_stairs.json new file mode 100644 index 000000000..bddcd1cc2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_quartz_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/smooth_quartz_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_red_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_red_sandstone.json new file mode 100644 index 000000000..3e8943e41 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_red_sandstone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/smooth_red_sandstone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_red_sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_red_sandstone_slab.json new file mode 100644 index 000000000..cae67922c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_red_sandstone_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/smooth_red_sandstone_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_red_sandstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_red_sandstone_stairs.json new file mode 100644 index 000000000..1ba4dd5e7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_red_sandstone_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/smooth_red_sandstone_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_sandstone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_sandstone.json new file mode 100644 index 000000000..d702d2871 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_sandstone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/smooth_sandstone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_sandstone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_sandstone_slab.json new file mode 100644 index 000000000..934c7adac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_sandstone_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/smooth_sandstone_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_sandstone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_sandstone_stairs.json new file mode 100644 index 000000000..74ab5a1a7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_sandstone_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/smooth_sandstone_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_stone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_stone.json new file mode 100644 index 000000000..393605bd2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_stone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/smooth_stone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_stone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_stone_slab.json new file mode 100644 index 000000000..e33dcb4c9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/smooth_stone_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/smooth_stone_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sniffer_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sniffer_egg.json new file mode 100644 index 000000000..0f35a4d91 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sniffer_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sniffer_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sniffer_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sniffer_spawn_egg.json new file mode 100644 index 000000000..046de3172 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sniffer_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sniffer_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snort_pottery_sherd.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snort_pottery_sherd.json new file mode 100644 index 000000000..d3a8ebc30 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snort_pottery_sherd.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/snort_pottery_sherd" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snout_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snout_armor_trim_smithing_template.json new file mode 100644 index 000000000..a6c6c622e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snout_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/snout_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snow.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snow.json new file mode 100644 index 000000000..a4d1c9894 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snow.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/snow_height2" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snow_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snow_block.json new file mode 100644 index 000000000..1564e7759 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snow_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/snow_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snow_golem_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snow_golem_spawn_egg.json new file mode 100644 index 000000000..9c3f1221c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snow_golem_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/snow_golem_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snowball.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snowball.json new file mode 100644 index 000000000..7dec4deea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/snowball.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/snowball" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/soul_campfire.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/soul_campfire.json new file mode 100644 index 000000000..ef63b765a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/soul_campfire.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/soul_campfire" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/soul_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/soul_lantern.json new file mode 100644 index 000000000..53e659088 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/soul_lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/soul_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/soul_sand.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/soul_sand.json new file mode 100644 index 000000000..50df79cfb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/soul_sand.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/soul_sand" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/soul_soil.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/soul_soil.json new file mode 100644 index 000000000..c8c62d360 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/soul_soil.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/soul_soil" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/soul_torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/soul_torch.json new file mode 100644 index 000000000..96dbfdfb9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/soul_torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/soul_torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spawner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spawner.json new file mode 100644 index 000000000..f54a94f6b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spawner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/spawner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spectral_arrow.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spectral_arrow.json new file mode 100644 index 000000000..33a79f8ef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spectral_arrow.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spectral_arrow" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spider_eye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spider_eye.json new file mode 100644 index 000000000..fd7547f4a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spider_eye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spider_eye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spider_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spider_spawn_egg.json new file mode 100644 index 000000000..0d2542929 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spider_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spider_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spire_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spire_armor_trim_smithing_template.json new file mode 100644 index 000000000..fe7a6df08 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spire_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spire_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/splash_potion.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/splash_potion.json new file mode 100644 index 000000000..626ccc0f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/splash_potion.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/potion_overlay", + "layer1": "minecraft:item/splash_potion" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sponge.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sponge.json new file mode 100644 index 000000000..4e456fd9d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sponge.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/sponge" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spore_blossom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spore_blossom.json new file mode 100644 index 000000000..3eb054c87 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spore_blossom.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/spore_blossom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_boat.json new file mode 100644 index 000000000..a425c2c8e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spruce_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_button.json new file mode 100644 index 000000000..91d8bc033 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_button.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/spruce_button_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_chest_boat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_chest_boat.json new file mode 100644 index 000000000..36d7a7f59 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_chest_boat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spruce_chest_boat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_door.json new file mode 100644 index 000000000..c1a3bf29c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spruce_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_fence.json new file mode 100644 index 000000000..e2c378405 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_fence.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/spruce_fence_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_fence_gate.json new file mode 100644 index 000000000..6f4473e4a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_fence_gate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/spruce_fence_gate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_hanging_sign.json new file mode 100644 index 000000000..90c40e299 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spruce_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_leaves.json new file mode 100644 index 000000000..6c64eda57 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_leaves.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/spruce_leaves" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_log.json new file mode 100644 index 000000000..84bd7dc31 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_log.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/spruce_log" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_planks.json new file mode 100644 index 000000000..d87b17208 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_planks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/spruce_planks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_pressure_plate.json new file mode 100644 index 000000000..b0de07876 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_pressure_plate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/spruce_pressure_plate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_sapling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_sapling.json new file mode 100644 index 000000000..1c9752de5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/spruce_sapling" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_sign.json new file mode 100644 index 000000000..f5c26ebf9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spruce_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_slab.json new file mode 100644 index 000000000..d5fa4c0f3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/spruce_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_stairs.json new file mode 100644 index 000000000..7957a5a1d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/spruce_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_trapdoor.json new file mode 100644 index 000000000..0eb91e4ac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/spruce_trapdoor_bottom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_wood.json new file mode 100644 index 000000000..593e4ec82 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spruce_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/spruce_wood" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spyglass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spyglass.json new file mode 100644 index 000000000..c5d7e691c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spyglass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/spyglass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spyglass_in_hand.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spyglass_in_hand.json new file mode 100644 index 000000000..1baca0eae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/spyglass_in_hand.json @@ -0,0 +1,53 @@ +{ + "textures": { + "spyglass": "item/spyglass_model", + "particle": "#spyglass" + }, + "elements": [ + { + "from": [7, 8.5, 7], + "to": [9, 13.5, 9], + "faces": { + "north": {"uv": [0, 2, 2, 7], "texture": "#spyglass"}, + "east": {"uv": [0, 2, 2, 7], "texture": "#spyglass"}, + "south": {"uv": [0, 2, 2, 7], "texture": "#spyglass"}, + "west": {"uv": [0, 2, 2, 7], "texture": "#spyglass"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#spyglass"} + } + }, + { + "from": [6.9, 2.4, 6.9], + "to": [9.1, 8.6, 9.1], + "faces": { + "north": {"uv": [0, 7, 2, 13], "texture": "#spyglass"}, + "east": {"uv": [0, 7, 2, 13], "texture": "#spyglass"}, + "south": {"uv": [0, 7, 2, 13], "texture": "#spyglass"}, + "west": {"uv": [0, 7, 2, 13], "texture": "#spyglass"}, + "up": {"uv": [0, 5, 2, 7], "texture": "#spyglass"}, + "down": {"uv": [0, 13, 2, 15], "texture": "#spyglass"} + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [0, -2, 0] + }, + "ground": { + "rotation": [90, 0, 0] + }, + "gui": { + "rotation": [-67.5, 0, 45], + "scale": [1.5, 1.5, 1.5] + }, + "head": { + "rotation": [90, 0, 0], + "translation": [0, 0, -16], + "scale": [1.6, 1.6, 1.6] + }, + "fixed": { + "translation": [0, 0, -1.5], + "scale": [1.5, 1.5, 1.5] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/squid_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/squid_spawn_egg.json new file mode 100644 index 000000000..23102e772 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/squid_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/squid_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stick.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stick.json new file mode 100644 index 000000000..f0dc3b971 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stick" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sticky_piston.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sticky_piston.json new file mode 100644 index 000000000..69bfdc943 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sticky_piston.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/sticky_piston_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone.json new file mode 100644 index 000000000..37f27f10b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stone" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_axe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_axe.json new file mode 100644 index 000000000..1e3bc7e89 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_axe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stone_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_brick_slab.json new file mode 100644 index 000000000..9dd874ac4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_brick_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stone_brick_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_brick_stairs.json new file mode 100644 index 000000000..d62eb4b36 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stone_brick_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_brick_wall.json new file mode 100644 index 000000000..929da51fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_brick_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stone_brick_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_bricks.json new file mode 100644 index 000000000..51de871c0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stone_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_button.json new file mode 100644 index 000000000..8802ddfbf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_button.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stone_button_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_hoe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_hoe.json new file mode 100644 index 000000000..13f40c63b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_hoe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stone_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_pickaxe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_pickaxe.json new file mode 100644 index 000000000..dec09cbe7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_pickaxe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stone_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_pressure_plate.json new file mode 100644 index 000000000..bcb76d79b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_pressure_plate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stone_pressure_plate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_shovel.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_shovel.json new file mode 100644 index 000000000..727a68b95 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_shovel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stone_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_slab.json new file mode 100644 index 000000000..63de5381d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stone_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_stairs.json new file mode 100644 index 000000000..7b9a82a95 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stone_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_sword.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_sword.json new file mode 100644 index 000000000..ba4a89f15 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stone_sword.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/stone_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stonecutter.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stonecutter.json new file mode 100644 index 000000000..54ffedeb2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stonecutter.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stonecutter" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stray_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stray_spawn_egg.json new file mode 100644 index 000000000..87bbb174c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stray_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/stray_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/strider_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/strider_spawn_egg.json new file mode 100644 index 000000000..424df94f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/strider_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/strider_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/string.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/string.json new file mode 100644 index 000000000..ca6251bf8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/string.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/string" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_acacia_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_acacia_log.json new file mode 100644 index 000000000..d9a3ce1f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_acacia_log.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_acacia_log" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_acacia_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_acacia_wood.json new file mode 100644 index 000000000..4c6537235 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_acacia_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_acacia_wood" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_bamboo_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_bamboo_block.json new file mode 100644 index 000000000..38c93f323 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_bamboo_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_bamboo_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_birch_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_birch_log.json new file mode 100644 index 000000000..d984bf7da --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_birch_log.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_birch_log" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_birch_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_birch_wood.json new file mode 100644 index 000000000..dc0b6698a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_birch_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_birch_wood" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_cherry_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_cherry_log.json new file mode 100644 index 000000000..6fb61fed7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_cherry_log.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_cherry_log" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_cherry_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_cherry_wood.json new file mode 100644 index 000000000..73a11cdc1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_cherry_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_cherry_wood" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_crimson_hyphae.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_crimson_hyphae.json new file mode 100644 index 000000000..254d55150 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_crimson_hyphae.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_crimson_hyphae" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_crimson_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_crimson_stem.json new file mode 100644 index 000000000..701f56705 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_crimson_stem.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_crimson_stem" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_dark_oak_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_dark_oak_log.json new file mode 100644 index 000000000..d193f5f09 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_dark_oak_log.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_dark_oak_log" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_dark_oak_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_dark_oak_wood.json new file mode 100644 index 000000000..683446da5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_dark_oak_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_dark_oak_wood" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_jungle_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_jungle_log.json new file mode 100644 index 000000000..1c6cf473b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_jungle_log.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_jungle_log" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_jungle_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_jungle_wood.json new file mode 100644 index 000000000..ed78aec7a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_jungle_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_jungle_wood" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_mangrove_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_mangrove_log.json new file mode 100644 index 000000000..4155be189 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_mangrove_log.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_mangrove_log" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_mangrove_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_mangrove_wood.json new file mode 100644 index 000000000..159d89d92 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_mangrove_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_mangrove_wood" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_oak_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_oak_log.json new file mode 100644 index 000000000..bb3cafbe7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_oak_log.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_oak_log" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_oak_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_oak_wood.json new file mode 100644 index 000000000..9ba3fb2ab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_oak_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_oak_wood" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_spruce_log.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_spruce_log.json new file mode 100644 index 000000000..e110cdf53 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_spruce_log.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_spruce_log" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_spruce_wood.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_spruce_wood.json new file mode 100644 index 000000000..658f768b5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_spruce_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_spruce_wood" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_warped_hyphae.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_warped_hyphae.json new file mode 100644 index 000000000..0ebe2320b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_warped_hyphae.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_warped_hyphae" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_warped_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_warped_stem.json new file mode 100644 index 000000000..6147725dc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/stripped_warped_stem.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/stripped_warped_stem" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/structure_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/structure_block.json new file mode 100644 index 000000000..1325f7708 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/structure_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/structure_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/structure_void.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/structure_void.json new file mode 100644 index 000000000..65fb4840e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/structure_void.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/structure_void" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sugar.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sugar.json new file mode 100644 index 000000000..74e73ebd9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sugar.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sugar" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sugar_cane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sugar_cane.json new file mode 100644 index 000000000..ee6d1fc12 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sugar_cane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sugar_cane" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sunflower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sunflower.json new file mode 100644 index 000000000..694e244c8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sunflower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/sunflower_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/suspicious_gravel.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/suspicious_gravel.json new file mode 100644 index 000000000..dd5bed5f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/suspicious_gravel.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/suspicious_gravel_0" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/suspicious_sand.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/suspicious_sand.json new file mode 100644 index 000000000..c8a0dcb06 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/suspicious_sand.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/suspicious_sand_0" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/suspicious_stew.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/suspicious_stew.json new file mode 100644 index 000000000..15e645a3d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/suspicious_stew.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/suspicious_stew" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sweet_berries.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sweet_berries.json new file mode 100644 index 000000000..e16589413 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/sweet_berries.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/sweet_berries" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tadpole_bucket.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tadpole_bucket.json new file mode 100644 index 000000000..44e1336b0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tadpole_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/tadpole_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tadpole_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tadpole_spawn_egg.json new file mode 100644 index 000000000..2e6fb4469 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tadpole_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/tadpole_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tall_dry_grass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tall_dry_grass.json new file mode 100644 index 000000000..6b11a1fd5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tall_dry_grass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/tall_dry_grass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tall_grass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tall_grass.json new file mode 100644 index 000000000..df809ea7b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tall_grass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/tall_grass_top" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/target.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/target.json new file mode 100644 index 000000000..0e4e696b0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/target.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/target" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_banner.json new file mode 100644 index 000000000..14b25dcc2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_banner.json @@ -0,0 +1,38 @@ +{ + "gui_light": "front", + "textures": { + "particle": "block/oak_planks" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 2, 0.5], + "scale":[ 0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [ 0, 90, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.375, 0.375, 0.375] + }, + "gui": { + "rotation": [ 30, 20, 0 ], + "translation": [ 0, -3.25, 0], + "scale":[ 0.5325, 0.5325, 0.5325] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 1, 0], + "scale":[ 0.25, 0.25, 0.25] + }, + "head": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 16, 7], + "scale":[ 1.5, 1.5, 1.5 ] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.5, 0.5, 0.5] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_bed.json new file mode 100644 index 000000000..ed06e0791 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_bed.json @@ -0,0 +1,39 @@ +{ + "display": { + "thirdperson_righthand": { + "rotation": [ 30, 160, 0 ], + "translation": [ 0, 3, -2], + "scale":[ 0.23, 0.23, 0.23] + }, + "firstperson_righthand": { + "rotation": [ 30, 160, 0 ], + "translation": [ 0, 3, 0], + "scale":[ 0.375, 0.375, 0.375] + }, + "gui": { + "rotation": [ 30, 160, 0 ], + "translation": [ 2, 3, 0], + "scale":[ 0.5325, 0.5325, 0.5325] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 1, 2], + "scale":[ 0.25, 0.25, 0.25] + }, + "head": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 10, -8], + "scale":[ 1,1,1 ] + }, + "fixed": { + "rotation": [ 270, 0, 0 ], + "translation": [ 0, 4, -2], + "scale":[ 0.5, 0.5, 0.5] + }, + "on_shelf": { + "rotation": [ 90, 180, 0 ], + "translation": [ 0, 14.5, 2.5 ], + "scale": [ 0.9375, 0.9375, 0.9375 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_bundle_open_back.json new file mode 100644 index 000000000..a710db4dc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_bundle_open_back.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "display": { + "gui": { + "translation": [ 0, 0, -16 ] + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_bundle_open_front.json new file mode 100644 index 000000000..51442b45c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_bundle_open_front.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:item/generated", + "display": { + "gui": { + "translation": [ 0, 0, 16 ] + } + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_chest.json new file mode 100644 index 000000000..455c5427b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_chest.json @@ -0,0 +1,34 @@ +{ + "display": { + "gui": { + "rotation": [ 30, 45, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 3, 0], + "scale":[ 0.25, 0.25, 0.25 ] + }, + "head": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 1, 1, 1] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.5, 0.5, 0.5 ] + }, + "thirdperson_righthand": { + "rotation": [ 75, 315, 0 ], + "translation": [ 0, 2.5, 0], + "scale": [ 0.375, 0.375, 0.375 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 315, 0 ], + "translation": [ 0, 0, 0], + "scale": [ 0.4, 0.4, 0.4 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_copper_golem_statue.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_copper_golem_statue.json new file mode 100644 index 000000000..ff137d22d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_copper_golem_statue.json @@ -0,0 +1,42 @@ +{ + "textures": { + "particle": "block/copper_block" + }, + "display": { + "gui": { + "rotation": [ 30, 45, 180 ], + "translation": [ 0, 2, 0 ], + "scale": [ 0.55, 0.55, 0.55 ] + }, + "ground": { + "rotation": [ 0, 0, 180 ], + "translation": [ 0, 0, 0 ], + "scale": [ 0.35, 0.35, 0.35 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -45, 180 ], + "translation": [ 0, 5, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "thirdperson_righthand": { + "rotation": [ 0, -45, 180 ], + "translation": [ 0, 5, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "fixed": { + "rotation": [ 0, 180, 180 ], + "translation": [ 0, 3, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "on_shelf": { + "rotation": [ 0, 0, 180 ], + "translation": [ 0, 8, 0 ], + "scale": [ 1, 1, 1 ] + }, + "head": { + "rotation": [ 0, 180, 180 ], + "translation": [ 0, 22.5, 0 ], + "scale": [ 1, 1, 1 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_music_disc.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_music_disc.json new file mode 100644 index 000000000..41268452c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_music_disc.json @@ -0,0 +1,10 @@ +{ + "parent": "item/generated", + "gui_light": "front", + "display": { + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ -0.5, 0, 0 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_shulker_box.json new file mode 100644 index 000000000..455c5427b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_shulker_box.json @@ -0,0 +1,34 @@ +{ + "display": { + "gui": { + "rotation": [ 30, 45, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 3, 0], + "scale":[ 0.25, 0.25, 0.25 ] + }, + "head": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 1, 1, 1] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.5, 0.5, 0.5 ] + }, + "thirdperson_righthand": { + "rotation": [ 75, 315, 0 ], + "translation": [ 0, 2.5, 0], + "scale": [ 0.375, 0.375, 0.375 ] + }, + "firstperson_righthand": { + "rotation": [ 0, 315, 0 ], + "translation": [ 0, 0, 0], + "scale": [ 0.4, 0.4, 0.4 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_skull.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_skull.json new file mode 100644 index 000000000..51c71244c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_skull.json @@ -0,0 +1,32 @@ +{ + "textures": { + "particle": "block/soul_sand" + }, + "display": { + "gui": { + "rotation": [ 30, 45, 0 ], + "translation": [ 0, 3, 0 ], + "scale": [ 1, 1, 1 ] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 4, 0], + "scale":[ 1, 1, 1 ] + }, + "on_shelf": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 8, 0 ], + "scale": [ 2, 2, 2 ] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 3, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "thirdperson_righthand": { + "rotation": [ 45, 45, 0 ], + "translation": [ 0, 3, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_spawn_egg.json new file mode 100644 index 000000000..4ae4b4c28 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/template_spawn_egg.json @@ -0,0 +1,7 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/spawn_egg", + "layer1": "item/spawn_egg_overlay" + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/terracotta.json new file mode 100644 index 000000000..c443c8902 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tide_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tide_armor_trim_smithing_template.json new file mode 100644 index 000000000..f3c544053 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tide_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/tide_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tinted_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tinted_glass.json new file mode 100644 index 000000000..18f610b87 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tinted_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/tinted_glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tipped_arrow.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tipped_arrow.json new file mode 100644 index 000000000..0b1241052 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tipped_arrow.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/tipped_arrow_head", + "layer1": "minecraft:item/tipped_arrow_base" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tnt.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tnt.json new file mode 100644 index 000000000..688d3f954 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tnt.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/tnt" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tnt_minecart.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tnt_minecart.json new file mode 100644 index 000000000..c3c326048 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tnt_minecart.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/tnt_minecart" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tooting_goat_horn.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tooting_goat_horn.json new file mode 100644 index 000000000..c412562eb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tooting_goat_horn.json @@ -0,0 +1,26 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/goat_horn" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, -125, 0 ], + "translation": [ -1, 2, 2 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 55, 0 ], + "translation": [ -1, 2, 2 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -55, -5 ], + "translation": [ -1, -2.5, -7.5 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 115, 5 ], + "translation": [ 0 , -2.5, -7.5 ] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/torch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/torch.json new file mode 100644 index 000000000..a734b43bc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/torch.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/torch" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/torchflower.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/torchflower.json new file mode 100644 index 000000000..bac7a8253 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/torchflower.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/torchflower" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/torchflower_seeds.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/torchflower_seeds.json new file mode 100644 index 000000000..6637aa8cb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/torchflower_seeds.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/torchflower_seeds" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/totem_of_undying.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/totem_of_undying.json new file mode 100644 index 000000000..abefc0572 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/totem_of_undying.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/totem_of_undying" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trader_llama_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trader_llama_spawn_egg.json new file mode 100644 index 000000000..dd644cb82 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trader_llama_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/trader_llama_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trapped_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trapped_chest.json new file mode 100644 index 000000000..fb1b4c691 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trapped_chest.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_chest", + "textures": { + "particle": "minecraft:block/oak_planks" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trial_key.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trial_key.json new file mode 100644 index 000000000..0ff9e82f0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trial_key.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/trial_key" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trial_spawner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trial_spawner.json new file mode 100644 index 000000000..22e70fe93 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trial_spawner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/trial_spawner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trident.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trident.json new file mode 100644 index 000000000..f129b55e9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trident.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/trident" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trident_in_hand.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trident_in_hand.json new file mode 100644 index 000000000..e7562b4aa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trident_in_hand.json @@ -0,0 +1,43 @@ +{ + "gui_light": "front", + "textures": { + "particle": "item/trident" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 60, 0 ], + "translation": [ 11, 17, -2 ], + "scale": [ 1, 1, 1 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 60, 0 ], + "translation": [ 3, 17, 12 ], + "scale": [ 1, 1, 1 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ -3, 17, 1], + "scale": [ 1, 1, 1 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 90, -25 ], + "translation": [ 13, 17, 1], + "scale": [ 1, 1, 1 ] + }, + "gui": { + "rotation": [ 15, -25, -5 ], + "translation": [ 2, 3, 0 ], + "scale": [ 0.65, 0.65, 0.65 ] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ -2, 4, -5], + "scale":[ 0.5, 0.5, 0.5] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 4, 4, 2], + "scale":[ 0.25, 0.25, 0.25] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trident_throwing.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trident_throwing.json new file mode 100644 index 000000000..0749afcd7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/trident_throwing.json @@ -0,0 +1,43 @@ +{ + "gui_light": "front", + "textures": { + "particle": "item/trident" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ 0, 90, 180 ], + "translation": [ 8, -17, 9 ], + "scale": [ 1, 1, 1 ] + }, + "thirdperson_lefthand": { + "rotation": [ 0, 90, 180 ], + "translation": [ 8, -17, -7 ], + "scale": [ 1, 1, 1 ] + }, + "firstperson_righthand": { + "rotation": [ 0, -90, 25 ], + "translation": [ -3, 17, 1], + "scale": [ 1, 1, 1 ] + }, + "firstperson_lefthand": { + "rotation": [ 0, 90, -25 ], + "translation": [ 13, 17, 1], + "scale": [ 1, 1, 1 ] + }, + "gui": { + "rotation": [ 15, -25, -5 ], + "translation": [ 2, 3, 0 ], + "scale": [ 0.65, 0.65, 0.65 ] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ -2, 4, -5], + "scale":[ 0.5, 0.5, 0.5] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 4, 4, 2], + "scale":[ 0.25, 0.25, 0.25] + } + } +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tripwire_hook.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tripwire_hook.json new file mode 100644 index 000000000..b4a83abd0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tripwire_hook.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/tripwire_hook" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tropical_fish.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tropical_fish.json new file mode 100644 index 000000000..d8e9ebc63 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tropical_fish.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/tropical_fish" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tropical_fish_bucket.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tropical_fish_bucket.json new file mode 100644 index 000000000..2ea21229b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tropical_fish_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/tropical_fish_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tropical_fish_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tropical_fish_spawn_egg.json new file mode 100644 index 000000000..f35039931 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tropical_fish_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/tropical_fish_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tube_coral.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tube_coral.json new file mode 100644 index 000000000..dc0358e15 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tube_coral.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/tube_coral" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tube_coral_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tube_coral_block.json new file mode 100644 index 000000000..14e2d5761 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tube_coral_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/tube_coral_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tube_coral_fan.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tube_coral_fan.json new file mode 100644 index 000000000..76c880f73 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tube_coral_fan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/tube_coral_fan" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff.json new file mode 100644 index 000000000..187958d90 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/tuff" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_brick_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_brick_slab.json new file mode 100644 index 000000000..b793fc27c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_brick_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/tuff_brick_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_brick_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_brick_stairs.json new file mode 100644 index 000000000..d5156694f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/tuff_brick_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_brick_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_brick_wall.json new file mode 100644 index 000000000..bfb8d8b5a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_brick_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/tuff_brick_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_bricks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_bricks.json new file mode 100644 index 000000000..d13c6e5a8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_bricks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/tuff_bricks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_slab.json new file mode 100644 index 000000000..5f0374307 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/tuff_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_stairs.json new file mode 100644 index 000000000..eacc1e5e9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/tuff_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_wall.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_wall.json new file mode 100644 index 000000000..91a87f521 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/tuff_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/tuff_wall_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_egg.json new file mode 100644 index 000000000..bbc29d4a5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet.json new file mode 100644 index 000000000..60d78346a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_amethyst_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_amethyst_trim.json new file mode 100644 index 000000000..b957586d4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_amethyst_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_amethyst" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_copper_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_copper_trim.json new file mode 100644 index 000000000..dcbbfcfe5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_copper_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_diamond_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_diamond_trim.json new file mode 100644 index 000000000..759556164 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_diamond_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_diamond" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_emerald_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_emerald_trim.json new file mode 100644 index 000000000..15cca0893 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_emerald_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_emerald" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_gold_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_gold_trim.json new file mode 100644 index 000000000..d7b0c824b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_gold_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_gold" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_iron_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_iron_trim.json new file mode 100644 index 000000000..2f4cbc6fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_iron_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_iron" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_lapis_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_lapis_trim.json new file mode 100644 index 000000000..95d3bc725 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_lapis_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_lapis" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_netherite_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_netherite_trim.json new file mode 100644 index 000000000..7c16fa614 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_netherite_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_netherite" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_quartz_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_quartz_trim.json new file mode 100644 index 000000000..6bcfbb694 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_quartz_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_quartz" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_redstone_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_redstone_trim.json new file mode 100644 index 000000000..4c694cbb5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_redstone_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_redstone" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_resin_trim.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_resin_trim.json new file mode 100644 index 000000000..64adf32e4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_helmet_resin_trim.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_helmet", + "layer1": "minecraft:trims/items/helmet_trim_resin" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_scute.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_scute.json new file mode 100644 index 000000000..64af43c32 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_scute.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_scute" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_spawn_egg.json new file mode 100644 index 000000000..559691cf3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/turtle_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/turtle_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/twisting_vines.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/twisting_vines.json new file mode 100644 index 000000000..fe4d57c09 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/twisting_vines.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/twisting_vines_plant" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/vault.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/vault.json new file mode 100644 index 000000000..848fa3097 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/vault.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/vault" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/verdant_froglight.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/verdant_froglight.json new file mode 100644 index 000000000..6b9f7d214 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/verdant_froglight.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/verdant_froglight" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/vex_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/vex_armor_trim_smithing_template.json new file mode 100644 index 000000000..93ec389ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/vex_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/vex_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/vex_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/vex_spawn_egg.json new file mode 100644 index 000000000..8ad861c6c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/vex_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/vex_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/villager_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/villager_spawn_egg.json new file mode 100644 index 000000000..3c69426ad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/villager_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/villager_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/vindicator_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/vindicator_spawn_egg.json new file mode 100644 index 000000000..371c13f74 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/vindicator_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/vindicator_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/vine.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/vine.json new file mode 100644 index 000000000..c1eaec402 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/vine.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/vine" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wandering_trader_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wandering_trader_spawn_egg.json new file mode 100644 index 000000000..54a52c05d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wandering_trader_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wandering_trader_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ward_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ward_armor_trim_smithing_template.json new file mode 100644 index 000000000..b8be109ee --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/ward_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ward_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warden_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warden_spawn_egg.json new file mode 100644 index 000000000..a26c8a56f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warden_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/warden_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_button.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_button.json new file mode 100644 index 000000000..182a0ac61 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_button.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/warped_button_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_door.json new file mode 100644 index 000000000..5bc37290d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/warped_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_fence.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_fence.json new file mode 100644 index 000000000..d45dd46dc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_fence.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/warped_fence_inventory" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_fence_gate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_fence_gate.json new file mode 100644 index 000000000..1f521bc73 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_fence_gate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/warped_fence_gate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_fungus.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_fungus.json new file mode 100644 index 000000000..eecb3bfdc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_fungus.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/warped_fungus" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_fungus_on_a_stick.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_fungus_on_a_stick.json new file mode 100644 index 000000000..562fe25cd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_fungus_on_a_stick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld_rod", + "textures": { + "layer0": "minecraft:item/warped_fungus_on_a_stick" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_hanging_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_hanging_sign.json new file mode 100644 index 000000000..fe9180a77 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_hanging_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/warped_hanging_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_hyphae.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_hyphae.json new file mode 100644 index 000000000..6cc4c5a4d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_hyphae.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/warped_hyphae" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_nylium.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_nylium.json new file mode 100644 index 000000000..20309492a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_nylium.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/warped_nylium" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_planks.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_planks.json new file mode 100644 index 000000000..92cfb4ca6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_planks.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/warped_planks" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_pressure_plate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_pressure_plate.json new file mode 100644 index 000000000..58d9b4438 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_pressure_plate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/warped_pressure_plate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_roots.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_roots.json new file mode 100644 index 000000000..d44aa5776 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_roots.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/warped_roots" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_sign.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_sign.json new file mode 100644 index 000000000..82db6f279 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/warped_sign" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_slab.json new file mode 100644 index 000000000..ce7153c40 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/warped_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_stairs.json new file mode 100644 index 000000000..08260fdd6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/warped_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_stem.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_stem.json new file mode 100644 index 000000000..0bab3df69 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_stem.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/warped_stem" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_trapdoor.json new file mode 100644 index 000000000..c716c4684 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/warped_trapdoor_bottom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_wart_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_wart_block.json new file mode 100644 index 000000000..754439abc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/warped_wart_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/warped_wart_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/water_bucket.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/water_bucket.json new file mode 100644 index 000000000..af17e57d7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/water_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/water_bucket" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_chiseled_copper.json new file mode 100644 index 000000000..b88e810ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_chiseled_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/chiseled_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_copper_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_copper_block.json new file mode 100644 index 000000000..7bc2c0184 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_copper_block.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/copper_block" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_copper_bulb.json new file mode 100644 index 000000000..08e49a530 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_copper_bulb.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/copper_bulb" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_copper_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_copper_door.json new file mode 100644 index 000000000..4466e7a34 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_copper_door.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/copper_door" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_copper_grate.json new file mode 100644 index 000000000..f4cff5139 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_copper_grate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/copper_grate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_copper_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_copper_trapdoor.json new file mode 100644 index 000000000..87df71b2e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_copper_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/copper_trapdoor" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_cut_copper.json new file mode 100644 index 000000000..ce1ec597d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_cut_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cut_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_cut_copper_slab.json new file mode 100644 index 000000000..b6b05101c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_cut_copper_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cut_copper_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_cut_copper_stairs.json new file mode 100644 index 000000000..7376f52cc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_cut_copper_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/cut_copper_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_chiseled_copper.json new file mode 100644 index 000000000..11278b6ad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_chiseled_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/exposed_chiseled_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_copper.json new file mode 100644 index 000000000..5881fd7b3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/exposed_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_copper_bulb.json new file mode 100644 index 000000000..efd8e9d99 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_copper_bulb.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/exposed_copper_bulb" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_copper_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_copper_door.json new file mode 100644 index 000000000..7e3a70453 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_copper_door.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/exposed_copper_door" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_copper_grate.json new file mode 100644 index 000000000..b7a3c78e2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_copper_grate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/exposed_copper_grate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_copper_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_copper_trapdoor.json new file mode 100644 index 000000000..e3f5e9add --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_copper_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/exposed_copper_trapdoor" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_cut_copper.json new file mode 100644 index 000000000..b5c7d8f01 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_cut_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/exposed_cut_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_cut_copper_slab.json new file mode 100644 index 000000000..29ce47239 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_cut_copper_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/exposed_cut_copper_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_cut_copper_stairs.json new file mode 100644 index 000000000..24bdd2851 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_exposed_cut_copper_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/exposed_cut_copper_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_chiseled_copper.json new file mode 100644 index 000000000..720204270 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_chiseled_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oxidized_chiseled_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_copper.json new file mode 100644 index 000000000..63a0dabe3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oxidized_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_copper_bulb.json new file mode 100644 index 000000000..59b8fb7b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_copper_bulb.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/oxidized_copper_bulb" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_copper_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_copper_door.json new file mode 100644 index 000000000..313143e13 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_copper_door.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/oxidized_copper_door" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_copper_grate.json new file mode 100644 index 000000000..e2521c38e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_copper_grate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oxidized_copper_grate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_copper_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_copper_trapdoor.json new file mode 100644 index 000000000..9d3a8bee8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_copper_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/oxidized_copper_trapdoor" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_cut_copper.json new file mode 100644 index 000000000..36dfa030a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_cut_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oxidized_cut_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_cut_copper_slab.json new file mode 100644 index 000000000..a3d022426 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_cut_copper_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oxidized_cut_copper_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_cut_copper_stairs.json new file mode 100644 index 000000000..fd8af1aab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_oxidized_cut_copper_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/oxidized_cut_copper_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_chiseled_copper.json new file mode 100644 index 000000000..c27086d6e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_chiseled_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/weathered_chiseled_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_copper.json new file mode 100644 index 000000000..743af49ae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/weathered_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_copper_bulb.json new file mode 100644 index 000000000..6e29d2919 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_copper_bulb.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/weathered_copper_bulb" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_copper_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_copper_door.json new file mode 100644 index 000000000..409c8efa3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_copper_door.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/weathered_copper_door" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_copper_grate.json new file mode 100644 index 000000000..17430d640 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_copper_grate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/weathered_copper_grate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_copper_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_copper_trapdoor.json new file mode 100644 index 000000000..7c3335de5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_copper_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/weathered_copper_trapdoor" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_cut_copper.json new file mode 100644 index 000000000..e49a231b6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_cut_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/weathered_cut_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_cut_copper_slab.json new file mode 100644 index 000000000..acda09e0a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_cut_copper_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/weathered_cut_copper_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_cut_copper_stairs.json new file mode 100644 index 000000000..01ce59724 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/waxed_weathered_cut_copper_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/weathered_cut_copper_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wayfinder_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wayfinder_armor_trim_smithing_template.json new file mode 100644 index 000000000..0d31b00cc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wayfinder_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wayfinder_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_chiseled_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_chiseled_copper.json new file mode 100644 index 000000000..c27086d6e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_chiseled_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/weathered_chiseled_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper.json new file mode 100644 index 000000000..743af49ae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/weathered_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_bars.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_bars.json new file mode 100644 index 000000000..ce12f6097 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_bars.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/weathered_copper_bars" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_bulb.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_bulb.json new file mode 100644 index 000000000..276559f80 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_bulb.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/weathered_copper_bulb" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_chain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_chain.json new file mode 100644 index 000000000..07a4be1fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_chain.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/weathered_copper_chain" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_chest.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_chest.json new file mode 100644 index 000000000..369bcf96b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_chest.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_chest", + "textures": { + "particle": "minecraft:block/weathered_copper" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_door.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_door.json new file mode 100644 index 000000000..91c28c7bc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/weathered_copper_door" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_grate.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_grate.json new file mode 100644 index 000000000..17430d640 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_grate.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/weathered_copper_grate" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_lantern.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_lantern.json new file mode 100644 index 000000000..efa18cfff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_lantern.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/weathered_copper_lantern" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_trapdoor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_trapdoor.json new file mode 100644 index 000000000..7b067302c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_copper_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/weathered_copper_trapdoor_bottom" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_cut_copper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_cut_copper.json new file mode 100644 index 000000000..e49a231b6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_cut_copper.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/weathered_cut_copper" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_cut_copper_slab.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_cut_copper_slab.json new file mode 100644 index 000000000..acda09e0a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_cut_copper_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/weathered_cut_copper_slab" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_cut_copper_stairs.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_cut_copper_stairs.json new file mode 100644 index 000000000..01ce59724 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weathered_cut_copper_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/weathered_cut_copper_stairs" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weeping_vines.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weeping_vines.json new file mode 100644 index 000000000..834b71c51 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/weeping_vines.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/weeping_vines_plant" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wet_sponge.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wet_sponge.json new file mode 100644 index 000000000..d662daaeb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wet_sponge.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/wet_sponge" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wheat.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wheat.json new file mode 100644 index 000000000..f77a8c8f3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wheat.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wheat" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wheat_seeds.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wheat_seeds.json new file mode 100644 index 000000000..8fd9068f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wheat_seeds.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wheat_seeds" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_banner.json new file mode 100644 index 000000000..661a106df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_banner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_bed.json new file mode 100644 index 000000000..93d81aff0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/white_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_bundle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_bundle.json new file mode 100644 index 000000000..6efd8ccb8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/white_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_bundle_open_back.json new file mode 100644 index 000000000..29479f6ac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/white_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_bundle_open_front.json new file mode 100644 index 000000000..0946151ab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/white_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_candle.json new file mode 100644 index 000000000..d13392c4e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/white_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_carpet.json new file mode 100644 index 000000000..8ef6f034c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/white_carpet" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_concrete.json new file mode 100644 index 000000000..16475ed43 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/white_concrete" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_concrete_powder.json new file mode 100644 index 000000000..c001b3839 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_concrete_powder.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/white_concrete_powder" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_dye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_dye.json new file mode 100644 index 000000000..68b02c07c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/white_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_glazed_terracotta.json new file mode 100644 index 000000000..55881dbcd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_glazed_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/white_glazed_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_harness.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_harness.json new file mode 100644 index 000000000..5c9e9f68c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/white_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_shulker_box.json new file mode 100644 index 000000000..6fd0156e7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/white_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_stained_glass.json new file mode 100644 index 000000000..28c61d954 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_stained_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/white_stained_glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_stained_glass_pane.json new file mode 100644 index 000000000..dbe66a16a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/white_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_terracotta.json new file mode 100644 index 000000000..973fa9667 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/white_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_tulip.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_tulip.json new file mode 100644 index 000000000..f19409060 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_tulip.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/white_tulip" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_wool.json new file mode 100644 index 000000000..5908f3401 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/white_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/white_wool" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wild_armor_trim_smithing_template.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wild_armor_trim_smithing_template.json new file mode 100644 index 000000000..52c438c78 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wild_armor_trim_smithing_template.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wild_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wildflowers.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wildflowers.json new file mode 100644 index 000000000..b4e709562 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wildflowers.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wildflowers" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wind_charge.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wind_charge.json new file mode 100644 index 000000000..821c34ebb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wind_charge.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wind_charge" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/witch_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/witch_spawn_egg.json new file mode 100644 index 000000000..374863990 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/witch_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/witch_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wither_rose.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wither_rose.json new file mode 100644 index 000000000..9579e7c48 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wither_rose.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/wither_rose" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wither_skeleton_skull.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wither_skeleton_skull.json new file mode 100644 index 000000000..364b6e65f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wither_skeleton_skull.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_skull" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wither_skeleton_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wither_skeleton_spawn_egg.json new file mode 100644 index 000000000..b39d9de40 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wither_skeleton_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wither_skeleton_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wither_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wither_spawn_egg.json new file mode 100644 index 000000000..3c16da2db --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wither_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wither_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wolf_armor.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wolf_armor.json new file mode 100644 index 000000000..11f104282 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wolf_armor.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wolf_armor" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wolf_armor_dyed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wolf_armor_dyed.json new file mode 100644 index 000000000..b08d08290 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wolf_armor_dyed.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wolf_armor", + "layer1": "minecraft:item/wolf_armor_overlay" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wolf_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wolf_spawn_egg.json new file mode 100644 index 000000000..e2b5ddc04 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wolf_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/wolf_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wooden_axe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wooden_axe.json new file mode 100644 index 000000000..e08423dbf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wooden_axe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/wooden_axe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wooden_hoe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wooden_hoe.json new file mode 100644 index 000000000..a925c76b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wooden_hoe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/wooden_hoe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wooden_pickaxe.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wooden_pickaxe.json new file mode 100644 index 000000000..5b9bbab7d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wooden_pickaxe.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/wooden_pickaxe" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wooden_shovel.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wooden_shovel.json new file mode 100644 index 000000000..7c4d82876 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wooden_shovel.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/wooden_shovel" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wooden_sword.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wooden_sword.json new file mode 100644 index 000000000..4024a58a0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/wooden_sword.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/wooden_sword" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/writable_book.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/writable_book.json new file mode 100644 index 000000000..9398becac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/writable_book.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/writable_book" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/written_book.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/written_book.json new file mode 100644 index 000000000..45a096029 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/written_book.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/written_book" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_banner.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_banner.json new file mode 100644 index 000000000..661a106df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_banner.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_banner" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_bed.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_bed.json new file mode 100644 index 000000000..cc67ceffa --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "minecraft:block/yellow_wool" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_bundle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_bundle.json new file mode 100644 index 000000000..c685714df --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_bundle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/yellow_bundle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_bundle_open_back.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_bundle_open_back.json new file mode 100644 index 000000000..04998c2b0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_bundle_open_back.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_back", + "textures": { + "layer0": "minecraft:item/yellow_bundle_open_back" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_bundle_open_front.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_bundle_open_front.json new file mode 100644 index 000000000..a4794d6ba --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_bundle_open_front.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bundle_open_front", + "textures": { + "layer0": "minecraft:item/yellow_bundle_open_front" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_candle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_candle.json new file mode 100644 index 000000000..8f2e07288 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_candle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/yellow_candle" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_carpet.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_carpet.json new file mode 100644 index 000000000..c3b3710e0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/yellow_carpet" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_concrete.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_concrete.json new file mode 100644 index 000000000..ed8ebe4c0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/yellow_concrete" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_concrete_powder.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_concrete_powder.json new file mode 100644 index 000000000..38bac8bf6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_concrete_powder.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/yellow_concrete_powder" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_dye.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_dye.json new file mode 100644 index 000000000..14d6bb6a0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/yellow_dye" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_glazed_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_glazed_terracotta.json new file mode 100644 index 000000000..4d8199842 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_glazed_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/yellow_glazed_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_harness.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_harness.json new file mode 100644 index 000000000..b2783bebe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_harness.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/yellow_harness" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_shulker_box.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_shulker_box.json new file mode 100644 index 000000000..318a620e7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "minecraft:block/yellow_shulker_box" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_stained_glass.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_stained_glass.json new file mode 100644 index 000000000..e102e2d5b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_stained_glass.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/yellow_stained_glass" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_stained_glass_pane.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_stained_glass_pane.json new file mode 100644 index 000000000..e17c28a21 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_stained_glass_pane.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:block/yellow_stained_glass" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_terracotta.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_terracotta.json new file mode 100644 index 000000000..50dfb7ea7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_terracotta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/yellow_terracotta" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_wool.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_wool.json new file mode 100644 index 000000000..e0de4bb81 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/yellow_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:block/yellow_wool" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zoglin_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zoglin_spawn_egg.json new file mode 100644 index 000000000..f87407767 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zoglin_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/zoglin_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zombie_head.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zombie_head.json new file mode 100644 index 000000000..364b6e65f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zombie_head.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/template_skull" +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zombie_horse_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zombie_horse_spawn_egg.json new file mode 100644 index 000000000..9d8a4e2fc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zombie_horse_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/zombie_horse_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zombie_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zombie_spawn_egg.json new file mode 100644 index 000000000..f0f63d8db --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zombie_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/zombie_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zombie_villager_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zombie_villager_spawn_egg.json new file mode 100644 index 000000000..651e67d8b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zombie_villager_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/zombie_villager_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zombified_piglin_spawn_egg.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zombified_piglin_spawn_egg.json new file mode 100644 index 000000000..fab7c383c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models/item/zombified_piglin_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/zombified_piglin_spawn_egg" + } +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models_1.txt b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models_1.txt new file mode 100644 index 000000000..f845dd21e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/models_1.txt @@ -0,0 +1,7180 @@ +block:id=%acacia_log,state=axis=x,patch0=0:minecraft:block/acacia_log,transparency=OPAQUE,stdrot=true +block:id=%acacia_log,state=axis=y,patch0=0:minecraft:block/acacia_log,transparency=OPAQUE,stdrot=true +block:id=%acacia_log,state=axis=z,patch0=0:minecraft:block/acacia_log,transparency=OPAQUE,stdrot=true +block:id=%acacia_slab,state=type=double,patch0=0:acacia_planks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%acacia_wood,state=axis=x,patch0=0:minecraft:block/acacia_log,transparency=OPAQUE,stdrot=true +block:id=%acacia_wood,state=axis=y,patch0=0:minecraft:block/acacia_log,transparency=OPAQUE,stdrot=true +block:id=%acacia_wood,state=axis=z,patch0=0:minecraft:block/acacia_log,transparency=OPAQUE,stdrot=true +block:id=%andesite_slab,state=type=double,patch0=0:andesite,transparency=SEMITRANSPARENT,stdrot=true +block:id=%bamboo_block,state=axis=x,patch0=0:minecraft:block/bamboo_block,transparency=OPAQUE,stdrot=true +block:id=%bamboo_block,state=axis=y,patch0=0:minecraft:block/bamboo_block,transparency=OPAQUE,stdrot=true +block:id=%bamboo_block,state=axis=z,patch0=0:minecraft:block/bamboo_block,transparency=OPAQUE,stdrot=true +block:id=%bamboo_mosaic_slab,state=type=double,patch0=0:bamboo_mosaic,transparency=SEMITRANSPARENT,stdrot=true +block:id=%bamboo_slab,state=type=double,patch0=0:bamboo_planks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%barrel,state=facing=down/open=false,patch0=0:minecraft:block/barrel_side,transparency=OPAQUE,stdrot=true +block:id=%barrel,state=facing=down/open=true,patch0=0:minecraft:block/barrel_side,transparency=OPAQUE,stdrot=true +block:id=%barrel,state=facing=east/open=false,patch0=0:minecraft:block/barrel_side,transparency=OPAQUE,stdrot=true +block:id=%barrel,state=facing=east/open=true,patch0=0:minecraft:block/barrel_side,transparency=OPAQUE,stdrot=true +block:id=%barrel,state=facing=north/open=false,patch0=0:minecraft:block/barrel_side,transparency=OPAQUE,stdrot=true +block:id=%barrel,state=facing=north/open=true,patch0=0:minecraft:block/barrel_side,transparency=OPAQUE,stdrot=true +block:id=%barrel,state=facing=south/open=false,patch0=0:minecraft:block/barrel_side,transparency=OPAQUE,stdrot=true +block:id=%barrel,state=facing=south/open=true,patch0=0:minecraft:block/barrel_side,transparency=OPAQUE,stdrot=true +block:id=%barrel,state=facing=up/open=false,patch0=0:minecraft:block/barrel_side,transparency=OPAQUE,stdrot=true +block:id=%barrel,state=facing=up/open=true,patch0=0:minecraft:block/barrel_side,transparency=OPAQUE,stdrot=true +block:id=%barrel,state=facing=west/open=false,patch0=0:minecraft:block/barrel_side,transparency=OPAQUE,stdrot=true +block:id=%barrel,state=facing=west/open=true,patch0=0:minecraft:block/barrel_side,transparency=OPAQUE,stdrot=true +block:id=%basalt,state=axis=x,patch0=0:minecraft:block/basalt_side,transparency=OPAQUE,stdrot=true +block:id=%basalt,state=axis=y,patch0=0:minecraft:block/basalt_side,transparency=OPAQUE,stdrot=true +block:id=%basalt,state=axis=z,patch0=0:minecraft:block/basalt_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=east/honey_level=0,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=east/honey_level=1,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=east/honey_level=2,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=east/honey_level=3,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=east/honey_level=4,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=east/honey_level=5,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=north/honey_level=0,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=north/honey_level=1,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=north/honey_level=2,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=north/honey_level=3,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=north/honey_level=4,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=north/honey_level=5,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=south/honey_level=0,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=south/honey_level=1,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=south/honey_level=2,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=south/honey_level=3,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=south/honey_level=4,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=south/honey_level=5,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=west/honey_level=0,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=west/honey_level=1,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=west/honey_level=2,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=west/honey_level=3,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=west/honey_level=4,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%bee_nest,state=facing=west/honey_level=5,patch0=0:bee_nest_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=east/honey_level=0,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=east/honey_level=1,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=east/honey_level=2,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=east/honey_level=3,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=east/honey_level=4,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=east/honey_level=5,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=north/honey_level=0,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=north/honey_level=1,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=north/honey_level=2,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=north/honey_level=3,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=north/honey_level=4,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=north/honey_level=5,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=south/honey_level=0,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=south/honey_level=1,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=south/honey_level=2,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=south/honey_level=3,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=south/honey_level=4,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=south/honey_level=5,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=west/honey_level=0,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=west/honey_level=1,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=west/honey_level=2,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=west/honey_level=3,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=west/honey_level=4,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%beehive,state=facing=west/honey_level=5,patch0=0:beehive_side,transparency=OPAQUE,stdrot=true +block:id=%birch_log,state=axis=x,patch0=0:minecraft:block/birch_log,transparency=OPAQUE,stdrot=true +block:id=%birch_log,state=axis=y,patch0=0:minecraft:block/birch_log,transparency=OPAQUE,stdrot=true +block:id=%birch_log,state=axis=z,patch0=0:minecraft:block/birch_log,transparency=OPAQUE,stdrot=true +block:id=%birch_slab,state=type=double,patch0=0:birch_planks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%birch_wood,state=axis=x,patch0=0:minecraft:block/birch_log,transparency=OPAQUE,stdrot=true +block:id=%birch_wood,state=axis=y,patch0=0:minecraft:block/birch_log,transparency=OPAQUE,stdrot=true +block:id=%birch_wood,state=axis=z,patch0=0:minecraft:block/birch_log,transparency=OPAQUE,stdrot=true +block:id=%black_glazed_terracotta,state=facing=east,patch0=0:minecraft:block/black_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%black_glazed_terracotta,state=facing=north,patch0=0:minecraft:block/black_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%black_glazed_terracotta,state=facing=south,patch0=0:minecraft:block/black_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%black_glazed_terracotta,state=facing=west,patch0=0:minecraft:block/black_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%blackstone_slab,state=type=double,patch0=0:minecraft:block/blackstone,transparency=SEMITRANSPARENT,stdrot=true +block:id=%blast_furnace,state=facing=east/lit=false,patch0=0:blast_furnace_front,transparency=OPAQUE,stdrot=true +block:id=%blast_furnace,state=facing=east/lit=true,patch0=0:blast_furnace_front_on,transparency=OPAQUE,stdrot=true +block:id=%blast_furnace,state=facing=north/lit=false,patch0=0:blast_furnace_front,transparency=OPAQUE,stdrot=true +block:id=%blast_furnace,state=facing=north/lit=true,patch0=0:blast_furnace_front_on,transparency=OPAQUE,stdrot=true +block:id=%blast_furnace,state=facing=south/lit=false,patch0=0:blast_furnace_front,transparency=OPAQUE,stdrot=true +block:id=%blast_furnace,state=facing=south/lit=true,patch0=0:blast_furnace_front_on,transparency=OPAQUE,stdrot=true +block:id=%blast_furnace,state=facing=west/lit=false,patch0=0:blast_furnace_front,transparency=OPAQUE,stdrot=true +block:id=%blast_furnace,state=facing=west/lit=true,patch0=0:blast_furnace_front_on,transparency=OPAQUE,stdrot=true +block:id=%blue_glazed_terracotta,state=facing=east,patch0=0:minecraft:block/blue_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%blue_glazed_terracotta,state=facing=north,patch0=0:minecraft:block/blue_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%blue_glazed_terracotta,state=facing=south,patch0=0:minecraft:block/blue_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%blue_glazed_terracotta,state=facing=west,patch0=0:minecraft:block/blue_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%bone_block,state=axis=x,patch0=0:minecraft:block/bone_block_side,transparency=OPAQUE,stdrot=true +block:id=%bone_block,state=axis=y,patch0=0:minecraft:block/bone_block_side,transparency=OPAQUE,stdrot=true +block:id=%bone_block,state=axis=z,patch0=0:minecraft:block/bone_block_side,transparency=OPAQUE,stdrot=true +block:id=%brick_slab,state=type=double,patch0=0:bricks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%brown_glazed_terracotta,state=facing=east,patch0=0:minecraft:block/brown_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%brown_glazed_terracotta,state=facing=north,patch0=0:minecraft:block/brown_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%brown_glazed_terracotta,state=facing=south,patch0=0:minecraft:block/brown_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%brown_glazed_terracotta,state=facing=west,patch0=0:minecraft:block/brown_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%carved_pumpkin,state=facing=east,patch0=0:carved_pumpkin,transparency=OPAQUE,stdrot=true +block:id=%carved_pumpkin,state=facing=north,patch0=0:carved_pumpkin,transparency=OPAQUE,stdrot=true +block:id=%carved_pumpkin,state=facing=south,patch0=0:carved_pumpkin,transparency=OPAQUE,stdrot=true +block:id=%carved_pumpkin,state=facing=west,patch0=0:carved_pumpkin,transparency=OPAQUE,stdrot=true +block:id=%chain_command_block,state=conditional=false/facing=down,patch0=0:minecraft:block/chain_command_block_back,transparency=SEMITRANSPARENT,stdrot=true +block:id=%chain_command_block,state=conditional=false/facing=east,patch0=0:minecraft:block/chain_command_block_back,transparency=SEMITRANSPARENT,stdrot=true +block:id=%chain_command_block,state=conditional=false/facing=north,patch0=0:minecraft:block/chain_command_block_back,transparency=SEMITRANSPARENT,stdrot=true +block:id=%chain_command_block,state=conditional=false/facing=south,patch0=0:minecraft:block/chain_command_block_back,transparency=SEMITRANSPARENT,stdrot=true +block:id=%chain_command_block,state=conditional=false/facing=up,patch0=0:minecraft:block/chain_command_block_back,transparency=SEMITRANSPARENT,stdrot=true +block:id=%chain_command_block,state=conditional=false/facing=west,patch0=0:minecraft:block/chain_command_block_back,transparency=SEMITRANSPARENT,stdrot=true +block:id=%chain_command_block,state=conditional=true/facing=down,patch0=0:minecraft:block/chain_command_block_back,transparency=SEMITRANSPARENT,stdrot=true +block:id=%chain_command_block,state=conditional=true/facing=east,patch0=0:minecraft:block/chain_command_block_back,transparency=SEMITRANSPARENT,stdrot=true +block:id=%chain_command_block,state=conditional=true/facing=north,patch0=0:minecraft:block/chain_command_block_back,transparency=SEMITRANSPARENT,stdrot=true +block:id=%chain_command_block,state=conditional=true/facing=south,patch0=0:minecraft:block/chain_command_block_back,transparency=SEMITRANSPARENT,stdrot=true +block:id=%chain_command_block,state=conditional=true/facing=up,patch0=0:minecraft:block/chain_command_block_back,transparency=SEMITRANSPARENT,stdrot=true +block:id=%chain_command_block,state=conditional=true/facing=west,patch0=0:minecraft:block/chain_command_block_back,transparency=SEMITRANSPARENT,stdrot=true +block:id=%cherry_log,state=axis=x,patch0=0:minecraft:block/cherry_log,transparency=OPAQUE,stdrot=true +block:id=%cherry_log,state=axis=y,patch0=0:minecraft:block/cherry_log,transparency=OPAQUE,stdrot=true +block:id=%cherry_log,state=axis=z,patch0=0:minecraft:block/cherry_log,transparency=OPAQUE,stdrot=true +block:id=%cherry_slab,state=type=double,patch0=0:cherry_planks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%cherry_wood,state=axis=x,patch0=0:minecraft:block/cherry_log,transparency=OPAQUE,stdrot=true +block:id=%cherry_wood,state=axis=y,patch0=0:minecraft:block/cherry_log,transparency=OPAQUE,stdrot=true +block:id=%cherry_wood,state=axis=z,patch0=0:minecraft:block/cherry_log,transparency=OPAQUE,stdrot=true +block:id=%chiseled_bookshelf,state=facing:east,patch0=0:block/chiseled_bookshelf_top,transparency=SEMITRANSPARENT,stdrot=true +block:id=%chiseled_bookshelf,state=facing:north,patch0=0:block/chiseled_bookshelf_top,transparency=SEMITRANSPARENT,stdrot=true +block:id=%chiseled_bookshelf,state=facing:south,patch0=0:block/chiseled_bookshelf_top,transparency=SEMITRANSPARENT,stdrot=true +block:id=%chiseled_bookshelf,state=facing:west,patch0=0:block/chiseled_bookshelf_top,transparency=SEMITRANSPARENT,stdrot=true +block:id=%cobbled_deepslate_slab,state=type=double,patch0=0:cobbled_deepslate,transparency=SEMITRANSPARENT,stdrot=true +block:id=%cobblestone_slab,state=type=double,patch0=0:cobblestone,transparency=SEMITRANSPARENT,stdrot=true +block:id=%command_block,state=conditional=false/facing=down,patch0=0:minecraft:block/command_block_back,transparency=OPAQUE,stdrot=true +block:id=%command_block,state=conditional=false/facing=east,patch0=0:minecraft:block/command_block_back,transparency=OPAQUE,stdrot=true +block:id=%command_block,state=conditional=false/facing=north,patch0=0:minecraft:block/command_block_back,transparency=OPAQUE,stdrot=true +block:id=%command_block,state=conditional=false/facing=south,patch0=0:minecraft:block/command_block_back,transparency=OPAQUE,stdrot=true +block:id=%command_block,state=conditional=false/facing=up,patch0=0:minecraft:block/command_block_back,transparency=OPAQUE,stdrot=true +block:id=%command_block,state=conditional=false/facing=west,patch0=0:minecraft:block/command_block_back,transparency=OPAQUE,stdrot=true +block:id=%command_block,state=conditional=true/facing=down,patch0=0:minecraft:block/command_block_back,transparency=OPAQUE,stdrot=true +block:id=%command_block,state=conditional=true/facing=east,patch0=0:minecraft:block/command_block_back,transparency=OPAQUE,stdrot=true +block:id=%command_block,state=conditional=true/facing=north,patch0=0:minecraft:block/command_block_back,transparency=OPAQUE,stdrot=true +block:id=%command_block,state=conditional=true/facing=south,patch0=0:minecraft:block/command_block_back,transparency=OPAQUE,stdrot=true +block:id=%command_block,state=conditional=true/facing=up,patch0=0:minecraft:block/command_block_back,transparency=OPAQUE,stdrot=true +block:id=%command_block,state=conditional=true/facing=west,patch0=0:minecraft:block/command_block_back,transparency=OPAQUE,stdrot=true +block:id=%copper_bulb,state=lit=false/powered=false,patch0=0:copper_bulb,transparency=OPAQUE,stdrot=true +block:id=%copper_bulb,state=lit=false/powered=true,patch0=0:copper_bulb_powered,transparency=OPAQUE,stdrot=true +block:id=%copper_bulb,state=lit=true/powered=false,patch0=0:copper_bulb_lit,transparency=OPAQUE,stdrot=true +block:id=%copper_bulb,state=lit=true/powered=true,patch0=0:copper_bulb_lit_powered,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=down_east/triggered=false,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=down_east/triggered=true,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=down_north/triggered=false,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=down_north/triggered=true,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=down_south/triggered=false,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=down_south/triggered=true,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=down_west/triggered=false,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=down_west/triggered=true,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=east_up/triggered=false,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=east_up/triggered=true,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=north_up/triggered=false,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=north_up/triggered=true,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=south_up/triggered=false,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=south_up/triggered=true,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=up_east/triggered=false,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=up_east/triggered=true,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=up_north/triggered=false,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=up_north/triggered=true,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=up_south/triggered=false,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=up_south/triggered=true,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=up_west/triggered=false,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=up_west/triggered=true,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=west_up/triggered=false,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=false/orientation=west_up/triggered=true,patch0=0:block/crafter_north,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=down_east/triggered=false,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=down_east/triggered=true,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=down_north/triggered=false,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=down_north/triggered=true,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=down_south/triggered=false,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=down_south/triggered=true,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=down_west/triggered=false,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=down_west/triggered=true,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=east_up/triggered=false,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=east_up/triggered=true,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=north_up/triggered=false,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=north_up/triggered=true,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=south_up/triggered=false,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=south_up/triggered=true,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=up_east/triggered=false,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=up_east/triggered=true,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=up_north/triggered=false,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=up_north/triggered=true,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=up_south/triggered=false,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=up_south/triggered=true,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=up_west/triggered=false,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=up_west/triggered=true,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=west_up/triggered=false,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%crafter,state=crafting=true/orientation=west_up/triggered=true,patch0=0:block/crafter_north_crafting,transparency=OPAQUE,stdrot=true +block:id=%creaking_heart,state=axis=x/creaking_heart_state=awake,patch0=0:minecraft:block/creaking_heart_awake,transparency=OPAQUE,stdrot=true +block:id=%creaking_heart,state=axis=x/creaking_heart_state=dormant,patch0=0:minecraft:block/creaking_heart_dormant,transparency=OPAQUE,stdrot=true +block:id=%creaking_heart,state=axis=x/creaking_heart_state=uprooted,patch0=0:minecraft:block/creaking_heart,transparency=OPAQUE,stdrot=true +block:id=%creaking_heart,state=axis=y/creaking_heart_state=awake,patch0=0:minecraft:block/creaking_heart_awake,transparency=OPAQUE,stdrot=true +block:id=%creaking_heart,state=axis=y/creaking_heart_state=dormant,patch0=0:minecraft:block/creaking_heart_dormant,transparency=OPAQUE,stdrot=true +block:id=%creaking_heart,state=axis=y/creaking_heart_state=uprooted,patch0=0:minecraft:block/creaking_heart,transparency=OPAQUE,stdrot=true +block:id=%creaking_heart,state=axis=z/creaking_heart_state=awake,patch0=0:minecraft:block/creaking_heart_awake,transparency=OPAQUE,stdrot=true +block:id=%creaking_heart,state=axis=z/creaking_heart_state=dormant,patch0=0:minecraft:block/creaking_heart_dormant,transparency=OPAQUE,stdrot=true +block:id=%creaking_heart,state=axis=z/creaking_heart_state=uprooted,patch0=0:minecraft:block/creaking_heart,transparency=OPAQUE,stdrot=true +block:id=%crimson_hyphae,state=axis=x,patch0=0:minecraft:block/crimson_stem,transparency=OPAQUE,stdrot=true +block:id=%crimson_hyphae,state=axis=y,patch0=0:minecraft:block/crimson_stem,transparency=OPAQUE,stdrot=true +block:id=%crimson_hyphae,state=axis=z,patch0=0:minecraft:block/crimson_stem,transparency=OPAQUE,stdrot=true +block:id=%crimson_slab,state=type=double,patch0=0:crimson_planks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%crimson_stem,state=axis=x,patch0=0:minecraft:block/crimson_stem,transparency=OPAQUE,stdrot=true +block:id=%crimson_stem,state=axis=y,patch0=0:minecraft:block/crimson_stem,transparency=OPAQUE,stdrot=true +block:id=%crimson_stem,state=axis=z,patch0=0:minecraft:block/crimson_stem,transparency=OPAQUE,stdrot=true +block:id=%cut_copper_slab,state=type=double,patch0=0:cut_copper,transparency=SEMITRANSPARENT,stdrot=true +block:id=%cut_red_sandstone_slab,state=type=double,patch0=0:minecraft:block/cut_red_sandstone,transparency=SEMITRANSPARENT,stdrot=true +block:id=%cut_sandstone_slab,state=type=double,patch0=0:minecraft:block/cut_sandstone,transparency=SEMITRANSPARENT,stdrot=true +block:id=%cyan_glazed_terracotta,state=facing=east,patch0=0:minecraft:block/cyan_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%cyan_glazed_terracotta,state=facing=north,patch0=0:minecraft:block/cyan_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%cyan_glazed_terracotta,state=facing=south,patch0=0:minecraft:block/cyan_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%cyan_glazed_terracotta,state=facing=west,patch0=0:minecraft:block/cyan_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%dark_oak_log,state=axis=x,patch0=0:minecraft:block/dark_oak_log,transparency=OPAQUE,stdrot=true +block:id=%dark_oak_log,state=axis=y,patch0=0:minecraft:block/dark_oak_log,transparency=OPAQUE,stdrot=true +block:id=%dark_oak_log,state=axis=z,patch0=0:minecraft:block/dark_oak_log,transparency=OPAQUE,stdrot=true +block:id=%dark_oak_slab,state=type=double,patch0=0:dark_oak_planks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%dark_oak_wood,state=axis=x,patch0=0:minecraft:block/dark_oak_log,transparency=OPAQUE,stdrot=true +block:id=%dark_oak_wood,state=axis=y,patch0=0:minecraft:block/dark_oak_log,transparency=OPAQUE,stdrot=true +block:id=%dark_oak_wood,state=axis=z,patch0=0:minecraft:block/dark_oak_log,transparency=OPAQUE,stdrot=true +block:id=%dark_prismarine_slab,state=type=double,patch0=0:dark_prismarine,transparency=SEMITRANSPARENT,stdrot=true +block:id=%deepslate,state=axis=x,patch0=0:minecraft:block/deepslate,transparency=OPAQUE,stdrot=true +block:id=%deepslate,state=axis=y,patch0=0:minecraft:block/deepslate,transparency=OPAQUE,stdrot=true +block:id=%deepslate,state=axis=z,patch0=0:minecraft:block/deepslate,transparency=OPAQUE,stdrot=true +block:id=%deepslate_brick_slab,state=type=double,patch0=0:deepslate_bricks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%deepslate_tile_slab,state=type=double,patch0=0:deepslate_tiles,transparency=SEMITRANSPARENT,stdrot=true +block:id=%diorite_slab,state=type=double,patch0=0:diorite,transparency=SEMITRANSPARENT,stdrot=true +block:id=%dispenser,state=facing=down,patch0=0:minecraft:block/furnace_top,transparency=OPAQUE,stdrot=true +block:id=%dispenser,state=facing=east,patch0=0:dispenser_front,transparency=OPAQUE,stdrot=true +block:id=%dispenser,state=facing=north,patch0=0:dispenser_front,transparency=OPAQUE,stdrot=true +block:id=%dispenser,state=facing=south,patch0=0:dispenser_front,transparency=OPAQUE,stdrot=true +block:id=%dispenser,state=facing=up,patch0=0:minecraft:block/furnace_top,transparency=OPAQUE,stdrot=true +block:id=%dispenser,state=facing=west,patch0=0:dispenser_front,transparency=OPAQUE,stdrot=true +block:id=%dropper,state=facing=down,patch0=0:minecraft:block/furnace_top,transparency=OPAQUE,stdrot=true +block:id=%dropper,state=facing=east,patch0=0:dropper_front,transparency=OPAQUE,stdrot=true +block:id=%dropper,state=facing=north,patch0=0:dropper_front,transparency=OPAQUE,stdrot=true +block:id=%dropper,state=facing=south,patch0=0:dropper_front,transparency=OPAQUE,stdrot=true +block:id=%dropper,state=facing=up,patch0=0:minecraft:block/furnace_top,transparency=OPAQUE,stdrot=true +block:id=%dropper,state=facing=west,patch0=0:dropper_front,transparency=OPAQUE,stdrot=true +block:id=%end_stone_brick_slab,state=type=double,patch0=0:end_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%exposed_copper_bulb,state=lit=false/powered=false,patch0=0:exposed_copper_bulb,transparency=OPAQUE,stdrot=true +block:id=%exposed_copper_bulb,state=lit=false/powered=true,patch0=0:exposed_copper_bulb_powered,transparency=OPAQUE,stdrot=true +block:id=%exposed_copper_bulb,state=lit=true/powered=false,patch0=0:exposed_copper_bulb_lit,transparency=OPAQUE,stdrot=true +block:id=%exposed_copper_bulb,state=lit=true/powered=true,patch0=0:exposed_copper_bulb_lit_powered,transparency=OPAQUE,stdrot=true +block:id=%exposed_cut_copper_slab,state=type=double,patch0=0:exposed_cut_copper,transparency=SEMITRANSPARENT,stdrot=true +block:id=%frosted_ice,state=age=0,patch0=0:frosted_ice_0,transparency=OPAQUE,stdrot=true +block:id=%frosted_ice,state=age=1,patch0=0:frosted_ice_1,transparency=OPAQUE,stdrot=true +block:id=%frosted_ice,state=age=2,patch0=0:frosted_ice_2,transparency=OPAQUE,stdrot=true +block:id=%frosted_ice,state=age=3,patch0=0:frosted_ice_3,transparency=OPAQUE,stdrot=true +block:id=%furnace,state=facing=east/lit=false,patch0=0:furnace_front,transparency=OPAQUE,stdrot=true +block:id=%furnace,state=facing=east/lit=true,patch0=0:furnace_front_on,transparency=OPAQUE,stdrot=true +block:id=%furnace,state=facing=north/lit=false,patch0=0:furnace_front,transparency=OPAQUE,stdrot=true +block:id=%furnace,state=facing=north/lit=true,patch0=0:furnace_front_on,transparency=OPAQUE,stdrot=true +block:id=%furnace,state=facing=south/lit=false,patch0=0:furnace_front,transparency=OPAQUE,stdrot=true +block:id=%furnace,state=facing=south/lit=true,patch0=0:furnace_front_on,transparency=OPAQUE,stdrot=true +block:id=%furnace,state=facing=west/lit=false,patch0=0:furnace_front,transparency=OPAQUE,stdrot=true +block:id=%furnace,state=facing=west/lit=true,patch0=0:furnace_front_on,transparency=OPAQUE,stdrot=true +block:id=%granite_slab,state=type=double,patch0=0:granite,transparency=SEMITRANSPARENT,stdrot=true +block:id=%grass_block,state=snowy=true,patch0=0:dirt,transparency=OPAQUE,stdrot=true +block:id=%gray_glazed_terracotta,state=facing=east,patch0=0:minecraft:block/gray_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%gray_glazed_terracotta,state=facing=north,patch0=0:minecraft:block/gray_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%gray_glazed_terracotta,state=facing=south,patch0=0:minecraft:block/gray_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%gray_glazed_terracotta,state=facing=west,patch0=0:minecraft:block/gray_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%green_glazed_terracotta,state=facing=east,patch0=0:minecraft:block/green_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%green_glazed_terracotta,state=facing=north,patch0=0:minecraft:block/green_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%green_glazed_terracotta,state=facing=south,patch0=0:minecraft:block/green_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%green_glazed_terracotta,state=facing=west,patch0=0:minecraft:block/green_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%hay_block,state=axis=x,patch0=0:minecraft:block/hay_block_side,transparency=OPAQUE,stdrot=true +block:id=%hay_block,state=axis=y,patch0=0:minecraft:block/hay_block_side,transparency=OPAQUE,stdrot=true +block:id=%hay_block,state=axis=z,patch0=0:minecraft:block/hay_block_side,transparency=OPAQUE,stdrot=true +block:id=%infested_deepslate,state=axis=x,patch0=0:minecraft:block/deepslate,transparency=OPAQUE,stdrot=true +block:id=%infested_deepslate,state=axis=y,patch0=0:minecraft:block/deepslate,transparency=OPAQUE,stdrot=true +block:id=%infested_deepslate,state=axis=z,patch0=0:minecraft:block/deepslate,transparency=OPAQUE,stdrot=true +block:id=%jack_o_lantern,state=facing=east,patch0=0:jack_o_lantern,transparency=SEMITRANSPARENT,stdrot=true +block:id=%jack_o_lantern,state=facing=north,patch0=0:jack_o_lantern,transparency=SEMITRANSPARENT,stdrot=true +block:id=%jack_o_lantern,state=facing=south,patch0=0:jack_o_lantern,transparency=SEMITRANSPARENT,stdrot=true +block:id=%jack_o_lantern,state=facing=west,patch0=0:jack_o_lantern,transparency=SEMITRANSPARENT,stdrot=true +block:id=%jigsaw,state=orientation=down_east,patch0=0:jigsaw_top,transparency=OPAQUE,stdrot=true +block:id=%jigsaw,state=orientation=down_north,patch0=0:jigsaw_top,transparency=OPAQUE,stdrot=true +block:id=%jigsaw,state=orientation=down_south,patch0=0:jigsaw_top,transparency=OPAQUE,stdrot=true +block:id=%jigsaw,state=orientation=down_west,patch0=0:jigsaw_top,transparency=OPAQUE,stdrot=true +block:id=%jigsaw,state=orientation=east_up,patch0=0:jigsaw_top,transparency=OPAQUE,stdrot=true +block:id=%jigsaw,state=orientation=north_up,patch0=0:jigsaw_top,transparency=OPAQUE,stdrot=true +block:id=%jigsaw,state=orientation=south_up,patch0=0:jigsaw_top,transparency=OPAQUE,stdrot=true +block:id=%jigsaw,state=orientation=up_east,patch0=0:jigsaw_top,transparency=OPAQUE,stdrot=true +block:id=%jigsaw,state=orientation=up_north,patch0=0:jigsaw_top,transparency=OPAQUE,stdrot=true +block:id=%jigsaw,state=orientation=up_south,patch0=0:jigsaw_top,transparency=OPAQUE,stdrot=true +block:id=%jigsaw,state=orientation=up_west,patch0=0:jigsaw_top,transparency=OPAQUE,stdrot=true +block:id=%jigsaw,state=orientation=west_up,patch0=0:jigsaw_top,transparency=OPAQUE,stdrot=true +block:id=%jungle_log,state=axis=x,patch0=0:minecraft:block/jungle_log,transparency=OPAQUE,stdrot=true +block:id=%jungle_log,state=axis=y,patch0=0:minecraft:block/jungle_log,transparency=OPAQUE,stdrot=true +block:id=%jungle_log,state=axis=z,patch0=0:minecraft:block/jungle_log,transparency=OPAQUE,stdrot=true +block:id=%jungle_slab,state=type=double,patch0=0:jungle_planks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%jungle_wood,state=axis=x,patch0=0:minecraft:block/jungle_log,transparency=OPAQUE,stdrot=true +block:id=%jungle_wood,state=axis=y,patch0=0:minecraft:block/jungle_log,transparency=OPAQUE,stdrot=true +block:id=%jungle_wood,state=axis=z,patch0=0:minecraft:block/jungle_log,transparency=OPAQUE,stdrot=true +block:id=%light_blue_glazed_terracotta,state=facing=east,patch0=0:minecraft:block/light_blue_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%light_blue_glazed_terracotta,state=facing=north,patch0=0:minecraft:block/light_blue_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%light_blue_glazed_terracotta,state=facing=south,patch0=0:minecraft:block/light_blue_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%light_blue_glazed_terracotta,state=facing=west,patch0=0:minecraft:block/light_blue_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%light_gray_glazed_terracotta,state=facing=east,patch0=0:minecraft:block/light_gray_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%light_gray_glazed_terracotta,state=facing=north,patch0=0:minecraft:block/light_gray_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%light_gray_glazed_terracotta,state=facing=south,patch0=0:minecraft:block/light_gray_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%light_gray_glazed_terracotta,state=facing=west,patch0=0:minecraft:block/light_gray_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%lime_glazed_terracotta,state=facing=east,patch0=0:minecraft:block/lime_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%lime_glazed_terracotta,state=facing=north,patch0=0:minecraft:block/lime_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%lime_glazed_terracotta,state=facing=south,patch0=0:minecraft:block/lime_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%lime_glazed_terracotta,state=facing=west,patch0=0:minecraft:block/lime_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%loom,state=facing=east,patch0=0:minecraft:block/loom_front,transparency=OPAQUE,stdrot=true +block:id=%loom,state=facing=north,patch0=0:minecraft:block/loom_front,transparency=OPAQUE,stdrot=true +block:id=%loom,state=facing=south,patch0=0:minecraft:block/loom_front,transparency=OPAQUE,stdrot=true +block:id=%loom,state=facing=west,patch0=0:minecraft:block/loom_front,transparency=OPAQUE,stdrot=true +block:id=%magenta_glazed_terracotta,state=facing=east,patch0=0:minecraft:block/magenta_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%magenta_glazed_terracotta,state=facing=north,patch0=0:minecraft:block/magenta_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%magenta_glazed_terracotta,state=facing=south,patch0=0:minecraft:block/magenta_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%magenta_glazed_terracotta,state=facing=west,patch0=0:minecraft:block/magenta_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%mangrove_log,state=axis=x,patch0=0:minecraft:block/mangrove_log,transparency=OPAQUE,stdrot=true +block:id=%mangrove_log,state=axis=y,patch0=0:minecraft:block/mangrove_log,transparency=OPAQUE,stdrot=true +block:id=%mangrove_log,state=axis=z,patch0=0:minecraft:block/mangrove_log,transparency=OPAQUE,stdrot=true +block:id=%mangrove_slab,state=type=double,patch0=0:mangrove_planks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%mangrove_wood,state=axis=x,patch0=0:minecraft:block/mangrove_log,transparency=OPAQUE,stdrot=true +block:id=%mangrove_wood,state=axis=y,patch0=0:minecraft:block/mangrove_log,transparency=OPAQUE,stdrot=true +block:id=%mangrove_wood,state=axis=z,patch0=0:minecraft:block/mangrove_log,transparency=OPAQUE,stdrot=true +block:id=%mossy_cobblestone_slab,state=type=double,patch0=0:mossy_cobblestone,transparency=SEMITRANSPARENT,stdrot=true +block:id=%mossy_stone_brick_slab,state=type=double,patch0=0:mossy_stone_bricks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%mud_brick_slab,state=type=double,patch0=0:mud_bricks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%muddy_mangrove_roots,state=axis=x,patch0=0:minecraft:block/muddy_mangrove_roots_side,transparency=OPAQUE,stdrot=true +block:id=%muddy_mangrove_roots,state=axis=y,patch0=0:minecraft:block/muddy_mangrove_roots_side,transparency=OPAQUE,stdrot=true +block:id=%muddy_mangrove_roots,state=axis=z,patch0=0:minecraft:block/muddy_mangrove_roots_side,transparency=OPAQUE,stdrot=true +block:id=%mycelium,state=snowy=false,patch0=0:minecraft:block/mycelium_side,transparency=OPAQUE,stdrot=true +block:id=%mycelium,state=snowy=true,patch0=0:dirt,transparency=OPAQUE,stdrot=true +block:id=%nether_brick_slab,state=type=double,patch0=0:nether_bricks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%oak_log,state=axis=x,patch0=0:minecraft:block/oak_log,transparency=OPAQUE,stdrot=true +block:id=%oak_log,state=axis=y,patch0=0:minecraft:block/oak_log,transparency=OPAQUE,stdrot=true +block:id=%oak_log,state=axis=z,patch0=0:minecraft:block/oak_log,transparency=OPAQUE,stdrot=true +block:id=%oak_slab,state=type=double,patch0=0:oak_planks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%oak_wood,state=axis=x,patch0=0:minecraft:block/oak_log,transparency=OPAQUE,stdrot=true +block:id=%oak_wood,state=axis=y,patch0=0:minecraft:block/oak_log,transparency=OPAQUE,stdrot=true +block:id=%oak_wood,state=axis=z,patch0=0:minecraft:block/oak_log,transparency=OPAQUE,stdrot=true +block:id=%observer,state=facing=down/powered=false,patch0=0:block/observer_front,transparency=OPAQUE,stdrot=true +block:id=%observer,state=facing=down/powered=true,patch0=0:block/observer_front,transparency=OPAQUE,stdrot=true +block:id=%observer,state=facing=east/powered=false,patch0=0:block/observer_front,transparency=OPAQUE,stdrot=true +block:id=%observer,state=facing=east/powered=true,patch0=0:block/observer_front,transparency=OPAQUE,stdrot=true +block:id=%observer,state=facing=north/powered=false,patch0=0:block/observer_front,transparency=OPAQUE,stdrot=true +block:id=%observer,state=facing=north/powered=true,patch0=0:block/observer_front,transparency=OPAQUE,stdrot=true +block:id=%observer,state=facing=south/powered=false,patch0=0:block/observer_front,transparency=OPAQUE,stdrot=true +block:id=%observer,state=facing=south/powered=true,patch0=0:block/observer_front,transparency=OPAQUE,stdrot=true +block:id=%observer,state=facing=up/powered=false,patch0=0:block/observer_front,transparency=OPAQUE,stdrot=true +block:id=%observer,state=facing=up/powered=true,patch0=0:block/observer_front,transparency=OPAQUE,stdrot=true +block:id=%observer,state=facing=west/powered=false,patch0=0:block/observer_front,transparency=OPAQUE,stdrot=true +block:id=%observer,state=facing=west/powered=true,patch0=0:block/observer_front,transparency=OPAQUE,stdrot=true +block:id=%ochre_froglight,state=axis=x,patch0=0:minecraft:block/ochre_froglight_side,transparency=OPAQUE,stdrot=true +block:id=%ochre_froglight,state=axis=y,patch0=0:minecraft:block/ochre_froglight_side,transparency=OPAQUE,stdrot=true +block:id=%ochre_froglight,state=axis=z,patch0=0:minecraft:block/ochre_froglight_side,transparency=OPAQUE,stdrot=true +block:id=%orange_glazed_terracotta,state=facing=east,patch0=0:minecraft:block/orange_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%orange_glazed_terracotta,state=facing=north,patch0=0:minecraft:block/orange_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%orange_glazed_terracotta,state=facing=south,patch0=0:minecraft:block/orange_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%orange_glazed_terracotta,state=facing=west,patch0=0:minecraft:block/orange_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%oxidized_copper_bulb,state=lit=false/powered=false,patch0=0:oxidized_copper_bulb,transparency=OPAQUE,stdrot=true +block:id=%oxidized_copper_bulb,state=lit=false/powered=true,patch0=0:oxidized_copper_bulb_powered,transparency=OPAQUE,stdrot=true +block:id=%oxidized_copper_bulb,state=lit=true/powered=false,patch0=0:oxidized_copper_bulb_lit,transparency=OPAQUE,stdrot=true +block:id=%oxidized_copper_bulb,state=lit=true/powered=true,patch0=0:oxidized_copper_bulb_lit_powered,transparency=OPAQUE,stdrot=true +block:id=%oxidized_cut_copper_slab,state=type=double,patch0=0:oxidized_cut_copper,transparency=SEMITRANSPARENT,stdrot=true +block:id=%pale_oak_log,state=axis=x,patch0=0:minecraft:block/pale_oak_log,transparency=OPAQUE,stdrot=true +block:id=%pale_oak_log,state=axis=y,patch0=0:minecraft:block/pale_oak_log,transparency=OPAQUE,stdrot=true +block:id=%pale_oak_log,state=axis=z,patch0=0:minecraft:block/pale_oak_log,transparency=OPAQUE,stdrot=true +block:id=%pale_oak_slab,state=type=double,patch0=0:pale_oak_planks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%pale_oak_wood,state=axis=x,patch0=0:minecraft:block/pale_oak_log,transparency=OPAQUE,stdrot=true +block:id=%pale_oak_wood,state=axis=y,patch0=0:minecraft:block/pale_oak_log,transparency=OPAQUE,stdrot=true +block:id=%pale_oak_wood,state=axis=z,patch0=0:minecraft:block/pale_oak_log,transparency=OPAQUE,stdrot=true +block:id=%pearlescent_froglight,state=axis=x,patch0=0:minecraft:block/pearlescent_froglight_side,transparency=OPAQUE,stdrot=true +block:id=%pearlescent_froglight,state=axis=y,patch0=0:minecraft:block/pearlescent_froglight_side,transparency=OPAQUE,stdrot=true +block:id=%pearlescent_froglight,state=axis=z,patch0=0:minecraft:block/pearlescent_froglight_side,transparency=OPAQUE,stdrot=true +block:id=%petrified_oak_slab,state=type=double,patch0=0:oak_planks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%pink_glazed_terracotta,state=facing=east,patch0=0:minecraft:block/pink_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%pink_glazed_terracotta,state=facing=north,patch0=0:minecraft:block/pink_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%pink_glazed_terracotta,state=facing=south,patch0=0:minecraft:block/pink_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%pink_glazed_terracotta,state=facing=west,patch0=0:minecraft:block/pink_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%piston,state=extended=false/facing=down,patch0=0:minecraft:block/piston_side,transparency=OPAQUE,stdrot=true +block:id=%piston,state=extended=false/facing=east,patch0=0:minecraft:block/piston_side,transparency=OPAQUE,stdrot=true +block:id=%piston,state=extended=false/facing=north,patch0=0:minecraft:block/piston_side,transparency=OPAQUE,stdrot=true +block:id=%piston,state=extended=false/facing=south,patch0=0:minecraft:block/piston_side,transparency=OPAQUE,stdrot=true +block:id=%piston,state=extended=false/facing=up,patch0=0:minecraft:block/piston_side,transparency=OPAQUE,stdrot=true +block:id=%piston,state=extended=false/facing=west,patch0=0:minecraft:block/piston_side,transparency=OPAQUE,stdrot=true +block:id=%podzol,state=snowy=false,patch0=0:minecraft:block/podzol_side,transparency=OPAQUE,stdrot=true +block:id=%podzol,state=snowy=true,patch0=0:dirt,transparency=OPAQUE,stdrot=true +block:id=%polished_andesite_slab,state=type=double,patch0=0:polished_andesite,transparency=SEMITRANSPARENT,stdrot=true +block:id=%polished_basalt,state=axis=x,patch0=0:minecraft:block/polished_basalt_side,transparency=OPAQUE,stdrot=true +block:id=%polished_basalt,state=axis=y,patch0=0:minecraft:block/polished_basalt_side,transparency=OPAQUE,stdrot=true +block:id=%polished_basalt,state=axis=z,patch0=0:minecraft:block/polished_basalt_side,transparency=OPAQUE,stdrot=true +block:id=%polished_blackstone_brick_slab,state=type=double,patch0=0:polished_blackstone_bricks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%polished_blackstone_slab,state=type=double,patch0=0:polished_blackstone,transparency=SEMITRANSPARENT,stdrot=true +block:id=%polished_deepslate_slab,state=type=double,patch0=0:polished_deepslate,transparency=SEMITRANSPARENT,stdrot=true +block:id=%polished_diorite_slab,state=type=double,patch0=0:polished_diorite,transparency=SEMITRANSPARENT,stdrot=true +block:id=%polished_granite_slab,state=type=double,patch0=0:polished_granite,transparency=SEMITRANSPARENT,stdrot=true +block:id=%polished_tuff_slab,state=type=double,patch0=0:polished_tuff,transparency=SEMITRANSPARENT,stdrot=true +block:id=%prismarine_brick_slab,state=type=double,patch0=0:prismarine_bricks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%prismarine_slab,state=type=double,patch0=0:prismarine,transparency=SEMITRANSPARENT,stdrot=true +block:id=%purple_glazed_terracotta,state=facing=east,patch0=0:minecraft:block/purple_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%purple_glazed_terracotta,state=facing=north,patch0=0:minecraft:block/purple_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%purple_glazed_terracotta,state=facing=south,patch0=0:minecraft:block/purple_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%purple_glazed_terracotta,state=facing=west,patch0=0:minecraft:block/purple_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%purpur_pillar,state=axis=x,patch0=0:minecraft:block/purpur_pillar,transparency=OPAQUE,stdrot=true +block:id=%purpur_pillar,state=axis=y,patch0=0:minecraft:block/purpur_pillar,transparency=OPAQUE,stdrot=true +block:id=%purpur_pillar,state=axis=z,patch0=0:minecraft:block/purpur_pillar,transparency=OPAQUE,stdrot=true +block:id=%purpur_slab,state=type=double,patch0=0:purpur_block,transparency=SEMITRANSPARENT,stdrot=true +block:id=%quartz_pillar,state=axis=x,patch0=0:minecraft:block/quartz_pillar,transparency=OPAQUE,stdrot=true +block:id=%quartz_pillar,state=axis=y,patch0=0:minecraft:block/quartz_pillar,transparency=OPAQUE,stdrot=true +block:id=%quartz_pillar,state=axis=z,patch0=0:minecraft:block/quartz_pillar,transparency=OPAQUE,stdrot=true +block:id=%quartz_slab,state=type=double,patch0=0:minecraft:block/quartz_block_side,transparency=SEMITRANSPARENT,stdrot=true +block:id=%red_glazed_terracotta,state=facing=east,patch0=0:minecraft:block/red_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%red_glazed_terracotta,state=facing=north,patch0=0:minecraft:block/red_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%red_glazed_terracotta,state=facing=south,patch0=0:minecraft:block/red_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%red_glazed_terracotta,state=facing=west,patch0=0:minecraft:block/red_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%red_nether_brick_slab,state=type=double,patch0=0:red_nether_bricks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%red_sandstone_slab,state=type=double,patch0=0:minecraft:block/red_sandstone,transparency=SEMITRANSPARENT,stdrot=true +block:id=%redstone_lamp,state=lit=false,patch0=0:redstone_lamp,transparency=OPAQUE,stdrot=true +block:id=%redstone_lamp,state=lit=true,patch0=0:redstone_lamp_on,transparency=OPAQUE,stdrot=true +block:id=%repeating_command_block,state=conditional=false/facing=down,patch0=0:minecraft:block/repeating_command_block_back,transparency=OPAQUE,stdrot=true +block:id=%repeating_command_block,state=conditional=false/facing=east,patch0=0:minecraft:block/repeating_command_block_back,transparency=OPAQUE,stdrot=true +block:id=%repeating_command_block,state=conditional=false/facing=north,patch0=0:minecraft:block/repeating_command_block_back,transparency=OPAQUE,stdrot=true +block:id=%repeating_command_block,state=conditional=false/facing=south,patch0=0:minecraft:block/repeating_command_block_back,transparency=OPAQUE,stdrot=true +block:id=%repeating_command_block,state=conditional=false/facing=up,patch0=0:minecraft:block/repeating_command_block_back,transparency=OPAQUE,stdrot=true +block:id=%repeating_command_block,state=conditional=false/facing=west,patch0=0:minecraft:block/repeating_command_block_back,transparency=OPAQUE,stdrot=true +block:id=%repeating_command_block,state=conditional=true/facing=down,patch0=0:minecraft:block/repeating_command_block_back,transparency=OPAQUE,stdrot=true +block:id=%repeating_command_block,state=conditional=true/facing=east,patch0=0:minecraft:block/repeating_command_block_back,transparency=OPAQUE,stdrot=true +block:id=%repeating_command_block,state=conditional=true/facing=north,patch0=0:minecraft:block/repeating_command_block_back,transparency=OPAQUE,stdrot=true +block:id=%repeating_command_block,state=conditional=true/facing=south,patch0=0:minecraft:block/repeating_command_block_back,transparency=OPAQUE,stdrot=true +block:id=%repeating_command_block,state=conditional=true/facing=up,patch0=0:minecraft:block/repeating_command_block_back,transparency=OPAQUE,stdrot=true +block:id=%repeating_command_block,state=conditional=true/facing=west,patch0=0:minecraft:block/repeating_command_block_back,transparency=OPAQUE,stdrot=true +block:id=%resin_brick_slab,state=type=double,patch0=0:resin_bricks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%respawn_anchor,state=charges=0,patch0=0:minecraft:block/respawn_anchor_side0,transparency=OPAQUE,stdrot=true +block:id=%respawn_anchor,state=charges=1,patch0=0:minecraft:block/respawn_anchor_side1,transparency=OPAQUE,stdrot=true +block:id=%respawn_anchor,state=charges=2,patch0=0:minecraft:block/respawn_anchor_side2,transparency=OPAQUE,stdrot=true +block:id=%respawn_anchor,state=charges=3,patch0=0:minecraft:block/respawn_anchor_side3,transparency=OPAQUE,stdrot=true +block:id=%respawn_anchor,state=charges=4,patch0=0:minecraft:block/respawn_anchor_side4,transparency=OPAQUE,stdrot=true +block:id=%sandstone_slab,state=type=double,patch0=0:minecraft:block/sandstone,transparency=SEMITRANSPARENT,stdrot=true +block:id=%sculk_catalyst,state=bloom=false,patch0=0:minecraft:block/sculk_catalyst_side,transparency=OPAQUE,stdrot=true +block:id=%sculk_catalyst,state=bloom=true,patch0=0:minecraft:block/sculk_catalyst_side_bloom,transparency=OPAQUE,stdrot=true +block:id=%smoker,state=facing=east/lit=false,patch0=0:minecraft:block/smoker_front,transparency=OPAQUE,stdrot=true +block:id=%smoker,state=facing=east/lit=true,patch0=0:minecraft:block/smoker_front_on,transparency=OPAQUE,stdrot=true +block:id=%smoker,state=facing=north/lit=false,patch0=0:minecraft:block/smoker_front,transparency=OPAQUE,stdrot=true +block:id=%smoker,state=facing=north/lit=true,patch0=0:minecraft:block/smoker_front_on,transparency=OPAQUE,stdrot=true +block:id=%smoker,state=facing=south/lit=false,patch0=0:minecraft:block/smoker_front,transparency=OPAQUE,stdrot=true +block:id=%smoker,state=facing=south/lit=true,patch0=0:minecraft:block/smoker_front_on,transparency=OPAQUE,stdrot=true +block:id=%smoker,state=facing=west/lit=false,patch0=0:minecraft:block/smoker_front,transparency=OPAQUE,stdrot=true +block:id=%smoker,state=facing=west/lit=true,patch0=0:minecraft:block/smoker_front_on,transparency=OPAQUE,stdrot=true +block:id=%smooth_quartz_slab,state=type=double,patch0=0:quartz_block_bottom,transparency=SEMITRANSPARENT,stdrot=true +block:id=%smooth_red_sandstone_slab,state=type=double,patch0=0:red_sandstone_top,transparency=SEMITRANSPARENT,stdrot=true +block:id=%smooth_sandstone_slab,state=type=double,patch0=0:sandstone_top,transparency=SEMITRANSPARENT,stdrot=true +block:id=%smooth_stone_slab,state=type=double,patch0=0:minecraft:block/smooth_stone_slab_side,transparency=SEMITRANSPARENT,stdrot=true +block:id=%snow,state=layers=8,patch0=0:snow,transparency=OPAQUE,stdrot=true +block:id=%spruce_log,state=axis=x,patch0=0:minecraft:block/spruce_log,transparency=OPAQUE,stdrot=true +block:id=%spruce_log,state=axis=y,patch0=0:minecraft:block/spruce_log,transparency=OPAQUE,stdrot=true +block:id=%spruce_log,state=axis=z,patch0=0:minecraft:block/spruce_log,transparency=OPAQUE,stdrot=true +block:id=%spruce_slab,state=type=double,patch0=0:spruce_planks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%spruce_wood,state=axis=x,patch0=0:minecraft:block/spruce_log,transparency=OPAQUE,stdrot=true +block:id=%spruce_wood,state=axis=y,patch0=0:minecraft:block/spruce_log,transparency=OPAQUE,stdrot=true +block:id=%spruce_wood,state=axis=z,patch0=0:minecraft:block/spruce_log,transparency=OPAQUE,stdrot=true +block:id=%sticky_piston,state=extended=false/facing=down,patch0=0:minecraft:block/piston_side,transparency=OPAQUE,stdrot=true +block:id=%sticky_piston,state=extended=false/facing=east,patch0=0:minecraft:block/piston_side,transparency=OPAQUE,stdrot=true +block:id=%sticky_piston,state=extended=false/facing=north,patch0=0:minecraft:block/piston_side,transparency=OPAQUE,stdrot=true +block:id=%sticky_piston,state=extended=false/facing=south,patch0=0:minecraft:block/piston_side,transparency=OPAQUE,stdrot=true +block:id=%sticky_piston,state=extended=false/facing=up,patch0=0:minecraft:block/piston_side,transparency=OPAQUE,stdrot=true +block:id=%sticky_piston,state=extended=false/facing=west,patch0=0:minecraft:block/piston_side,transparency=OPAQUE,stdrot=true +block:id=%stone_brick_slab,state=type=double,patch0=0:stone_bricks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%stone_slab,state=type=double,patch0=0:stone,transparency=SEMITRANSPARENT,stdrot=true +block:id=%stripped_acacia_log,state=axis=x,patch0=0:minecraft:block/stripped_acacia_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_acacia_log,state=axis=y,patch0=0:minecraft:block/stripped_acacia_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_acacia_log,state=axis=z,patch0=0:minecraft:block/stripped_acacia_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_acacia_wood,state=axis=x,patch0=0:minecraft:block/stripped_acacia_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_acacia_wood,state=axis=y,patch0=0:minecraft:block/stripped_acacia_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_acacia_wood,state=axis=z,patch0=0:minecraft:block/stripped_acacia_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_bamboo_block,state=axis=x,patch0=0:minecraft:block/stripped_bamboo_block,transparency=OPAQUE,stdrot=true +block:id=%stripped_bamboo_block,state=axis=y,patch0=0:minecraft:block/stripped_bamboo_block,transparency=OPAQUE,stdrot=true +block:id=%stripped_bamboo_block,state=axis=z,patch0=0:minecraft:block/stripped_bamboo_block,transparency=OPAQUE,stdrot=true +block:id=%stripped_birch_log,state=axis=x,patch0=0:minecraft:block/stripped_birch_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_birch_log,state=axis=y,patch0=0:minecraft:block/stripped_birch_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_birch_log,state=axis=z,patch0=0:minecraft:block/stripped_birch_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_birch_wood,state=axis=x,patch0=0:minecraft:block/stripped_birch_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_birch_wood,state=axis=y,patch0=0:minecraft:block/stripped_birch_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_birch_wood,state=axis=z,patch0=0:minecraft:block/stripped_birch_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_cherry_log,state=axis=x,patch0=0:minecraft:block/stripped_cherry_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_cherry_log,state=axis=y,patch0=0:minecraft:block/stripped_cherry_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_cherry_log,state=axis=z,patch0=0:minecraft:block/stripped_cherry_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_cherry_wood,state=axis=x,patch0=0:minecraft:block/stripped_cherry_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_cherry_wood,state=axis=y,patch0=0:minecraft:block/stripped_cherry_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_cherry_wood,state=axis=z,patch0=0:minecraft:block/stripped_cherry_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_crimson_hyphae,state=axis=x,patch0=0:minecraft:block/stripped_crimson_stem,transparency=OPAQUE,stdrot=true +block:id=%stripped_crimson_hyphae,state=axis=y,patch0=0:minecraft:block/stripped_crimson_stem,transparency=OPAQUE,stdrot=true +block:id=%stripped_crimson_hyphae,state=axis=z,patch0=0:minecraft:block/stripped_crimson_stem,transparency=OPAQUE,stdrot=true +block:id=%stripped_crimson_stem,state=axis=x,patch0=0:minecraft:block/stripped_crimson_stem,transparency=OPAQUE,stdrot=true +block:id=%stripped_crimson_stem,state=axis=y,patch0=0:minecraft:block/stripped_crimson_stem,transparency=OPAQUE,stdrot=true +block:id=%stripped_crimson_stem,state=axis=z,patch0=0:minecraft:block/stripped_crimson_stem,transparency=OPAQUE,stdrot=true +block:id=%stripped_dark_oak_log,state=axis=x,patch0=0:minecraft:block/stripped_dark_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_dark_oak_log,state=axis=y,patch0=0:minecraft:block/stripped_dark_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_dark_oak_log,state=axis=z,patch0=0:minecraft:block/stripped_dark_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_dark_oak_wood,state=axis=x,patch0=0:minecraft:block/stripped_dark_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_dark_oak_wood,state=axis=y,patch0=0:minecraft:block/stripped_dark_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_dark_oak_wood,state=axis=z,patch0=0:minecraft:block/stripped_dark_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_jungle_log,state=axis=x,patch0=0:minecraft:block/stripped_jungle_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_jungle_log,state=axis=y,patch0=0:minecraft:block/stripped_jungle_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_jungle_log,state=axis=z,patch0=0:minecraft:block/stripped_jungle_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_jungle_wood,state=axis=x,patch0=0:minecraft:block/stripped_jungle_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_jungle_wood,state=axis=y,patch0=0:minecraft:block/stripped_jungle_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_jungle_wood,state=axis=z,patch0=0:minecraft:block/stripped_jungle_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_mangrove_log,state=axis=x,patch0=0:minecraft:block/stripped_mangrove_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_mangrove_log,state=axis=y,patch0=0:minecraft:block/stripped_mangrove_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_mangrove_log,state=axis=z,patch0=0:minecraft:block/stripped_mangrove_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_mangrove_wood,state=axis=x,patch0=0:minecraft:block/stripped_mangrove_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_mangrove_wood,state=axis=y,patch0=0:minecraft:block/stripped_mangrove_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_mangrove_wood,state=axis=z,patch0=0:minecraft:block/stripped_mangrove_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_oak_log,state=axis=x,patch0=0:minecraft:block/stripped_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_oak_log,state=axis=y,patch0=0:minecraft:block/stripped_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_oak_log,state=axis=z,patch0=0:minecraft:block/stripped_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_oak_wood,state=axis=x,patch0=0:minecraft:block/stripped_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_oak_wood,state=axis=y,patch0=0:minecraft:block/stripped_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_oak_wood,state=axis=z,patch0=0:minecraft:block/stripped_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_pale_oak_log,state=axis=x,patch0=0:minecraft:block/stripped_pale_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_pale_oak_log,state=axis=y,patch0=0:minecraft:block/stripped_pale_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_pale_oak_log,state=axis=z,patch0=0:minecraft:block/stripped_pale_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_pale_oak_wood,state=axis=x,patch0=0:minecraft:block/stripped_pale_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_pale_oak_wood,state=axis=y,patch0=0:minecraft:block/stripped_pale_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_pale_oak_wood,state=axis=z,patch0=0:minecraft:block/stripped_pale_oak_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_spruce_log,state=axis=x,patch0=0:minecraft:block/stripped_spruce_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_spruce_log,state=axis=y,patch0=0:minecraft:block/stripped_spruce_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_spruce_log,state=axis=z,patch0=0:minecraft:block/stripped_spruce_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_spruce_wood,state=axis=x,patch0=0:minecraft:block/stripped_spruce_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_spruce_wood,state=axis=y,patch0=0:minecraft:block/stripped_spruce_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_spruce_wood,state=axis=z,patch0=0:minecraft:block/stripped_spruce_log,transparency=OPAQUE,stdrot=true +block:id=%stripped_warped_hyphae,state=axis=x,patch0=0:minecraft:block/stripped_warped_stem,transparency=OPAQUE,stdrot=true +block:id=%stripped_warped_hyphae,state=axis=y,patch0=0:minecraft:block/stripped_warped_stem,transparency=OPAQUE,stdrot=true +block:id=%stripped_warped_hyphae,state=axis=z,patch0=0:minecraft:block/stripped_warped_stem,transparency=OPAQUE,stdrot=true +block:id=%stripped_warped_stem,state=axis=x,patch0=0:minecraft:block/stripped_warped_stem,transparency=OPAQUE,stdrot=true +block:id=%stripped_warped_stem,state=axis=y,patch0=0:minecraft:block/stripped_warped_stem,transparency=OPAQUE,stdrot=true +block:id=%stripped_warped_stem,state=axis=z,patch0=0:minecraft:block/stripped_warped_stem,transparency=OPAQUE,stdrot=true +block:id=%structure_block,state=mode=corner,patch0=0:structure_block_corner,transparency=OPAQUE,stdrot=true +block:id=%structure_block,state=mode=data,patch0=0:structure_block_data,transparency=OPAQUE,stdrot=true +block:id=%structure_block,state=mode=load,patch0=0:structure_block_load,transparency=OPAQUE,stdrot=true +block:id=%structure_block,state=mode=save,patch0=0:structure_block_save,transparency=OPAQUE,stdrot=true +block:id=%suspicious_gravel,state=dusted=0,patch0=0:suspicious_gravel_0,transparency=OPAQUE,stdrot=true +block:id=%suspicious_gravel,state=dusted=1,patch0=0:suspicious_gravel_1,transparency=OPAQUE,stdrot=true +block:id=%suspicious_gravel,state=dusted=2,patch0=0:suspicious_gravel_2,transparency=OPAQUE,stdrot=true +block:id=%suspicious_gravel,state=dusted=3,patch0=0:suspicious_gravel_3,transparency=OPAQUE,stdrot=true +block:id=%suspicious_sand,state=dusted=0,patch0=0:suspicious_sand_0,transparency=OPAQUE,stdrot=true +block:id=%suspicious_sand,state=dusted=1,patch0=0:suspicious_sand_1,transparency=OPAQUE,stdrot=true +block:id=%suspicious_sand,state=dusted=2,patch0=0:suspicious_sand_2,transparency=OPAQUE,stdrot=true +block:id=%suspicious_sand,state=dusted=3,patch0=0:suspicious_sand_3,transparency=OPAQUE,stdrot=true +block:id=%test_block,state=mode=accept,patch0=0:test_block_accept,transparency=OPAQUE,stdrot=true +block:id=%test_block,state=mode=fail,patch0=0:test_block_fail,transparency=OPAQUE,stdrot=true +block:id=%test_block,state=mode=log,patch0=0:test_block_log,transparency=OPAQUE,stdrot=true +block:id=%test_block,state=mode=start,patch0=0:test_block_start,transparency=OPAQUE,stdrot=true +block:id=%tuff_brick_slab,state=type=double,patch0=0:tuff_bricks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%tuff_slab,state=type=double,patch0=0:tuff,transparency=SEMITRANSPARENT,stdrot=true +block:id=%verdant_froglight,state=axis=x,patch0=0:minecraft:block/verdant_froglight_side,transparency=OPAQUE,stdrot=true +block:id=%verdant_froglight,state=axis=y,patch0=0:minecraft:block/verdant_froglight_side,transparency=OPAQUE,stdrot=true +block:id=%verdant_froglight,state=axis=z,patch0=0:minecraft:block/verdant_froglight_side,transparency=OPAQUE,stdrot=true +block:id=%warped_hyphae,state=axis=x,patch0=0:minecraft:block/warped_stem,transparency=OPAQUE,stdrot=true +block:id=%warped_hyphae,state=axis=y,patch0=0:minecraft:block/warped_stem,transparency=OPAQUE,stdrot=true +block:id=%warped_hyphae,state=axis=z,patch0=0:minecraft:block/warped_stem,transparency=OPAQUE,stdrot=true +block:id=%warped_slab,state=type=double,patch0=0:warped_planks,transparency=SEMITRANSPARENT,stdrot=true +block:id=%warped_stem,state=axis=x,patch0=0:minecraft:block/warped_stem,transparency=OPAQUE,stdrot=true +block:id=%warped_stem,state=axis=y,patch0=0:minecraft:block/warped_stem,transparency=OPAQUE,stdrot=true +block:id=%warped_stem,state=axis=z,patch0=0:minecraft:block/warped_stem,transparency=OPAQUE,stdrot=true +block:id=%waxed_copper_bulb,state=lit=false/powered=false,patch0=0:copper_bulb,transparency=OPAQUE,stdrot=true +block:id=%waxed_copper_bulb,state=lit=false/powered=true,patch0=0:copper_bulb_powered,transparency=OPAQUE,stdrot=true +block:id=%waxed_copper_bulb,state=lit=true/powered=false,patch0=0:copper_bulb_lit,transparency=OPAQUE,stdrot=true +block:id=%waxed_copper_bulb,state=lit=true/powered=true,patch0=0:copper_bulb_lit_powered,transparency=OPAQUE,stdrot=true +block:id=%waxed_cut_copper_slab,state=type=double,patch0=0:cut_copper,transparency=SEMITRANSPARENT,stdrot=true +block:id=%waxed_exposed_copper_bulb,state=lit=false/powered=false,patch0=0:exposed_copper_bulb,transparency=OPAQUE,stdrot=true +block:id=%waxed_exposed_copper_bulb,state=lit=false/powered=true,patch0=0:exposed_copper_bulb_powered,transparency=OPAQUE,stdrot=true +block:id=%waxed_exposed_copper_bulb,state=lit=true/powered=false,patch0=0:exposed_copper_bulb_lit,transparency=OPAQUE,stdrot=true +block:id=%waxed_exposed_copper_bulb,state=lit=true/powered=true,patch0=0:exposed_copper_bulb_lit_powered,transparency=OPAQUE,stdrot=true +block:id=%waxed_exposed_cut_copper_slab,state=type=double,patch0=0:exposed_cut_copper,transparency=SEMITRANSPARENT,stdrot=true +block:id=%waxed_oxidized_copper_bulb,state=lit=false/powered=false,patch0=0:oxidized_copper_bulb,transparency=OPAQUE,stdrot=true +block:id=%waxed_oxidized_copper_bulb,state=lit=false/powered=true,patch0=0:oxidized_copper_bulb_powered,transparency=OPAQUE,stdrot=true +block:id=%waxed_oxidized_copper_bulb,state=lit=true/powered=false,patch0=0:oxidized_copper_bulb_lit,transparency=OPAQUE,stdrot=true +block:id=%waxed_oxidized_copper_bulb,state=lit=true/powered=true,patch0=0:oxidized_copper_bulb_lit_powered,transparency=OPAQUE,stdrot=true +block:id=%waxed_oxidized_cut_copper_slab,state=type=double,patch0=0:oxidized_cut_copper,transparency=SEMITRANSPARENT,stdrot=true +block:id=%waxed_weathered_copper_bulb,state=lit=false/powered=false,patch0=0:weathered_copper_bulb,transparency=OPAQUE,stdrot=true +block:id=%waxed_weathered_copper_bulb,state=lit=false/powered=true,patch0=0:weathered_copper_bulb_powered,transparency=OPAQUE,stdrot=true +block:id=%waxed_weathered_copper_bulb,state=lit=true/powered=false,patch0=0:weathered_copper_bulb_lit,transparency=OPAQUE,stdrot=true +block:id=%waxed_weathered_copper_bulb,state=lit=true/powered=true,patch0=0:weathered_copper_bulb_lit_powered,transparency=OPAQUE,stdrot=true +block:id=%waxed_weathered_cut_copper_slab,state=type=double,patch0=0:weathered_cut_copper,transparency=SEMITRANSPARENT,stdrot=true +block:id=%weathered_copper_bulb,state=lit=false/powered=false,patch0=0:weathered_copper_bulb,transparency=OPAQUE,stdrot=true +block:id=%weathered_copper_bulb,state=lit=false/powered=true,patch0=0:weathered_copper_bulb_powered,transparency=OPAQUE,stdrot=true +block:id=%weathered_copper_bulb,state=lit=true/powered=false,patch0=0:weathered_copper_bulb_lit,transparency=OPAQUE,stdrot=true +block:id=%weathered_copper_bulb,state=lit=true/powered=true,patch0=0:weathered_copper_bulb_lit_powered,transparency=OPAQUE,stdrot=true +block:id=%weathered_cut_copper_slab,state=type=double,patch0=0:weathered_cut_copper,transparency=SEMITRANSPARENT,stdrot=true +block:id=%white_glazed_terracotta,state=facing=east,patch0=0:minecraft:block/white_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%white_glazed_terracotta,state=facing=north,patch0=0:minecraft:block/white_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%white_glazed_terracotta,state=facing=south,patch0=0:minecraft:block/white_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%white_glazed_terracotta,state=facing=west,patch0=0:minecraft:block/white_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%yellow_glazed_terracotta,state=facing=east,patch0=0:minecraft:block/yellow_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%yellow_glazed_terracotta,state=facing=north,patch0=0:minecraft:block/yellow_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%yellow_glazed_terracotta,state=facing=south,patch0=0:minecraft:block/yellow_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=%yellow_glazed_terracotta,state=facing=west,patch0=0:minecraft:block/yellow_glazed_terracotta,transparency=OPAQUE,stdrot=true +block:id=acacia_leaves,patch0=0:acacia_leaves,transparency=SEMITRANSPARENT +block:id=acacia_planks,patch0=0:acacia_planks,transparency=OPAQUE +block:id=amethyst_block,patch0=0:amethyst_block,transparency=OPAQUE +block:id=ancient_debris,patch0=0:minecraft:block/ancient_debris_side,transparency=OPAQUE +block:id=andesite,patch0=0:andesite,transparency=OPAQUE +block:id=azalea_leaves,patch0=0:azalea_leaves,transparency=SEMITRANSPARENT +block:id=bamboo_mosaic,patch0=0:bamboo_mosaic,transparency=OPAQUE +block:id=bamboo_planks,patch0=0:bamboo_planks,transparency=OPAQUE +block:id=bedrock,patch0=0:bedrock,transparency=OPAQUE +block:id=birch_leaves,patch0=0:birch_leaves,transparency=SEMITRANSPARENT +block:id=birch_planks,patch0=0:birch_planks,transparency=OPAQUE +block:id=black_concrete,patch0=0:black_concrete,transparency=OPAQUE +block:id=black_concrete_powder,patch0=0:black_concrete_powder,transparency=OPAQUE +block:id=black_stained_glass,patch0=0:black_stained_glass,transparency=SEMITRANSPARENT +block:id=black_terracotta,patch0=0:black_terracotta,transparency=OPAQUE +block:id=black_wool,patch0=0:black_wool,transparency=OPAQUE +block:id=blackstone,patch0=0:minecraft:block/blackstone,transparency=OPAQUE +block:id=blue_concrete,patch0=0:blue_concrete,transparency=OPAQUE +block:id=blue_concrete_powder,patch0=0:blue_concrete_powder,transparency=OPAQUE +block:id=blue_ice,patch0=0:blue_ice,transparency=OPAQUE +block:id=blue_stained_glass,patch0=0:blue_stained_glass,transparency=SEMITRANSPARENT +block:id=blue_terracotta,patch0=0:blue_terracotta,transparency=OPAQUE +block:id=blue_wool,patch0=0:blue_wool,transparency=OPAQUE +block:id=bookshelf,patch0=0:minecraft:block/bookshelf,transparency=SEMITRANSPARENT +block:id=brain_coral_block,patch0=0:brain_coral_block,transparency=OPAQUE +block:id=bricks,patch0=0:bricks,transparency=OPAQUE +block:id=brown_concrete,patch0=0:brown_concrete,transparency=OPAQUE +block:id=brown_concrete_powder,patch0=0:brown_concrete_powder,transparency=OPAQUE +block:id=brown_stained_glass,patch0=0:brown_stained_glass,transparency=SEMITRANSPARENT +block:id=brown_terracotta,patch0=0:brown_terracotta,transparency=OPAQUE +block:id=brown_wool,patch0=0:brown_wool,transparency=OPAQUE +block:id=bubble_coral_block,patch0=0:bubble_coral_block,transparency=OPAQUE +block:id=budding_amethyst,patch0=0:budding_amethyst,transparency=OPAQUE +block:id=calcite,patch0=0:calcite,transparency=OPAQUE +block:id=cartography_table,patch0=0:cartography_table_side3,transparency=OPAQUE +block:id=cherry_leaves,patch0=0:cherry_leaves,transparency=SEMITRANSPARENT +block:id=cherry_planks,patch0=0:cherry_planks,transparency=OPAQUE +block:id=chiseled_copper,patch0=0:chiseled_copper,transparency=OPAQUE +block:id=chiseled_deepslate,patch0=0:chiseled_deepslate,transparency=OPAQUE +block:id=chiseled_nether_bricks,patch0=0:chiseled_nether_bricks,transparency=OPAQUE +block:id=chiseled_polished_blackstone,patch0=0:chiseled_polished_blackstone,transparency=OPAQUE +block:id=chiseled_quartz_block,patch0=0:minecraft:block/chiseled_quartz_block,transparency=OPAQUE +block:id=chiseled_red_sandstone,patch0=0:minecraft:block/chiseled_red_sandstone,transparency=OPAQUE +block:id=chiseled_resin_bricks,patch0=0:chiseled_resin_bricks,transparency=OPAQUE +block:id=chiseled_sandstone,patch0=0:minecraft:block/chiseled_sandstone,transparency=OPAQUE +block:id=chiseled_stone_bricks,patch0=0:chiseled_stone_bricks,transparency=OPAQUE +block:id=chiseled_tuff,patch0=0:minecraft:block/chiseled_tuff,transparency=OPAQUE +block:id=chiseled_tuff_bricks,patch0=0:minecraft:block/chiseled_tuff_bricks,transparency=OPAQUE +block:id=clay,patch0=0:clay,transparency=OPAQUE +block:id=coal_block,patch0=0:coal_block,transparency=OPAQUE +block:id=coal_ore,patch0=0:coal_ore,transparency=OPAQUE +block:id=coarse_dirt,patch0=0:coarse_dirt,transparency=OPAQUE +block:id=cobbled_deepslate,patch0=0:cobbled_deepslate,transparency=OPAQUE +block:id=cobblestone,patch0=0:cobblestone,transparency=OPAQUE +block:id=copper_block,patch0=0:copper_block,transparency=OPAQUE +block:id=copper_grate,patch0=0:copper_grate,transparency=OPAQUE +block:id=copper_ore,patch0=0:copper_ore,transparency=OPAQUE +block:id=cracked_deepslate_bricks,patch0=0:cracked_deepslate_bricks,transparency=OPAQUE +block:id=cracked_deepslate_tiles,patch0=0:cracked_deepslate_tiles,transparency=OPAQUE +block:id=cracked_nether_bricks,patch0=0:cracked_nether_bricks,transparency=OPAQUE +block:id=cracked_polished_blackstone_bricks,patch0=0:cracked_polished_blackstone_bricks,transparency=OPAQUE +block:id=cracked_stone_bricks,patch0=0:cracked_stone_bricks,transparency=OPAQUE +block:id=crafting_table,patch0=0:crafting_table_front,transparency=OPAQUE +block:id=crimson_nylium,patch0=0:minecraft:block/crimson_nylium_side,transparency=OPAQUE +block:id=crimson_planks,patch0=0:crimson_planks,transparency=OPAQUE +block:id=crying_obsidian,patch0=0:crying_obsidian,transparency=OPAQUE +block:id=cut_copper,patch0=0:cut_copper,transparency=OPAQUE +block:id=cut_red_sandstone,patch0=0:minecraft:block/cut_red_sandstone,transparency=OPAQUE +block:id=cut_sandstone,patch0=0:minecraft:block/cut_sandstone,transparency=OPAQUE +block:id=cyan_concrete,patch0=0:cyan_concrete,transparency=OPAQUE +block:id=cyan_concrete_powder,patch0=0:cyan_concrete_powder,transparency=OPAQUE +block:id=cyan_stained_glass,patch0=0:cyan_stained_glass,transparency=SEMITRANSPARENT +block:id=cyan_terracotta,patch0=0:cyan_terracotta,transparency=OPAQUE +block:id=cyan_wool,patch0=0:cyan_wool,transparency=OPAQUE +block:id=dark_oak_leaves,patch0=0:dark_oak_leaves,transparency=SEMITRANSPARENT +block:id=dark_oak_planks,patch0=0:dark_oak_planks,transparency=OPAQUE +block:id=dark_prismarine,patch0=0:dark_prismarine,transparency=OPAQUE +block:id=dead_brain_coral_block,patch0=0:dead_brain_coral_block,transparency=OPAQUE +block:id=dead_bubble_coral_block,patch0=0:dead_bubble_coral_block,transparency=OPAQUE +block:id=dead_fire_coral_block,patch0=0:dead_fire_coral_block,transparency=TRANSPARENT +block:id=dead_horn_coral_block,patch0=0:dead_horn_coral_block,transparency=OPAQUE +block:id=dead_tube_coral_block,patch0=0:dead_tube_coral_block,transparency=OPAQUE +block:id=deepslate_bricks,patch0=0:deepslate_bricks,transparency=OPAQUE +block:id=deepslate_coal_ore,patch0=0:deepslate_coal_ore,transparency=OPAQUE +block:id=deepslate_copper_ore,patch0=0:deepslate_copper_ore,transparency=OPAQUE +block:id=deepslate_diamond_ore,patch0=0:deepslate_diamond_ore,transparency=OPAQUE +block:id=deepslate_emerald_ore,patch0=0:deepslate_emerald_ore,transparency=OPAQUE +block:id=deepslate_gold_ore,patch0=0:deepslate_gold_ore,transparency=OPAQUE +block:id=deepslate_iron_ore,patch0=0:deepslate_iron_ore,transparency=OPAQUE +block:id=deepslate_lapis_ore,patch0=0:deepslate_lapis_ore,transparency=OPAQUE +block:id=deepslate_redstone_ore,patch0=0:deepslate_redstone_ore,transparency=OPAQUE +block:id=deepslate_tiles,patch0=0:deepslate_tiles,transparency=OPAQUE +block:id=diamond_block,patch0=0:diamond_block,transparency=OPAQUE +block:id=diamond_ore,patch0=0:diamond_ore,transparency=OPAQUE +block:id=diorite,patch0=0:diorite,transparency=OPAQUE +block:id=dirt,patch0=0:dirt,transparency=OPAQUE +block:id=dried_kelp_block,patch0=0:block/dried_kelp_side,transparency=OPAQUE +block:id=dripstone_block,patch0=0:dripstone_block,transparency=OPAQUE +block:id=emerald_block,patch0=0:emerald_block,transparency=OPAQUE +block:id=emerald_ore,patch0=0:emerald_ore,transparency=OPAQUE +block:id=end_stone,patch0=0:end_stone,transparency=OPAQUE +block:id=end_stone_bricks,patch0=0:end_stone_bricks,transparency=OPAQUE +block:id=exposed_chiseled_copper,patch0=0:exposed_chiseled_copper,transparency=OPAQUE +block:id=exposed_copper,patch0=0:exposed_copper,transparency=OPAQUE +block:id=exposed_copper_grate,patch0=0:exposed_copper_grate,transparency=OPAQUE +block:id=exposed_cut_copper,patch0=0:exposed_cut_copper,transparency=OPAQUE +block:id=fire_coral_block,patch0=0:fire_coral_block,transparency=TRANSPARENT +block:id=fletching_table,patch0=0:fletching_table_front,transparency=OPAQUE +block:id=flowering_azalea_leaves,patch0=0:flowering_azalea_leaves,transparency=SEMITRANSPARENT +block:id=gilded_blackstone,patch0=0:gilded_blackstone,transparency=OPAQUE +block:id=glass,patch0=0:glass,transparency=SEMITRANSPARENT +block:id=glowstone,patch0=0:glowstone,transparency=OPAQUE +block:id=gold_block,patch0=0:gold_block,transparency=OPAQUE +block:id=gold_ore,patch0=0:gold_ore,transparency=OPAQUE +block:id=granite,patch0=0:granite,transparency=OPAQUE +block:id=gravel,patch0=0:gravel,transparency=OPAQUE +block:id=gray_concrete,patch0=0:gray_concrete,transparency=OPAQUE +block:id=gray_concrete_powder,patch0=0:gray_concrete_powder,transparency=OPAQUE +block:id=gray_stained_glass,patch0=0:gray_stained_glass,transparency=SEMITRANSPARENT +block:id=gray_terracotta,patch0=0:gray_terracotta,transparency=OPAQUE +block:id=gray_wool,patch0=0:gray_wool,transparency=OPAQUE +block:id=green_concrete,patch0=0:green_concrete,transparency=OPAQUE +block:id=green_concrete_powder,patch0=0:green_concrete_powder,transparency=OPAQUE +block:id=green_stained_glass,patch0=0:green_stained_glass,transparency=SEMITRANSPARENT +block:id=green_terracotta,patch0=0:green_terracotta,transparency=OPAQUE +block:id=green_wool,patch0=0:green_wool,transparency=OPAQUE +block:id=honeycomb_block,patch0=0:honeycomb_block,transparency=OPAQUE +block:id=horn_coral_block,patch0=0:horn_coral_block,transparency=OPAQUE +block:id=ice,patch0=0:ice,transparency=OPAQUE +block:id=infested_chiseled_stone_bricks,patch0=0:chiseled_stone_bricks,transparency=OPAQUE +block:id=infested_cobblestone,patch0=0:cobblestone,transparency=OPAQUE +block:id=infested_cracked_stone_bricks,patch0=0:cracked_stone_bricks,transparency=OPAQUE +block:id=infested_mossy_stone_bricks,patch0=0:mossy_stone_bricks,transparency=OPAQUE +block:id=infested_stone,patch0=0:stone,transparency=OPAQUE +block:id=infested_stone_bricks,patch0=0:stone_bricks,transparency=OPAQUE +block:id=iron_block,patch0=0:iron_block,transparency=OPAQUE +block:id=iron_ore,patch0=0:iron_ore,transparency=OPAQUE +block:id=jukebox,patch0=0:minecraft:block/jukebox_side,transparency=OPAQUE +block:id=jungle_leaves,patch0=0:jungle_leaves,transparency=SEMITRANSPARENT +block:id=jungle_planks,patch0=0:jungle_planks,transparency=OPAQUE +block:id=lapis_block,patch0=0:lapis_block,transparency=OPAQUE +block:id=lapis_ore,patch0=0:lapis_ore,transparency=OPAQUE +block:id=light_blue_concrete,patch0=0:light_blue_concrete,transparency=OPAQUE +block:id=light_blue_concrete_powder,patch0=0:light_blue_concrete_powder,transparency=OPAQUE +block:id=light_blue_stained_glass,patch0=0:light_blue_stained_glass,transparency=SEMITRANSPARENT +block:id=light_blue_terracotta,patch0=0:light_blue_terracotta,transparency=OPAQUE +block:id=light_blue_wool,patch0=0:light_blue_wool,transparency=OPAQUE +block:id=light_gray_concrete,patch0=0:light_gray_concrete,transparency=OPAQUE +block:id=light_gray_concrete_powder,patch0=0:light_gray_concrete_powder,transparency=OPAQUE +block:id=light_gray_stained_glass,patch0=0:light_gray_stained_glass,transparency=SEMITRANSPARENT +block:id=light_gray_terracotta,patch0=0:light_gray_terracotta,transparency=OPAQUE +block:id=light_gray_wool,patch0=0:light_gray_wool,transparency=OPAQUE +block:id=lime_concrete,patch0=0:lime_concrete,transparency=OPAQUE +block:id=lime_concrete_powder,patch0=0:lime_concrete_powder,transparency=OPAQUE +block:id=lime_stained_glass,patch0=0:lime_stained_glass,transparency=SEMITRANSPARENT +block:id=lime_terracotta,patch0=0:lime_terracotta,transparency=OPAQUE +block:id=lime_wool,patch0=0:lime_wool,transparency=OPAQUE +block:id=lodestone,patch0=0:minecraft:block/lodestone_side,transparency=OPAQUE +block:id=magenta_concrete,patch0=0:magenta_concrete,transparency=OPAQUE +block:id=magenta_concrete_powder,patch0=0:magenta_concrete_powder,transparency=OPAQUE +block:id=magenta_stained_glass,patch0=0:magenta_stained_glass,transparency=SEMITRANSPARENT +block:id=magenta_terracotta,patch0=0:magenta_terracotta,transparency=OPAQUE +block:id=magenta_wool,patch0=0:magenta_wool,transparency=OPAQUE +block:id=magma_block,patch0=0:magma,transparency=OPAQUE +block:id=mangrove_leaves,patch0=0:mangrove_leaves,transparency=SEMITRANSPARENT +block:id=mangrove_planks,patch0=0:mangrove_planks,transparency=OPAQUE +block:id=melon,patch0=0:minecraft:block/melon_side,transparency=OPAQUE +block:id=moss_block,patch0=0:moss_block,transparency=OPAQUE +block:id=mossy_cobblestone,patch0=0:mossy_cobblestone,transparency=OPAQUE +block:id=mossy_stone_bricks,patch0=0:mossy_stone_bricks,transparency=OPAQUE +block:id=mud,patch0=0:mud,transparency=OPAQUE +block:id=mud_bricks,patch0=0:mud_bricks,transparency=OPAQUE +block:id=nether_bricks,patch0=0:nether_bricks,transparency=OPAQUE +block:id=nether_gold_ore,patch0=0:nether_gold_ore,transparency=OPAQUE +block:id=nether_quartz_ore,patch0=0:nether_quartz_ore,transparency=OPAQUE +block:id=nether_wart_block,patch0=0:nether_wart_block,transparency=OPAQUE +block:id=netherite_block,patch0=0:netherite_block,transparency=OPAQUE +block:id=netherrack,patch0=0:netherrack,transparency=OPAQUE +block:id=note_block,patch0=0:note_block,transparency=OPAQUE +block:id=oak_leaves,patch0=0:oak_leaves,transparency=SEMITRANSPARENT +block:id=oak_planks,patch0=0:oak_planks,transparency=OPAQUE +block:id=obsidian,patch0=0:obsidian,transparency=OPAQUE +block:id=orange_concrete,patch0=0:orange_concrete,transparency=OPAQUE +block:id=orange_concrete_powder,patch0=0:orange_concrete_powder,transparency=OPAQUE +block:id=orange_stained_glass,patch0=0:orange_stained_glass,transparency=SEMITRANSPARENT +block:id=orange_terracotta,patch0=0:orange_terracotta,transparency=OPAQUE +block:id=orange_wool,patch0=0:orange_wool,transparency=OPAQUE +block:id=oxidized_chiseled_copper,patch0=0:oxidized_chiseled_copper,transparency=OPAQUE +block:id=oxidized_copper,patch0=0:oxidized_copper,transparency=OPAQUE +block:id=oxidized_copper_grate,patch0=0:oxidized_copper_grate,transparency=OPAQUE +block:id=oxidized_cut_copper,patch0=0:oxidized_cut_copper,transparency=OPAQUE +block:id=packed_ice,patch0=0:packed_ice,transparency=OPAQUE +block:id=packed_mud,patch0=0:packed_mud,transparency=OPAQUE +block:id=pale_moss_block,patch0=0:pale_moss_block,transparency=OPAQUE +block:id=pale_oak_leaves,patch0=0:pale_oak_leaves,transparency=SEMITRANSPARENT +block:id=pale_oak_planks,patch0=0:pale_oak_planks,transparency=OPAQUE +block:id=pink_concrete,patch0=0:pink_concrete,transparency=OPAQUE +block:id=pink_concrete_powder,patch0=0:pink_concrete_powder,transparency=OPAQUE +block:id=pink_stained_glass,patch0=0:pink_stained_glass,transparency=SEMITRANSPARENT +block:id=pink_terracotta,patch0=0:pink_terracotta,transparency=OPAQUE +block:id=pink_wool,patch0=0:pink_wool,transparency=OPAQUE +block:id=polished_andesite,patch0=0:polished_andesite,transparency=OPAQUE +block:id=polished_blackstone,patch0=0:polished_blackstone,transparency=OPAQUE +block:id=polished_blackstone_bricks,patch0=0:polished_blackstone_bricks,transparency=OPAQUE +block:id=polished_deepslate,patch0=0:polished_deepslate,transparency=OPAQUE +block:id=polished_diorite,patch0=0:polished_diorite,transparency=OPAQUE +block:id=polished_granite,patch0=0:polished_granite,transparency=OPAQUE +block:id=polished_tuff,patch0=0:polished_tuff,transparency=OPAQUE +block:id=prismarine,patch0=0:prismarine,transparency=OPAQUE +block:id=prismarine_bricks,patch0=0:prismarine_bricks,transparency=OPAQUE +block:id=pumpkin,patch0=0:block/pumpkin_side,transparency=OPAQUE +block:id=purple_concrete,patch0=0:purple_concrete,transparency=OPAQUE +block:id=purple_concrete_powder,patch0=0:purple_concrete_powder,transparency=OPAQUE +block:id=purple_stained_glass,patch0=0:purple_stained_glass,transparency=SEMITRANSPARENT +block:id=purple_terracotta,patch0=0:purple_terracotta,transparency=OPAQUE +block:id=purple_wool,patch0=0:purple_wool,transparency=OPAQUE +block:id=purpur_block,patch0=0:purpur_block,transparency=OPAQUE +block:id=quartz_block,patch0=0:minecraft:block/quartz_block_side,transparency=OPAQUE +block:id=quartz_bricks,patch0=0:quartz_bricks,transparency=OPAQUE +block:id=raw_copper_block,patch0=0:raw_copper_block,transparency=OPAQUE +block:id=raw_gold_block,patch0=0:raw_gold_block,transparency=OPAQUE +block:id=raw_iron_block,patch0=0:raw_iron_block,transparency=OPAQUE +block:id=red_concrete,patch0=0:red_concrete,transparency=OPAQUE +block:id=red_concrete_powder,patch0=0:red_concrete_powder,transparency=OPAQUE +block:id=red_nether_bricks,patch0=0:red_nether_bricks,transparency=OPAQUE +block:id=red_sand,patch0=0:red_sand,transparency=OPAQUE +block:id=red_sandstone,patch0=0:minecraft:block/red_sandstone,transparency=OPAQUE +block:id=red_stained_glass,patch0=0:red_stained_glass,transparency=SEMITRANSPARENT +block:id=red_terracotta,patch0=0:red_terracotta,transparency=OPAQUE +block:id=red_wool,patch0=0:red_wool,transparency=OPAQUE +block:id=redstone_block,patch0=0:redstone_block,transparency=OPAQUE +block:id=redstone_ore,patch0=0:redstone_ore,transparency=OPAQUE +block:id=reinforced_deepslate,patch0=0:minecraft:block/reinforced_deepslate_side,transparency=OPAQUE +block:id=resin_block,patch0=0:resin_block,transparency=OPAQUE +block:id=resin_bricks,patch0=0:resin_bricks,transparency=OPAQUE +block:id=rooted_dirt,patch0=0:rooted_dirt,transparency=OPAQUE +block:id=sand,patch0=0:sand,transparency=OPAQUE +block:id=sandstone,patch0=0:minecraft:block/sandstone,transparency=OPAQUE +block:id=sculk,patch0=0:sculk,transparency=OPAQUE +block:id=sea_lantern,patch0=0:sea_lantern,transparency=SEMITRANSPARENT +block:id=shroomlight,patch0=0:shroomlight,transparency=OPAQUE +block:id=smithing_table,patch0=0:smithing_table_front,transparency=OPAQUE +block:id=smooth_basalt,patch0=0:smooth_basalt,transparency=OPAQUE +block:id=smooth_quartz,patch0=0:quartz_block_bottom,transparency=OPAQUE +block:id=smooth_red_sandstone,patch0=0:red_sandstone_top,transparency=OPAQUE +block:id=smooth_sandstone,patch0=0:sandstone_top,transparency=OPAQUE +block:id=smooth_stone,patch0=0:smooth_stone,transparency=OPAQUE +block:id=snow_block,patch0=0:snow,transparency=OPAQUE +block:id=soul_sand,patch0=0:soul_sand,transparency=OPAQUE +block:id=soul_soil,patch0=0:soul_soil,transparency=OPAQUE +block:id=sponge,patch0=0:sponge,transparency=OPAQUE +block:id=spruce_leaves,patch0=0:spruce_leaves,transparency=SEMITRANSPARENT +block:id=spruce_planks,patch0=0:spruce_planks,transparency=OPAQUE +block:id=stone,patch0=0:stone,transparency=OPAQUE +block:id=stone_bricks,patch0=0:stone_bricks,transparency=OPAQUE +block:id=target,patch0=0:minecraft:block/target_side,transparency=OPAQUE +block:id=terracotta,patch0=0:terracotta,transparency=OPAQUE +block:id=test_instance_block,patch0=0:test_instance_block,transparency=OPAQUE +block:id=tinted_glass,patch0=0:tinted_glass,transparency=SEMITRANSPARENT +block:id=tnt,patch0=0:minecraft:block/tnt_side,transparency=OPAQUE +block:id=tube_coral_block,patch0=0:tube_coral_block,transparency=OPAQUE +block:id=tuff,patch0=0:tuff,transparency=OPAQUE +block:id=tuff_bricks,patch0=0:tuff_bricks,transparency=OPAQUE +block:id=warped_nylium,patch0=0:minecraft:block/warped_nylium_side,transparency=OPAQUE +block:id=warped_planks,patch0=0:warped_planks,transparency=OPAQUE +block:id=warped_wart_block,patch0=0:warped_wart_block,transparency=OPAQUE +block:id=waxed_chiseled_copper,patch0=0:chiseled_copper,transparency=OPAQUE +block:id=waxed_copper_block,patch0=0:copper_block,transparency=OPAQUE +block:id=waxed_copper_grate,patch0=0:copper_grate,transparency=OPAQUE +block:id=waxed_cut_copper,patch0=0:cut_copper,transparency=OPAQUE +block:id=waxed_exposed_chiseled_copper,patch0=0:exposed_chiseled_copper,transparency=OPAQUE +block:id=waxed_exposed_copper,patch0=0:exposed_copper,transparency=OPAQUE +block:id=waxed_exposed_copper_grate,patch0=0:exposed_copper_grate,transparency=OPAQUE +block:id=waxed_exposed_cut_copper,patch0=0:exposed_cut_copper,transparency=OPAQUE +block:id=waxed_oxidized_chiseled_copper,patch0=0:oxidized_chiseled_copper,transparency=OPAQUE +block:id=waxed_oxidized_copper,patch0=0:oxidized_copper,transparency=OPAQUE +block:id=waxed_oxidized_copper_grate,patch0=0:oxidized_copper_grate,transparency=OPAQUE +block:id=waxed_oxidized_cut_copper,patch0=0:oxidized_cut_copper,transparency=OPAQUE +block:id=waxed_weathered_chiseled_copper,patch0=0:weathered_chiseled_copper,transparency=OPAQUE +block:id=waxed_weathered_copper,patch0=0:weathered_copper,transparency=OPAQUE +block:id=waxed_weathered_copper_grate,patch0=0:weathered_copper_grate,transparency=OPAQUE +block:id=waxed_weathered_cut_copper,patch0=0:weathered_cut_copper,transparency=OPAQUE +block:id=weathered_chiseled_copper,patch0=0:weathered_chiseled_copper,transparency=OPAQUE +block:id=weathered_copper,patch0=0:weathered_copper,transparency=OPAQUE +block:id=weathered_copper_grate,patch0=0:weathered_copper_grate,transparency=OPAQUE +block:id=weathered_cut_copper,patch0=0:weathered_cut_copper,transparency=OPAQUE +block:id=wet_sponge,patch0=0:wet_sponge,transparency=OPAQUE +block:id=white_concrete,patch0=0:white_concrete,transparency=OPAQUE +block:id=white_concrete_powder,patch0=0:white_concrete_powder,transparency=OPAQUE +block:id=white_stained_glass,patch0=0:white_stained_glass,transparency=SEMITRANSPARENT +block:id=white_terracotta,patch0=0:white_terracotta,transparency=OPAQUE +block:id=white_wool,patch0=0:white_wool,transparency=OPAQUE +block:id=yellow_concrete,patch0=0:yellow_concrete,transparency=OPAQUE +block:id=yellow_concrete_powder,patch0=0:yellow_concrete_powder,transparency=OPAQUE +block:id=yellow_stained_glass,patch0=0:yellow_stained_glass,transparency=SEMITRANSPARENT +block:id=yellow_terracotta,patch0=0:yellow_terracotta,transparency=OPAQUE +block:id=yellow_wool,patch0=0:yellow_wool,transparency=OPAQUE +[1.21.4-]modellist:id=%acacia_button,state=face=ceiling/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%acacia_button,state=face=ceiling/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%acacia_button,state=face=ceiling/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%acacia_button,state=face=ceiling/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%acacia_button,state=face=ceiling/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%acacia_button,state=face=ceiling/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%acacia_button,state=face=ceiling/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%acacia_button,state=face=ceiling/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%acacia_button,state=face=floor/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_button,state=face=floor/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_button,state=face=floor/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%acacia_button,state=face=floor/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%acacia_button,state=face=floor/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_button,state=face=floor/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_button,state=face=floor/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_button,state=face=floor/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_button,state=face=wall/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%acacia_button,state=face=wall/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%acacia_button,state=face=wall/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%acacia_button,state=face=wall/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%acacia_button,state=face=wall/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%acacia_button,state=face=wall/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%acacia_button,state=face=wall/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%acacia_button,state=face=wall/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%acacia_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%acacia_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%acacia_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%acacia_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%acacia_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%acacia_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%acacia_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%acacia_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_fence,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000 +[1.21.4-]modellist:id=%acacia_fence,state=east:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_fence,state=north:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%acacia_fence,state=south:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_fence,state=west:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_fence_gate,state=facing=east/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_fence_gate,state=facing=east/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_fence_gate,state=facing=east/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_fence_gate,state=facing=east/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_fence_gate,state=facing=north/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_fence_gate,state=facing=north/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_fence_gate,state=facing=north/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_fence_gate,state=facing=north/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_fence_gate,state=facing=south/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%acacia_fence_gate,state=facing=south/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%acacia_fence_gate,state=facing=south/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%acacia_fence_gate,state=facing=south/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%acacia_fence_gate,state=facing=west/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_fence_gate,state=facing=west/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_fence_gate,state=facing=west/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_fence_gate,state=facing=west/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_pressure_plate,state=powered=false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%acacia_pressure_plate,state=powered=true,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%acacia_sapling,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:east,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/90/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/90/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:east/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:east/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:east/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:east/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:east/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:north,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:north/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:north/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:north/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:north/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:north/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:south,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/180/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/180/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:south/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:south/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:south/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:south/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:south/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:west,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/270/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/270/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:west/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:west/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:west/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:west/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_shelf,state=facing:west/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%acacia_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%acacia_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%acacia_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%acacia_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/270/0 +[1.21.4-]modellist:id=%acacia_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%acacia_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%acacia_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%acacia_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/180/0 +[1.21.4-]modellist:id=%acacia_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%acacia_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/0/0 +[1.21.4-]modellist:id=%acacia_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%acacia_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/90/0 +[1.21.4-]modellist:id=%activator_rail,state=powered=false/shape=ascending_east,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%activator_rail,state=powered=false/shape=ascending_north,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/45/x/8/9/8 +[1.21.4-]modellist:id=%activator_rail,state=powered=false/shape=ascending_south,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-45/x/8/9/8 +[1.21.4-]modellist:id=%activator_rail,state=powered=false/shape=ascending_west,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%activator_rail,state=powered=false/shape=east_west,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%activator_rail,state=powered=false/shape=north_south,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%activator_rail,state=powered=true/shape=ascending_east,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%activator_rail,state=powered=true/shape=ascending_north,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/45/x/8/9/8 +[1.21.4-]modellist:id=%activator_rail,state=powered=true/shape=ascending_south,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-45/x/8/9/8 +[1.21.4-]modellist:id=%activator_rail,state=powered=true/shape=ascending_west,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%activator_rail,state=powered=true/shape=east_west,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%activator_rail,state=powered=true/shape=north_south,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%allium,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%amethyst_cluster,state=facing=down,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%amethyst_cluster,state=facing=east,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/90/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%amethyst_cluster,state=facing=north,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%amethyst_cluster,state=facing=south,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/180/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%amethyst_cluster,state=facing=up,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%amethyst_cluster,state=facing=west,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/270/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%andesite_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%andesite_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%andesite_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%andesite_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%andesite_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%andesite_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%andesite_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%andesite_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%andesite_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%andesite_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%andesite_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%andesite_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%anvil,state=facing=east,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:n/0/2.000000/12.000000/14.000000/16.000000:d/0/2.000000/2.000000/14.000000/14.000000:w/0/0.000000/2.000000/4.000000/14.000000:e/0/4.000000/2.000000/0.000000/14.000000:s/0/2.000000/12.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000:R/0/270/0,box=4.000000/4.000000/3.000000:12.000000/5.000000/13.000000:n/0/4.000000/11.000000/12.000000/12.000000:w/0/4.000000/3.000000/5.000000/13.000000:e/0/5.000000/3.000000/4.000000/13.000000:s/0/4.000000/11.000000/12.000000/12.000000:u/0/4.000000/3.000000/12.000000/13.000000:R/0/270/0,box=6.000000/5.000000/4.000000:10.000000/10.000000/12.000000:n/0/6.000000/6.000000/10.000000/11.000000:w/0/5.000000/4.000000/10.000000/12.000000:e/0/10.000000/4.000000/5.000000/12.000000:s/0/6.000000/6.000000/10.000000/11.000000:R/0/270/0,box=3.000000/10.000000/0.000000:13.000000/16.000000/16.000000:n/0/3.000000/0.000000/13.000000/6.000000:d/0/3.000000/0.000000/13.000000/16.000000:w/0/10.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/10.000000/16.000000:s/0/3.000000/0.000000/13.000000/6.000000:u/0/3.000000/0.000000/13.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%anvil,state=facing=north,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:n/0/2.000000/12.000000/14.000000/16.000000:d/0/2.000000/2.000000/14.000000/14.000000:w/0/0.000000/2.000000/4.000000/14.000000:e/0/4.000000/2.000000/0.000000/14.000000:s/0/2.000000/12.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000:R/0/180/0,box=4.000000/4.000000/3.000000:12.000000/5.000000/13.000000:n/0/4.000000/11.000000/12.000000/12.000000:w/0/4.000000/3.000000/5.000000/13.000000:e/0/5.000000/3.000000/4.000000/13.000000:s/0/4.000000/11.000000/12.000000/12.000000:u/0/4.000000/3.000000/12.000000/13.000000:R/0/180/0,box=6.000000/5.000000/4.000000:10.000000/10.000000/12.000000:n/0/6.000000/6.000000/10.000000/11.000000:w/0/5.000000/4.000000/10.000000/12.000000:e/0/10.000000/4.000000/5.000000/12.000000:s/0/6.000000/6.000000/10.000000/11.000000:R/0/180/0,box=3.000000/10.000000/0.000000:13.000000/16.000000/16.000000:n/0/3.000000/0.000000/13.000000/6.000000:d/0/3.000000/0.000000/13.000000/16.000000:w/0/10.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/10.000000/16.000000:s/0/3.000000/0.000000/13.000000/6.000000:u/0/3.000000/0.000000/13.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%anvil,state=facing=south,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:n/0/2.000000/12.000000/14.000000/16.000000:d/0/2.000000/2.000000/14.000000/14.000000:w/0/0.000000/2.000000/4.000000/14.000000:e/0/4.000000/2.000000/0.000000/14.000000:s/0/2.000000/12.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000,box=4.000000/4.000000/3.000000:12.000000/5.000000/13.000000:n/0/4.000000/11.000000/12.000000/12.000000:w/0/4.000000/3.000000/5.000000/13.000000:e/0/5.000000/3.000000/4.000000/13.000000:s/0/4.000000/11.000000/12.000000/12.000000:u/0/4.000000/3.000000/12.000000/13.000000,box=6.000000/5.000000/4.000000:10.000000/10.000000/12.000000:n/0/6.000000/6.000000/10.000000/11.000000:w/0/5.000000/4.000000/10.000000/12.000000:e/0/10.000000/4.000000/5.000000/12.000000:s/0/6.000000/6.000000/10.000000/11.000000,box=3.000000/10.000000/0.000000:13.000000/16.000000/16.000000:n/0/3.000000/0.000000/13.000000/6.000000:d/0/3.000000/0.000000/13.000000/16.000000:w/0/10.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/10.000000/16.000000:s/0/3.000000/0.000000/13.000000/6.000000:u/0/3.000000/0.000000/13.000000/16.000000 +[1.21.4-]modellist:id=%anvil,state=facing=west,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:n/0/2.000000/12.000000/14.000000/16.000000:d/0/2.000000/2.000000/14.000000/14.000000:w/0/0.000000/2.000000/4.000000/14.000000:e/0/4.000000/2.000000/0.000000/14.000000:s/0/2.000000/12.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000:R/0/90/0,box=4.000000/4.000000/3.000000:12.000000/5.000000/13.000000:n/0/4.000000/11.000000/12.000000/12.000000:w/0/4.000000/3.000000/5.000000/13.000000:e/0/5.000000/3.000000/4.000000/13.000000:s/0/4.000000/11.000000/12.000000/12.000000:u/0/4.000000/3.000000/12.000000/13.000000:R/0/90/0,box=6.000000/5.000000/4.000000:10.000000/10.000000/12.000000:n/0/6.000000/6.000000/10.000000/11.000000:w/0/5.000000/4.000000/10.000000/12.000000:e/0/10.000000/4.000000/5.000000/12.000000:s/0/6.000000/6.000000/10.000000/11.000000:R/0/90/0,box=3.000000/10.000000/0.000000:13.000000/16.000000/16.000000:n/0/3.000000/0.000000/13.000000/6.000000:d/0/3.000000/0.000000/13.000000/16.000000:w/0/10.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/10.000000/16.000000:s/0/3.000000/0.000000/13.000000/6.000000:u/0/3.000000/0.000000/13.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%attached_melon_stem,state=facing=east,box=0.000000/-1.000000/8.000000:16.000000/7.000000/8.000000:n/0/0.000000/0.000000/16.000000/8.000000:s/0/16.000000/0.000000/0.000000/8.000000:R/0/180/0,box=8.000000/-1.000000/0.000000:8.000000/7.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/16.000000/0.000000/0.000000/8.000000:R/0/180/0,box=0.000000/0.000000/8.000000:9.000000/16.000000/8.000000:n/0/9.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/9.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%attached_melon_stem,state=facing=north,box=0.000000/-1.000000/8.000000:16.000000/7.000000/8.000000:n/0/0.000000/0.000000/16.000000/8.000000:s/0/16.000000/0.000000/0.000000/8.000000:R/0/90/0,box=8.000000/-1.000000/0.000000:8.000000/7.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/16.000000/0.000000/0.000000/8.000000:R/0/90/0,box=0.000000/0.000000/8.000000:9.000000/16.000000/8.000000:n/0/9.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%attached_melon_stem,state=facing=south,box=0.000000/-1.000000/8.000000:16.000000/7.000000/8.000000:n/0/0.000000/0.000000/16.000000/8.000000:s/0/16.000000/0.000000/0.000000/8.000000:R/0/270/0,box=8.000000/-1.000000/0.000000:8.000000/7.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/16.000000/0.000000/0.000000/8.000000:R/0/270/0,box=0.000000/0.000000/8.000000:9.000000/16.000000/8.000000:n/0/9.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/9.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%attached_melon_stem,state=facing=west,box=0.000000/-1.000000/8.000000:16.000000/7.000000/8.000000:n/0/0.000000/0.000000/16.000000/8.000000:s/0/16.000000/0.000000/0.000000/8.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/7.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/16.000000/0.000000/0.000000/8.000000/45/y/8/8/8,box=0.000000/0.000000/8.000000:9.000000/16.000000/8.000000:n/0/9.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%attached_pumpkin_stem,state=facing=east,box=0.000000/-1.000000/8.000000:16.000000/7.000000/8.000000:n/0/0.000000/0.000000/16.000000/8.000000:s/0/16.000000/0.000000/0.000000/8.000000:R/0/180/0,box=8.000000/-1.000000/0.000000:8.000000/7.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/16.000000/0.000000/0.000000/8.000000:R/0/180/0,box=0.000000/0.000000/8.000000:9.000000/16.000000/8.000000:n/0/9.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/9.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%attached_pumpkin_stem,state=facing=north,box=0.000000/-1.000000/8.000000:16.000000/7.000000/8.000000:n/0/0.000000/0.000000/16.000000/8.000000:s/0/16.000000/0.000000/0.000000/8.000000:R/0/90/0,box=8.000000/-1.000000/0.000000:8.000000/7.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/16.000000/0.000000/0.000000/8.000000:R/0/90/0,box=0.000000/0.000000/8.000000:9.000000/16.000000/8.000000:n/0/9.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%attached_pumpkin_stem,state=facing=south,box=0.000000/-1.000000/8.000000:16.000000/7.000000/8.000000:n/0/0.000000/0.000000/16.000000/8.000000:s/0/16.000000/0.000000/0.000000/8.000000:R/0/270/0,box=8.000000/-1.000000/0.000000:8.000000/7.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/16.000000/0.000000/0.000000/8.000000:R/0/270/0,box=0.000000/0.000000/8.000000:9.000000/16.000000/8.000000:n/0/9.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/9.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%attached_pumpkin_stem,state=facing=west,box=0.000000/-1.000000/8.000000:16.000000/7.000000/8.000000:n/0/0.000000/0.000000/16.000000/8.000000:s/0/16.000000/0.000000/0.000000/8.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/7.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/16.000000/0.000000/0.000000/8.000000/45/y/8/8/8,box=0.000000/0.000000/8.000000:9.000000/16.000000/8.000000:n/0/9.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%azalea,box=0.000000/16.000000/0.000000:16.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/5.000000/0.000000:16.000000/16.000000/0.010000:n/0/0.000000/0.000000/16.000000/11.000000:s/0/16.000000/0.000000/0.000000/11.000000,box=0.000000/5.000000/15.990000:16.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/11.000000:s/0/0.000000/0.000000/16.000000/11.000000,box=0.000000/5.000000/0.000000:0.010000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/11.000000:e/0/16.000000/0.000000/0.000000/11.000000,box=15.990000/5.000000/0.000000:16.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/11.000000:e/0/0.000000/0.000000/16.000000/11.000000,box=0.100000/0.000000/8.000000:15.900000/15.900000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.100000:8.000000/15.900000/15.900000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%azure_bluet,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%bamboo,state=age:0,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/16.000000:d/0/13.000000/4.000000/15.000000/6.000000:w/0/0.000000/0.000000/2.000000/16.000000:e/0/0.000000/0.000000/2.000000/16.000000:s/0/0.000000/0.000000/2.000000/16.000000:u/0/13.000000/0.000000/15.000000/2.000000 +[1.21.4-]modellist:id=%bamboo,state=age:1,box=6.500000/0.000000/6.500000:9.500000/16.000000/9.500000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/13.000000/4.000000/16.000000/7.000000:w/0/0.000000/0.000000/3.000000/16.000000:e/0/0.000000/0.000000/3.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/13.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%bamboo,state=leaves:large,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%bamboo,state=leaves:small,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_button,state=face=ceiling/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=ceiling/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=ceiling/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=ceiling/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=ceiling/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=ceiling/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=ceiling/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=ceiling/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=floor/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=floor/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=floor/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%bamboo_button,state=face=floor/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%bamboo_button,state=face=floor/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=floor/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=floor/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=floor/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=wall/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=wall/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=wall/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=wall/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=wall/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=wall/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=wall/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%bamboo_button,state=face=wall/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%bamboo_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%bamboo_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%bamboo_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%bamboo_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_fence,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/16.000000:d/0/4.000000/0.000000/8.000000/4.000000:w/0/0.000000/0.000000/4.000000/16.000000:e/0/0.000000/0.000000/4.000000/16.000000:s/0/0.000000/0.000000/4.000000/16.000000:u/0/4.000000/0.000000/8.000000/4.000000 +[1.21.4-]modellist:id=%bamboo_fence,state=east:true,box=7.000000/12.000000/7.000000:16.000000/15.000000/9.000000:n/0/4.000000/4.000000/13.000000/7.000000:d/0/13.000000/7.000000/15.000000/16.000000:e/0/13.000000/4.000000/15.000000/7.000000:s/0/4.000000/4.000000/13.000000/7.000000:u/0/13.000000/7.000000/15.000000/16.000000,box=7.000000/6.000000/7.000000:16.000000/9.000000/9.000000:n/0/4.000000/4.000000/13.000000/7.000000:d/0/13.000000/7.000000/15.000000/16.000000:e/0/13.000000/4.000000/15.000000/7.000000:s/0/4.000000/4.000000/13.000000/7.000000:u/0/13.000000/7.000000/15.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_fence,state=north:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/13.000000/4.000000/15.000000/7.000000:d/0/13.000000/7.000000/15.000000/16.000000:w/0/4.000000/4.000000/13.000000/7.000000:e/0/4.000000/4.000000/13.000000/7.000000:u/0/13.000000/7.000000/15.000000/16.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/13.000000/4.000000/15.000000/7.000000:d/0/13.000000/7.000000/15.000000/16.000000:w/0/4.000000/4.000000/13.000000/7.000000:e/0/4.000000/4.000000/13.000000/7.000000:u/0/13.000000/7.000000/15.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_fence,state=south:true,box=7.000000/12.000000/7.000000:9.000000/15.000000/16.000000:d/0/13.000000/7.000000/15.000000/16.000000:w/0/4.000000/4.000000/13.000000/7.000000:e/0/4.000000/4.000000/13.000000/7.000000:s/0/13.000000/4.000000/15.000000/7.000000:u/0/13.000000/7.000000/15.000000/16.000000,box=7.000000/6.000000/7.000000:9.000000/9.000000/16.000000:d/0/13.000000/7.000000/15.000000/16.000000:w/0/4.000000/4.000000/13.000000/7.000000:e/0/4.000000/4.000000/13.000000/7.000000:s/0/13.000000/4.000000/15.000000/7.000000:u/0/13.000000/7.000000/15.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_fence,state=west:true,box=0.000000/12.000000/7.000000:9.000000/15.000000/9.000000:n/0/4.000000/4.000000/13.000000/7.000000:d/0/13.000000/7.000000/15.000000/16.000000:w/0/15.000000/4.000000/13.000000/7.000000:s/0/4.000000/4.000000/13.000000/7.000000:u/0/13.000000/7.000000/15.000000/16.000000,box=0.000000/6.000000/7.000000:9.000000/9.000000/9.000000:n/0/4.000000/4.000000/13.000000/7.000000:d/0/13.000000/7.000000/15.000000/16.000000:w/0/15.000000/4.000000/13.000000/7.000000:s/0/4.000000/4.000000/13.000000/7.000000:u/0/13.000000/7.000000/15.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_fence_gate,state=facing=east/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/14.000000/2.000000/16.000000/13.000000:d/0/16.000000/13.000000/14.000000/15.000000:w/0/14.000000/2.000000/16.000000/13.000000:e/0/14.000000/2.000000/16.000000/13.000000:s/0/14.000000/2.000000/16.000000/13.000000:u/0/14.000000/0.000000/16.000000/2.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/0.000000/2.000000/2.000000/13.000000:d/0/2.000000/13.000000/0.000000/15.000000:w/0/0.000000/2.000000/2.000000/13.000000:e/0/0.000000/2.000000/2.000000/13.000000:s/0/0.000000/2.000000/2.000000/13.000000:u/0/0.000000/0.000000/2.000000/2.000000:R/0/270/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/8.000000/3.000000/10.000000/12.000000:d/0/8.000000/14.000000/10.000000/12.000000:w/0/8.000000/3.000000/10.000000/12.000000:s/0/6.000000/3.000000/8.000000/12.000000:u/0/8.000000/1.000000/10.000000/3.000000:R/0/270/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/6.000000/3.000000/8.000000/12.000000:d/0/6.000000/14.000000/8.000000/12.000000:e/0/6.000000/3.000000/8.000000/12.000000:s/0/8.000000/3.000000/10.000000/12.000000:u/0/6.000000/1.000000/8.000000/3.000000:R/0/270/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/10.000000/3.000000/14.000000/6.000000:d/0/10.000000/14.000000/14.000000/12.000000:s/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/270/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/10.000000/3.000000/14.000000/6.000000:d/0/10.000000/14.000000/14.000000/12.000000:s/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/270/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/2.000000/3.000000/6.000000/6.000000:d/0/2.000000/14.000000/6.000000/12.000000:s/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/270/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/2.000000/3.000000/6.000000/6.000000:d/0/2.000000/14.000000/6.000000/12.000000:s/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_fence_gate,state=facing=east/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/14.000000/2.000000/16.000000/13.000000:d/0/16.000000/13.000000/14.000000/15.000000:w/0/14.000000/2.000000/16.000000/13.000000:e/0/14.000000/2.000000/16.000000/13.000000:s/0/14.000000/2.000000/16.000000/13.000000:u/0/14.000000/0.000000/16.000000/2.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/0.000000/2.000000/2.000000/13.000000:d/0/2.000000/13.000000/0.000000/15.000000:w/0/0.000000/2.000000/2.000000/13.000000:e/0/0.000000/2.000000/2.000000/13.000000:s/0/0.000000/2.000000/2.000000/13.000000:u/0/0.000000/0.000000/2.000000/2.000000:R/0/270/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/8.000000/3.000000/10.000000/12.000000:d/0/8.000000/14.000000/10.000000/12.000000:w/0/8.000000/3.000000/10.000000/12.000000:e/0/8.000000/3.000000/10.000000/12.000000:s/0/8.000000/3.000000/10.000000/12.000000:u/0/8.000000/1.000000/10.000000/3.000000:R/0/270/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/6.000000/3.000000/8.000000/12.000000:d/0/6.000000/14.000000/8.000000/12.000000:w/0/6.000000/3.000000/8.000000/12.000000:e/0/6.000000/3.000000/8.000000/12.000000:s/0/6.000000/3.000000/8.000000/12.000000:u/0/6.000000/1.000000/8.000000/3.000000:R/0/270/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/2.000000/12.000000/6.000000/14.000000:w/0/2.000000/3.000000/6.000000/6.000000:e/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/270/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/2.000000/12.000000/6.000000/14.000000:w/0/2.000000/3.000000/6.000000/6.000000:e/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/270/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/10.000000/12.000000/14.000000/14.000000:w/0/10.000000/3.000000/14.000000/6.000000:e/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/270/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/10.000000/12.000000/14.000000/14.000000:w/0/14.000000/3.000000/10.000000/6.000000:e/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_fence_gate,state=facing=east/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/14.000000/2.000000/16.000000/13.000000:d/0/16.000000/13.000000/14.000000/15.000000:w/0/14.000000/2.000000/16.000000/13.000000:e/0/14.000000/2.000000/16.000000/13.000000:s/0/14.000000/2.000000/16.000000/13.000000:u/0/14.000000/0.000000/16.000000/2.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/0.000000/2.000000/2.000000/13.000000:d/0/2.000000/13.000000/0.000000/15.000000:w/0/0.000000/2.000000/2.000000/13.000000:e/0/0.000000/2.000000/2.000000/13.000000:s/0/0.000000/2.000000/2.000000/13.000000:u/0/0.000000/0.000000/2.000000/2.000000:R/0/270/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/8.000000/3.000000/10.000000/12.000000:d/0/8.000000/14.000000/10.000000/12.000000:w/0/8.000000/3.000000/10.000000/12.000000:s/0/6.000000/3.000000/8.000000/12.000000:u/0/8.000000/1.000000/10.000000/3.000000:R/0/270/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/6.000000/3.000000/8.000000/12.000000:d/0/6.000000/14.000000/8.000000/12.000000:e/0/6.000000/3.000000/8.000000/12.000000:s/0/8.000000/3.000000/10.000000/12.000000:u/0/6.000000/1.000000/8.000000/3.000000:R/0/270/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/10.000000/3.000000/14.000000/6.000000:d/0/10.000000/14.000000/14.000000/12.000000:s/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/270/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/10.000000/3.000000/14.000000/6.000000:d/0/10.000000/14.000000/14.000000/12.000000:s/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/270/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/2.000000/3.000000/6.000000/6.000000:d/0/2.000000/14.000000/6.000000/12.000000:s/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/270/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/2.000000/3.000000/6.000000/6.000000:d/0/2.000000/14.000000/6.000000/12.000000:s/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_fence_gate,state=facing=east/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/14.000000/2.000000/16.000000/13.000000:d/0/16.000000/13.000000/14.000000/15.000000:w/0/14.000000/2.000000/16.000000/13.000000:e/0/14.000000/2.000000/16.000000/13.000000:s/0/14.000000/2.000000/16.000000/13.000000:u/0/14.000000/0.000000/16.000000/2.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/0.000000/2.000000/2.000000/13.000000:d/0/2.000000/13.000000/0.000000/15.000000:w/0/0.000000/2.000000/2.000000/13.000000:e/0/0.000000/2.000000/2.000000/13.000000:s/0/0.000000/2.000000/2.000000/13.000000:u/0/0.000000/0.000000/2.000000/2.000000:R/0/270/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/8.000000/3.000000/10.000000/12.000000:d/0/8.000000/14.000000/10.000000/12.000000:w/0/8.000000/3.000000/10.000000/12.000000:e/0/8.000000/3.000000/10.000000/12.000000:s/0/8.000000/3.000000/10.000000/12.000000:u/0/8.000000/1.000000/10.000000/3.000000:R/0/270/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/6.000000/3.000000/8.000000/12.000000:d/0/6.000000/14.000000/8.000000/12.000000:w/0/6.000000/3.000000/8.000000/12.000000:e/0/6.000000/3.000000/8.000000/12.000000:s/0/6.000000/3.000000/8.000000/12.000000:u/0/6.000000/1.000000/8.000000/3.000000:R/0/270/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/2.000000/12.000000/6.000000/14.000000:w/0/2.000000/3.000000/6.000000/6.000000:e/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/270/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/2.000000/12.000000/6.000000/14.000000:w/0/2.000000/3.000000/6.000000/6.000000:e/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/270/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/10.000000/12.000000/14.000000/14.000000:w/0/10.000000/3.000000/14.000000/6.000000:e/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/270/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/10.000000/12.000000/14.000000/14.000000:w/0/14.000000/3.000000/10.000000/6.000000:e/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_fence_gate,state=facing=north/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/14.000000/2.000000/16.000000/13.000000:d/0/16.000000/13.000000/14.000000/15.000000:w/0/14.000000/2.000000/16.000000/13.000000:e/0/14.000000/2.000000/16.000000/13.000000:s/0/14.000000/2.000000/16.000000/13.000000:u/0/14.000000/0.000000/16.000000/2.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/0.000000/2.000000/2.000000/13.000000:d/0/2.000000/13.000000/0.000000/15.000000:w/0/0.000000/2.000000/2.000000/13.000000:e/0/0.000000/2.000000/2.000000/13.000000:s/0/0.000000/2.000000/2.000000/13.000000:u/0/0.000000/0.000000/2.000000/2.000000:R/0/180/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/8.000000/3.000000/10.000000/12.000000:d/0/8.000000/14.000000/10.000000/12.000000:w/0/8.000000/3.000000/10.000000/12.000000:s/0/6.000000/3.000000/8.000000/12.000000:u/0/8.000000/1.000000/10.000000/3.000000:R/0/180/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/6.000000/3.000000/8.000000/12.000000:d/0/6.000000/14.000000/8.000000/12.000000:e/0/6.000000/3.000000/8.000000/12.000000:s/0/8.000000/3.000000/10.000000/12.000000:u/0/6.000000/1.000000/8.000000/3.000000:R/0/180/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/10.000000/3.000000/14.000000/6.000000:d/0/10.000000/14.000000/14.000000/12.000000:s/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/180/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/10.000000/3.000000/14.000000/6.000000:d/0/10.000000/14.000000/14.000000/12.000000:s/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/180/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/2.000000/3.000000/6.000000/6.000000:d/0/2.000000/14.000000/6.000000/12.000000:s/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/180/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/2.000000/3.000000/6.000000/6.000000:d/0/2.000000/14.000000/6.000000/12.000000:s/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_fence_gate,state=facing=north/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/14.000000/2.000000/16.000000/13.000000:d/0/16.000000/13.000000/14.000000/15.000000:w/0/14.000000/2.000000/16.000000/13.000000:e/0/14.000000/2.000000/16.000000/13.000000:s/0/14.000000/2.000000/16.000000/13.000000:u/0/14.000000/0.000000/16.000000/2.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/0.000000/2.000000/2.000000/13.000000:d/0/2.000000/13.000000/0.000000/15.000000:w/0/0.000000/2.000000/2.000000/13.000000:e/0/0.000000/2.000000/2.000000/13.000000:s/0/0.000000/2.000000/2.000000/13.000000:u/0/0.000000/0.000000/2.000000/2.000000:R/0/180/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/8.000000/3.000000/10.000000/12.000000:d/0/8.000000/14.000000/10.000000/12.000000:w/0/8.000000/3.000000/10.000000/12.000000:e/0/8.000000/3.000000/10.000000/12.000000:s/0/8.000000/3.000000/10.000000/12.000000:u/0/8.000000/1.000000/10.000000/3.000000:R/0/180/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/6.000000/3.000000/8.000000/12.000000:d/0/6.000000/14.000000/8.000000/12.000000:w/0/6.000000/3.000000/8.000000/12.000000:e/0/6.000000/3.000000/8.000000/12.000000:s/0/6.000000/3.000000/8.000000/12.000000:u/0/6.000000/1.000000/8.000000/3.000000:R/0/180/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/2.000000/12.000000/6.000000/14.000000:w/0/2.000000/3.000000/6.000000/6.000000:e/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/180/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/2.000000/12.000000/6.000000/14.000000:w/0/2.000000/3.000000/6.000000/6.000000:e/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/180/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/10.000000/12.000000/14.000000/14.000000:w/0/10.000000/3.000000/14.000000/6.000000:e/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/180/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/10.000000/12.000000/14.000000/14.000000:w/0/14.000000/3.000000/10.000000/6.000000:e/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_fence_gate,state=facing=north/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/14.000000/2.000000/16.000000/13.000000:d/0/16.000000/13.000000/14.000000/15.000000:w/0/14.000000/2.000000/16.000000/13.000000:e/0/14.000000/2.000000/16.000000/13.000000:s/0/14.000000/2.000000/16.000000/13.000000:u/0/14.000000/0.000000/16.000000/2.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/0.000000/2.000000/2.000000/13.000000:d/0/2.000000/13.000000/0.000000/15.000000:w/0/0.000000/2.000000/2.000000/13.000000:e/0/0.000000/2.000000/2.000000/13.000000:s/0/0.000000/2.000000/2.000000/13.000000:u/0/0.000000/0.000000/2.000000/2.000000:R/0/180/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/8.000000/3.000000/10.000000/12.000000:d/0/8.000000/14.000000/10.000000/12.000000:w/0/8.000000/3.000000/10.000000/12.000000:s/0/6.000000/3.000000/8.000000/12.000000:u/0/8.000000/1.000000/10.000000/3.000000:R/0/180/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/6.000000/3.000000/8.000000/12.000000:d/0/6.000000/14.000000/8.000000/12.000000:e/0/6.000000/3.000000/8.000000/12.000000:s/0/8.000000/3.000000/10.000000/12.000000:u/0/6.000000/1.000000/8.000000/3.000000:R/0/180/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/10.000000/3.000000/14.000000/6.000000:d/0/10.000000/14.000000/14.000000/12.000000:s/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/180/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/10.000000/3.000000/14.000000/6.000000:d/0/10.000000/14.000000/14.000000/12.000000:s/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/180/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/2.000000/3.000000/6.000000/6.000000:d/0/2.000000/14.000000/6.000000/12.000000:s/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/180/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/2.000000/3.000000/6.000000/6.000000:d/0/2.000000/14.000000/6.000000/12.000000:s/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_fence_gate,state=facing=north/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/14.000000/2.000000/16.000000/13.000000:d/0/16.000000/13.000000/14.000000/15.000000:w/0/14.000000/2.000000/16.000000/13.000000:e/0/14.000000/2.000000/16.000000/13.000000:s/0/14.000000/2.000000/16.000000/13.000000:u/0/14.000000/0.000000/16.000000/2.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/0.000000/2.000000/2.000000/13.000000:d/0/2.000000/13.000000/0.000000/15.000000:w/0/0.000000/2.000000/2.000000/13.000000:e/0/0.000000/2.000000/2.000000/13.000000:s/0/0.000000/2.000000/2.000000/13.000000:u/0/0.000000/0.000000/2.000000/2.000000:R/0/180/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/8.000000/3.000000/10.000000/12.000000:d/0/8.000000/14.000000/10.000000/12.000000:w/0/8.000000/3.000000/10.000000/12.000000:e/0/8.000000/3.000000/10.000000/12.000000:s/0/8.000000/3.000000/10.000000/12.000000:u/0/8.000000/1.000000/10.000000/3.000000:R/0/180/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/6.000000/3.000000/8.000000/12.000000:d/0/6.000000/14.000000/8.000000/12.000000:w/0/6.000000/3.000000/8.000000/12.000000:e/0/6.000000/3.000000/8.000000/12.000000:s/0/6.000000/3.000000/8.000000/12.000000:u/0/6.000000/1.000000/8.000000/3.000000:R/0/180/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/2.000000/12.000000/6.000000/14.000000:w/0/2.000000/3.000000/6.000000/6.000000:e/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/180/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/2.000000/12.000000/6.000000/14.000000:w/0/2.000000/3.000000/6.000000/6.000000:e/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/180/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/10.000000/12.000000/14.000000/14.000000:w/0/10.000000/3.000000/14.000000/6.000000:e/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/180/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/10.000000/12.000000/14.000000/14.000000:w/0/14.000000/3.000000/10.000000/6.000000:e/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_fence_gate,state=facing=south/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/14.000000/2.000000/16.000000/13.000000:d/0/16.000000/13.000000/14.000000/15.000000:w/0/14.000000/2.000000/16.000000/13.000000:e/0/14.000000/2.000000/16.000000/13.000000:s/0/14.000000/2.000000/16.000000/13.000000:u/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/0.000000/2.000000/2.000000/13.000000:d/0/2.000000/13.000000/0.000000/15.000000:w/0/0.000000/2.000000/2.000000/13.000000:e/0/0.000000/2.000000/2.000000/13.000000:s/0/0.000000/2.000000/2.000000/13.000000:u/0/0.000000/0.000000/2.000000/2.000000,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/8.000000/3.000000/10.000000/12.000000:d/0/8.000000/14.000000/10.000000/12.000000:w/0/8.000000/3.000000/10.000000/12.000000:s/0/6.000000/3.000000/8.000000/12.000000:u/0/8.000000/1.000000/10.000000/3.000000,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/6.000000/3.000000/8.000000/12.000000:d/0/6.000000/14.000000/8.000000/12.000000:e/0/6.000000/3.000000/8.000000/12.000000:s/0/8.000000/3.000000/10.000000/12.000000:u/0/6.000000/1.000000/8.000000/3.000000,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/10.000000/3.000000/14.000000/6.000000:d/0/10.000000/14.000000/14.000000/12.000000:s/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/10.000000/3.000000/14.000000/6.000000:d/0/10.000000/14.000000/14.000000/12.000000:s/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/2.000000/3.000000/6.000000/6.000000:d/0/2.000000/14.000000/6.000000/12.000000:s/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/2.000000/3.000000/6.000000/6.000000:d/0/2.000000/14.000000/6.000000/12.000000:s/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000 +[1.21.4-]modellist:id=%bamboo_fence_gate,state=facing=south/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/14.000000/2.000000/16.000000/13.000000:d/0/16.000000/13.000000/14.000000/15.000000:w/0/14.000000/2.000000/16.000000/13.000000:e/0/14.000000/2.000000/16.000000/13.000000:s/0/14.000000/2.000000/16.000000/13.000000:u/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/0.000000/2.000000/2.000000/13.000000:d/0/2.000000/13.000000/0.000000/15.000000:w/0/0.000000/2.000000/2.000000/13.000000:e/0/0.000000/2.000000/2.000000/13.000000:s/0/0.000000/2.000000/2.000000/13.000000:u/0/0.000000/0.000000/2.000000/2.000000,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/8.000000/3.000000/10.000000/12.000000:d/0/8.000000/14.000000/10.000000/12.000000:w/0/8.000000/3.000000/10.000000/12.000000:e/0/8.000000/3.000000/10.000000/12.000000:s/0/8.000000/3.000000/10.000000/12.000000:u/0/8.000000/1.000000/10.000000/3.000000,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/6.000000/3.000000/8.000000/12.000000:d/0/6.000000/14.000000/8.000000/12.000000:w/0/6.000000/3.000000/8.000000/12.000000:e/0/6.000000/3.000000/8.000000/12.000000:s/0/6.000000/3.000000/8.000000/12.000000:u/0/6.000000/1.000000/8.000000/3.000000,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/2.000000/12.000000/6.000000/14.000000:w/0/2.000000/3.000000/6.000000/6.000000:e/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/2.000000/12.000000/6.000000/14.000000:w/0/2.000000/3.000000/6.000000/6.000000:e/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/10.000000/12.000000/14.000000/14.000000:w/0/10.000000/3.000000/14.000000/6.000000:e/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/10.000000/12.000000/14.000000/14.000000:w/0/14.000000/3.000000/10.000000/6.000000:e/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000 +[1.21.4-]modellist:id=%bamboo_fence_gate,state=facing=south/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/14.000000/2.000000/16.000000/13.000000:d/0/16.000000/13.000000/14.000000/15.000000:w/0/14.000000/2.000000/16.000000/13.000000:e/0/14.000000/2.000000/16.000000/13.000000:s/0/14.000000/2.000000/16.000000/13.000000:u/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/0.000000/2.000000/2.000000/13.000000:d/0/2.000000/13.000000/0.000000/15.000000:w/0/0.000000/2.000000/2.000000/13.000000:e/0/0.000000/2.000000/2.000000/13.000000:s/0/0.000000/2.000000/2.000000/13.000000:u/0/0.000000/0.000000/2.000000/2.000000,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/8.000000/3.000000/10.000000/12.000000:d/0/8.000000/14.000000/10.000000/12.000000:w/0/8.000000/3.000000/10.000000/12.000000:s/0/6.000000/3.000000/8.000000/12.000000:u/0/8.000000/1.000000/10.000000/3.000000,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/6.000000/3.000000/8.000000/12.000000:d/0/6.000000/14.000000/8.000000/12.000000:e/0/6.000000/3.000000/8.000000/12.000000:s/0/8.000000/3.000000/10.000000/12.000000:u/0/6.000000/1.000000/8.000000/3.000000,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/10.000000/3.000000/14.000000/6.000000:d/0/10.000000/14.000000/14.000000/12.000000:s/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/10.000000/3.000000/14.000000/6.000000:d/0/10.000000/14.000000/14.000000/12.000000:s/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/2.000000/3.000000/6.000000/6.000000:d/0/2.000000/14.000000/6.000000/12.000000:s/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/2.000000/3.000000/6.000000/6.000000:d/0/2.000000/14.000000/6.000000/12.000000:s/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000 +[1.21.4-]modellist:id=%bamboo_fence_gate,state=facing=south/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/14.000000/2.000000/16.000000/13.000000:d/0/16.000000/13.000000/14.000000/15.000000:w/0/14.000000/2.000000/16.000000/13.000000:e/0/14.000000/2.000000/16.000000/13.000000:s/0/14.000000/2.000000/16.000000/13.000000:u/0/14.000000/0.000000/16.000000/2.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/0.000000/2.000000/2.000000/13.000000:d/0/2.000000/13.000000/0.000000/15.000000:w/0/0.000000/2.000000/2.000000/13.000000:e/0/0.000000/2.000000/2.000000/13.000000:s/0/0.000000/2.000000/2.000000/13.000000:u/0/0.000000/0.000000/2.000000/2.000000,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/8.000000/3.000000/10.000000/12.000000:d/0/8.000000/14.000000/10.000000/12.000000:w/0/8.000000/3.000000/10.000000/12.000000:e/0/8.000000/3.000000/10.000000/12.000000:s/0/8.000000/3.000000/10.000000/12.000000:u/0/8.000000/1.000000/10.000000/3.000000,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/6.000000/3.000000/8.000000/12.000000:d/0/6.000000/14.000000/8.000000/12.000000:w/0/6.000000/3.000000/8.000000/12.000000:e/0/6.000000/3.000000/8.000000/12.000000:s/0/6.000000/3.000000/8.000000/12.000000:u/0/6.000000/1.000000/8.000000/3.000000,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/2.000000/12.000000/6.000000/14.000000:w/0/2.000000/3.000000/6.000000/6.000000:e/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/2.000000/12.000000/6.000000/14.000000:w/0/2.000000/3.000000/6.000000/6.000000:e/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/10.000000/12.000000/14.000000/14.000000:w/0/10.000000/3.000000/14.000000/6.000000:e/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/10.000000/12.000000/14.000000/14.000000:w/0/14.000000/3.000000/10.000000/6.000000:e/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000 +[1.21.4-]modellist:id=%bamboo_fence_gate,state=facing=west/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/14.000000/2.000000/16.000000/13.000000:d/0/16.000000/13.000000/14.000000/15.000000:w/0/14.000000/2.000000/16.000000/13.000000:e/0/14.000000/2.000000/16.000000/13.000000:s/0/14.000000/2.000000/16.000000/13.000000:u/0/14.000000/0.000000/16.000000/2.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/0.000000/2.000000/2.000000/13.000000:d/0/2.000000/13.000000/0.000000/15.000000:w/0/0.000000/2.000000/2.000000/13.000000:e/0/0.000000/2.000000/2.000000/13.000000:s/0/0.000000/2.000000/2.000000/13.000000:u/0/0.000000/0.000000/2.000000/2.000000:R/0/90/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/8.000000/3.000000/10.000000/12.000000:d/0/8.000000/14.000000/10.000000/12.000000:w/0/8.000000/3.000000/10.000000/12.000000:s/0/6.000000/3.000000/8.000000/12.000000:u/0/8.000000/1.000000/10.000000/3.000000:R/0/90/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/6.000000/3.000000/8.000000/12.000000:d/0/6.000000/14.000000/8.000000/12.000000:e/0/6.000000/3.000000/8.000000/12.000000:s/0/8.000000/3.000000/10.000000/12.000000:u/0/6.000000/1.000000/8.000000/3.000000:R/0/90/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/10.000000/3.000000/14.000000/6.000000:d/0/10.000000/14.000000/14.000000/12.000000:s/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/90/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/10.000000/3.000000/14.000000/6.000000:d/0/10.000000/14.000000/14.000000/12.000000:s/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/90/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/2.000000/3.000000/6.000000/6.000000:d/0/2.000000/14.000000/6.000000/12.000000:s/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/90/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/2.000000/3.000000/6.000000/6.000000:d/0/2.000000/14.000000/6.000000/12.000000:s/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_fence_gate,state=facing=west/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/14.000000/2.000000/16.000000/13.000000:d/0/16.000000/13.000000/14.000000/15.000000:w/0/14.000000/2.000000/16.000000/13.000000:e/0/14.000000/2.000000/16.000000/13.000000:s/0/14.000000/2.000000/16.000000/13.000000:u/0/14.000000/0.000000/16.000000/2.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/0.000000/2.000000/2.000000/13.000000:d/0/2.000000/13.000000/0.000000/15.000000:w/0/0.000000/2.000000/2.000000/13.000000:e/0/0.000000/2.000000/2.000000/13.000000:s/0/0.000000/2.000000/2.000000/13.000000:u/0/0.000000/0.000000/2.000000/2.000000:R/0/90/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/8.000000/3.000000/10.000000/12.000000:d/0/8.000000/14.000000/10.000000/12.000000:w/0/8.000000/3.000000/10.000000/12.000000:e/0/8.000000/3.000000/10.000000/12.000000:s/0/8.000000/3.000000/10.000000/12.000000:u/0/8.000000/1.000000/10.000000/3.000000:R/0/90/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/6.000000/3.000000/8.000000/12.000000:d/0/6.000000/14.000000/8.000000/12.000000:w/0/6.000000/3.000000/8.000000/12.000000:e/0/6.000000/3.000000/8.000000/12.000000:s/0/6.000000/3.000000/8.000000/12.000000:u/0/6.000000/1.000000/8.000000/3.000000:R/0/90/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/2.000000/12.000000/6.000000/14.000000:w/0/2.000000/3.000000/6.000000/6.000000:e/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/90/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/2.000000/12.000000/6.000000/14.000000:w/0/2.000000/3.000000/6.000000/6.000000:e/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/90/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/10.000000/12.000000/14.000000/14.000000:w/0/10.000000/3.000000/14.000000/6.000000:e/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/90/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/10.000000/12.000000/14.000000/14.000000:w/0/14.000000/3.000000/10.000000/6.000000:e/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_fence_gate,state=facing=west/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/14.000000/2.000000/16.000000/13.000000:d/0/16.000000/13.000000/14.000000/15.000000:w/0/14.000000/2.000000/16.000000/13.000000:e/0/14.000000/2.000000/16.000000/13.000000:s/0/14.000000/2.000000/16.000000/13.000000:u/0/14.000000/0.000000/16.000000/2.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/0.000000/2.000000/2.000000/13.000000:d/0/2.000000/13.000000/0.000000/15.000000:w/0/0.000000/2.000000/2.000000/13.000000:e/0/0.000000/2.000000/2.000000/13.000000:s/0/0.000000/2.000000/2.000000/13.000000:u/0/0.000000/0.000000/2.000000/2.000000:R/0/90/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/8.000000/3.000000/10.000000/12.000000:d/0/8.000000/14.000000/10.000000/12.000000:w/0/8.000000/3.000000/10.000000/12.000000:s/0/6.000000/3.000000/8.000000/12.000000:u/0/8.000000/1.000000/10.000000/3.000000:R/0/90/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/6.000000/3.000000/8.000000/12.000000:d/0/6.000000/14.000000/8.000000/12.000000:e/0/6.000000/3.000000/8.000000/12.000000:s/0/8.000000/3.000000/10.000000/12.000000:u/0/6.000000/1.000000/8.000000/3.000000:R/0/90/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/10.000000/3.000000/14.000000/6.000000:d/0/10.000000/14.000000/14.000000/12.000000:s/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/90/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/10.000000/3.000000/14.000000/6.000000:d/0/10.000000/14.000000/14.000000/12.000000:s/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/90/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/2.000000/3.000000/6.000000/6.000000:d/0/2.000000/14.000000/6.000000/12.000000:s/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/90/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/2.000000/3.000000/6.000000/6.000000:d/0/2.000000/14.000000/6.000000/12.000000:s/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_fence_gate,state=facing=west/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/14.000000/2.000000/16.000000/13.000000:d/0/16.000000/13.000000/14.000000/15.000000:w/0/14.000000/2.000000/16.000000/13.000000:e/0/14.000000/2.000000/16.000000/13.000000:s/0/14.000000/2.000000/16.000000/13.000000:u/0/14.000000/0.000000/16.000000/2.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/0.000000/2.000000/2.000000/13.000000:d/0/2.000000/13.000000/0.000000/15.000000:w/0/0.000000/2.000000/2.000000/13.000000:e/0/0.000000/2.000000/2.000000/13.000000:s/0/0.000000/2.000000/2.000000/13.000000:u/0/0.000000/0.000000/2.000000/2.000000:R/0/90/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/8.000000/3.000000/10.000000/12.000000:d/0/8.000000/14.000000/10.000000/12.000000:w/0/8.000000/3.000000/10.000000/12.000000:e/0/8.000000/3.000000/10.000000/12.000000:s/0/8.000000/3.000000/10.000000/12.000000:u/0/8.000000/1.000000/10.000000/3.000000:R/0/90/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/6.000000/3.000000/8.000000/12.000000:d/0/6.000000/14.000000/8.000000/12.000000:w/0/6.000000/3.000000/8.000000/12.000000:e/0/6.000000/3.000000/8.000000/12.000000:s/0/6.000000/3.000000/8.000000/12.000000:u/0/6.000000/1.000000/8.000000/3.000000:R/0/90/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/2.000000/12.000000/6.000000/14.000000:w/0/2.000000/3.000000/6.000000/6.000000:e/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/90/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/2.000000/12.000000/6.000000/14.000000:w/0/2.000000/3.000000/6.000000/6.000000:e/0/2.000000/9.000000/6.000000/12.000000:u/0/2.000000/1.000000/6.000000/3.000000:R/0/90/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/10.000000/12.000000/14.000000/14.000000:w/0/10.000000/3.000000/14.000000/6.000000:e/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/90/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/10.000000/12.000000/14.000000/14.000000:w/0/14.000000/3.000000/10.000000/6.000000:e/0/10.000000/9.000000/14.000000/12.000000:u/0/10.000000/1.000000/14.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_mosaic_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_mosaic_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%bamboo_mosaic_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%bamboo_pressure_plate,state=powered=false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%bamboo_pressure_plate,state=powered=true,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%bamboo_sapling,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:east,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/90/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/90/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:east/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:east/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:east/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:east/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:east/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:north,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:north/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:north/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:north/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:north/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:north/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:south,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/180/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/180/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:south/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:south/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:south/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:south/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:south/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:west,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/270/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/270/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:west/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:west/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:west/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:west/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_shelf,state=facing:west/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%bamboo_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%bamboo_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%bamboo_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/270/0 +[1.21.4-]modellist:id=%bamboo_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%bamboo_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%bamboo_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%bamboo_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/180/0 +[1.21.4-]modellist:id=%bamboo_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%bamboo_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/0/0 +[1.21.4-]modellist:id=%bamboo_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%bamboo_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/90/0 +[1.21.4-]modellist:id=%beacon,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.100000/2.000000:14.000000/3.000000/14.000000:n/0/2.000000/13.000000/14.000000/16.000000:d/0/2.000000/2.000000/14.000000/14.000000:w/0/2.000000/13.000000/14.000000/16.000000:e/0/2.000000/13.000000/14.000000/16.000000:s/0/2.000000/13.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000,box=3.000000/3.000000/3.000000:13.000000/14.000000/13.000000:n/0/3.000000/2.000000/13.000000/13.000000:d/0/3.000000/3.000000/13.000000/13.000000:w/0/3.000000/2.000000/13.000000/13.000000:e/0/3.000000/2.000000/13.000000/13.000000:s/0/3.000000/2.000000/13.000000/13.000000:u/0/3.000000/3.000000/13.000000/13.000000 +[1.21.4-]modellist:id=%beetroots,state=age=0,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%beetroots,state=age=1,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%beetroots,state=age=2,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%beetroots,state=age=3,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%bell,state=attachment=ceiling/facing=east,box=7.000000/13.000000/7.000000:9.000000/16.000000/9.000000:n/0/7.000000/2.000000/9.000000/5.000000:w/0/4.000000/2.000000/6.000000/5.000000:e/0/1.000000/2.000000/3.000000/5.000000:s/0/6.000000/2.000000/8.000000/5.000000:u/0/1.000000/3.000000/3.000000/5.000000:R/0/90/0 +[1.21.4-]modellist:id=%bell,state=attachment=ceiling/facing=north,box=7.000000/13.000000/7.000000:9.000000/16.000000/9.000000:n/0/7.000000/2.000000/9.000000/5.000000:w/0/4.000000/2.000000/6.000000/5.000000:e/0/1.000000/2.000000/3.000000/5.000000:s/0/6.000000/2.000000/8.000000/5.000000:u/0/1.000000/3.000000/3.000000/5.000000 +[1.21.4-]modellist:id=%bell,state=attachment=ceiling/facing=south,box=7.000000/13.000000/7.000000:9.000000/16.000000/9.000000:n/0/7.000000/2.000000/9.000000/5.000000:w/0/4.000000/2.000000/6.000000/5.000000:e/0/1.000000/2.000000/3.000000/5.000000:s/0/6.000000/2.000000/8.000000/5.000000:u/0/1.000000/3.000000/3.000000/5.000000:R/0/180/0 +[1.21.4-]modellist:id=%bell,state=attachment=ceiling/facing=west,box=7.000000/13.000000/7.000000:9.000000/16.000000/9.000000:n/0/7.000000/2.000000/9.000000/5.000000:w/0/4.000000/2.000000/6.000000/5.000000:e/0/1.000000/2.000000/3.000000/5.000000:s/0/6.000000/2.000000/8.000000/5.000000:u/0/1.000000/3.000000/3.000000/5.000000:R/0/270/0 +[1.21.4-]modellist:id=%bell,state=attachment=double_wall/facing=east,box=0.000000/13.000000/7.000000:16.000000/15.000000/9.000000:n/0/2.000000/2.000000/14.000000/4.000000:d/0/2.000000/3.000000/14.000000/5.000000:w/0/5.000000/4.000000/7.000000/6.000000:e/0/5.000000/4.000000/7.000000/6.000000:s/0/2.000000/3.000000/14.000000/5.000000:u/0/2.000000/3.000000/14.000000/5.000000 +[1.21.4-]modellist:id=%bell,state=attachment=double_wall/facing=north,box=0.000000/13.000000/7.000000:16.000000/15.000000/9.000000:n/0/2.000000/2.000000/14.000000/4.000000:d/0/2.000000/3.000000/14.000000/5.000000:w/0/5.000000/4.000000/7.000000/6.000000:e/0/5.000000/4.000000/7.000000/6.000000:s/0/2.000000/3.000000/14.000000/5.000000:u/0/2.000000/3.000000/14.000000/5.000000:R/0/270/0 +[1.21.4-]modellist:id=%bell,state=attachment=double_wall/facing=south,box=0.000000/13.000000/7.000000:16.000000/15.000000/9.000000:n/0/2.000000/2.000000/14.000000/4.000000:d/0/2.000000/3.000000/14.000000/5.000000:w/0/5.000000/4.000000/7.000000/6.000000:e/0/5.000000/4.000000/7.000000/6.000000:s/0/2.000000/3.000000/14.000000/5.000000:u/0/2.000000/3.000000/14.000000/5.000000:R/0/90/0 +[1.21.4-]modellist:id=%bell,state=attachment=double_wall/facing=west,box=0.000000/13.000000/7.000000:16.000000/15.000000/9.000000:n/0/2.000000/2.000000/14.000000/4.000000:d/0/2.000000/3.000000/14.000000/5.000000:w/0/5.000000/4.000000/7.000000/6.000000:e/0/5.000000/4.000000/7.000000/6.000000:s/0/2.000000/3.000000/14.000000/5.000000:u/0/2.000000/3.000000/14.000000/5.000000:R/0/180/0 +[1.21.4-]modellist:id=%bell,state=attachment=floor/facing=east,box=2.000000/13.000000/7.000000:14.000000/15.000000/9.000000:n/0/2.000000/2.000000/14.000000/4.000000:d/0/2.000000/3.000000/14.000000/5.000000:s/0/2.000000/3.000000/14.000000/5.000000:u/0/2.000000/3.000000/14.000000/5.000000:R/0/90/0,box=14.000000/0.000000/6.000000:16.000000/16.000000/10.000000:n/0/0.000000/1.000000/2.000000/16.000000:d/0/0.000000/0.000000/2.000000/4.000000:w/0/0.000000/1.000000/4.000000/16.000000:e/0/0.000000/1.000000/4.000000/16.000000:s/0/0.000000/1.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/4.000000:R/0/90/0,box=0.000000/0.000000/6.000000:2.000000/16.000000/10.000000:n/0/0.000000/1.000000/2.000000/16.000000:d/0/0.000000/0.000000/2.000000/4.000000:w/0/0.000000/1.000000/4.000000/16.000000:e/0/0.000000/1.000000/4.000000/16.000000:s/0/0.000000/1.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/4.000000:R/0/90/0 +[1.21.4-]modellist:id=%bell,state=attachment=floor/facing=north,box=2.000000/13.000000/7.000000:14.000000/15.000000/9.000000:n/0/2.000000/2.000000/14.000000/4.000000:d/0/2.000000/3.000000/14.000000/5.000000:s/0/2.000000/3.000000/14.000000/5.000000:u/0/2.000000/3.000000/14.000000/5.000000,box=14.000000/0.000000/6.000000:16.000000/16.000000/10.000000:n/0/0.000000/1.000000/2.000000/16.000000:d/0/0.000000/0.000000/2.000000/4.000000:w/0/0.000000/1.000000/4.000000/16.000000:e/0/0.000000/1.000000/4.000000/16.000000:s/0/0.000000/1.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/4.000000,box=0.000000/0.000000/6.000000:2.000000/16.000000/10.000000:n/0/0.000000/1.000000/2.000000/16.000000:d/0/0.000000/0.000000/2.000000/4.000000:w/0/0.000000/1.000000/4.000000/16.000000:e/0/0.000000/1.000000/4.000000/16.000000:s/0/0.000000/1.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/4.000000 +[1.21.4-]modellist:id=%bell,state=attachment=floor/facing=south,box=2.000000/13.000000/7.000000:14.000000/15.000000/9.000000:n/0/2.000000/2.000000/14.000000/4.000000:d/0/2.000000/3.000000/14.000000/5.000000:s/0/2.000000/3.000000/14.000000/5.000000:u/0/2.000000/3.000000/14.000000/5.000000:R/0/180/0,box=14.000000/0.000000/6.000000:16.000000/16.000000/10.000000:n/0/0.000000/1.000000/2.000000/16.000000:d/0/0.000000/0.000000/2.000000/4.000000:w/0/0.000000/1.000000/4.000000/16.000000:e/0/0.000000/1.000000/4.000000/16.000000:s/0/0.000000/1.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/4.000000:R/0/180/0,box=0.000000/0.000000/6.000000:2.000000/16.000000/10.000000:n/0/0.000000/1.000000/2.000000/16.000000:d/0/0.000000/0.000000/2.000000/4.000000:w/0/0.000000/1.000000/4.000000/16.000000:e/0/0.000000/1.000000/4.000000/16.000000:s/0/0.000000/1.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/4.000000:R/0/180/0 +[1.21.4-]modellist:id=%bell,state=attachment=floor/facing=west,box=2.000000/13.000000/7.000000:14.000000/15.000000/9.000000:n/0/2.000000/2.000000/14.000000/4.000000:d/0/2.000000/3.000000/14.000000/5.000000:s/0/2.000000/3.000000/14.000000/5.000000:u/0/2.000000/3.000000/14.000000/5.000000:R/0/270/0,box=14.000000/0.000000/6.000000:16.000000/16.000000/10.000000:n/0/0.000000/1.000000/2.000000/16.000000:d/0/0.000000/0.000000/2.000000/4.000000:w/0/0.000000/1.000000/4.000000/16.000000:e/0/0.000000/1.000000/4.000000/16.000000:s/0/0.000000/1.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/4.000000:R/0/270/0,box=0.000000/0.000000/6.000000:2.000000/16.000000/10.000000:n/0/0.000000/1.000000/2.000000/16.000000:d/0/0.000000/0.000000/2.000000/4.000000:w/0/0.000000/1.000000/4.000000/16.000000:e/0/0.000000/1.000000/4.000000/16.000000:s/0/0.000000/1.000000/2.000000/16.000000:u/0/0.000000/0.000000/2.000000/4.000000:R/0/270/0 +[1.21.4-]modellist:id=%bell,state=attachment=single_wall/facing=east,box=3.000000/13.000000/7.000000:16.000000/15.000000/9.000000:n/0/2.000000/2.000000/14.000000/4.000000:d/0/2.000000/3.000000/14.000000/5.000000:w/0/5.000000/4.000000/7.000000/6.000000:e/0/5.000000/4.000000/7.000000/6.000000:s/0/2.000000/3.000000/14.000000/5.000000:u/0/2.000000/3.000000/14.000000/5.000000 +[1.21.4-]modellist:id=%bell,state=attachment=single_wall/facing=north,box=3.000000/13.000000/7.000000:16.000000/15.000000/9.000000:n/0/2.000000/2.000000/14.000000/4.000000:d/0/2.000000/3.000000/14.000000/5.000000:w/0/5.000000/4.000000/7.000000/6.000000:e/0/5.000000/4.000000/7.000000/6.000000:s/0/2.000000/3.000000/14.000000/5.000000:u/0/2.000000/3.000000/14.000000/5.000000:R/0/270/0 +[1.21.4-]modellist:id=%bell,state=attachment=single_wall/facing=south,box=3.000000/13.000000/7.000000:16.000000/15.000000/9.000000:n/0/2.000000/2.000000/14.000000/4.000000:d/0/2.000000/3.000000/14.000000/5.000000:w/0/5.000000/4.000000/7.000000/6.000000:e/0/5.000000/4.000000/7.000000/6.000000:s/0/2.000000/3.000000/14.000000/5.000000:u/0/2.000000/3.000000/14.000000/5.000000:R/0/90/0 +[1.21.4-]modellist:id=%bell,state=attachment=single_wall/facing=west,box=3.000000/13.000000/7.000000:16.000000/15.000000/9.000000:n/0/2.000000/2.000000/14.000000/4.000000:d/0/2.000000/3.000000/14.000000/5.000000:w/0/5.000000/4.000000/7.000000/6.000000:e/0/5.000000/4.000000/7.000000/6.000000:s/0/2.000000/3.000000/14.000000/5.000000:u/0/2.000000/3.000000/14.000000/5.000000:R/0/180/0 +[1.21.4-]modellist:id=%big_dripleaf,state=facing=east/tilt=full,box=0.000000/15.000000/0.000000:16.000000/15.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/11.000000/0.000000:16.000000/15.000000/0.000000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=0.000000/11.000000/0.000000:0.002000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/90/0,box=15.998000/11.000000/0.000000:16.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/90/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/90/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%big_dripleaf,state=facing=east/tilt=none,box=0.000000/15.000000/0.000000:16.000000/15.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/11.000000/0.000000:16.000000/15.000000/0.002000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/16.000000/0.000000/0.000000/4.000000:R/0/90/0,box=0.000000/11.000000/0.000000:0.002000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/90/0,box=15.998000/11.000000/0.000000:16.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/90/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/90/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%big_dripleaf,state=facing=east/tilt=partial,box=0.000000/15.000000/0.000000:16.000000/15.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/11.000000/0.000000:16.000000/15.000000/0.000000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=0.000000/11.000000/0.000000:0.002000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/90/0,box=15.998000/11.000000/0.000000:16.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/90/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/90/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%big_dripleaf,state=facing=east/tilt=unstable,box=0.000000/15.000000/0.000000:16.000000/15.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/11.000000/0.000000:16.000000/15.000000/0.002000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/16.000000/0.000000/0.000000/4.000000:R/0/90/0,box=0.000000/11.000000/0.000000:0.002000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/90/0,box=15.998000/11.000000/0.000000:16.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/90/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/90/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%big_dripleaf,state=facing=north/tilt=full,box=0.000000/15.000000/0.000000:16.000000/15.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-45/x/8/15/16,box=0.000000/11.000000/0.000000:16.000000/15.000000/0.000000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/4.000000/-45/x/8/15/16,box=0.000000/11.000000/0.000000:0.002000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000/-45/x/8/15/16,box=15.998000/11.000000/0.000000:16.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000/-45/x/8/15/16,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000/45/y/8/8/12,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000/-45/y/8/8/12 +[1.21.4-]modellist:id=%big_dripleaf,state=facing=north/tilt=none,box=0.000000/15.000000/0.000000:16.000000/15.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/11.000000/0.000000:16.000000/15.000000/0.002000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/16.000000/0.000000/0.000000/4.000000,box=0.000000/11.000000/0.000000:0.002000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000,box=15.998000/11.000000/0.000000:16.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000/45/y/8/8/12,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000/-45/y/8/8/12 +[1.21.4-]modellist:id=%big_dripleaf,state=facing=north/tilt=partial,box=0.000000/15.000000/0.000000:16.000000/15.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/x/8/15/16,box=0.000000/11.000000/0.000000:16.000000/15.000000/0.000000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/4.000000/-22.5/x/8/15/16,box=0.000000/11.000000/0.000000:0.002000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000/-22.5/x/8/15/16,box=15.998000/11.000000/0.000000:16.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000/-22.5/x/8/15/16,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000/45/y/8/8/12,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000/-45/y/8/8/12 +[1.21.4-]modellist:id=%big_dripleaf,state=facing=north/tilt=unstable,box=0.000000/15.000000/0.000000:16.000000/15.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/11.000000/0.000000:16.000000/15.000000/0.002000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/16.000000/0.000000/0.000000/4.000000,box=0.000000/11.000000/0.000000:0.002000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000,box=15.998000/11.000000/0.000000:16.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000/45/y/8/8/12,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000/-45/y/8/8/12 +[1.21.4-]modellist:id=%big_dripleaf,state=facing=south/tilt=full,box=0.000000/15.000000/0.000000:16.000000/15.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/11.000000/0.000000:16.000000/15.000000/0.000000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=0.000000/11.000000/0.000000:0.002000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/180/0,box=15.998000/11.000000/0.000000:16.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/180/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/180/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%big_dripleaf,state=facing=south/tilt=none,box=0.000000/15.000000/0.000000:16.000000/15.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/11.000000/0.000000:16.000000/15.000000/0.002000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/16.000000/0.000000/0.000000/4.000000:R/0/180/0,box=0.000000/11.000000/0.000000:0.002000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/180/0,box=15.998000/11.000000/0.000000:16.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/180/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/180/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%big_dripleaf,state=facing=south/tilt=partial,box=0.000000/15.000000/0.000000:16.000000/15.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/11.000000/0.000000:16.000000/15.000000/0.000000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=0.000000/11.000000/0.000000:0.002000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/180/0,box=15.998000/11.000000/0.000000:16.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/180/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/180/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%big_dripleaf,state=facing=south/tilt=unstable,box=0.000000/15.000000/0.000000:16.000000/15.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/11.000000/0.000000:16.000000/15.000000/0.002000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/16.000000/0.000000/0.000000/4.000000:R/0/180/0,box=0.000000/11.000000/0.000000:0.002000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/180/0,box=15.998000/11.000000/0.000000:16.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/180/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/180/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%big_dripleaf,state=facing=west/tilt=full,box=0.000000/15.000000/0.000000:16.000000/15.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/11.000000/0.000000:16.000000/15.000000/0.000000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=0.000000/11.000000/0.000000:0.002000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/270/0,box=15.998000/11.000000/0.000000:16.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/270/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/270/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%big_dripleaf,state=facing=west/tilt=none,box=0.000000/15.000000/0.000000:16.000000/15.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/11.000000/0.000000:16.000000/15.000000/0.002000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/16.000000/0.000000/0.000000/4.000000:R/0/270/0,box=0.000000/11.000000/0.000000:0.002000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/270/0,box=15.998000/11.000000/0.000000:16.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/270/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/270/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%big_dripleaf,state=facing=west/tilt=partial,box=0.000000/15.000000/0.000000:16.000000/15.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/11.000000/0.000000:16.000000/15.000000/0.000000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=0.000000/11.000000/0.000000:0.002000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/270/0,box=15.998000/11.000000/0.000000:16.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/270/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/270/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%big_dripleaf,state=facing=west/tilt=unstable,box=0.000000/15.000000/0.000000:16.000000/15.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/11.000000/0.000000:16.000000/15.000000/0.002000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/16.000000/0.000000/0.000000/4.000000:R/0/270/0,box=0.000000/11.000000/0.000000:0.002000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/270/0,box=15.998000/11.000000/0.000000:16.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000:R/0/270/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/270/0,box=5.000000/0.000000/12.000000:11.000000/15.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%big_dripleaf_stem,state=facing=east,box=5.000000/0.000000/12.000000:11.000000/16.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/90/0,box=5.000000/0.000000/12.000000:11.000000/16.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%big_dripleaf_stem,state=facing=north,box=5.000000/0.000000/12.000000:11.000000/16.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000/45/y/8/8/12,box=5.000000/0.000000/12.000000:11.000000/16.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000/-45/y/8/8/12 +[1.21.4-]modellist:id=%big_dripleaf_stem,state=facing=south,box=5.000000/0.000000/12.000000:11.000000/16.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/180/0,box=5.000000/0.000000/12.000000:11.000000/16.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%big_dripleaf_stem,state=facing=west,box=5.000000/0.000000/12.000000:11.000000/16.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/270/0,box=5.000000/0.000000/12.000000:11.000000/16.000000/12.000000:n/0/3.000000/0.000000/14.000000/16.000000:s/0/3.000000/0.000000/14.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_button,state=face=ceiling/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%birch_button,state=face=ceiling/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%birch_button,state=face=ceiling/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%birch_button,state=face=ceiling/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%birch_button,state=face=ceiling/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%birch_button,state=face=ceiling/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%birch_button,state=face=ceiling/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%birch_button,state=face=ceiling/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%birch_button,state=face=floor/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_button,state=face=floor/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_button,state=face=floor/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%birch_button,state=face=floor/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%birch_button,state=face=floor/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_button,state=face=floor/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_button,state=face=floor/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_button,state=face=floor/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_button,state=face=wall/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%birch_button,state=face=wall/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%birch_button,state=face=wall/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%birch_button,state=face=wall/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%birch_button,state=face=wall/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%birch_button,state=face=wall/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%birch_button,state=face=wall/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%birch_button,state=face=wall/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%birch_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%birch_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%birch_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%birch_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%birch_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%birch_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%birch_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%birch_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%birch_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_fence,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000 +[1.21.4-]modellist:id=%birch_fence,state=east:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_fence,state=north:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%birch_fence,state=south:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_fence,state=west:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_fence_gate,state=facing=east/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_fence_gate,state=facing=east/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_fence_gate,state=facing=east/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_fence_gate,state=facing=east/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_fence_gate,state=facing=north/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_fence_gate,state=facing=north/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_fence_gate,state=facing=north/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_fence_gate,state=facing=north/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_fence_gate,state=facing=south/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%birch_fence_gate,state=facing=south/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%birch_fence_gate,state=facing=south/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%birch_fence_gate,state=facing=south/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%birch_fence_gate,state=facing=west/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_fence_gate,state=facing=west/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_fence_gate,state=facing=west/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_fence_gate,state=facing=west/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_pressure_plate,state=powered=false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%birch_pressure_plate,state=powered=true,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%birch_sapling,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%birch_shelf,state=facing:east,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/90/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/90/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_shelf,state=facing:east/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_shelf,state=facing:east/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_shelf,state=facing:east/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_shelf,state=facing:east/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_shelf,state=facing:east/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_shelf,state=facing:north,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000 +[1.21.4-]modellist:id=%birch_shelf,state=facing:north/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000 +[1.21.4-]modellist:id=%birch_shelf,state=facing:north/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%birch_shelf,state=facing:north/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000 +[1.21.4-]modellist:id=%birch_shelf,state=facing:north/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000 +[1.21.4-]modellist:id=%birch_shelf,state=facing:north/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%birch_shelf,state=facing:south,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/180/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/180/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_shelf,state=facing:south/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_shelf,state=facing:south/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_shelf,state=facing:south/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_shelf,state=facing:south/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_shelf,state=facing:south/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_shelf,state=facing:west,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/270/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/270/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_shelf,state=facing:west/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_shelf,state=facing:west/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_shelf,state=facing:west/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_shelf,state=facing:west/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_shelf,state=facing:west/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%birch_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%birch_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%birch_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%birch_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%birch_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%birch_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%birch_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%birch_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%birch_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%birch_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/270/0 +[1.21.4-]modellist:id=%birch_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%birch_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%birch_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%birch_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/180/0 +[1.21.4-]modellist:id=%birch_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%birch_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/0/0 +[1.21.4-]modellist:id=%birch_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%birch_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/90/0 +[1.21.4-]modellist:id=%black_candle,state=candles=1/lit=false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%black_candle,state=candles=1/lit=true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%black_candle,state=candles=2/lit=false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%black_candle,state=candles=2/lit=true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%black_candle,state=candles=3/lit=false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%black_candle,state=candles=3/lit=true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%black_candle,state=candles=4/lit=false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%black_candle,state=candles=4/lit=true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%black_candle_cake,state=lit=false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%black_candle_cake,state=lit=true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%black_carpet,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%black_stained_glass_pane,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%black_stained_glass_pane,state=east:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%black_stained_glass_pane,state=east:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%black_stained_glass_pane,state=north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%black_stained_glass_pane,state=north:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%black_stained_glass_pane,state=south:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%black_stained_glass_pane,state=south:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%black_stained_glass_pane,state=west:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%black_stained_glass_pane,state=west:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%blackstone_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%blackstone_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%blackstone_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%blackstone_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%blackstone_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%blackstone_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%blackstone_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%blackstone_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%blackstone_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%blackstone_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%blackstone_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%blackstone_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%blue_candle,state=candles=1/lit=false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%blue_candle,state=candles=1/lit=true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%blue_candle,state=candles=2/lit=false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%blue_candle,state=candles=2/lit=true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%blue_candle,state=candles=3/lit=false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%blue_candle,state=candles=3/lit=true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%blue_candle,state=candles=4/lit=false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%blue_candle,state=candles=4/lit=true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%blue_candle_cake,state=lit=false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%blue_candle_cake,state=lit=true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%blue_carpet,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%blue_orchid,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%blue_stained_glass_pane,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%blue_stained_glass_pane,state=east:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%blue_stained_glass_pane,state=east:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%blue_stained_glass_pane,state=north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%blue_stained_glass_pane,state=north:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%blue_stained_glass_pane,state=south:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%blue_stained_glass_pane,state=south:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%blue_stained_glass_pane,state=west:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%blue_stained_glass_pane,state=west:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%brain_coral,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%brain_coral_fan,box=8.000000/0.000000/0.000000:24.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/z/8/0/0,box=-8.000000/0.000000/0.000000:8.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/z/8/0/0,box=0.000000/0.000000/8.000000:16.000000/0.000000/24.000000:d/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/16.000000/0.000000/0.000000/-22.5/x/0/0/8,box=0.000000/0.000000/-8.000000:16.000000/0.000000/8.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/0/0/8 +[1.21.4-]modellist:id=%brain_coral_wall_fan,state=facing=east,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%brain_coral_wall_fan,state=facing=north,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/8/8/14,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/x/8/8/14 +[1.21.4-]modellist:id=%brain_coral_wall_fan,state=facing=south,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%brain_coral_wall_fan,state=facing=west,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%brewing_stand,box=7.000000/0.000000/7.000000:9.000000/14.000000/9.000000:n/0/7.000000/2.000000/9.000000/16.000000:d/0/7.000000/7.000000/9.000000/9.000000:w/0/7.000000/2.000000/9.000000/16.000000:e/0/7.000000/2.000000/9.000000/16.000000:s/0/7.000000/2.000000/9.000000/16.000000:u/0/7.000000/7.000000/9.000000/9.000000,box=9.000000/0.000000/5.000000:15.000000/2.000000/11.000000:n/0/9.000000/14.000000/15.000000/16.000000:d/0/9.000000/5.000000/15.000000/11.000000:w/0/5.000000/14.000000/11.000000/16.000000:e/0/5.000000/14.000000/11.000000/16.000000:s/0/9.000000/14.000000/15.000000/16.000000:u/0/9.000000/5.000000/15.000000/11.000000,box=1.000000/0.000000/1.000000:7.000000/2.000000/7.000000:n/0/1.000000/14.000000/7.000000/16.000000:d/0/1.000000/1.000000/7.000000/7.000000:w/0/1.000000/14.000000/7.000000/16.000000:e/0/1.000000/14.000000/7.000000/16.000000:s/0/1.000000/14.000000/7.000000/16.000000:u/0/1.000000/1.000000/7.000000/7.000000,box=1.000000/0.000000/9.000000:7.000000/2.000000/15.000000:n/0/1.000000/14.000000/7.000000/16.000000:d/0/1.000000/9.000000/7.000000/15.000000:w/0/9.000000/14.000000/15.000000/16.000000:e/0/9.000000/14.000000/15.000000/16.000000:s/0/1.000000/14.000000/7.000000/16.000000:u/0/1.000000/9.000000/7.000000/15.000000 +[1.21.4-]modellist:id=%brewing_stand,state=has_bottle_0:false,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:n/0/16.000000/0.000000/8.000000/16.000000:s/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%brewing_stand,state=has_bottle_0:true,box=8.000000/0.000000/8.000000:16.000000/16.000000/8.000000:n/0/0.000000/0.000000/8.000000/16.000000:s/0/8.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%brewing_stand,state=has_bottle_1:false,box=-0.410000/0.000000/8.000000:7.590000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/8.000000/16.000000/-45/y/8/8/8 +[1.21.4-]modellist:id=%brewing_stand,state=has_bottle_1:true,box=-0.410000/0.000000/8.000000:7.590000/16.000000/8.000000:n/0/8.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/8.000000/16.000000/-45/y/8/8/8 +[1.21.4-]modellist:id=%brewing_stand,state=has_bottle_2:false,box=-0.410000/0.000000/8.000000:7.590000/16.000000/8.000000:n/0/8.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/8.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%brewing_stand,state=has_bottle_2:true,box=-0.410000/0.000000/8.000000:7.590000/16.000000/8.000000:n/0/8.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/8.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%brick_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%brick_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%brick_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%brick_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%brick_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%brick_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%brick_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%brick_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%brick_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%brick_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%brick_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%brick_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%brick_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%brick_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%brick_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%brick_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%brick_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%brick_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%brown_candle,state=candles=1/lit=false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%brown_candle,state=candles=1/lit=true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%brown_candle,state=candles=2/lit=false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%brown_candle,state=candles=2/lit=true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%brown_candle,state=candles=3/lit=false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%brown_candle,state=candles=3/lit=true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%brown_candle,state=candles=4/lit=false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%brown_candle,state=candles=4/lit=true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%brown_candle_cake,state=lit=false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%brown_candle_cake,state=lit=true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%brown_carpet,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%brown_mushroom,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%brown_mushroom_block,state=down:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%brown_mushroom_block,state=down:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%brown_mushroom_block,state=east:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%brown_mushroom_block,state=east:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%brown_mushroom_block,state=north:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%brown_mushroom_block,state=north:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%brown_mushroom_block,state=south:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%brown_mushroom_block,state=south:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%brown_mushroom_block,state=up:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%brown_mushroom_block,state=up:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%brown_mushroom_block,state=west:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%brown_mushroom_block,state=west:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%brown_stained_glass_pane,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%brown_stained_glass_pane,state=east:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%brown_stained_glass_pane,state=east:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%brown_stained_glass_pane,state=north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%brown_stained_glass_pane,state=north:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%brown_stained_glass_pane,state=south:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%brown_stained_glass_pane,state=south:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%brown_stained_glass_pane,state=west:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%brown_stained_glass_pane,state=west:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%bubble_coral,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%bubble_coral_fan,box=8.000000/0.000000/0.000000:24.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/z/8/0/0,box=-8.000000/0.000000/0.000000:8.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/z/8/0/0,box=0.000000/0.000000/8.000000:16.000000/0.000000/24.000000:d/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/16.000000/0.000000/0.000000/-22.5/x/0/0/8,box=0.000000/0.000000/-8.000000:16.000000/0.000000/8.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/0/0/8 +[1.21.4-]modellist:id=%bubble_coral_wall_fan,state=facing=east,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%bubble_coral_wall_fan,state=facing=north,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/8/8/14,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/x/8/8/14 +[1.21.4-]modellist:id=%bubble_coral_wall_fan,state=facing=south,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%bubble_coral_wall_fan,state=facing=west,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%bush,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%cactus,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/1.000000:16.000000/16.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=1.000000/0.000000/0.000000:15.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cactus_flower,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%cake,state=bites=0,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cake,state=bites=1,box=3.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cake,state=bites=2,box=5.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cake,state=bites=3,box=7.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cake,state=bites=4,box=9.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cake,state=bites=5,box=11.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cake,state=bites=6,box=13.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%calibrated_sculk_sensor,state=facing=east/sculk_sensor_phase=active,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/90/0,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/90/0,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/90/0,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:8.000000/20.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:16.000000/20.000000/8.000000:n/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/4.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%calibrated_sculk_sensor,state=facing=east/sculk_sensor_phase=cooldown,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/90/0,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/90/0,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/90/0,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:8.000000/20.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:16.000000/20.000000/8.000000:n/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/4.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%calibrated_sculk_sensor,state=facing=east/sculk_sensor_phase=inactive,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/90/0,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/90/0,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/90/0,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:8.000000/20.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:16.000000/20.000000/8.000000:n/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/4.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%calibrated_sculk_sensor,state=facing=north/sculk_sensor_phase=active,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000/45/y/3/12/3,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000/-45/y/13/12/3,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000/45/y/13/12/13,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000/-45/y/3/12/13,box=8.000000/8.000000/0.000000:8.000000/20.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000/45/y/8/9/8,box=0.000000/8.000000/8.000000:16.000000/20.000000/8.000000:n/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/4.000000/16.000000/16.000000/45/y/8/9/8 +[1.21.4-]modellist:id=%calibrated_sculk_sensor,state=facing=north/sculk_sensor_phase=cooldown,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000/45/y/3/12/3,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000/-45/y/13/12/3,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000/45/y/13/12/13,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000/-45/y/3/12/13,box=8.000000/8.000000/0.000000:8.000000/20.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000/45/y/8/9/8,box=0.000000/8.000000/8.000000:16.000000/20.000000/8.000000:n/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/4.000000/16.000000/16.000000/45/y/8/9/8 +[1.21.4-]modellist:id=%calibrated_sculk_sensor,state=facing=north/sculk_sensor_phase=inactive,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000/45/y/3/12/3,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000/-45/y/13/12/3,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000/45/y/13/12/13,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000/-45/y/3/12/13,box=8.000000/8.000000/0.000000:8.000000/20.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000/45/y/8/9/8,box=0.000000/8.000000/8.000000:16.000000/20.000000/8.000000:n/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/4.000000/16.000000/16.000000/45/y/8/9/8 +[1.21.4-]modellist:id=%calibrated_sculk_sensor,state=facing=south/sculk_sensor_phase=active,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/180/0,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/180/0,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/180/0,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:8.000000/20.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:16.000000/20.000000/8.000000:n/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/4.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%calibrated_sculk_sensor,state=facing=south/sculk_sensor_phase=cooldown,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/180/0,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/180/0,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/180/0,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:8.000000/20.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:16.000000/20.000000/8.000000:n/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/4.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%calibrated_sculk_sensor,state=facing=south/sculk_sensor_phase=inactive,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/180/0,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/180/0,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/180/0,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:8.000000/20.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:16.000000/20.000000/8.000000:n/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/4.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%calibrated_sculk_sensor,state=facing=west/sculk_sensor_phase=active,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/270/0,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/270/0,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/270/0,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:8.000000/20.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:16.000000/20.000000/8.000000:n/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/4.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%calibrated_sculk_sensor,state=facing=west/sculk_sensor_phase=cooldown,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/270/0,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/270/0,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/270/0,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:8.000000/20.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:16.000000/20.000000/8.000000:n/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/4.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%calibrated_sculk_sensor,state=facing=west/sculk_sensor_phase=inactive,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/270/0,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/270/0,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000:R/0/270/0,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:8.000000/20.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:16.000000/20.000000/8.000000:n/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/4.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%campfire,state=facing=east/lit=false,box=1.000000/0.000000/0.000000:5.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/0.000000/0.000000/4.000000:e/0/0.000000/1.000000/16.000000/5.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=0.000000/3.000000/11.000000:16.000000/7.000000/15.000000:n/0/16.000000/0.000000/0.000000/4.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=11.000000/0.000000/0.000000:15.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/1.000000/0.000000/5.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=0.000000/3.000000/1.000000:16.000000/7.000000/5.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/16.000000/0.000000/0.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/1.000000/16.000000:n/0/0.000000/15.000000/6.000000/16.000000:d/0/0.000000/8.000000/16.000000/14.000000:s/0/10.000000/15.000000/16.000000/16.000000:u/0/0.000000/8.000000/16.000000/14.000000:R/0/270/0 +[1.21.4-]modellist:id=%campfire,state=facing=east/lit=true,box=1.000000/0.000000/0.000000:5.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/0.000000/0.000000/4.000000:e/0/0.000000/1.000000/16.000000/5.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=0.000000/3.000000/11.000000:16.000000/7.000000/15.000000:n/0/16.000000/0.000000/0.000000/4.000000:d/0/0.000000/4.000000/16.000000/8.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=11.000000/0.000000/0.000000:15.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/1.000000/0.000000/5.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=0.000000/3.000000/1.000000:16.000000/7.000000/5.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/4.000000/16.000000/8.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/16.000000/0.000000/0.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/1.000000/16.000000:n/0/0.000000/15.000000/6.000000/16.000000:d/0/0.000000/8.000000/16.000000/14.000000:s/0/10.000000/15.000000/16.000000/16.000000:u/0/0.000000/8.000000/16.000000/14.000000:R/0/270/0,box=0.800000/1.000000/8.000000:15.200000/17.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/1.000000/0.800000:8.000000/17.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%campfire,state=facing=north/lit=false,box=1.000000/0.000000/0.000000:5.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/0.000000/0.000000/4.000000:e/0/0.000000/1.000000/16.000000/5.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=0.000000/3.000000/11.000000:16.000000/7.000000/15.000000:n/0/16.000000/0.000000/0.000000/4.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=11.000000/0.000000/0.000000:15.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/1.000000/0.000000/5.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=0.000000/3.000000/1.000000:16.000000/7.000000/5.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/16.000000/0.000000/0.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/1.000000/16.000000:n/0/0.000000/15.000000/6.000000/16.000000:d/0/0.000000/8.000000/16.000000/14.000000:s/0/10.000000/15.000000/16.000000/16.000000:u/0/0.000000/8.000000/16.000000/14.000000:R/0/180/0 +[1.21.4-]modellist:id=%campfire,state=facing=north/lit=true,box=1.000000/0.000000/0.000000:5.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/0.000000/0.000000/4.000000:e/0/0.000000/1.000000/16.000000/5.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=0.000000/3.000000/11.000000:16.000000/7.000000/15.000000:n/0/16.000000/0.000000/0.000000/4.000000:d/0/0.000000/4.000000/16.000000/8.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=11.000000/0.000000/0.000000:15.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/1.000000/0.000000/5.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=0.000000/3.000000/1.000000:16.000000/7.000000/5.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/4.000000/16.000000/8.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/16.000000/0.000000/0.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/1.000000/16.000000:n/0/0.000000/15.000000/6.000000/16.000000:d/0/0.000000/8.000000/16.000000/14.000000:s/0/10.000000/15.000000/16.000000/16.000000:u/0/0.000000/8.000000/16.000000/14.000000:R/0/180/0,box=0.800000/1.000000/8.000000:15.200000/17.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/1.000000/0.800000:8.000000/17.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%campfire,state=facing=south/lit=false,box=1.000000/0.000000/0.000000:5.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/0.000000/0.000000/4.000000:e/0/0.000000/1.000000/16.000000/5.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=0.000000/3.000000/11.000000:16.000000/7.000000/15.000000:n/0/16.000000/0.000000/0.000000/4.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=11.000000/0.000000/0.000000:15.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/1.000000/0.000000/5.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=0.000000/3.000000/1.000000:16.000000/7.000000/5.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/16.000000/0.000000/0.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=5.000000/0.000000/0.000000:11.000000/1.000000/16.000000:n/0/0.000000/15.000000/6.000000/16.000000:d/0/0.000000/8.000000/16.000000/14.000000:s/0/10.000000/15.000000/16.000000/16.000000:u/0/0.000000/8.000000/16.000000/14.000000 +[1.21.4-]modellist:id=%campfire,state=facing=south/lit=true,box=1.000000/0.000000/0.000000:5.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/0.000000/0.000000/4.000000:e/0/0.000000/1.000000/16.000000/5.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=0.000000/3.000000/11.000000:16.000000/7.000000/15.000000:n/0/16.000000/0.000000/0.000000/4.000000:d/0/0.000000/4.000000/16.000000/8.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=11.000000/0.000000/0.000000:15.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/1.000000/0.000000/5.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=0.000000/3.000000/1.000000:16.000000/7.000000/5.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/4.000000/16.000000/8.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/16.000000/0.000000/0.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=5.000000/0.000000/0.000000:11.000000/1.000000/16.000000:n/0/0.000000/15.000000/6.000000/16.000000:d/0/0.000000/8.000000/16.000000/14.000000:s/0/10.000000/15.000000/16.000000/16.000000:u/0/0.000000/8.000000/16.000000/14.000000,box=0.800000/1.000000/8.000000:15.200000/17.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/1.000000/0.800000:8.000000/17.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%campfire,state=facing=west/lit=false,box=1.000000/0.000000/0.000000:5.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/0.000000/0.000000/4.000000:e/0/0.000000/1.000000/16.000000/5.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=0.000000/3.000000/11.000000:16.000000/7.000000/15.000000:n/0/16.000000/0.000000/0.000000/4.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=11.000000/0.000000/0.000000:15.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/1.000000/0.000000/5.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=0.000000/3.000000/1.000000:16.000000/7.000000/5.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/16.000000/0.000000/0.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/1.000000/16.000000:n/0/0.000000/15.000000/6.000000/16.000000:d/0/0.000000/8.000000/16.000000/14.000000:s/0/10.000000/15.000000/16.000000/16.000000:u/0/0.000000/8.000000/16.000000/14.000000:R/0/90/0 +[1.21.4-]modellist:id=%campfire,state=facing=west/lit=true,box=1.000000/0.000000/0.000000:5.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/0.000000/0.000000/4.000000:e/0/0.000000/1.000000/16.000000/5.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=0.000000/3.000000/11.000000:16.000000/7.000000/15.000000:n/0/16.000000/0.000000/0.000000/4.000000:d/0/0.000000/4.000000/16.000000/8.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=11.000000/0.000000/0.000000:15.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/1.000000/0.000000/5.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=0.000000/3.000000/1.000000:16.000000/7.000000/5.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/4.000000/16.000000/8.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/16.000000/0.000000/0.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/1.000000/16.000000:n/0/0.000000/15.000000/6.000000/16.000000:d/0/0.000000/8.000000/16.000000/14.000000:s/0/10.000000/15.000000/16.000000/16.000000:u/0/0.000000/8.000000/16.000000/14.000000:R/0/90/0,box=0.800000/1.000000/8.000000:15.200000/17.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/1.000000/0.800000:8.000000/17.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%candle,state=candles=1/lit=false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%candle,state=candles=1/lit=true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%candle,state=candles=2/lit=false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%candle,state=candles=2/lit=true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%candle,state=candles=3/lit=false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%candle,state=candles=3/lit=true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%candle,state=candles=4/lit=false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%candle,state=candles=4/lit=true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%candle_cake,state=lit=false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%candle_cake,state=lit=true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%carrots,state=age=0,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%carrots,state=age=1,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%carrots,state=age=2,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%carrots,state=age=3,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%carrots,state=age=4,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%carrots,state=age=5,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%carrots,state=age=6,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%carrots,state=age=7,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cauldron,box=0.000000/3.000000/0.000000:2.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/2.000000:14.000000/4.000000/14.000000:d/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/3.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/0.000000:14.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/14.000000:14.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:4.000000/3.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/2.000000:2.000000/3.000000/4.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/0.000000:16.000000/3.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/2.000000:16.000000/3.000000/4.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/14.000000:4.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/12.000000:2.000000/3.000000/14.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/14.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/12.000000:16.000000/3.000000/14.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cave_vines,state=berries=false,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%cave_vines,state=berries=true,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%cave_vines_plant,state=berries=false,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%cave_vines_plant,state=berries=true,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%chain,state=axis=x,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/90/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%chain,state=axis=y,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%chain,state=axis=z,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/0/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%cherry_button,state=face=ceiling/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%cherry_button,state=face=ceiling/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%cherry_button,state=face=ceiling/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%cherry_button,state=face=ceiling/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%cherry_button,state=face=ceiling/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%cherry_button,state=face=ceiling/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%cherry_button,state=face=ceiling/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%cherry_button,state=face=ceiling/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%cherry_button,state=face=floor/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_button,state=face=floor/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_button,state=face=floor/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%cherry_button,state=face=floor/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%cherry_button,state=face=floor/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_button,state=face=floor/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_button,state=face=floor/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_button,state=face=floor/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_button,state=face=wall/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%cherry_button,state=face=wall/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%cherry_button,state=face=wall/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%cherry_button,state=face=wall/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%cherry_button,state=face=wall/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%cherry_button,state=face=wall/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%cherry_button,state=face=wall/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%cherry_button,state=face=wall/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%cherry_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%cherry_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%cherry_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%cherry_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%cherry_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%cherry_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%cherry_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%cherry_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_fence,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000 +[1.21.4-]modellist:id=%cherry_fence,state=east:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_fence,state=north:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%cherry_fence,state=south:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_fence,state=west:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_fence_gate,state=facing=east/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_fence_gate,state=facing=east/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_fence_gate,state=facing=east/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_fence_gate,state=facing=east/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_fence_gate,state=facing=north/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_fence_gate,state=facing=north/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_fence_gate,state=facing=north/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_fence_gate,state=facing=north/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_fence_gate,state=facing=south/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%cherry_fence_gate,state=facing=south/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%cherry_fence_gate,state=facing=south/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%cherry_fence_gate,state=facing=south/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%cherry_fence_gate,state=facing=west/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_fence_gate,state=facing=west/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_fence_gate,state=facing=west/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_fence_gate,state=facing=west/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_pressure_plate,state=powered=false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%cherry_pressure_plate,state=powered=true,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%cherry_sapling,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:east,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/90/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/90/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:east/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:east/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:east/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:east/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:east/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:north,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:north/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:north/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:north/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:north/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:north/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:south,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/180/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/180/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:south/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:south/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:south/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:south/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:south/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:west,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/270/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/270/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:west/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:west/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:west/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:west/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_shelf,state=facing:west/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cherry_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cherry_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cherry_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%cherry_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/270/0 +[1.21.4-]modellist:id=%cherry_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%cherry_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%cherry_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%cherry_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/180/0 +[1.21.4-]modellist:id=%cherry_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%cherry_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/0/0 +[1.21.4-]modellist:id=%cherry_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%cherry_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/90/0 +[1.21.4-]modellist:id=%chipped_anvil,state=facing=east,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:n/0/2.000000/12.000000/14.000000/16.000000:d/0/2.000000/2.000000/14.000000/14.000000:w/0/0.000000/2.000000/4.000000/14.000000:e/0/4.000000/2.000000/0.000000/14.000000:s/0/2.000000/12.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000:R/0/270/0,box=4.000000/4.000000/3.000000:12.000000/5.000000/13.000000:n/0/4.000000/11.000000/12.000000/12.000000:w/0/4.000000/3.000000/5.000000/13.000000:e/0/5.000000/3.000000/4.000000/13.000000:s/0/4.000000/11.000000/12.000000/12.000000:u/0/4.000000/3.000000/12.000000/13.000000:R/0/270/0,box=6.000000/5.000000/4.000000:10.000000/10.000000/12.000000:n/0/6.000000/6.000000/10.000000/11.000000:w/0/5.000000/4.000000/10.000000/12.000000:e/0/10.000000/4.000000/5.000000/12.000000:s/0/6.000000/6.000000/10.000000/11.000000:R/0/270/0,box=3.000000/10.000000/0.000000:13.000000/16.000000/16.000000:n/0/3.000000/0.000000/13.000000/6.000000:d/0/3.000000/0.000000/13.000000/16.000000:w/0/10.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/10.000000/16.000000:s/0/3.000000/0.000000/13.000000/6.000000:u/0/3.000000/0.000000/13.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%chipped_anvil,state=facing=north,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:n/0/2.000000/12.000000/14.000000/16.000000:d/0/2.000000/2.000000/14.000000/14.000000:w/0/0.000000/2.000000/4.000000/14.000000:e/0/4.000000/2.000000/0.000000/14.000000:s/0/2.000000/12.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000:R/0/180/0,box=4.000000/4.000000/3.000000:12.000000/5.000000/13.000000:n/0/4.000000/11.000000/12.000000/12.000000:w/0/4.000000/3.000000/5.000000/13.000000:e/0/5.000000/3.000000/4.000000/13.000000:s/0/4.000000/11.000000/12.000000/12.000000:u/0/4.000000/3.000000/12.000000/13.000000:R/0/180/0,box=6.000000/5.000000/4.000000:10.000000/10.000000/12.000000:n/0/6.000000/6.000000/10.000000/11.000000:w/0/5.000000/4.000000/10.000000/12.000000:e/0/10.000000/4.000000/5.000000/12.000000:s/0/6.000000/6.000000/10.000000/11.000000:R/0/180/0,box=3.000000/10.000000/0.000000:13.000000/16.000000/16.000000:n/0/3.000000/0.000000/13.000000/6.000000:d/0/3.000000/0.000000/13.000000/16.000000:w/0/10.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/10.000000/16.000000:s/0/3.000000/0.000000/13.000000/6.000000:u/0/3.000000/0.000000/13.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%chipped_anvil,state=facing=south,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:n/0/2.000000/12.000000/14.000000/16.000000:d/0/2.000000/2.000000/14.000000/14.000000:w/0/0.000000/2.000000/4.000000/14.000000:e/0/4.000000/2.000000/0.000000/14.000000:s/0/2.000000/12.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000,box=4.000000/4.000000/3.000000:12.000000/5.000000/13.000000:n/0/4.000000/11.000000/12.000000/12.000000:w/0/4.000000/3.000000/5.000000/13.000000:e/0/5.000000/3.000000/4.000000/13.000000:s/0/4.000000/11.000000/12.000000/12.000000:u/0/4.000000/3.000000/12.000000/13.000000,box=6.000000/5.000000/4.000000:10.000000/10.000000/12.000000:n/0/6.000000/6.000000/10.000000/11.000000:w/0/5.000000/4.000000/10.000000/12.000000:e/0/10.000000/4.000000/5.000000/12.000000:s/0/6.000000/6.000000/10.000000/11.000000,box=3.000000/10.000000/0.000000:13.000000/16.000000/16.000000:n/0/3.000000/0.000000/13.000000/6.000000:d/0/3.000000/0.000000/13.000000/16.000000:w/0/10.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/10.000000/16.000000:s/0/3.000000/0.000000/13.000000/6.000000:u/0/3.000000/0.000000/13.000000/16.000000 +[1.21.4-]modellist:id=%chipped_anvil,state=facing=west,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:n/0/2.000000/12.000000/14.000000/16.000000:d/0/2.000000/2.000000/14.000000/14.000000:w/0/0.000000/2.000000/4.000000/14.000000:e/0/4.000000/2.000000/0.000000/14.000000:s/0/2.000000/12.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000:R/0/90/0,box=4.000000/4.000000/3.000000:12.000000/5.000000/13.000000:n/0/4.000000/11.000000/12.000000/12.000000:w/0/4.000000/3.000000/5.000000/13.000000:e/0/5.000000/3.000000/4.000000/13.000000:s/0/4.000000/11.000000/12.000000/12.000000:u/0/4.000000/3.000000/12.000000/13.000000:R/0/90/0,box=6.000000/5.000000/4.000000:10.000000/10.000000/12.000000:n/0/6.000000/6.000000/10.000000/11.000000:w/0/5.000000/4.000000/10.000000/12.000000:e/0/10.000000/4.000000/5.000000/12.000000:s/0/6.000000/6.000000/10.000000/11.000000:R/0/90/0,box=3.000000/10.000000/0.000000:13.000000/16.000000/16.000000:n/0/3.000000/0.000000/13.000000/6.000000:d/0/3.000000/0.000000/13.000000/16.000000:w/0/10.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/10.000000/16.000000:s/0/3.000000/0.000000/13.000000/6.000000:u/0/3.000000/0.000000/13.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:east/slot_0_occupied:false,box=10.000000/8.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/6.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:east/slot_0_occupied:true,box=10.000000/8.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/6.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:east/slot_1_occupied:false,box=5.000000/8.000000/0.000000:10.000000/16.000000/0.000000:n/0/6.000000/0.000000/11.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:east/slot_1_occupied:true,box=5.000000/8.000000/0.000000:10.000000/16.000000/0.000000:n/0/6.000000/0.000000/11.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:east/slot_2_occupied:false,box=0.000000/8.000000/0.000000:5.000000/16.000000/0.000000:n/0/11.000000/0.000000/16.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:east/slot_2_occupied:true,box=0.000000/8.000000/0.000000:5.000000/16.000000/0.000000:n/0/11.000000/0.000000/16.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:east/slot_3_occupied:false,box=10.000000/0.000000/0.000000:16.000000/8.000000/0.000000:n/0/0.000000/8.000000/6.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:east/slot_3_occupied:true,box=10.000000/0.000000/0.000000:16.000000/8.000000/0.000000:n/0/0.000000/8.000000/6.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:east/slot_4_occupied:false,box=5.000000/0.000000/0.000000:10.000000/8.000000/0.000000:n/0/6.000000/8.000000/11.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:east/slot_4_occupied:true,box=5.000000/0.000000/0.000000:10.000000/8.000000/0.000000:n/0/6.000000/8.000000/11.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:east/slot_5_occupied:false,box=0.000000/0.000000/0.000000:5.000000/8.000000/0.000000:n/0/11.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:east/slot_5_occupied:true,box=0.000000/0.000000/0.000000:5.000000/8.000000/0.000000:n/0/11.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:north/slot_0_occupied:false,box=10.000000/8.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/6.000000/8.000000 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:north/slot_0_occupied:true,box=10.000000/8.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/6.000000/8.000000 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:north/slot_1_occupied:false,box=5.000000/8.000000/0.000000:10.000000/16.000000/0.000000:n/0/6.000000/0.000000/11.000000/8.000000 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:north/slot_1_occupied:true,box=5.000000/8.000000/0.000000:10.000000/16.000000/0.000000:n/0/6.000000/0.000000/11.000000/8.000000 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:north/slot_2_occupied:false,box=0.000000/8.000000/0.000000:5.000000/16.000000/0.000000:n/0/11.000000/0.000000/16.000000/8.000000 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:north/slot_2_occupied:true,box=0.000000/8.000000/0.000000:5.000000/16.000000/0.000000:n/0/11.000000/0.000000/16.000000/8.000000 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:north/slot_3_occupied:false,box=10.000000/0.000000/0.000000:16.000000/8.000000/0.000000:n/0/0.000000/8.000000/6.000000/16.000000 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:north/slot_3_occupied:true,box=10.000000/0.000000/0.000000:16.000000/8.000000/0.000000:n/0/0.000000/8.000000/6.000000/16.000000 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:north/slot_4_occupied:false,box=5.000000/0.000000/0.000000:10.000000/8.000000/0.000000:n/0/6.000000/8.000000/11.000000/16.000000 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:north/slot_4_occupied:true,box=5.000000/0.000000/0.000000:10.000000/8.000000/0.000000:n/0/6.000000/8.000000/11.000000/16.000000 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:north/slot_5_occupied:false,box=0.000000/0.000000/0.000000:5.000000/8.000000/0.000000:n/0/11.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:north/slot_5_occupied:true,box=0.000000/0.000000/0.000000:5.000000/8.000000/0.000000:n/0/11.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:south/slot_0_occupied:false,box=10.000000/8.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/6.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:south/slot_0_occupied:true,box=10.000000/8.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/6.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:south/slot_1_occupied:false,box=5.000000/8.000000/0.000000:10.000000/16.000000/0.000000:n/0/6.000000/0.000000/11.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:south/slot_1_occupied:true,box=5.000000/8.000000/0.000000:10.000000/16.000000/0.000000:n/0/6.000000/0.000000/11.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:south/slot_2_occupied:false,box=0.000000/8.000000/0.000000:5.000000/16.000000/0.000000:n/0/11.000000/0.000000/16.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:south/slot_2_occupied:true,box=0.000000/8.000000/0.000000:5.000000/16.000000/0.000000:n/0/11.000000/0.000000/16.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:south/slot_3_occupied:false,box=10.000000/0.000000/0.000000:16.000000/8.000000/0.000000:n/0/0.000000/8.000000/6.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:south/slot_3_occupied:true,box=10.000000/0.000000/0.000000:16.000000/8.000000/0.000000:n/0/0.000000/8.000000/6.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:south/slot_4_occupied:false,box=5.000000/0.000000/0.000000:10.000000/8.000000/0.000000:n/0/6.000000/8.000000/11.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:south/slot_4_occupied:true,box=5.000000/0.000000/0.000000:10.000000/8.000000/0.000000:n/0/6.000000/8.000000/11.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:south/slot_5_occupied:false,box=0.000000/0.000000/0.000000:5.000000/8.000000/0.000000:n/0/11.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:south/slot_5_occupied:true,box=0.000000/0.000000/0.000000:5.000000/8.000000/0.000000:n/0/11.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:west/slot_0_occupied:false,box=10.000000/8.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/6.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:west/slot_0_occupied:true,box=10.000000/8.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/6.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:west/slot_1_occupied:false,box=5.000000/8.000000/0.000000:10.000000/16.000000/0.000000:n/0/6.000000/0.000000/11.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:west/slot_1_occupied:true,box=5.000000/8.000000/0.000000:10.000000/16.000000/0.000000:n/0/6.000000/0.000000/11.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:west/slot_2_occupied:false,box=0.000000/8.000000/0.000000:5.000000/16.000000/0.000000:n/0/11.000000/0.000000/16.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:west/slot_2_occupied:true,box=0.000000/8.000000/0.000000:5.000000/16.000000/0.000000:n/0/11.000000/0.000000/16.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:west/slot_3_occupied:false,box=10.000000/0.000000/0.000000:16.000000/8.000000/0.000000:n/0/0.000000/8.000000/6.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:west/slot_3_occupied:true,box=10.000000/0.000000/0.000000:16.000000/8.000000/0.000000:n/0/0.000000/8.000000/6.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:west/slot_4_occupied:false,box=5.000000/0.000000/0.000000:10.000000/8.000000/0.000000:n/0/6.000000/8.000000/11.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:west/slot_4_occupied:true,box=5.000000/0.000000/0.000000:10.000000/8.000000/0.000000:n/0/6.000000/8.000000/11.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:west/slot_5_occupied:false,box=0.000000/0.000000/0.000000:5.000000/8.000000/0.000000:n/0/11.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%chiseled_bookshelf,state=facing:west/slot_5_occupied:true,box=0.000000/0.000000/0.000000:5.000000/8.000000/0.000000:n/0/11.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%chorus_flower,state=age=0,box=2.000000/14.000000/2.000000:14.000000/16.000000/14.000000:n/0/2.000000/0.000000/14.000000/2.000000:w/0/2.000000/0.000000/14.000000/2.000000:e/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:u/0/2.000000/2.000000/14.000000/14.000000,box=0.000000/2.000000/2.000000:2.000000/14.000000/14.000000:n/0/14.000000/2.000000/16.000000/14.000000:d/0/16.000000/14.000000/14.000000/2.000000:w/0/2.000000/2.000000/14.000000/14.000000:s/0/0.000000/2.000000/2.000000/14.000000:u/0/0.000000/2.000000/2.000000/14.000000,box=2.000000/2.000000/0.000000:14.000000/14.000000/2.000000:n/0/2.000000/2.000000/14.000000/14.000000:d/0/14.000000/2.000000/2.000000/0.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:u/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/2.000000/14.000000:14.000000/14.000000/16.000000:d/0/14.000000/16.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:s/0/2.000000/2.000000/14.000000/14.000000:u/0/2.000000/14.000000/14.000000/16.000000,box=14.000000/2.000000/2.000000:16.000000/14.000000/14.000000:n/0/0.000000/2.000000/2.000000/14.000000:d/0/2.000000/14.000000/0.000000/2.000000:e/0/2.000000/2.000000/14.000000/14.000000:s/0/14.000000/2.000000/16.000000/14.000000:u/0/14.000000/2.000000/16.000000/14.000000,box=2.000000/0.000000/2.000000:14.000000/14.000000/14.000000:n/0/2.000000/2.000000/14.000000/16.000000:d/0/14.000000/14.000000/2.000000/2.000000:w/0/2.000000/2.000000/14.000000/16.000000:e/0/2.000000/2.000000/14.000000/16.000000:s/0/2.000000/2.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000 +[1.21.4-]modellist:id=%chorus_flower,state=age=1,box=2.000000/14.000000/2.000000:14.000000/16.000000/14.000000:n/0/2.000000/0.000000/14.000000/2.000000:w/0/2.000000/0.000000/14.000000/2.000000:e/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:u/0/2.000000/2.000000/14.000000/14.000000,box=0.000000/2.000000/2.000000:2.000000/14.000000/14.000000:n/0/14.000000/2.000000/16.000000/14.000000:d/0/16.000000/14.000000/14.000000/2.000000:w/0/2.000000/2.000000/14.000000/14.000000:s/0/0.000000/2.000000/2.000000/14.000000:u/0/0.000000/2.000000/2.000000/14.000000,box=2.000000/2.000000/0.000000:14.000000/14.000000/2.000000:n/0/2.000000/2.000000/14.000000/14.000000:d/0/14.000000/2.000000/2.000000/0.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:u/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/2.000000/14.000000:14.000000/14.000000/16.000000:d/0/14.000000/16.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:s/0/2.000000/2.000000/14.000000/14.000000:u/0/2.000000/14.000000/14.000000/16.000000,box=14.000000/2.000000/2.000000:16.000000/14.000000/14.000000:n/0/0.000000/2.000000/2.000000/14.000000:d/0/2.000000/14.000000/0.000000/2.000000:e/0/2.000000/2.000000/14.000000/14.000000:s/0/14.000000/2.000000/16.000000/14.000000:u/0/14.000000/2.000000/16.000000/14.000000,box=2.000000/0.000000/2.000000:14.000000/14.000000/14.000000:n/0/2.000000/2.000000/14.000000/16.000000:d/0/14.000000/14.000000/2.000000/2.000000:w/0/2.000000/2.000000/14.000000/16.000000:e/0/2.000000/2.000000/14.000000/16.000000:s/0/2.000000/2.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000 +[1.21.4-]modellist:id=%chorus_flower,state=age=2,box=2.000000/14.000000/2.000000:14.000000/16.000000/14.000000:n/0/2.000000/0.000000/14.000000/2.000000:w/0/2.000000/0.000000/14.000000/2.000000:e/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:u/0/2.000000/2.000000/14.000000/14.000000,box=0.000000/2.000000/2.000000:2.000000/14.000000/14.000000:n/0/14.000000/2.000000/16.000000/14.000000:d/0/16.000000/14.000000/14.000000/2.000000:w/0/2.000000/2.000000/14.000000/14.000000:s/0/0.000000/2.000000/2.000000/14.000000:u/0/0.000000/2.000000/2.000000/14.000000,box=2.000000/2.000000/0.000000:14.000000/14.000000/2.000000:n/0/2.000000/2.000000/14.000000/14.000000:d/0/14.000000/2.000000/2.000000/0.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:u/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/2.000000/14.000000:14.000000/14.000000/16.000000:d/0/14.000000/16.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:s/0/2.000000/2.000000/14.000000/14.000000:u/0/2.000000/14.000000/14.000000/16.000000,box=14.000000/2.000000/2.000000:16.000000/14.000000/14.000000:n/0/0.000000/2.000000/2.000000/14.000000:d/0/2.000000/14.000000/0.000000/2.000000:e/0/2.000000/2.000000/14.000000/14.000000:s/0/14.000000/2.000000/16.000000/14.000000:u/0/14.000000/2.000000/16.000000/14.000000,box=2.000000/0.000000/2.000000:14.000000/14.000000/14.000000:n/0/2.000000/2.000000/14.000000/16.000000:d/0/14.000000/14.000000/2.000000/2.000000:w/0/2.000000/2.000000/14.000000/16.000000:e/0/2.000000/2.000000/14.000000/16.000000:s/0/2.000000/2.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000 +[1.21.4-]modellist:id=%chorus_flower,state=age=3,box=2.000000/14.000000/2.000000:14.000000/16.000000/14.000000:n/0/2.000000/0.000000/14.000000/2.000000:w/0/2.000000/0.000000/14.000000/2.000000:e/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:u/0/2.000000/2.000000/14.000000/14.000000,box=0.000000/2.000000/2.000000:2.000000/14.000000/14.000000:n/0/14.000000/2.000000/16.000000/14.000000:d/0/16.000000/14.000000/14.000000/2.000000:w/0/2.000000/2.000000/14.000000/14.000000:s/0/0.000000/2.000000/2.000000/14.000000:u/0/0.000000/2.000000/2.000000/14.000000,box=2.000000/2.000000/0.000000:14.000000/14.000000/2.000000:n/0/2.000000/2.000000/14.000000/14.000000:d/0/14.000000/2.000000/2.000000/0.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:u/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/2.000000/14.000000:14.000000/14.000000/16.000000:d/0/14.000000/16.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:s/0/2.000000/2.000000/14.000000/14.000000:u/0/2.000000/14.000000/14.000000/16.000000,box=14.000000/2.000000/2.000000:16.000000/14.000000/14.000000:n/0/0.000000/2.000000/2.000000/14.000000:d/0/2.000000/14.000000/0.000000/2.000000:e/0/2.000000/2.000000/14.000000/14.000000:s/0/14.000000/2.000000/16.000000/14.000000:u/0/14.000000/2.000000/16.000000/14.000000,box=2.000000/0.000000/2.000000:14.000000/14.000000/14.000000:n/0/2.000000/2.000000/14.000000/16.000000:d/0/14.000000/14.000000/2.000000/2.000000:w/0/2.000000/2.000000/14.000000/16.000000:e/0/2.000000/2.000000/14.000000/16.000000:s/0/2.000000/2.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000 +[1.21.4-]modellist:id=%chorus_flower,state=age=4,box=2.000000/14.000000/2.000000:14.000000/16.000000/14.000000:n/0/2.000000/0.000000/14.000000/2.000000:w/0/2.000000/0.000000/14.000000/2.000000:e/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:u/0/2.000000/2.000000/14.000000/14.000000,box=0.000000/2.000000/2.000000:2.000000/14.000000/14.000000:n/0/14.000000/2.000000/16.000000/14.000000:d/0/16.000000/14.000000/14.000000/2.000000:w/0/2.000000/2.000000/14.000000/14.000000:s/0/0.000000/2.000000/2.000000/14.000000:u/0/0.000000/2.000000/2.000000/14.000000,box=2.000000/2.000000/0.000000:14.000000/14.000000/2.000000:n/0/2.000000/2.000000/14.000000/14.000000:d/0/14.000000/2.000000/2.000000/0.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:u/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/2.000000/14.000000:14.000000/14.000000/16.000000:d/0/14.000000/16.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:s/0/2.000000/2.000000/14.000000/14.000000:u/0/2.000000/14.000000/14.000000/16.000000,box=14.000000/2.000000/2.000000:16.000000/14.000000/14.000000:n/0/0.000000/2.000000/2.000000/14.000000:d/0/2.000000/14.000000/0.000000/2.000000:e/0/2.000000/2.000000/14.000000/14.000000:s/0/14.000000/2.000000/16.000000/14.000000:u/0/14.000000/2.000000/16.000000/14.000000,box=2.000000/0.000000/2.000000:14.000000/14.000000/14.000000:n/0/2.000000/2.000000/14.000000/16.000000:d/0/14.000000/14.000000/2.000000/2.000000:w/0/2.000000/2.000000/14.000000/16.000000:e/0/2.000000/2.000000/14.000000/16.000000:s/0/2.000000/2.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000 +[1.21.4-]modellist:id=%chorus_flower,state=age=5,box=2.000000/14.000000/2.000000:14.000000/16.000000/14.000000:n/0/2.000000/0.000000/14.000000/2.000000:w/0/2.000000/0.000000/14.000000/2.000000:e/0/2.000000/0.000000/14.000000/2.000000:s/0/2.000000/0.000000/14.000000/2.000000:u/0/2.000000/2.000000/14.000000/14.000000,box=0.000000/2.000000/2.000000:2.000000/14.000000/14.000000:n/0/14.000000/2.000000/16.000000/14.000000:d/0/16.000000/14.000000/14.000000/2.000000:w/0/2.000000/2.000000/14.000000/14.000000:s/0/0.000000/2.000000/2.000000/14.000000:u/0/0.000000/2.000000/2.000000/14.000000,box=2.000000/2.000000/0.000000:14.000000/14.000000/2.000000:n/0/2.000000/2.000000/14.000000/14.000000:d/0/14.000000/2.000000/2.000000/0.000000:w/0/0.000000/2.000000/2.000000/14.000000:e/0/14.000000/2.000000/16.000000/14.000000:u/0/2.000000/0.000000/14.000000/2.000000,box=2.000000/2.000000/14.000000:14.000000/14.000000/16.000000:d/0/14.000000/16.000000/2.000000/14.000000:w/0/14.000000/2.000000/16.000000/14.000000:e/0/0.000000/2.000000/2.000000/14.000000:s/0/2.000000/2.000000/14.000000/14.000000:u/0/2.000000/14.000000/14.000000/16.000000,box=14.000000/2.000000/2.000000:16.000000/14.000000/14.000000:n/0/0.000000/2.000000/2.000000/14.000000:d/0/2.000000/14.000000/0.000000/2.000000:e/0/2.000000/2.000000/14.000000/14.000000:s/0/14.000000/2.000000/16.000000/14.000000:u/0/14.000000/2.000000/16.000000/14.000000,box=2.000000/0.000000/2.000000:14.000000/14.000000/14.000000:n/0/2.000000/2.000000/14.000000/16.000000:d/0/14.000000/14.000000/2.000000/2.000000:w/0/2.000000/2.000000/14.000000/16.000000:e/0/2.000000/2.000000/14.000000/16.000000:s/0/2.000000/2.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000 +[1.21.4-]modellist:id=%chorus_plant,state=down:false,box=4.000000/4.000000/4.000000:12.000000/12.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0,box=4.000000/4.000000/3.000000:12.000000/12.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%chorus_plant,state=down:true,box=4.000000/4.000000/0.000000:12.000000/12.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%chorus_plant,state=east:false,box=4.000000/4.000000/4.000000:12.000000/12.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=4.000000/4.000000/3.000000:12.000000/12.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%chorus_plant,state=east:true,box=4.000000/4.000000/0.000000:12.000000/12.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%chorus_plant,state=north:false,box=4.000000/4.000000/4.000000:12.000000/12.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%chorus_plant,state=north:true,box=4.000000/4.000000/0.000000:12.000000/12.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%chorus_plant,state=south:false,box=4.000000/4.000000/4.000000:12.000000/12.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=5.000000/5.000000/2.000000:11.000000/11.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%chorus_plant,state=south:true,box=4.000000/4.000000/0.000000:12.000000/12.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%chorus_plant,state=up:false,box=4.000000/4.000000/4.000000:12.000000/12.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%chorus_plant,state=up:true,box=4.000000/4.000000/0.000000:12.000000/12.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%chorus_plant,state=west:false,box=4.000000/4.000000/4.000000:12.000000/12.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=4.000000/4.000000/3.000000:12.000000/12.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%chorus_plant,state=west:true,box=4.000000/4.000000/0.000000:12.000000/12.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%closed_eyeblossom,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%cobbled_deepslate_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cobbled_deepslate_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cobbled_deepslate_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cobbled_deepslate_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cobbled_deepslate_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cobbled_deepslate_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cobbled_deepslate_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cobbled_deepslate_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cobbled_deepslate_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cobbled_deepslate_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cobbled_deepslate_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cobbled_deepslate_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cobblestone_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cobblestone_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cobblestone_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cobblestone_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cobblestone_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cobblestone_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cobblestone_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cobblestone_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cobblestone_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cobblestone_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cobblestone_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cobblestone_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cobweb,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%cocoa,state=age=0/facing=east,box=6.000000/7.000000/11.000000:10.000000/12.000000/15.000000:n/0/11.000000/4.000000/15.000000/9.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/11.000000/4.000000/15.000000/9.000000:e/0/11.000000/4.000000/15.000000/9.000000:s/0/11.000000/4.000000/15.000000/9.000000:u/0/0.000000/0.000000/4.000000/4.000000:R/0/270/0,box=8.000000/12.000000/12.000000:8.000000/16.000000/16.000000:w/0/12.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/12.000000/4.000000:R/0/270/0 +[1.21.4-]modellist:id=%cocoa,state=age=0/facing=north,box=6.000000/7.000000/11.000000:10.000000/12.000000/15.000000:n/0/11.000000/4.000000/15.000000/9.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/11.000000/4.000000/15.000000/9.000000:e/0/11.000000/4.000000/15.000000/9.000000:s/0/11.000000/4.000000/15.000000/9.000000:u/0/0.000000/0.000000/4.000000/4.000000:R/0/180/0,box=8.000000/12.000000/12.000000:8.000000/16.000000/16.000000:w/0/12.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/12.000000/4.000000:R/0/180/0 +[1.21.4-]modellist:id=%cocoa,state=age=0/facing=south,box=6.000000/7.000000/11.000000:10.000000/12.000000/15.000000:n/0/11.000000/4.000000/15.000000/9.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/11.000000/4.000000/15.000000/9.000000:e/0/11.000000/4.000000/15.000000/9.000000:s/0/11.000000/4.000000/15.000000/9.000000:u/0/0.000000/0.000000/4.000000/4.000000,box=8.000000/12.000000/12.000000:8.000000/16.000000/16.000000:w/0/12.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/12.000000/4.000000 +[1.21.4-]modellist:id=%cocoa,state=age=0/facing=west,box=6.000000/7.000000/11.000000:10.000000/12.000000/15.000000:n/0/11.000000/4.000000/15.000000/9.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/11.000000/4.000000/15.000000/9.000000:e/0/11.000000/4.000000/15.000000/9.000000:s/0/11.000000/4.000000/15.000000/9.000000:u/0/0.000000/0.000000/4.000000/4.000000:R/0/90/0,box=8.000000/12.000000/12.000000:8.000000/16.000000/16.000000:w/0/12.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/12.000000/4.000000:R/0/90/0 +[1.21.4-]modellist:id=%cocoa,state=age=1/facing=east,box=5.000000/5.000000/9.000000:11.000000/12.000000/15.000000:n/0/9.000000/4.000000/15.000000/11.000000:d/0/0.000000/0.000000/6.000000/6.000000:w/0/9.000000/4.000000/15.000000/11.000000:e/0/9.000000/4.000000/15.000000/11.000000:s/0/9.000000/4.000000/15.000000/11.000000:u/0/0.000000/0.000000/6.000000/6.000000:R/0/270/0,box=8.000000/12.000000/12.000000:8.000000/16.000000/16.000000:w/0/12.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/12.000000/4.000000:R/0/270/0 +[1.21.4-]modellist:id=%cocoa,state=age=1/facing=north,box=5.000000/5.000000/9.000000:11.000000/12.000000/15.000000:n/0/9.000000/4.000000/15.000000/11.000000:d/0/0.000000/0.000000/6.000000/6.000000:w/0/9.000000/4.000000/15.000000/11.000000:e/0/9.000000/4.000000/15.000000/11.000000:s/0/9.000000/4.000000/15.000000/11.000000:u/0/0.000000/0.000000/6.000000/6.000000:R/0/180/0,box=8.000000/12.000000/12.000000:8.000000/16.000000/16.000000:w/0/12.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/12.000000/4.000000:R/0/180/0 +[1.21.4-]modellist:id=%cocoa,state=age=1/facing=south,box=5.000000/5.000000/9.000000:11.000000/12.000000/15.000000:n/0/9.000000/4.000000/15.000000/11.000000:d/0/0.000000/0.000000/6.000000/6.000000:w/0/9.000000/4.000000/15.000000/11.000000:e/0/9.000000/4.000000/15.000000/11.000000:s/0/9.000000/4.000000/15.000000/11.000000:u/0/0.000000/0.000000/6.000000/6.000000,box=8.000000/12.000000/12.000000:8.000000/16.000000/16.000000:w/0/12.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/12.000000/4.000000 +[1.21.4-]modellist:id=%cocoa,state=age=1/facing=west,box=5.000000/5.000000/9.000000:11.000000/12.000000/15.000000:n/0/9.000000/4.000000/15.000000/11.000000:d/0/0.000000/0.000000/6.000000/6.000000:w/0/9.000000/4.000000/15.000000/11.000000:e/0/9.000000/4.000000/15.000000/11.000000:s/0/9.000000/4.000000/15.000000/11.000000:u/0/0.000000/0.000000/6.000000/6.000000:R/0/90/0,box=8.000000/12.000000/12.000000:8.000000/16.000000/16.000000:w/0/12.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/12.000000/4.000000:R/0/90/0 +[1.21.4-]modellist:id=%cocoa,state=age=2/facing=east,box=4.000000/3.000000/7.000000:12.000000/12.000000/15.000000:n/0/8.000000/4.000000/16.000000/13.000000:d/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/4.000000/16.000000/13.000000:e/0/8.000000/4.000000/16.000000/13.000000:s/0/8.000000/4.000000/16.000000/13.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=8.000000/12.000000/12.000000:8.000000/16.000000/16.000000:w/0/12.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/12.000000/4.000000:R/0/270/0 +[1.21.4-]modellist:id=%cocoa,state=age=2/facing=north,box=4.000000/3.000000/7.000000:12.000000/12.000000/15.000000:n/0/8.000000/4.000000/16.000000/13.000000:d/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/4.000000/16.000000/13.000000:e/0/8.000000/4.000000/16.000000/13.000000:s/0/8.000000/4.000000/16.000000/13.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=8.000000/12.000000/12.000000:8.000000/16.000000/16.000000:w/0/12.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/12.000000/4.000000:R/0/180/0 +[1.21.4-]modellist:id=%cocoa,state=age=2/facing=south,box=4.000000/3.000000/7.000000:12.000000/12.000000/15.000000:n/0/8.000000/4.000000/16.000000/13.000000:d/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/4.000000/16.000000/13.000000:e/0/8.000000/4.000000/16.000000/13.000000:s/0/8.000000/4.000000/16.000000/13.000000:u/0/0.000000/0.000000/8.000000/8.000000,box=8.000000/12.000000/12.000000:8.000000/16.000000/16.000000:w/0/12.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/12.000000/4.000000 +[1.21.4-]modellist:id=%cocoa,state=age=2/facing=west,box=4.000000/3.000000/7.000000:12.000000/12.000000/15.000000:n/0/8.000000/4.000000/16.000000/13.000000:d/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/4.000000/16.000000/13.000000:e/0/8.000000/4.000000/16.000000/13.000000:s/0/8.000000/4.000000/16.000000/13.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=8.000000/12.000000/12.000000:8.000000/16.000000/16.000000:w/0/12.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/12.000000/4.000000:R/0/90/0 +[1.21.4-]modellist:id=%comparator,state=facing=east/mode=compare/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=4.000000/2.000000/11.000000:6.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=10.000000/2.000000/11.000000:12.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/5.000000/4.000000:n/0/7.000000/6.000000/9.000000/9.000000:w/0/7.000000/6.000000/9.000000/9.000000:e/0/7.000000/6.000000/9.000000/9.000000:s/0/7.000000/6.000000/9.000000/9.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%comparator,state=facing=east/mode=compare/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=4.000000/2.000000/11.000000:6.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/5.000000/4.000000:n/0/7.000000/6.000000/9.000000/9.000000:w/0/7.000000/6.000000/9.000000/9.000000:e/0/7.000000/6.000000/9.000000/9.000000:s/0/7.000000/6.000000/9.000000/9.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=10.000000/2.000000/11.000000:12.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=3.500000/1.500000/10.500000:6.500000/4.500000/13.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=3.500000/7.500000/10.500000:6.500000/10.500000/13.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=3.500000/4.500000/7.500000:6.500000/7.500000/10.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=3.500000/4.500000/13.500000:6.500000/7.500000/16.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=0.500000/4.500000/10.500000:3.500000/7.500000/13.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=9.500000/1.500000/10.500000:12.500000/4.500000/13.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=9.500000/7.500000/10.500000:12.500000/10.500000/13.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=9.500000/4.500000/7.500000:12.500000/7.500000/10.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=9.500000/4.500000/13.500000:12.500000/7.500000/16.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=12.500000/4.500000/10.500000:15.500000/7.500000/13.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0 +[1.21.4-]modellist:id=%comparator,state=facing=east/mode=subtract/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=4.000000/2.000000/11.000000:6.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=10.000000/2.000000/11.000000:12.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/5.000000/4.000000:n/0/7.000000/6.000000/9.000000/9.000000:w/0/7.000000/6.000000/9.000000/9.000000:e/0/7.000000/6.000000/9.000000/9.000000:s/0/7.000000/6.000000/9.000000/9.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=6.500000/-0.500000/1.500000:9.500000/2.500000/4.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=6.500000/5.500000/1.500000:9.500000/8.500000/4.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=6.500000/2.500000/-1.500000:9.500000/5.500000/1.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=6.500000/2.500000/4.500000:9.500000/5.500000/7.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=3.500000/2.500000/1.500000:6.500000/5.500000/4.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=9.500000/2.500000/1.500000:12.500000/5.500000/4.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0 +[1.21.4-]modellist:id=%comparator,state=facing=east/mode=subtract/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/5.000000/4.000000:n/0/7.000000/6.000000/9.000000/9.000000:w/0/7.000000/6.000000/9.000000/9.000000:e/0/7.000000/6.000000/9.000000/9.000000:s/0/7.000000/6.000000/9.000000/9.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=4.000000/2.000000/11.000000:6.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=10.000000/2.000000/11.000000:12.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=3.500000/1.500000/10.500000:6.500000/4.500000/13.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=3.500000/7.500000/10.500000:6.500000/10.500000/13.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=3.500000/4.500000/7.500000:6.500000/7.500000/10.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=3.500000/4.500000/13.500000:6.500000/7.500000/16.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=0.500000/4.500000/10.500000:3.500000/7.500000/13.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=9.500000/1.500000/10.500000:12.500000/4.500000/13.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=9.500000/7.500000/10.500000:12.500000/10.500000/13.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=9.500000/4.500000/7.500000:12.500000/7.500000/10.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=9.500000/4.500000/13.500000:12.500000/7.500000/16.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=12.500000/4.500000/10.500000:15.500000/7.500000/13.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=6.500000/-0.500000/1.500000:9.500000/2.500000/4.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=6.500000/5.500000/1.500000:9.500000/8.500000/4.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=6.500000/2.500000/-1.500000:9.500000/5.500000/1.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=6.500000/2.500000/4.500000:9.500000/5.500000/7.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=3.500000/2.500000/1.500000:6.500000/5.500000/4.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=9.500000/2.500000/1.500000:12.500000/5.500000/4.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0 +[1.21.4-]modellist:id=%comparator,state=facing=north/mode=compare/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=4.000000/2.000000/11.000000:6.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=10.000000/2.000000/11.000000:12.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/5.000000/4.000000:n/0/7.000000/6.000000/9.000000/9.000000:w/0/7.000000/6.000000/9.000000/9.000000:e/0/7.000000/6.000000/9.000000/9.000000:s/0/7.000000/6.000000/9.000000/9.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%comparator,state=facing=north/mode=compare/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=4.000000/2.000000/11.000000:6.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/5.000000/4.000000:n/0/7.000000/6.000000/9.000000/9.000000:w/0/7.000000/6.000000/9.000000/9.000000:e/0/7.000000/6.000000/9.000000/9.000000:s/0/7.000000/6.000000/9.000000/9.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=10.000000/2.000000/11.000000:12.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=3.500000/1.500000/10.500000:6.500000/4.500000/13.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=3.500000/7.500000/10.500000:6.500000/10.500000/13.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=3.500000/4.500000/7.500000:6.500000/7.500000/10.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=3.500000/4.500000/13.500000:6.500000/7.500000/16.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=0.500000/4.500000/10.500000:3.500000/7.500000/13.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=9.500000/1.500000/10.500000:12.500000/4.500000/13.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=9.500000/7.500000/10.500000:12.500000/10.500000/13.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=9.500000/4.500000/7.500000:12.500000/7.500000/10.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=9.500000/4.500000/13.500000:12.500000/7.500000/16.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=12.500000/4.500000/10.500000:15.500000/7.500000/13.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0 +[1.21.4-]modellist:id=%comparator,state=facing=north/mode=subtract/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=4.000000/2.000000/11.000000:6.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=10.000000/2.000000/11.000000:12.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/5.000000/4.000000:n/0/7.000000/6.000000/9.000000/9.000000:w/0/7.000000/6.000000/9.000000/9.000000:e/0/7.000000/6.000000/9.000000/9.000000:s/0/7.000000/6.000000/9.000000/9.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=6.500000/-0.500000/1.500000:9.500000/2.500000/4.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=6.500000/5.500000/1.500000:9.500000/8.500000/4.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=6.500000/2.500000/-1.500000:9.500000/5.500000/1.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=6.500000/2.500000/4.500000:9.500000/5.500000/7.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=3.500000/2.500000/1.500000:6.500000/5.500000/4.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=9.500000/2.500000/1.500000:12.500000/5.500000/4.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0 +[1.21.4-]modellist:id=%comparator,state=facing=north/mode=subtract/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/5.000000/4.000000:n/0/7.000000/6.000000/9.000000/9.000000:w/0/7.000000/6.000000/9.000000/9.000000:e/0/7.000000/6.000000/9.000000/9.000000:s/0/7.000000/6.000000/9.000000/9.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=4.000000/2.000000/11.000000:6.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=10.000000/2.000000/11.000000:12.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=3.500000/1.500000/10.500000:6.500000/4.500000/13.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=3.500000/7.500000/10.500000:6.500000/10.500000/13.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=3.500000/4.500000/7.500000:6.500000/7.500000/10.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=3.500000/4.500000/13.500000:6.500000/7.500000/16.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=0.500000/4.500000/10.500000:3.500000/7.500000/13.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=9.500000/1.500000/10.500000:12.500000/4.500000/13.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=9.500000/7.500000/10.500000:12.500000/10.500000/13.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=9.500000/4.500000/7.500000:12.500000/7.500000/10.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=9.500000/4.500000/13.500000:12.500000/7.500000/16.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=12.500000/4.500000/10.500000:15.500000/7.500000/13.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=6.500000/-0.500000/1.500000:9.500000/2.500000/4.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=6.500000/5.500000/1.500000:9.500000/8.500000/4.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=6.500000/2.500000/-1.500000:9.500000/5.500000/1.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=6.500000/2.500000/4.500000:9.500000/5.500000/7.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=3.500000/2.500000/1.500000:6.500000/5.500000/4.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=9.500000/2.500000/1.500000:12.500000/5.500000/4.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0 +[1.21.4-]modellist:id=%comparator,state=facing=south/mode=compare/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=4.000000/2.000000/11.000000:6.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=10.000000/2.000000/11.000000:12.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=7.000000/2.000000/2.000000:9.000000/5.000000/4.000000:n/0/7.000000/6.000000/9.000000/9.000000:w/0/7.000000/6.000000/9.000000/9.000000:e/0/7.000000/6.000000/9.000000/9.000000:s/0/7.000000/6.000000/9.000000/9.000000:u/0/7.000000/6.000000/9.000000/8.000000 +[1.21.4-]modellist:id=%comparator,state=facing=south/mode=compare/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=4.000000/2.000000/11.000000:6.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=7.000000/2.000000/2.000000:9.000000/5.000000/4.000000:n/0/7.000000/6.000000/9.000000/9.000000:w/0/7.000000/6.000000/9.000000/9.000000:e/0/7.000000/6.000000/9.000000/9.000000:s/0/7.000000/6.000000/9.000000/9.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=10.000000/2.000000/11.000000:12.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=3.500000/1.500000/10.500000:6.500000/4.500000/13.500000:u/0/6.000000/5.000000/7.000000/6.000000,box=3.500000/7.500000/10.500000:6.500000/10.500000/13.500000:d/0/6.000000/5.000000/7.000000/6.000000,box=3.500000/4.500000/7.500000:6.500000/7.500000/10.500000:s/0/6.000000/5.000000/7.000000/6.000000,box=3.500000/4.500000/13.500000:6.500000/7.500000/16.500000:n/0/6.000000/5.000000/7.000000/6.000000,box=0.500000/4.500000/10.500000:3.500000/7.500000/13.500000:e/0/6.000000/5.000000/7.000000/6.000000,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:w/0/6.000000/5.000000/7.000000/6.000000,box=9.500000/1.500000/10.500000:12.500000/4.500000/13.500000:u/0/6.000000/5.000000/7.000000/6.000000,box=9.500000/7.500000/10.500000:12.500000/10.500000/13.500000:d/0/6.000000/5.000000/7.000000/6.000000,box=9.500000/4.500000/7.500000:12.500000/7.500000/10.500000:s/0/6.000000/5.000000/7.000000/6.000000,box=9.500000/4.500000/13.500000:12.500000/7.500000/16.500000:n/0/6.000000/5.000000/7.000000/6.000000,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:e/0/6.000000/5.000000/7.000000/6.000000,box=12.500000/4.500000/10.500000:15.500000/7.500000/13.500000:w/0/6.000000/5.000000/7.000000/6.000000 +[1.21.4-]modellist:id=%comparator,state=facing=south/mode=subtract/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=4.000000/2.000000/11.000000:6.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=10.000000/2.000000/11.000000:12.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=7.000000/2.000000/2.000000:9.000000/5.000000/4.000000:n/0/7.000000/6.000000/9.000000/9.000000:w/0/7.000000/6.000000/9.000000/9.000000:e/0/7.000000/6.000000/9.000000/9.000000:s/0/7.000000/6.000000/9.000000/9.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=6.500000/-0.500000/1.500000:9.500000/2.500000/4.500000:u/0/6.000000/5.000000/7.000000/6.000000,box=6.500000/5.500000/1.500000:9.500000/8.500000/4.500000:d/0/6.000000/5.000000/7.000000/6.000000,box=6.500000/2.500000/-1.500000:9.500000/5.500000/1.500000:s/0/6.000000/5.000000/7.000000/6.000000,box=6.500000/2.500000/4.500000:9.500000/5.500000/7.500000:n/0/6.000000/5.000000/7.000000/6.000000,box=3.500000/2.500000/1.500000:6.500000/5.500000/4.500000:e/0/6.000000/5.000000/7.000000/6.000000,box=9.500000/2.500000/1.500000:12.500000/5.500000/4.500000:w/0/6.000000/5.000000/7.000000/6.000000 +[1.21.4-]modellist:id=%comparator,state=facing=south/mode=subtract/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/2.000000/2.000000:9.000000/5.000000/4.000000:n/0/7.000000/6.000000/9.000000/9.000000:w/0/7.000000/6.000000/9.000000/9.000000:e/0/7.000000/6.000000/9.000000/9.000000:s/0/7.000000/6.000000/9.000000/9.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=4.000000/2.000000/11.000000:6.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=10.000000/2.000000/11.000000:12.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=3.500000/1.500000/10.500000:6.500000/4.500000/13.500000:u/0/6.000000/5.000000/7.000000/6.000000,box=3.500000/7.500000/10.500000:6.500000/10.500000/13.500000:d/0/6.000000/5.000000/7.000000/6.000000,box=3.500000/4.500000/7.500000:6.500000/7.500000/10.500000:s/0/6.000000/5.000000/7.000000/6.000000,box=3.500000/4.500000/13.500000:6.500000/7.500000/16.500000:n/0/6.000000/5.000000/7.000000/6.000000,box=0.500000/4.500000/10.500000:3.500000/7.500000/13.500000:e/0/6.000000/5.000000/7.000000/6.000000,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:w/0/6.000000/5.000000/7.000000/6.000000,box=9.500000/1.500000/10.500000:12.500000/4.500000/13.500000:u/0/6.000000/5.000000/7.000000/6.000000,box=9.500000/7.500000/10.500000:12.500000/10.500000/13.500000:d/0/6.000000/5.000000/7.000000/6.000000,box=9.500000/4.500000/7.500000:12.500000/7.500000/10.500000:s/0/6.000000/5.000000/7.000000/6.000000,box=9.500000/4.500000/13.500000:12.500000/7.500000/16.500000:n/0/6.000000/5.000000/7.000000/6.000000,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:e/0/6.000000/5.000000/7.000000/6.000000,box=12.500000/4.500000/10.500000:15.500000/7.500000/13.500000:w/0/6.000000/5.000000/7.000000/6.000000,box=6.500000/-0.500000/1.500000:9.500000/2.500000/4.500000:u/0/6.000000/5.000000/7.000000/6.000000,box=6.500000/5.500000/1.500000:9.500000/8.500000/4.500000:d/0/6.000000/5.000000/7.000000/6.000000,box=6.500000/2.500000/-1.500000:9.500000/5.500000/1.500000:s/0/6.000000/5.000000/7.000000/6.000000,box=6.500000/2.500000/4.500000:9.500000/5.500000/7.500000:n/0/6.000000/5.000000/7.000000/6.000000,box=3.500000/2.500000/1.500000:6.500000/5.500000/4.500000:e/0/6.000000/5.000000/7.000000/6.000000,box=9.500000/2.500000/1.500000:12.500000/5.500000/4.500000:w/0/6.000000/5.000000/7.000000/6.000000 +[1.21.4-]modellist:id=%comparator,state=facing=west/mode=compare/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=4.000000/2.000000/11.000000:6.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=10.000000/2.000000/11.000000:12.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/5.000000/4.000000:n/0/7.000000/6.000000/9.000000/9.000000:w/0/7.000000/6.000000/9.000000/9.000000:e/0/7.000000/6.000000/9.000000/9.000000:s/0/7.000000/6.000000/9.000000/9.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%comparator,state=facing=west/mode=compare/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=4.000000/2.000000/11.000000:6.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/5.000000/4.000000:n/0/7.000000/6.000000/9.000000/9.000000:w/0/7.000000/6.000000/9.000000/9.000000:e/0/7.000000/6.000000/9.000000/9.000000:s/0/7.000000/6.000000/9.000000/9.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=10.000000/2.000000/11.000000:12.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=3.500000/1.500000/10.500000:6.500000/4.500000/13.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=3.500000/7.500000/10.500000:6.500000/10.500000/13.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=3.500000/4.500000/7.500000:6.500000/7.500000/10.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=3.500000/4.500000/13.500000:6.500000/7.500000/16.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=0.500000/4.500000/10.500000:3.500000/7.500000/13.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=9.500000/1.500000/10.500000:12.500000/4.500000/13.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=9.500000/7.500000/10.500000:12.500000/10.500000/13.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=9.500000/4.500000/7.500000:12.500000/7.500000/10.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=9.500000/4.500000/13.500000:12.500000/7.500000/16.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=12.500000/4.500000/10.500000:15.500000/7.500000/13.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0 +[1.21.4-]modellist:id=%comparator,state=facing=west/mode=subtract/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=4.000000/2.000000/11.000000:6.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=10.000000/2.000000/11.000000:12.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/5.000000/4.000000:n/0/7.000000/6.000000/9.000000/9.000000:w/0/7.000000/6.000000/9.000000/9.000000:e/0/7.000000/6.000000/9.000000/9.000000:s/0/7.000000/6.000000/9.000000/9.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=6.500000/-0.500000/1.500000:9.500000/2.500000/4.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=6.500000/5.500000/1.500000:9.500000/8.500000/4.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=6.500000/2.500000/-1.500000:9.500000/5.500000/1.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=6.500000/2.500000/4.500000:9.500000/5.500000/7.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=3.500000/2.500000/1.500000:6.500000/5.500000/4.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=9.500000/2.500000/1.500000:12.500000/5.500000/4.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0 +[1.21.4-]modellist:id=%comparator,state=facing=west/mode=subtract/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/5.000000/4.000000:n/0/7.000000/6.000000/9.000000/9.000000:w/0/7.000000/6.000000/9.000000/9.000000:e/0/7.000000/6.000000/9.000000/9.000000:s/0/7.000000/6.000000/9.000000/9.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=4.000000/2.000000/11.000000:6.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=10.000000/2.000000/11.000000:12.000000/7.000000/13.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=3.500000/1.500000/10.500000:6.500000/4.500000/13.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=3.500000/7.500000/10.500000:6.500000/10.500000/13.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=3.500000/4.500000/7.500000:6.500000/7.500000/10.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=3.500000/4.500000/13.500000:6.500000/7.500000/16.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=0.500000/4.500000/10.500000:3.500000/7.500000/13.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=9.500000/1.500000/10.500000:12.500000/4.500000/13.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=9.500000/7.500000/10.500000:12.500000/10.500000/13.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=9.500000/4.500000/7.500000:12.500000/7.500000/10.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=9.500000/4.500000/13.500000:12.500000/7.500000/16.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=12.500000/4.500000/10.500000:15.500000/7.500000/13.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=6.500000/-0.500000/1.500000:9.500000/2.500000/4.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=6.500000/5.500000/1.500000:9.500000/8.500000/4.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=6.500000/2.500000/-1.500000:9.500000/5.500000/1.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=6.500000/2.500000/4.500000:9.500000/5.500000/7.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=3.500000/2.500000/1.500000:6.500000/5.500000/4.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=9.500000/2.500000/1.500000:12.500000/5.500000/4.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0 +[1.21.4-]modellist:id=%composter,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:2.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.000000/14.000000:14.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%composter,state=level:1,box=2.000000/0.000000/2.000000:14.000000/3.000000/14.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%composter,state=level:2,box=2.000000/0.000000/2.000000:14.000000/5.000000/14.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%composter,state=level:3,box=2.000000/0.000000/2.000000:14.000000/7.000000/14.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%composter,state=level:4,box=2.000000/0.000000/2.000000:14.000000/9.000000/14.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%composter,state=level:5,box=2.000000/0.000000/2.000000:14.000000/11.000000/14.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%composter,state=level:6,box=2.000000/0.000000/2.000000:14.000000/13.000000/14.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%composter,state=level:7,box=2.000000/0.000000/2.000000:14.000000/15.000000/14.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%composter,state=level:8,box=2.000000/0.000000/2.000000:14.000000/15.000000/14.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%copper_bars,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%copper_bars,state=east:false/north:false/south:false/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/16.000000/8.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%copper_bars,state=east:false/north:false/south:false/west:true,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%copper_bars,state=east:false/north:false/south:true/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%copper_bars,state=east:false/north:true/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%copper_bars,state=east:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%copper_bars,state=east:true/north:false/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%copper_bars,state=north:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%copper_bars,state=south:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%copper_bars,state=west:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%copper_chain,state=axis=x,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/90/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%copper_chain,state=axis=y,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%copper_chain,state=axis=z,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/0/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%copper_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%copper_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%copper_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%copper_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%copper_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%copper_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%copper_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%copper_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%copper_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%copper_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%copper_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%copper_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%copper_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%copper_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%copper_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%copper_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%copper_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%copper_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%copper_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%copper_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%copper_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%copper_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%copper_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%copper_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%copper_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%copper_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%copper_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%copper_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%copper_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%copper_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%copper_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%copper_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%copper_lantern,state=hanging=false,box=5.000000/0.000000/5.000000:11.000000/7.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/7.000000/6.000000:10.000000/9.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/9.000000/8.000000:9.500000/11.000000/8.000000:n/0/14.000000/1.000000/11.000000/3.000000:s/0/11.000000/1.000000/14.000000/3.000000/45/y/8/8/8,box=8.000000/9.000000/6.500000:8.000000/11.000000/9.500000:w/0/14.000000/10.000000/11.000000/12.000000:e/0/11.000000/10.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%copper_lantern,state=hanging=true,box=5.000000/1.000000/5.000000:11.000000/8.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/8.000000/6.000000:10.000000/10.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:d/0/1.000000/10.000000/5.000000/14.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/11.000000/8.000000:9.500000/15.000000/8.000000:n/0/14.000000/1.000000/11.000000/5.000000:s/0/11.000000/1.000000/14.000000/5.000000/45/y/8/8/8,box=8.000000/10.000000/6.500000:8.000000/16.000000/9.500000:w/0/14.000000/6.000000/11.000000/12.000000:e/0/11.000000/6.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%copper_torch,box=7.000000/0.000000/7.000000:9.000000/10.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000 +[1.21.4-]modellist:id=%copper_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%copper_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%copper_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%copper_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%copper_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%copper_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%copper_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%copper_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%copper_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%copper_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%copper_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%copper_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%copper_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%copper_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%copper_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%copper_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%copper_wall_torch,state=facing=east,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000/-22.5/z/0/3.5/8 +[1.21.4-]modellist:id=%copper_wall_torch,state=facing=north,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%copper_wall_torch,state=facing=south,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%copper_wall_torch,state=facing=west,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%cornflower,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%crimson_button,state=face=ceiling/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%crimson_button,state=face=ceiling/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%crimson_button,state=face=ceiling/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%crimson_button,state=face=ceiling/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%crimson_button,state=face=ceiling/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%crimson_button,state=face=ceiling/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%crimson_button,state=face=ceiling/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%crimson_button,state=face=ceiling/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%crimson_button,state=face=floor/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_button,state=face=floor/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_button,state=face=floor/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%crimson_button,state=face=floor/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%crimson_button,state=face=floor/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_button,state=face=floor/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_button,state=face=floor/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_button,state=face=floor/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_button,state=face=wall/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%crimson_button,state=face=wall/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%crimson_button,state=face=wall/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%crimson_button,state=face=wall/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%crimson_button,state=face=wall/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%crimson_button,state=face=wall/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%crimson_button,state=face=wall/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%crimson_button,state=face=wall/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%crimson_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%crimson_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%crimson_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%crimson_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%crimson_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%crimson_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%crimson_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%crimson_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_fence,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000 +[1.21.4-]modellist:id=%crimson_fence,state=east:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_fence,state=north:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%crimson_fence,state=south:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_fence,state=west:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_fence_gate,state=facing=east/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_fence_gate,state=facing=east/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_fence_gate,state=facing=east/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_fence_gate,state=facing=east/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_fence_gate,state=facing=north/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_fence_gate,state=facing=north/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_fence_gate,state=facing=north/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_fence_gate,state=facing=north/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_fence_gate,state=facing=south/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%crimson_fence_gate,state=facing=south/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%crimson_fence_gate,state=facing=south/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%crimson_fence_gate,state=facing=south/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%crimson_fence_gate,state=facing=west/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_fence_gate,state=facing=west/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_fence_gate,state=facing=west/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_fence_gate,state=facing=west/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_fungus,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%crimson_pressure_plate,state=powered=false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%crimson_pressure_plate,state=powered=true,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%crimson_roots,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:east,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/90/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/90/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:east/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:east/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:east/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:east/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:east/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:north,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:north/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:north/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:north/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:north/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:north/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:south,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/180/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/180/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:south/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:south/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:south/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:south/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:south/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:west,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/270/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/270/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:west/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:west/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:west/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:west/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_shelf,state=facing:west/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%crimson_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%crimson_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%crimson_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%crimson_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/270/0 +[1.21.4-]modellist:id=%crimson_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%crimson_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%crimson_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%crimson_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/180/0 +[1.21.4-]modellist:id=%crimson_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%crimson_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/0/0 +[1.21.4-]modellist:id=%crimson_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%crimson_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/90/0 +[1.21.4-]modellist:id=%cut_copper_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cut_copper_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%cut_copper_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%cut_red_sandstone_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cut_red_sandstone_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cut_sandstone_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cut_sandstone_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cyan_candle,state=candles=1/lit=false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%cyan_candle,state=candles=1/lit=true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%cyan_candle,state=candles=2/lit=false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%cyan_candle,state=candles=2/lit=true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%cyan_candle,state=candles=3/lit=false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%cyan_candle,state=candles=3/lit=true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%cyan_candle,state=candles=4/lit=false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%cyan_candle,state=candles=4/lit=true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%cyan_candle_cake,state=lit=false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%cyan_candle_cake,state=lit=true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%cyan_carpet,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%cyan_stained_glass_pane,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%cyan_stained_glass_pane,state=east:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%cyan_stained_glass_pane,state=east:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%cyan_stained_glass_pane,state=north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%cyan_stained_glass_pane,state=north:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%cyan_stained_glass_pane,state=south:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%cyan_stained_glass_pane,state=south:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%cyan_stained_glass_pane,state=west:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%cyan_stained_glass_pane,state=west:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%damaged_anvil,state=facing=east,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:n/0/2.000000/12.000000/14.000000/16.000000:d/0/2.000000/2.000000/14.000000/14.000000:w/0/0.000000/2.000000/4.000000/14.000000:e/0/4.000000/2.000000/0.000000/14.000000:s/0/2.000000/12.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000:R/0/270/0,box=4.000000/4.000000/3.000000:12.000000/5.000000/13.000000:n/0/4.000000/11.000000/12.000000/12.000000:w/0/4.000000/3.000000/5.000000/13.000000:e/0/5.000000/3.000000/4.000000/13.000000:s/0/4.000000/11.000000/12.000000/12.000000:u/0/4.000000/3.000000/12.000000/13.000000:R/0/270/0,box=6.000000/5.000000/4.000000:10.000000/10.000000/12.000000:n/0/6.000000/6.000000/10.000000/11.000000:w/0/5.000000/4.000000/10.000000/12.000000:e/0/10.000000/4.000000/5.000000/12.000000:s/0/6.000000/6.000000/10.000000/11.000000:R/0/270/0,box=3.000000/10.000000/0.000000:13.000000/16.000000/16.000000:n/0/3.000000/0.000000/13.000000/6.000000:d/0/3.000000/0.000000/13.000000/16.000000:w/0/10.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/10.000000/16.000000:s/0/3.000000/0.000000/13.000000/6.000000:u/0/3.000000/0.000000/13.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%damaged_anvil,state=facing=north,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:n/0/2.000000/12.000000/14.000000/16.000000:d/0/2.000000/2.000000/14.000000/14.000000:w/0/0.000000/2.000000/4.000000/14.000000:e/0/4.000000/2.000000/0.000000/14.000000:s/0/2.000000/12.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000:R/0/180/0,box=4.000000/4.000000/3.000000:12.000000/5.000000/13.000000:n/0/4.000000/11.000000/12.000000/12.000000:w/0/4.000000/3.000000/5.000000/13.000000:e/0/5.000000/3.000000/4.000000/13.000000:s/0/4.000000/11.000000/12.000000/12.000000:u/0/4.000000/3.000000/12.000000/13.000000:R/0/180/0,box=6.000000/5.000000/4.000000:10.000000/10.000000/12.000000:n/0/6.000000/6.000000/10.000000/11.000000:w/0/5.000000/4.000000/10.000000/12.000000:e/0/10.000000/4.000000/5.000000/12.000000:s/0/6.000000/6.000000/10.000000/11.000000:R/0/180/0,box=3.000000/10.000000/0.000000:13.000000/16.000000/16.000000:n/0/3.000000/0.000000/13.000000/6.000000:d/0/3.000000/0.000000/13.000000/16.000000:w/0/10.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/10.000000/16.000000:s/0/3.000000/0.000000/13.000000/6.000000:u/0/3.000000/0.000000/13.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%damaged_anvil,state=facing=south,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:n/0/2.000000/12.000000/14.000000/16.000000:d/0/2.000000/2.000000/14.000000/14.000000:w/0/0.000000/2.000000/4.000000/14.000000:e/0/4.000000/2.000000/0.000000/14.000000:s/0/2.000000/12.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000,box=4.000000/4.000000/3.000000:12.000000/5.000000/13.000000:n/0/4.000000/11.000000/12.000000/12.000000:w/0/4.000000/3.000000/5.000000/13.000000:e/0/5.000000/3.000000/4.000000/13.000000:s/0/4.000000/11.000000/12.000000/12.000000:u/0/4.000000/3.000000/12.000000/13.000000,box=6.000000/5.000000/4.000000:10.000000/10.000000/12.000000:n/0/6.000000/6.000000/10.000000/11.000000:w/0/5.000000/4.000000/10.000000/12.000000:e/0/10.000000/4.000000/5.000000/12.000000:s/0/6.000000/6.000000/10.000000/11.000000,box=3.000000/10.000000/0.000000:13.000000/16.000000/16.000000:n/0/3.000000/0.000000/13.000000/6.000000:d/0/3.000000/0.000000/13.000000/16.000000:w/0/10.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/10.000000/16.000000:s/0/3.000000/0.000000/13.000000/6.000000:u/0/3.000000/0.000000/13.000000/16.000000 +[1.21.4-]modellist:id=%damaged_anvil,state=facing=west,box=2.000000/0.000000/2.000000:14.000000/4.000000/14.000000:n/0/2.000000/12.000000/14.000000/16.000000:d/0/2.000000/2.000000/14.000000/14.000000:w/0/0.000000/2.000000/4.000000/14.000000:e/0/4.000000/2.000000/0.000000/14.000000:s/0/2.000000/12.000000/14.000000/16.000000:u/0/2.000000/2.000000/14.000000/14.000000:R/0/90/0,box=4.000000/4.000000/3.000000:12.000000/5.000000/13.000000:n/0/4.000000/11.000000/12.000000/12.000000:w/0/4.000000/3.000000/5.000000/13.000000:e/0/5.000000/3.000000/4.000000/13.000000:s/0/4.000000/11.000000/12.000000/12.000000:u/0/4.000000/3.000000/12.000000/13.000000:R/0/90/0,box=6.000000/5.000000/4.000000:10.000000/10.000000/12.000000:n/0/6.000000/6.000000/10.000000/11.000000:w/0/5.000000/4.000000/10.000000/12.000000:e/0/10.000000/4.000000/5.000000/12.000000:s/0/6.000000/6.000000/10.000000/11.000000:R/0/90/0,box=3.000000/10.000000/0.000000:13.000000/16.000000/16.000000:n/0/3.000000/0.000000/13.000000/6.000000:d/0/3.000000/0.000000/13.000000/16.000000:w/0/10.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/10.000000/16.000000:s/0/3.000000/0.000000/13.000000/6.000000:u/0/3.000000/0.000000/13.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dandelion,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%dark_oak_button,state=face=ceiling/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=ceiling/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=ceiling/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=ceiling/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=ceiling/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=ceiling/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=ceiling/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=ceiling/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=floor/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=floor/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=floor/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%dark_oak_button,state=face=floor/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%dark_oak_button,state=face=floor/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=floor/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=floor/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=floor/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=wall/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=wall/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=wall/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=wall/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=wall/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=wall/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=wall/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%dark_oak_button,state=face=wall/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_fence,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000 +[1.21.4-]modellist:id=%dark_oak_fence,state=east:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_fence,state=north:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%dark_oak_fence,state=south:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_fence,state=west:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_fence_gate,state=facing=east/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_fence_gate,state=facing=east/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_fence_gate,state=facing=east/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_fence_gate,state=facing=east/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_fence_gate,state=facing=north/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_fence_gate,state=facing=north/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_fence_gate,state=facing=north/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_fence_gate,state=facing=north/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_fence_gate,state=facing=south/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%dark_oak_fence_gate,state=facing=south/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%dark_oak_fence_gate,state=facing=south/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%dark_oak_fence_gate,state=facing=south/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%dark_oak_fence_gate,state=facing=west/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_fence_gate,state=facing=west/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_fence_gate,state=facing=west/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_fence_gate,state=facing=west/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_pressure_plate,state=powered=false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%dark_oak_pressure_plate,state=powered=true,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%dark_oak_sapling,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:east,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/90/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/90/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:east/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:east/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:east/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:east/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:east/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:north,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:north/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:north/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:north/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:north/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:north/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:south,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/180/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/180/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:south/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:south/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:south/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:south/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:south/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:west,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/270/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/270/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:west/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:west/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:west/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:west/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_shelf,state=facing:west/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%dark_oak_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%dark_oak_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_oak_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%dark_oak_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%dark_oak_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_oak_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_oak_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_oak_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_prismarine_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_prismarine_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%dark_prismarine_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%daylight_detector,state=inverted=false,box=0.000000/0.000000/0.000000:16.000000/6.000000/16.000000:n/0/0.000000/10.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/10.000000/16.000000/16.000000:e/0/0.000000/10.000000/16.000000/16.000000:s/0/0.000000/10.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%daylight_detector,state=inverted=true,box=0.000000/0.000000/0.000000:16.000000/6.000000/16.000000:n/0/0.000000/10.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/10.000000/16.000000/16.000000:e/0/0.000000/10.000000/16.000000/16.000000:s/0/0.000000/10.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dead_brain_coral,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%dead_brain_coral_fan,box=8.000000/0.000000/0.000000:24.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/z/8/0/0,box=-8.000000/0.000000/0.000000:8.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/z/8/0/0,box=0.000000/0.000000/8.000000:16.000000/0.000000/24.000000:d/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/16.000000/0.000000/0.000000/-22.5/x/0/0/8,box=0.000000/0.000000/-8.000000:16.000000/0.000000/8.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/0/0/8 +[1.21.4-]modellist:id=%dead_brain_coral_wall_fan,state=facing=east,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dead_brain_coral_wall_fan,state=facing=north,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/8/8/14,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/x/8/8/14 +[1.21.4-]modellist:id=%dead_brain_coral_wall_fan,state=facing=south,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dead_brain_coral_wall_fan,state=facing=west,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dead_bubble_coral,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%dead_bubble_coral_fan,box=8.000000/0.000000/0.000000:24.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/z/8/0/0,box=-8.000000/0.000000/0.000000:8.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/z/8/0/0,box=0.000000/0.000000/8.000000:16.000000/0.000000/24.000000:d/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/16.000000/0.000000/0.000000/-22.5/x/0/0/8,box=0.000000/0.000000/-8.000000:16.000000/0.000000/8.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/0/0/8 +[1.21.4-]modellist:id=%dead_bubble_coral_wall_fan,state=facing=east,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dead_bubble_coral_wall_fan,state=facing=north,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/8/8/14,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/x/8/8/14 +[1.21.4-]modellist:id=%dead_bubble_coral_wall_fan,state=facing=south,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dead_bubble_coral_wall_fan,state=facing=west,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dead_bush,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%dead_fire_coral,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%dead_fire_coral_fan,box=8.000000/0.000000/0.000000:24.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/z/8/0/0,box=-8.000000/0.000000/0.000000:8.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/z/8/0/0,box=0.000000/0.000000/8.000000:16.000000/0.000000/24.000000:d/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/16.000000/0.000000/0.000000/-22.5/x/0/0/8,box=0.000000/0.000000/-8.000000:16.000000/0.000000/8.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/0/0/8 +[1.21.4-]modellist:id=%dead_fire_coral_wall_fan,state=facing=east,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dead_fire_coral_wall_fan,state=facing=north,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/8/8/14,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/x/8/8/14 +[1.21.4-]modellist:id=%dead_fire_coral_wall_fan,state=facing=south,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dead_fire_coral_wall_fan,state=facing=west,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dead_horn_coral,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%dead_horn_coral_fan,box=8.000000/0.000000/0.000000:24.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/z/8/0/0,box=-8.000000/0.000000/0.000000:8.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/z/8/0/0,box=0.000000/0.000000/8.000000:16.000000/0.000000/24.000000:d/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/16.000000/0.000000/0.000000/-22.5/x/0/0/8,box=0.000000/0.000000/-8.000000:16.000000/0.000000/8.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/0/0/8 +[1.21.4-]modellist:id=%dead_horn_coral_wall_fan,state=facing=east,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dead_horn_coral_wall_fan,state=facing=north,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/8/8/14,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/x/8/8/14 +[1.21.4-]modellist:id=%dead_horn_coral_wall_fan,state=facing=south,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dead_horn_coral_wall_fan,state=facing=west,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dead_tube_coral,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%dead_tube_coral_fan,box=8.000000/0.000000/0.000000:24.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/z/8/0/0,box=-8.000000/0.000000/0.000000:8.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/z/8/0/0,box=0.000000/0.000000/8.000000:16.000000/0.000000/24.000000:d/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/16.000000/0.000000/0.000000/-22.5/x/0/0/8,box=0.000000/0.000000/-8.000000:16.000000/0.000000/8.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/0/0/8 +[1.21.4-]modellist:id=%dead_tube_coral_wall_fan,state=facing=east,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%dead_tube_coral_wall_fan,state=facing=north,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/8/8/14,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/x/8/8/14 +[1.21.4-]modellist:id=%dead_tube_coral_wall_fan,state=facing=south,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%dead_tube_coral_wall_fan,state=facing=west,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%deepslate_brick_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_brick_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%deepslate_brick_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%deepslate_brick_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%deepslate_brick_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%deepslate_brick_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_brick_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_brick_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%deepslate_brick_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%deepslate_brick_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_brick_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%deepslate_brick_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%deepslate_tile_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_tile_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%deepslate_tile_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%deepslate_tile_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%deepslate_tile_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%deepslate_tile_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_tile_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_tile_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%deepslate_tile_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%deepslate_tile_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%deepslate_tile_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%deepslate_tile_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%detector_rail,state=powered=false/shape=ascending_east,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%detector_rail,state=powered=false/shape=ascending_north,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/45/x/8/9/8 +[1.21.4-]modellist:id=%detector_rail,state=powered=false/shape=ascending_south,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-45/x/8/9/8 +[1.21.4-]modellist:id=%detector_rail,state=powered=false/shape=ascending_west,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%detector_rail,state=powered=false/shape=east_west,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%detector_rail,state=powered=false/shape=north_south,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%detector_rail,state=powered=true/shape=ascending_east,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%detector_rail,state=powered=true/shape=ascending_north,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/45/x/8/9/8 +[1.21.4-]modellist:id=%detector_rail,state=powered=true/shape=ascending_south,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-45/x/8/9/8 +[1.21.4-]modellist:id=%detector_rail,state=powered=true/shape=ascending_west,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%detector_rail,state=powered=true/shape=east_west,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%detector_rail,state=powered=true/shape=north_south,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%diorite_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%diorite_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%diorite_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%diorite_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%diorite_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%diorite_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%diorite_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%diorite_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%diorite_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%diorite_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%diorite_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%diorite_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%dirt_path,box=0.000000/0.000000/0.000000:16.000000/15.000000/16.000000:n/0/0.000000/1.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/1.000000/16.000000/16.000000:e/0/0.000000/1.000000/16.000000/16.000000:s/0/0.000000/1.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%dragon_egg,box=6.000000/15.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/1.000000:w/0/6.000000/0.000000/10.000000/1.000000:e/0/6.000000/0.000000/10.000000/1.000000:s/0/6.000000/0.000000/10.000000/1.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=5.000000/14.000000/5.000000:11.000000/15.000000/11.000000:n/0/5.000000/1.000000/11.000000/2.000000:w/0/5.000000/1.000000/11.000000/2.000000:e/0/5.000000/1.000000/11.000000/2.000000:s/0/5.000000/1.000000/11.000000/2.000000:u/0/5.000000/5.000000/11.000000/11.000000,box=4.000000/13.000000/4.000000:12.000000/14.000000/12.000000:n/0/4.000000/2.000000/12.000000/3.000000:w/0/4.000000/2.000000/12.000000/3.000000:e/0/4.000000/2.000000/12.000000/3.000000:s/0/4.000000/2.000000/12.000000/3.000000:u/0/4.000000/4.000000/12.000000/12.000000/0/y/0/-1/0,box=3.000000/0.000000/3.000000:13.000000/13.000000/13.000000:n/0/3.000000/3.000000/13.000000/16.000000:d/0/3.000000/3.000000/13.000000/13.000000:w/0/3.000000/3.000000/13.000000/16.000000:e/0/3.000000/3.000000/13.000000/16.000000:s/0/3.000000/3.000000/13.000000/16.000000:u/0/3.000000/3.000000/13.000000/13.000000,box=2.000000/1.000000/2.000000:14.000000/11.000000/14.000000:n/0/2.000000/5.000000/14.000000/15.000000:d/0/2.000000/2.000000/14.000000/14.000000:w/0/2.000000/5.000000/14.000000/15.000000:e/0/2.000000/5.000000/14.000000/15.000000:s/0/2.000000/5.000000/14.000000/15.000000:u/0/2.000000/2.000000/14.000000/14.000000,box=1.000000/3.000000/1.000000:15.000000/8.000000/15.000000:n/0/1.000000/8.000000/15.000000/13.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/8.000000/15.000000/13.000000:e/0/1.000000/8.000000/15.000000/13.000000:s/0/1.000000/8.000000/15.000000/13.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%dried_ghast,state=facing=east/hydration=0,box=3.000000/0.000000/3.000000:13.000000/10.000000/13.000000:n/0/0.000000/0.000000/10.000000/10.000000:d/0/10.000000/0.000000/0.000000/10.000000:w/0/0.000000/0.000000/10.000000/10.000000:e/0/0.000000/0.000000/10.000000/10.000000:s/0/0.000000/0.000000/10.000000/10.000000:u/0/0.000000/0.000000/10.000000/10.000000:R/0/90/0,box=0.000000/0.000000/5.000000:3.000000/1.000000/7.000000:n/0/1.000000/1.500000/2.500000/2.000000:d/0/2.500000/1.500000/3.500000/0.000000:w/0/2.500000/1.500000/3.500000/2.000000:e/0/0.000000/1.500000/1.000000/2.000000:s/0/3.500000/1.500000/5.000000/2.000000:u/0/2.500000/1.500000/1.500000/0.000000:R/0/90/0,box=0.000000/0.000000/9.000000:3.000000/1.000000/11.000000:n/0/1.000000/3.500000/2.500000/4.000000:d/0/2.500000/3.500000/3.500000/2.000000:w/0/2.500000/3.500000/3.500000/4.000000:e/0/0.000000/3.500000/1.000000/4.000000:s/0/3.500000/3.500000/5.000000/4.000000:u/0/2.500000/3.500000/1.500000/2.000000:R/0/90/0,box=13.000000/0.000000/5.000000:16.000000/1.000000/7.000000:n/0/2.500000/7.500000/1.000000/8.000000:d/0/2.500000/6.000000/3.500000/7.500000:w/0/1.000000/7.500000/0.000000/8.000000:e/0/3.500000/7.500000/2.500000/8.000000:s/0/5.000000/7.500000/3.500000/8.000000:u/0/2.500000/6.000000/1.500000/7.500000:R/0/90/0,box=13.000000/0.000000/9.000000:16.000000/1.000000/11.000000:n/0/2.500000/5.500000/1.000000/6.000000:d/0/2.500000/4.000000/3.500000/5.500000:w/0/1.000000/5.500000/0.000000/6.000000:e/0/3.500000/5.500000/2.500000/6.000000:s/0/5.000000/5.500000/3.500000/6.000000:u/0/2.500000/4.000000/1.500000/5.500000:R/0/90/0,box=9.000000/0.000000/13.000000:11.000000/1.000000/16.000000:n/0/6.000000/2.500000/5.000000/3.000000:d/0/7.500000/1.500000/9.000000/2.500000:w/0/10.000000/2.500000/8.500000/3.000000:e/0/7.500000/2.500000/6.000000/3.000000:s/0/8.500000/2.500000/7.500000/3.000000:u/0/6.000000/2.500000/7.500000/1.500000:R/0/90/0,box=5.000000/0.000000/13.000000:7.000000/1.000000/16.000000:n/0/6.000000/1.000000/5.000000/1.500000:d/0/7.500000/0.000000/9.000000/1.000000:w/0/10.000000/1.000000/8.500000/1.500000:e/0/7.500000/1.000000/6.000000/1.500000:s/0/8.500000/1.000000/7.500000/1.500000:u/0/6.000000/1.000000/7.500000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%dried_ghast,state=facing=east/hydration=1,box=3.000000/0.000000/3.000000:13.000000/10.000000/13.000000:n/0/0.000000/0.000000/10.000000/10.000000:d/0/10.000000/0.000000/0.000000/10.000000:w/0/0.000000/0.000000/10.000000/10.000000:e/0/0.000000/0.000000/10.000000/10.000000:s/0/0.000000/0.000000/10.000000/10.000000:u/0/0.000000/0.000000/10.000000/10.000000:R/0/90/0,box=0.000000/0.000000/5.000000:3.000000/1.000000/7.000000:n/0/1.000000/1.500000/2.500000/2.000000:d/0/2.500000/1.500000/3.500000/0.000000:w/0/2.500000/1.500000/3.500000/2.000000:e/0/0.000000/1.500000/1.000000/2.000000:s/0/3.500000/1.500000/5.000000/2.000000:u/0/2.500000/1.500000/1.500000/0.000000:R/0/90/0,box=0.000000/0.000000/9.000000:3.000000/1.000000/11.000000:n/0/1.000000/3.500000/2.500000/4.000000:d/0/2.500000/3.500000/3.500000/2.000000:w/0/2.500000/3.500000/3.500000/4.000000:e/0/0.000000/3.500000/1.000000/4.000000:s/0/3.500000/3.500000/5.000000/4.000000:u/0/2.500000/3.500000/1.500000/2.000000:R/0/90/0,box=13.000000/0.000000/5.000000:16.000000/1.000000/7.000000:n/0/2.500000/7.500000/1.000000/8.000000:d/0/2.500000/6.000000/3.500000/7.500000:w/0/1.000000/7.500000/0.000000/8.000000:e/0/3.500000/7.500000/2.500000/8.000000:s/0/5.000000/7.500000/3.500000/8.000000:u/0/2.500000/6.000000/1.500000/7.500000:R/0/90/0,box=13.000000/0.000000/9.000000:16.000000/1.000000/11.000000:n/0/2.500000/5.500000/1.000000/6.000000:d/0/2.500000/4.000000/3.500000/5.500000:w/0/1.000000/5.500000/0.000000/6.000000:e/0/3.500000/5.500000/2.500000/6.000000:s/0/5.000000/5.500000/3.500000/6.000000:u/0/2.500000/4.000000/1.500000/5.500000:R/0/90/0,box=9.000000/0.000000/13.000000:11.000000/1.000000/16.000000:n/0/6.000000/2.500000/5.000000/3.000000:d/0/7.500000/1.500000/9.000000/2.500000:w/0/10.000000/2.500000/8.500000/3.000000:e/0/7.500000/2.500000/6.000000/3.000000:s/0/8.500000/2.500000/7.500000/3.000000:u/0/6.000000/2.500000/7.500000/1.500000:R/0/90/0,box=5.000000/0.000000/13.000000:7.000000/1.000000/16.000000:n/0/6.000000/1.000000/5.000000/1.500000:d/0/7.500000/0.000000/9.000000/1.000000:w/0/10.000000/1.000000/8.500000/1.500000:e/0/7.500000/1.000000/6.000000/1.500000:s/0/8.500000/1.000000/7.500000/1.500000:u/0/6.000000/1.000000/7.500000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%dried_ghast,state=facing=east/hydration=2,box=3.000000/0.000000/3.000000:13.000000/10.000000/13.000000:n/0/0.000000/0.000000/10.000000/10.000000:d/0/10.000000/0.000000/0.000000/10.000000:w/0/0.000000/0.000000/10.000000/10.000000:e/0/0.000000/0.000000/10.000000/10.000000:s/0/0.000000/0.000000/10.000000/10.000000:u/0/0.000000/0.000000/10.000000/10.000000:R/0/90/0,box=0.000000/0.000000/5.000000:3.000000/1.000000/7.000000:n/0/1.000000/1.500000/2.500000/2.000000:d/0/2.500000/1.500000/3.500000/0.000000:w/0/2.500000/1.500000/3.500000/2.000000:e/0/0.000000/1.500000/1.000000/2.000000:s/0/3.500000/1.500000/5.000000/2.000000:u/0/2.500000/1.500000/1.500000/0.000000:R/0/90/0,box=0.000000/0.000000/9.000000:3.000000/1.000000/11.000000:n/0/1.000000/3.500000/2.500000/4.000000:d/0/2.500000/3.500000/3.500000/2.000000:w/0/2.500000/3.500000/3.500000/4.000000:e/0/0.000000/3.500000/1.000000/4.000000:s/0/3.500000/3.500000/5.000000/4.000000:u/0/2.500000/3.500000/1.500000/2.000000:R/0/90/0,box=13.000000/0.000000/5.000000:16.000000/1.000000/7.000000:n/0/2.500000/7.500000/1.000000/8.000000:d/0/2.500000/6.000000/3.500000/7.500000:w/0/1.000000/7.500000/0.000000/8.000000:e/0/3.500000/7.500000/2.500000/8.000000:s/0/5.000000/7.500000/3.500000/8.000000:u/0/2.500000/6.000000/1.500000/7.500000:R/0/90/0,box=13.000000/0.000000/9.000000:16.000000/1.000000/11.000000:n/0/2.500000/5.500000/1.000000/6.000000:d/0/2.500000/4.000000/3.500000/5.500000:w/0/1.000000/5.500000/0.000000/6.000000:e/0/3.500000/5.500000/2.500000/6.000000:s/0/5.000000/5.500000/3.500000/6.000000:u/0/2.500000/4.000000/1.500000/5.500000:R/0/90/0,box=9.000000/0.000000/13.000000:11.000000/1.000000/16.000000:n/0/6.000000/2.500000/5.000000/3.000000:d/0/7.500000/1.500000/9.000000/2.500000:w/0/10.000000/2.500000/8.500000/3.000000:e/0/7.500000/2.500000/6.000000/3.000000:s/0/8.500000/2.500000/7.500000/3.000000:u/0/6.000000/2.500000/7.500000/1.500000:R/0/90/0,box=5.000000/0.000000/13.000000:7.000000/1.000000/16.000000:n/0/6.000000/1.000000/5.000000/1.500000:d/0/7.500000/0.000000/9.000000/1.000000:w/0/10.000000/1.000000/8.500000/1.500000:e/0/7.500000/1.000000/6.000000/1.500000:s/0/8.500000/1.000000/7.500000/1.500000:u/0/6.000000/1.000000/7.500000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%dried_ghast,state=facing=east/hydration=3,box=3.000000/0.000000/3.000000:13.000000/10.000000/13.000000:n/0/0.000000/0.000000/10.000000/10.000000:d/0/10.000000/0.000000/0.000000/10.000000:w/0/0.000000/0.000000/10.000000/10.000000:e/0/0.000000/0.000000/10.000000/10.000000:s/0/0.000000/0.000000/10.000000/10.000000:u/0/0.000000/0.000000/10.000000/10.000000:R/0/90/0,box=0.000000/0.000000/5.000000:3.000000/1.000000/7.000000:n/0/1.000000/1.500000/2.500000/2.000000:d/0/2.500000/1.500000/3.500000/0.000000:w/0/2.500000/1.500000/3.500000/2.000000:e/0/0.000000/1.500000/1.000000/2.000000:s/0/3.500000/1.500000/5.000000/2.000000:u/0/2.500000/1.500000/1.500000/0.000000:R/0/90/0,box=0.000000/0.000000/9.000000:3.000000/1.000000/11.000000:n/0/1.000000/3.500000/2.500000/4.000000:d/0/2.500000/3.500000/3.500000/2.000000:w/0/2.500000/3.500000/3.500000/4.000000:e/0/0.000000/3.500000/1.000000/4.000000:s/0/3.500000/3.500000/5.000000/4.000000:u/0/2.500000/3.500000/1.500000/2.000000:R/0/90/0,box=13.000000/0.000000/5.000000:16.000000/1.000000/7.000000:n/0/2.500000/7.500000/1.000000/8.000000:d/0/2.500000/6.000000/3.500000/7.500000:w/0/1.000000/7.500000/0.000000/8.000000:e/0/3.500000/7.500000/2.500000/8.000000:s/0/5.000000/7.500000/3.500000/8.000000:u/0/2.500000/6.000000/1.500000/7.500000:R/0/90/0,box=13.000000/0.000000/9.000000:16.000000/1.000000/11.000000:n/0/2.500000/5.500000/1.000000/6.000000:d/0/2.500000/4.000000/3.500000/5.500000:w/0/1.000000/5.500000/0.000000/6.000000:e/0/3.500000/5.500000/2.500000/6.000000:s/0/5.000000/5.500000/3.500000/6.000000:u/0/2.500000/4.000000/1.500000/5.500000:R/0/90/0,box=9.000000/0.000000/13.000000:11.000000/1.000000/16.000000:n/0/6.000000/2.500000/5.000000/3.000000:d/0/7.500000/1.500000/9.000000/2.500000:w/0/10.000000/2.500000/8.500000/3.000000:e/0/7.500000/2.500000/6.000000/3.000000:s/0/8.500000/2.500000/7.500000/3.000000:u/0/6.000000/2.500000/7.500000/1.500000:R/0/90/0,box=5.000000/0.000000/13.000000:7.000000/1.000000/16.000000:n/0/6.000000/1.000000/5.000000/1.500000:d/0/7.500000/0.000000/9.000000/1.000000:w/0/10.000000/1.000000/8.500000/1.500000:e/0/7.500000/1.000000/6.000000/1.500000:s/0/8.500000/1.000000/7.500000/1.500000:u/0/6.000000/1.000000/7.500000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%dried_ghast,state=facing=north/hydration=0,box=3.000000/0.000000/3.000000:13.000000/10.000000/13.000000:n/0/0.000000/0.000000/10.000000/10.000000:d/0/10.000000/0.000000/0.000000/10.000000:w/0/0.000000/0.000000/10.000000/10.000000:e/0/0.000000/0.000000/10.000000/10.000000:s/0/0.000000/0.000000/10.000000/10.000000:u/0/0.000000/0.000000/10.000000/10.000000/0/y/11/0/11,box=0.000000/0.000000/5.000000:3.000000/1.000000/7.000000:n/0/1.000000/1.500000/2.500000/2.000000:d/0/2.500000/1.500000/3.500000/0.000000:w/0/2.500000/1.500000/3.500000/2.000000:e/0/0.000000/1.500000/1.000000/2.000000:s/0/3.500000/1.500000/5.000000/2.000000:u/0/2.500000/1.500000/1.500000/0.000000/0/y/8/0/13,box=0.000000/0.000000/9.000000:3.000000/1.000000/11.000000:n/0/1.000000/3.500000/2.500000/4.000000:d/0/2.500000/3.500000/3.500000/2.000000:w/0/2.500000/3.500000/3.500000/4.000000:e/0/0.000000/3.500000/1.000000/4.000000:s/0/3.500000/3.500000/5.000000/4.000000:u/0/2.500000/3.500000/1.500000/2.000000/0/y/8/0/17,box=13.000000/0.000000/5.000000:16.000000/1.000000/7.000000:n/0/2.500000/7.500000/1.000000/8.000000:d/0/2.500000/6.000000/3.500000/7.500000:w/0/1.000000/7.500000/0.000000/8.000000:e/0/3.500000/7.500000/2.500000/8.000000:s/0/5.000000/7.500000/3.500000/8.000000:u/0/2.500000/6.000000/1.500000/7.500000/0/y/8/0/13,box=13.000000/0.000000/9.000000:16.000000/1.000000/11.000000:n/0/2.500000/5.500000/1.000000/6.000000:d/0/2.500000/4.000000/3.500000/5.500000:w/0/1.000000/5.500000/0.000000/6.000000:e/0/3.500000/5.500000/2.500000/6.000000:s/0/5.000000/5.500000/3.500000/6.000000:u/0/2.500000/4.000000/1.500000/5.500000/0/y/8/0/17,box=9.000000/0.000000/13.000000:11.000000/1.000000/16.000000:n/0/6.000000/2.500000/5.000000/3.000000:d/0/7.500000/1.500000/9.000000/2.500000:w/0/10.000000/2.500000/8.500000/3.000000:e/0/7.500000/2.500000/6.000000/3.000000:s/0/8.500000/2.500000/7.500000/3.000000:u/0/6.000000/2.500000/7.500000/1.500000/0/y/10.5/0.5/14.5,box=5.000000/0.000000/13.000000:7.000000/1.000000/16.000000:n/0/6.000000/1.000000/5.000000/1.500000:d/0/7.500000/0.000000/9.000000/1.000000:w/0/10.000000/1.000000/8.500000/1.500000:e/0/7.500000/1.000000/6.000000/1.500000:s/0/8.500000/1.000000/7.500000/1.500000:u/0/6.000000/1.000000/7.500000/0.000000/0/y/5.5/0.5/14.5 +[1.21.4-]modellist:id=%dried_ghast,state=facing=north/hydration=1,box=3.000000/0.000000/3.000000:13.000000/10.000000/13.000000:n/0/0.000000/0.000000/10.000000/10.000000:d/0/10.000000/0.000000/0.000000/10.000000:w/0/0.000000/0.000000/10.000000/10.000000:e/0/0.000000/0.000000/10.000000/10.000000:s/0/0.000000/0.000000/10.000000/10.000000:u/0/0.000000/0.000000/10.000000/10.000000/0/y/11/0/11,box=0.000000/0.000000/5.000000:3.000000/1.000000/7.000000:n/0/1.000000/1.500000/2.500000/2.000000:d/0/2.500000/1.500000/3.500000/0.000000:w/0/2.500000/1.500000/3.500000/2.000000:e/0/0.000000/1.500000/1.000000/2.000000:s/0/3.500000/1.500000/5.000000/2.000000:u/0/2.500000/1.500000/1.500000/0.000000/0/y/8/0/13,box=0.000000/0.000000/9.000000:3.000000/1.000000/11.000000:n/0/1.000000/3.500000/2.500000/4.000000:d/0/2.500000/3.500000/3.500000/2.000000:w/0/2.500000/3.500000/3.500000/4.000000:e/0/0.000000/3.500000/1.000000/4.000000:s/0/3.500000/3.500000/5.000000/4.000000:u/0/2.500000/3.500000/1.500000/2.000000/0/y/8/0/17,box=13.000000/0.000000/5.000000:16.000000/1.000000/7.000000:n/0/2.500000/7.500000/1.000000/8.000000:d/0/2.500000/6.000000/3.500000/7.500000:w/0/1.000000/7.500000/0.000000/8.000000:e/0/3.500000/7.500000/2.500000/8.000000:s/0/5.000000/7.500000/3.500000/8.000000:u/0/2.500000/6.000000/1.500000/7.500000/0/y/8/0/13,box=13.000000/0.000000/9.000000:16.000000/1.000000/11.000000:n/0/2.500000/5.500000/1.000000/6.000000:d/0/2.500000/4.000000/3.500000/5.500000:w/0/1.000000/5.500000/0.000000/6.000000:e/0/3.500000/5.500000/2.500000/6.000000:s/0/5.000000/5.500000/3.500000/6.000000:u/0/2.500000/4.000000/1.500000/5.500000/0/y/8/0/17,box=9.000000/0.000000/13.000000:11.000000/1.000000/16.000000:n/0/6.000000/2.500000/5.000000/3.000000:d/0/7.500000/1.500000/9.000000/2.500000:w/0/10.000000/2.500000/8.500000/3.000000:e/0/7.500000/2.500000/6.000000/3.000000:s/0/8.500000/2.500000/7.500000/3.000000:u/0/6.000000/2.500000/7.500000/1.500000/0/y/10.5/0.5/14.5,box=5.000000/0.000000/13.000000:7.000000/1.000000/16.000000:n/0/6.000000/1.000000/5.000000/1.500000:d/0/7.500000/0.000000/9.000000/1.000000:w/0/10.000000/1.000000/8.500000/1.500000:e/0/7.500000/1.000000/6.000000/1.500000:s/0/8.500000/1.000000/7.500000/1.500000:u/0/6.000000/1.000000/7.500000/0.000000/0/y/5.5/0.5/14.5 +[1.21.4-]modellist:id=%dried_ghast,state=facing=north/hydration=2,box=3.000000/0.000000/3.000000:13.000000/10.000000/13.000000:n/0/0.000000/0.000000/10.000000/10.000000:d/0/10.000000/0.000000/0.000000/10.000000:w/0/0.000000/0.000000/10.000000/10.000000:e/0/0.000000/0.000000/10.000000/10.000000:s/0/0.000000/0.000000/10.000000/10.000000:u/0/0.000000/0.000000/10.000000/10.000000/0/y/11/0/11,box=0.000000/0.000000/5.000000:3.000000/1.000000/7.000000:n/0/1.000000/1.500000/2.500000/2.000000:d/0/2.500000/1.500000/3.500000/0.000000:w/0/2.500000/1.500000/3.500000/2.000000:e/0/0.000000/1.500000/1.000000/2.000000:s/0/3.500000/1.500000/5.000000/2.000000:u/0/2.500000/1.500000/1.500000/0.000000/0/y/8/0/13,box=0.000000/0.000000/9.000000:3.000000/1.000000/11.000000:n/0/1.000000/3.500000/2.500000/4.000000:d/0/2.500000/3.500000/3.500000/2.000000:w/0/2.500000/3.500000/3.500000/4.000000:e/0/0.000000/3.500000/1.000000/4.000000:s/0/3.500000/3.500000/5.000000/4.000000:u/0/2.500000/3.500000/1.500000/2.000000/0/y/8/0/17,box=13.000000/0.000000/5.000000:16.000000/1.000000/7.000000:n/0/2.500000/7.500000/1.000000/8.000000:d/0/2.500000/6.000000/3.500000/7.500000:w/0/1.000000/7.500000/0.000000/8.000000:e/0/3.500000/7.500000/2.500000/8.000000:s/0/5.000000/7.500000/3.500000/8.000000:u/0/2.500000/6.000000/1.500000/7.500000/0/y/8/0/13,box=13.000000/0.000000/9.000000:16.000000/1.000000/11.000000:n/0/2.500000/5.500000/1.000000/6.000000:d/0/2.500000/4.000000/3.500000/5.500000:w/0/1.000000/5.500000/0.000000/6.000000:e/0/3.500000/5.500000/2.500000/6.000000:s/0/5.000000/5.500000/3.500000/6.000000:u/0/2.500000/4.000000/1.500000/5.500000/0/y/8/0/17,box=9.000000/0.000000/13.000000:11.000000/1.000000/16.000000:n/0/6.000000/2.500000/5.000000/3.000000:d/0/7.500000/1.500000/9.000000/2.500000:w/0/10.000000/2.500000/8.500000/3.000000:e/0/7.500000/2.500000/6.000000/3.000000:s/0/8.500000/2.500000/7.500000/3.000000:u/0/6.000000/2.500000/7.500000/1.500000/0/y/10.5/0.5/14.5,box=5.000000/0.000000/13.000000:7.000000/1.000000/16.000000:n/0/6.000000/1.000000/5.000000/1.500000:d/0/7.500000/0.000000/9.000000/1.000000:w/0/10.000000/1.000000/8.500000/1.500000:e/0/7.500000/1.000000/6.000000/1.500000:s/0/8.500000/1.000000/7.500000/1.500000:u/0/6.000000/1.000000/7.500000/0.000000/0/y/5.5/0.5/14.5 +[1.21.4-]modellist:id=%dried_ghast,state=facing=north/hydration=3,box=3.000000/0.000000/3.000000:13.000000/10.000000/13.000000:n/0/0.000000/0.000000/10.000000/10.000000:d/0/10.000000/0.000000/0.000000/10.000000:w/0/0.000000/0.000000/10.000000/10.000000:e/0/0.000000/0.000000/10.000000/10.000000:s/0/0.000000/0.000000/10.000000/10.000000:u/0/0.000000/0.000000/10.000000/10.000000/0/y/11/0/11,box=0.000000/0.000000/5.000000:3.000000/1.000000/7.000000:n/0/1.000000/1.500000/2.500000/2.000000:d/0/2.500000/1.500000/3.500000/0.000000:w/0/2.500000/1.500000/3.500000/2.000000:e/0/0.000000/1.500000/1.000000/2.000000:s/0/3.500000/1.500000/5.000000/2.000000:u/0/2.500000/1.500000/1.500000/0.000000/0/y/8/0/13,box=0.000000/0.000000/9.000000:3.000000/1.000000/11.000000:n/0/1.000000/3.500000/2.500000/4.000000:d/0/2.500000/3.500000/3.500000/2.000000:w/0/2.500000/3.500000/3.500000/4.000000:e/0/0.000000/3.500000/1.000000/4.000000:s/0/3.500000/3.500000/5.000000/4.000000:u/0/2.500000/3.500000/1.500000/2.000000/0/y/8/0/17,box=13.000000/0.000000/5.000000:16.000000/1.000000/7.000000:n/0/2.500000/7.500000/1.000000/8.000000:d/0/2.500000/6.000000/3.500000/7.500000:w/0/1.000000/7.500000/0.000000/8.000000:e/0/3.500000/7.500000/2.500000/8.000000:s/0/5.000000/7.500000/3.500000/8.000000:u/0/2.500000/6.000000/1.500000/7.500000/0/y/8/0/13,box=13.000000/0.000000/9.000000:16.000000/1.000000/11.000000:n/0/2.500000/5.500000/1.000000/6.000000:d/0/2.500000/4.000000/3.500000/5.500000:w/0/1.000000/5.500000/0.000000/6.000000:e/0/3.500000/5.500000/2.500000/6.000000:s/0/5.000000/5.500000/3.500000/6.000000:u/0/2.500000/4.000000/1.500000/5.500000/0/y/8/0/17,box=9.000000/0.000000/13.000000:11.000000/1.000000/16.000000:n/0/6.000000/2.500000/5.000000/3.000000:d/0/7.500000/1.500000/9.000000/2.500000:w/0/10.000000/2.500000/8.500000/3.000000:e/0/7.500000/2.500000/6.000000/3.000000:s/0/8.500000/2.500000/7.500000/3.000000:u/0/6.000000/2.500000/7.500000/1.500000/0/y/10.5/0.5/14.5,box=5.000000/0.000000/13.000000:7.000000/1.000000/16.000000:n/0/6.000000/1.000000/5.000000/1.500000:d/0/7.500000/0.000000/9.000000/1.000000:w/0/10.000000/1.000000/8.500000/1.500000:e/0/7.500000/1.000000/6.000000/1.500000:s/0/8.500000/1.000000/7.500000/1.500000:u/0/6.000000/1.000000/7.500000/0.000000/0/y/5.5/0.5/14.5 +[1.21.4-]modellist:id=%dried_ghast,state=facing=south/hydration=0,box=3.000000/0.000000/3.000000:13.000000/10.000000/13.000000:n/0/0.000000/0.000000/10.000000/10.000000:d/0/10.000000/0.000000/0.000000/10.000000:w/0/0.000000/0.000000/10.000000/10.000000:e/0/0.000000/0.000000/10.000000/10.000000:s/0/0.000000/0.000000/10.000000/10.000000:u/0/0.000000/0.000000/10.000000/10.000000:R/0/180/0,box=0.000000/0.000000/5.000000:3.000000/1.000000/7.000000:n/0/1.000000/1.500000/2.500000/2.000000:d/0/2.500000/1.500000/3.500000/0.000000:w/0/2.500000/1.500000/3.500000/2.000000:e/0/0.000000/1.500000/1.000000/2.000000:s/0/3.500000/1.500000/5.000000/2.000000:u/0/2.500000/1.500000/1.500000/0.000000:R/0/180/0,box=0.000000/0.000000/9.000000:3.000000/1.000000/11.000000:n/0/1.000000/3.500000/2.500000/4.000000:d/0/2.500000/3.500000/3.500000/2.000000:w/0/2.500000/3.500000/3.500000/4.000000:e/0/0.000000/3.500000/1.000000/4.000000:s/0/3.500000/3.500000/5.000000/4.000000:u/0/2.500000/3.500000/1.500000/2.000000:R/0/180/0,box=13.000000/0.000000/5.000000:16.000000/1.000000/7.000000:n/0/2.500000/7.500000/1.000000/8.000000:d/0/2.500000/6.000000/3.500000/7.500000:w/0/1.000000/7.500000/0.000000/8.000000:e/0/3.500000/7.500000/2.500000/8.000000:s/0/5.000000/7.500000/3.500000/8.000000:u/0/2.500000/6.000000/1.500000/7.500000:R/0/180/0,box=13.000000/0.000000/9.000000:16.000000/1.000000/11.000000:n/0/2.500000/5.500000/1.000000/6.000000:d/0/2.500000/4.000000/3.500000/5.500000:w/0/1.000000/5.500000/0.000000/6.000000:e/0/3.500000/5.500000/2.500000/6.000000:s/0/5.000000/5.500000/3.500000/6.000000:u/0/2.500000/4.000000/1.500000/5.500000:R/0/180/0,box=9.000000/0.000000/13.000000:11.000000/1.000000/16.000000:n/0/6.000000/2.500000/5.000000/3.000000:d/0/7.500000/1.500000/9.000000/2.500000:w/0/10.000000/2.500000/8.500000/3.000000:e/0/7.500000/2.500000/6.000000/3.000000:s/0/8.500000/2.500000/7.500000/3.000000:u/0/6.000000/2.500000/7.500000/1.500000:R/0/180/0,box=5.000000/0.000000/13.000000:7.000000/1.000000/16.000000:n/0/6.000000/1.000000/5.000000/1.500000:d/0/7.500000/0.000000/9.000000/1.000000:w/0/10.000000/1.000000/8.500000/1.500000:e/0/7.500000/1.000000/6.000000/1.500000:s/0/8.500000/1.000000/7.500000/1.500000:u/0/6.000000/1.000000/7.500000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%dried_ghast,state=facing=south/hydration=1,box=3.000000/0.000000/3.000000:13.000000/10.000000/13.000000:n/0/0.000000/0.000000/10.000000/10.000000:d/0/10.000000/0.000000/0.000000/10.000000:w/0/0.000000/0.000000/10.000000/10.000000:e/0/0.000000/0.000000/10.000000/10.000000:s/0/0.000000/0.000000/10.000000/10.000000:u/0/0.000000/0.000000/10.000000/10.000000:R/0/180/0,box=0.000000/0.000000/5.000000:3.000000/1.000000/7.000000:n/0/1.000000/1.500000/2.500000/2.000000:d/0/2.500000/1.500000/3.500000/0.000000:w/0/2.500000/1.500000/3.500000/2.000000:e/0/0.000000/1.500000/1.000000/2.000000:s/0/3.500000/1.500000/5.000000/2.000000:u/0/2.500000/1.500000/1.500000/0.000000:R/0/180/0,box=0.000000/0.000000/9.000000:3.000000/1.000000/11.000000:n/0/1.000000/3.500000/2.500000/4.000000:d/0/2.500000/3.500000/3.500000/2.000000:w/0/2.500000/3.500000/3.500000/4.000000:e/0/0.000000/3.500000/1.000000/4.000000:s/0/3.500000/3.500000/5.000000/4.000000:u/0/2.500000/3.500000/1.500000/2.000000:R/0/180/0,box=13.000000/0.000000/5.000000:16.000000/1.000000/7.000000:n/0/2.500000/7.500000/1.000000/8.000000:d/0/2.500000/6.000000/3.500000/7.500000:w/0/1.000000/7.500000/0.000000/8.000000:e/0/3.500000/7.500000/2.500000/8.000000:s/0/5.000000/7.500000/3.500000/8.000000:u/0/2.500000/6.000000/1.500000/7.500000:R/0/180/0,box=13.000000/0.000000/9.000000:16.000000/1.000000/11.000000:n/0/2.500000/5.500000/1.000000/6.000000:d/0/2.500000/4.000000/3.500000/5.500000:w/0/1.000000/5.500000/0.000000/6.000000:e/0/3.500000/5.500000/2.500000/6.000000:s/0/5.000000/5.500000/3.500000/6.000000:u/0/2.500000/4.000000/1.500000/5.500000:R/0/180/0,box=9.000000/0.000000/13.000000:11.000000/1.000000/16.000000:n/0/6.000000/2.500000/5.000000/3.000000:d/0/7.500000/1.500000/9.000000/2.500000:w/0/10.000000/2.500000/8.500000/3.000000:e/0/7.500000/2.500000/6.000000/3.000000:s/0/8.500000/2.500000/7.500000/3.000000:u/0/6.000000/2.500000/7.500000/1.500000:R/0/180/0,box=5.000000/0.000000/13.000000:7.000000/1.000000/16.000000:n/0/6.000000/1.000000/5.000000/1.500000:d/0/7.500000/0.000000/9.000000/1.000000:w/0/10.000000/1.000000/8.500000/1.500000:e/0/7.500000/1.000000/6.000000/1.500000:s/0/8.500000/1.000000/7.500000/1.500000:u/0/6.000000/1.000000/7.500000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%dried_ghast,state=facing=south/hydration=2,box=3.000000/0.000000/3.000000:13.000000/10.000000/13.000000:n/0/0.000000/0.000000/10.000000/10.000000:d/0/10.000000/0.000000/0.000000/10.000000:w/0/0.000000/0.000000/10.000000/10.000000:e/0/0.000000/0.000000/10.000000/10.000000:s/0/0.000000/0.000000/10.000000/10.000000:u/0/0.000000/0.000000/10.000000/10.000000:R/0/180/0,box=0.000000/0.000000/5.000000:3.000000/1.000000/7.000000:n/0/1.000000/1.500000/2.500000/2.000000:d/0/2.500000/1.500000/3.500000/0.000000:w/0/2.500000/1.500000/3.500000/2.000000:e/0/0.000000/1.500000/1.000000/2.000000:s/0/3.500000/1.500000/5.000000/2.000000:u/0/2.500000/1.500000/1.500000/0.000000:R/0/180/0,box=0.000000/0.000000/9.000000:3.000000/1.000000/11.000000:n/0/1.000000/3.500000/2.500000/4.000000:d/0/2.500000/3.500000/3.500000/2.000000:w/0/2.500000/3.500000/3.500000/4.000000:e/0/0.000000/3.500000/1.000000/4.000000:s/0/3.500000/3.500000/5.000000/4.000000:u/0/2.500000/3.500000/1.500000/2.000000:R/0/180/0,box=13.000000/0.000000/5.000000:16.000000/1.000000/7.000000:n/0/2.500000/7.500000/1.000000/8.000000:d/0/2.500000/6.000000/3.500000/7.500000:w/0/1.000000/7.500000/0.000000/8.000000:e/0/3.500000/7.500000/2.500000/8.000000:s/0/5.000000/7.500000/3.500000/8.000000:u/0/2.500000/6.000000/1.500000/7.500000:R/0/180/0,box=13.000000/0.000000/9.000000:16.000000/1.000000/11.000000:n/0/2.500000/5.500000/1.000000/6.000000:d/0/2.500000/4.000000/3.500000/5.500000:w/0/1.000000/5.500000/0.000000/6.000000:e/0/3.500000/5.500000/2.500000/6.000000:s/0/5.000000/5.500000/3.500000/6.000000:u/0/2.500000/4.000000/1.500000/5.500000:R/0/180/0,box=9.000000/0.000000/13.000000:11.000000/1.000000/16.000000:n/0/6.000000/2.500000/5.000000/3.000000:d/0/7.500000/1.500000/9.000000/2.500000:w/0/10.000000/2.500000/8.500000/3.000000:e/0/7.500000/2.500000/6.000000/3.000000:s/0/8.500000/2.500000/7.500000/3.000000:u/0/6.000000/2.500000/7.500000/1.500000:R/0/180/0,box=5.000000/0.000000/13.000000:7.000000/1.000000/16.000000:n/0/6.000000/1.000000/5.000000/1.500000:d/0/7.500000/0.000000/9.000000/1.000000:w/0/10.000000/1.000000/8.500000/1.500000:e/0/7.500000/1.000000/6.000000/1.500000:s/0/8.500000/1.000000/7.500000/1.500000:u/0/6.000000/1.000000/7.500000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%dried_ghast,state=facing=south/hydration=3,box=3.000000/0.000000/3.000000:13.000000/10.000000/13.000000:n/0/0.000000/0.000000/10.000000/10.000000:d/0/10.000000/0.000000/0.000000/10.000000:w/0/0.000000/0.000000/10.000000/10.000000:e/0/0.000000/0.000000/10.000000/10.000000:s/0/0.000000/0.000000/10.000000/10.000000:u/0/0.000000/0.000000/10.000000/10.000000:R/0/180/0,box=0.000000/0.000000/5.000000:3.000000/1.000000/7.000000:n/0/1.000000/1.500000/2.500000/2.000000:d/0/2.500000/1.500000/3.500000/0.000000:w/0/2.500000/1.500000/3.500000/2.000000:e/0/0.000000/1.500000/1.000000/2.000000:s/0/3.500000/1.500000/5.000000/2.000000:u/0/2.500000/1.500000/1.500000/0.000000:R/0/180/0,box=0.000000/0.000000/9.000000:3.000000/1.000000/11.000000:n/0/1.000000/3.500000/2.500000/4.000000:d/0/2.500000/3.500000/3.500000/2.000000:w/0/2.500000/3.500000/3.500000/4.000000:e/0/0.000000/3.500000/1.000000/4.000000:s/0/3.500000/3.500000/5.000000/4.000000:u/0/2.500000/3.500000/1.500000/2.000000:R/0/180/0,box=13.000000/0.000000/5.000000:16.000000/1.000000/7.000000:n/0/2.500000/7.500000/1.000000/8.000000:d/0/2.500000/6.000000/3.500000/7.500000:w/0/1.000000/7.500000/0.000000/8.000000:e/0/3.500000/7.500000/2.500000/8.000000:s/0/5.000000/7.500000/3.500000/8.000000:u/0/2.500000/6.000000/1.500000/7.500000:R/0/180/0,box=13.000000/0.000000/9.000000:16.000000/1.000000/11.000000:n/0/2.500000/5.500000/1.000000/6.000000:d/0/2.500000/4.000000/3.500000/5.500000:w/0/1.000000/5.500000/0.000000/6.000000:e/0/3.500000/5.500000/2.500000/6.000000:s/0/5.000000/5.500000/3.500000/6.000000:u/0/2.500000/4.000000/1.500000/5.500000:R/0/180/0,box=9.000000/0.000000/13.000000:11.000000/1.000000/16.000000:n/0/6.000000/2.500000/5.000000/3.000000:d/0/7.500000/1.500000/9.000000/2.500000:w/0/10.000000/2.500000/8.500000/3.000000:e/0/7.500000/2.500000/6.000000/3.000000:s/0/8.500000/2.500000/7.500000/3.000000:u/0/6.000000/2.500000/7.500000/1.500000:R/0/180/0,box=5.000000/0.000000/13.000000:7.000000/1.000000/16.000000:n/0/6.000000/1.000000/5.000000/1.500000:d/0/7.500000/0.000000/9.000000/1.000000:w/0/10.000000/1.000000/8.500000/1.500000:e/0/7.500000/1.000000/6.000000/1.500000:s/0/8.500000/1.000000/7.500000/1.500000:u/0/6.000000/1.000000/7.500000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%dried_ghast,state=facing=west/hydration=0,box=3.000000/0.000000/3.000000:13.000000/10.000000/13.000000:n/0/0.000000/0.000000/10.000000/10.000000:d/0/10.000000/0.000000/0.000000/10.000000:w/0/0.000000/0.000000/10.000000/10.000000:e/0/0.000000/0.000000/10.000000/10.000000:s/0/0.000000/0.000000/10.000000/10.000000:u/0/0.000000/0.000000/10.000000/10.000000:R/0/270/0,box=0.000000/0.000000/5.000000:3.000000/1.000000/7.000000:n/0/1.000000/1.500000/2.500000/2.000000:d/0/2.500000/1.500000/3.500000/0.000000:w/0/2.500000/1.500000/3.500000/2.000000:e/0/0.000000/1.500000/1.000000/2.000000:s/0/3.500000/1.500000/5.000000/2.000000:u/0/2.500000/1.500000/1.500000/0.000000:R/0/270/0,box=0.000000/0.000000/9.000000:3.000000/1.000000/11.000000:n/0/1.000000/3.500000/2.500000/4.000000:d/0/2.500000/3.500000/3.500000/2.000000:w/0/2.500000/3.500000/3.500000/4.000000:e/0/0.000000/3.500000/1.000000/4.000000:s/0/3.500000/3.500000/5.000000/4.000000:u/0/2.500000/3.500000/1.500000/2.000000:R/0/270/0,box=13.000000/0.000000/5.000000:16.000000/1.000000/7.000000:n/0/2.500000/7.500000/1.000000/8.000000:d/0/2.500000/6.000000/3.500000/7.500000:w/0/1.000000/7.500000/0.000000/8.000000:e/0/3.500000/7.500000/2.500000/8.000000:s/0/5.000000/7.500000/3.500000/8.000000:u/0/2.500000/6.000000/1.500000/7.500000:R/0/270/0,box=13.000000/0.000000/9.000000:16.000000/1.000000/11.000000:n/0/2.500000/5.500000/1.000000/6.000000:d/0/2.500000/4.000000/3.500000/5.500000:w/0/1.000000/5.500000/0.000000/6.000000:e/0/3.500000/5.500000/2.500000/6.000000:s/0/5.000000/5.500000/3.500000/6.000000:u/0/2.500000/4.000000/1.500000/5.500000:R/0/270/0,box=9.000000/0.000000/13.000000:11.000000/1.000000/16.000000:n/0/6.000000/2.500000/5.000000/3.000000:d/0/7.500000/1.500000/9.000000/2.500000:w/0/10.000000/2.500000/8.500000/3.000000:e/0/7.500000/2.500000/6.000000/3.000000:s/0/8.500000/2.500000/7.500000/3.000000:u/0/6.000000/2.500000/7.500000/1.500000:R/0/270/0,box=5.000000/0.000000/13.000000:7.000000/1.000000/16.000000:n/0/6.000000/1.000000/5.000000/1.500000:d/0/7.500000/0.000000/9.000000/1.000000:w/0/10.000000/1.000000/8.500000/1.500000:e/0/7.500000/1.000000/6.000000/1.500000:s/0/8.500000/1.000000/7.500000/1.500000:u/0/6.000000/1.000000/7.500000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%dried_ghast,state=facing=west/hydration=1,box=3.000000/0.000000/3.000000:13.000000/10.000000/13.000000:n/0/0.000000/0.000000/10.000000/10.000000:d/0/10.000000/0.000000/0.000000/10.000000:w/0/0.000000/0.000000/10.000000/10.000000:e/0/0.000000/0.000000/10.000000/10.000000:s/0/0.000000/0.000000/10.000000/10.000000:u/0/0.000000/0.000000/10.000000/10.000000:R/0/270/0,box=0.000000/0.000000/5.000000:3.000000/1.000000/7.000000:n/0/1.000000/1.500000/2.500000/2.000000:d/0/2.500000/1.500000/3.500000/0.000000:w/0/2.500000/1.500000/3.500000/2.000000:e/0/0.000000/1.500000/1.000000/2.000000:s/0/3.500000/1.500000/5.000000/2.000000:u/0/2.500000/1.500000/1.500000/0.000000:R/0/270/0,box=0.000000/0.000000/9.000000:3.000000/1.000000/11.000000:n/0/1.000000/3.500000/2.500000/4.000000:d/0/2.500000/3.500000/3.500000/2.000000:w/0/2.500000/3.500000/3.500000/4.000000:e/0/0.000000/3.500000/1.000000/4.000000:s/0/3.500000/3.500000/5.000000/4.000000:u/0/2.500000/3.500000/1.500000/2.000000:R/0/270/0,box=13.000000/0.000000/5.000000:16.000000/1.000000/7.000000:n/0/2.500000/7.500000/1.000000/8.000000:d/0/2.500000/6.000000/3.500000/7.500000:w/0/1.000000/7.500000/0.000000/8.000000:e/0/3.500000/7.500000/2.500000/8.000000:s/0/5.000000/7.500000/3.500000/8.000000:u/0/2.500000/6.000000/1.500000/7.500000:R/0/270/0,box=13.000000/0.000000/9.000000:16.000000/1.000000/11.000000:n/0/2.500000/5.500000/1.000000/6.000000:d/0/2.500000/4.000000/3.500000/5.500000:w/0/1.000000/5.500000/0.000000/6.000000:e/0/3.500000/5.500000/2.500000/6.000000:s/0/5.000000/5.500000/3.500000/6.000000:u/0/2.500000/4.000000/1.500000/5.500000:R/0/270/0,box=9.000000/0.000000/13.000000:11.000000/1.000000/16.000000:n/0/6.000000/2.500000/5.000000/3.000000:d/0/7.500000/1.500000/9.000000/2.500000:w/0/10.000000/2.500000/8.500000/3.000000:e/0/7.500000/2.500000/6.000000/3.000000:s/0/8.500000/2.500000/7.500000/3.000000:u/0/6.000000/2.500000/7.500000/1.500000:R/0/270/0,box=5.000000/0.000000/13.000000:7.000000/1.000000/16.000000:n/0/6.000000/1.000000/5.000000/1.500000:d/0/7.500000/0.000000/9.000000/1.000000:w/0/10.000000/1.000000/8.500000/1.500000:e/0/7.500000/1.000000/6.000000/1.500000:s/0/8.500000/1.000000/7.500000/1.500000:u/0/6.000000/1.000000/7.500000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%dried_ghast,state=facing=west/hydration=2,box=3.000000/0.000000/3.000000:13.000000/10.000000/13.000000:n/0/0.000000/0.000000/10.000000/10.000000:d/0/10.000000/0.000000/0.000000/10.000000:w/0/0.000000/0.000000/10.000000/10.000000:e/0/0.000000/0.000000/10.000000/10.000000:s/0/0.000000/0.000000/10.000000/10.000000:u/0/0.000000/0.000000/10.000000/10.000000:R/0/270/0,box=0.000000/0.000000/5.000000:3.000000/1.000000/7.000000:n/0/1.000000/1.500000/2.500000/2.000000:d/0/2.500000/1.500000/3.500000/0.000000:w/0/2.500000/1.500000/3.500000/2.000000:e/0/0.000000/1.500000/1.000000/2.000000:s/0/3.500000/1.500000/5.000000/2.000000:u/0/2.500000/1.500000/1.500000/0.000000:R/0/270/0,box=0.000000/0.000000/9.000000:3.000000/1.000000/11.000000:n/0/1.000000/3.500000/2.500000/4.000000:d/0/2.500000/3.500000/3.500000/2.000000:w/0/2.500000/3.500000/3.500000/4.000000:e/0/0.000000/3.500000/1.000000/4.000000:s/0/3.500000/3.500000/5.000000/4.000000:u/0/2.500000/3.500000/1.500000/2.000000:R/0/270/0,box=13.000000/0.000000/5.000000:16.000000/1.000000/7.000000:n/0/2.500000/7.500000/1.000000/8.000000:d/0/2.500000/6.000000/3.500000/7.500000:w/0/1.000000/7.500000/0.000000/8.000000:e/0/3.500000/7.500000/2.500000/8.000000:s/0/5.000000/7.500000/3.500000/8.000000:u/0/2.500000/6.000000/1.500000/7.500000:R/0/270/0,box=13.000000/0.000000/9.000000:16.000000/1.000000/11.000000:n/0/2.500000/5.500000/1.000000/6.000000:d/0/2.500000/4.000000/3.500000/5.500000:w/0/1.000000/5.500000/0.000000/6.000000:e/0/3.500000/5.500000/2.500000/6.000000:s/0/5.000000/5.500000/3.500000/6.000000:u/0/2.500000/4.000000/1.500000/5.500000:R/0/270/0,box=9.000000/0.000000/13.000000:11.000000/1.000000/16.000000:n/0/6.000000/2.500000/5.000000/3.000000:d/0/7.500000/1.500000/9.000000/2.500000:w/0/10.000000/2.500000/8.500000/3.000000:e/0/7.500000/2.500000/6.000000/3.000000:s/0/8.500000/2.500000/7.500000/3.000000:u/0/6.000000/2.500000/7.500000/1.500000:R/0/270/0,box=5.000000/0.000000/13.000000:7.000000/1.000000/16.000000:n/0/6.000000/1.000000/5.000000/1.500000:d/0/7.500000/0.000000/9.000000/1.000000:w/0/10.000000/1.000000/8.500000/1.500000:e/0/7.500000/1.000000/6.000000/1.500000:s/0/8.500000/1.000000/7.500000/1.500000:u/0/6.000000/1.000000/7.500000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%dried_ghast,state=facing=west/hydration=3,box=3.000000/0.000000/3.000000:13.000000/10.000000/13.000000:n/0/0.000000/0.000000/10.000000/10.000000:d/0/10.000000/0.000000/0.000000/10.000000:w/0/0.000000/0.000000/10.000000/10.000000:e/0/0.000000/0.000000/10.000000/10.000000:s/0/0.000000/0.000000/10.000000/10.000000:u/0/0.000000/0.000000/10.000000/10.000000:R/0/270/0,box=0.000000/0.000000/5.000000:3.000000/1.000000/7.000000:n/0/1.000000/1.500000/2.500000/2.000000:d/0/2.500000/1.500000/3.500000/0.000000:w/0/2.500000/1.500000/3.500000/2.000000:e/0/0.000000/1.500000/1.000000/2.000000:s/0/3.500000/1.500000/5.000000/2.000000:u/0/2.500000/1.500000/1.500000/0.000000:R/0/270/0,box=0.000000/0.000000/9.000000:3.000000/1.000000/11.000000:n/0/1.000000/3.500000/2.500000/4.000000:d/0/2.500000/3.500000/3.500000/2.000000:w/0/2.500000/3.500000/3.500000/4.000000:e/0/0.000000/3.500000/1.000000/4.000000:s/0/3.500000/3.500000/5.000000/4.000000:u/0/2.500000/3.500000/1.500000/2.000000:R/0/270/0,box=13.000000/0.000000/5.000000:16.000000/1.000000/7.000000:n/0/2.500000/7.500000/1.000000/8.000000:d/0/2.500000/6.000000/3.500000/7.500000:w/0/1.000000/7.500000/0.000000/8.000000:e/0/3.500000/7.500000/2.500000/8.000000:s/0/5.000000/7.500000/3.500000/8.000000:u/0/2.500000/6.000000/1.500000/7.500000:R/0/270/0,box=13.000000/0.000000/9.000000:16.000000/1.000000/11.000000:n/0/2.500000/5.500000/1.000000/6.000000:d/0/2.500000/4.000000/3.500000/5.500000:w/0/1.000000/5.500000/0.000000/6.000000:e/0/3.500000/5.500000/2.500000/6.000000:s/0/5.000000/5.500000/3.500000/6.000000:u/0/2.500000/4.000000/1.500000/5.500000:R/0/270/0,box=9.000000/0.000000/13.000000:11.000000/1.000000/16.000000:n/0/6.000000/2.500000/5.000000/3.000000:d/0/7.500000/1.500000/9.000000/2.500000:w/0/10.000000/2.500000/8.500000/3.000000:e/0/7.500000/2.500000/6.000000/3.000000:s/0/8.500000/2.500000/7.500000/3.000000:u/0/6.000000/2.500000/7.500000/1.500000:R/0/270/0,box=5.000000/0.000000/13.000000:7.000000/1.000000/16.000000:n/0/6.000000/1.000000/5.000000/1.500000:d/0/7.500000/0.000000/9.000000/1.000000:w/0/10.000000/1.000000/8.500000/1.500000:e/0/7.500000/1.000000/6.000000/1.500000:s/0/8.500000/1.000000/7.500000/1.500000:u/0/6.000000/1.000000/7.500000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%enchanting_table,box=0.000000/0.000000/0.000000:16.000000/12.000000/16.000000:n/0/0.000000/4.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/4.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%end_portal_frame,state=eye=false/facing=east,box=0.000000/0.000000/0.000000:16.000000/13.000000/16.000000:n/0/0.000000/3.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/3.000000/16.000000/16.000000:e/0/0.000000/3.000000/16.000000/16.000000:s/0/0.000000/3.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%end_portal_frame,state=eye=false/facing=north,box=0.000000/0.000000/0.000000:16.000000/13.000000/16.000000:n/0/0.000000/3.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/3.000000/16.000000/16.000000:e/0/0.000000/3.000000/16.000000/16.000000:s/0/0.000000/3.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%end_portal_frame,state=eye=false/facing=south,box=0.000000/0.000000/0.000000:16.000000/13.000000/16.000000:n/0/0.000000/3.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/3.000000/16.000000/16.000000:e/0/0.000000/3.000000/16.000000/16.000000:s/0/0.000000/3.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%end_portal_frame,state=eye=false/facing=west,box=0.000000/0.000000/0.000000:16.000000/13.000000/16.000000:n/0/0.000000/3.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/3.000000/16.000000/16.000000:e/0/0.000000/3.000000/16.000000/16.000000:s/0/0.000000/3.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%end_portal_frame,state=eye=true/facing=east,box=0.000000/0.000000/0.000000:16.000000/13.000000/16.000000:n/0/0.000000/3.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/3.000000/16.000000/16.000000:e/0/0.000000/3.000000/16.000000/16.000000:s/0/0.000000/3.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=4.000000/13.000000/4.000000:12.000000/16.000000/12.000000:n/0/4.000000/0.000000/12.000000/3.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/4.000000/0.000000/12.000000/3.000000:u/0/4.000000/4.000000/12.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%end_portal_frame,state=eye=true/facing=north,box=0.000000/0.000000/0.000000:16.000000/13.000000/16.000000:n/0/0.000000/3.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/3.000000/16.000000/16.000000:e/0/0.000000/3.000000/16.000000/16.000000:s/0/0.000000/3.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=4.000000/13.000000/4.000000:12.000000/16.000000/12.000000:n/0/4.000000/0.000000/12.000000/3.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/4.000000/0.000000/12.000000/3.000000:u/0/4.000000/4.000000/12.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%end_portal_frame,state=eye=true/facing=south,box=0.000000/0.000000/0.000000:16.000000/13.000000/16.000000:n/0/0.000000/3.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/3.000000/16.000000/16.000000:e/0/0.000000/3.000000/16.000000/16.000000:s/0/0.000000/3.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=4.000000/13.000000/4.000000:12.000000/16.000000/12.000000:n/0/4.000000/0.000000/12.000000/3.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/4.000000/0.000000/12.000000/3.000000:u/0/4.000000/4.000000/12.000000/12.000000 +[1.21.4-]modellist:id=%end_portal_frame,state=eye=true/facing=west,box=0.000000/0.000000/0.000000:16.000000/13.000000/16.000000:n/0/0.000000/3.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/3.000000/16.000000/16.000000:e/0/0.000000/3.000000/16.000000/16.000000:s/0/0.000000/3.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=4.000000/13.000000/4.000000:12.000000/16.000000/12.000000:n/0/4.000000/0.000000/12.000000/3.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/4.000000/0.000000/12.000000/3.000000:u/0/4.000000/4.000000/12.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%end_rod,state=facing=down,box=6.000000/0.000000/6.000000:10.000000/1.000000/10.000000:n/0/2.000000/6.000000/6.000000/7.000000:d/0/6.000000/6.000000/2.000000/2.000000:w/0/2.000000/6.000000/6.000000/7.000000:e/0/2.000000/6.000000/6.000000/7.000000:s/0/2.000000/6.000000/6.000000/7.000000:u/0/2.000000/2.000000/6.000000/6.000000:R/180/0/0,box=7.000000/1.000000/7.000000:9.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/15.000000:w/0/0.000000/0.000000/2.000000/15.000000:e/0/0.000000/0.000000/2.000000/15.000000:s/0/0.000000/0.000000/2.000000/15.000000:u/0/2.000000/0.000000/4.000000/2.000000:R/180/0/0 +[1.21.4-]modellist:id=%end_rod,state=facing=east,box=6.000000/0.000000/6.000000:10.000000/1.000000/10.000000:n/0/2.000000/6.000000/6.000000/7.000000:d/0/6.000000/6.000000/2.000000/2.000000:w/0/2.000000/6.000000/6.000000/7.000000:e/0/2.000000/6.000000/6.000000/7.000000:s/0/2.000000/6.000000/6.000000/7.000000:u/0/2.000000/2.000000/6.000000/6.000000:R/90/90/0,box=7.000000/1.000000/7.000000:9.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/15.000000:w/0/0.000000/0.000000/2.000000/15.000000:e/0/0.000000/0.000000/2.000000/15.000000:s/0/0.000000/0.000000/2.000000/15.000000:u/0/2.000000/0.000000/4.000000/2.000000:R/90/90/0 +[1.21.4-]modellist:id=%end_rod,state=facing=north,box=6.000000/0.000000/6.000000:10.000000/1.000000/10.000000:n/0/2.000000/6.000000/6.000000/7.000000:d/0/6.000000/6.000000/2.000000/2.000000:w/0/2.000000/6.000000/6.000000/7.000000:e/0/2.000000/6.000000/6.000000/7.000000:s/0/2.000000/6.000000/6.000000/7.000000:u/0/2.000000/2.000000/6.000000/6.000000:R/90/0/0,box=7.000000/1.000000/7.000000:9.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/15.000000:w/0/0.000000/0.000000/2.000000/15.000000:e/0/0.000000/0.000000/2.000000/15.000000:s/0/0.000000/0.000000/2.000000/15.000000:u/0/2.000000/0.000000/4.000000/2.000000:R/90/0/0 +[1.21.4-]modellist:id=%end_rod,state=facing=south,box=6.000000/0.000000/6.000000:10.000000/1.000000/10.000000:n/0/2.000000/6.000000/6.000000/7.000000:d/0/6.000000/6.000000/2.000000/2.000000:w/0/2.000000/6.000000/6.000000/7.000000:e/0/2.000000/6.000000/6.000000/7.000000:s/0/2.000000/6.000000/6.000000/7.000000:u/0/2.000000/2.000000/6.000000/6.000000:R/90/180/0,box=7.000000/1.000000/7.000000:9.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/15.000000:w/0/0.000000/0.000000/2.000000/15.000000:e/0/0.000000/0.000000/2.000000/15.000000:s/0/0.000000/0.000000/2.000000/15.000000:u/0/2.000000/0.000000/4.000000/2.000000:R/90/180/0 +[1.21.4-]modellist:id=%end_rod,state=facing=up,box=6.000000/0.000000/6.000000:10.000000/1.000000/10.000000:n/0/2.000000/6.000000/6.000000/7.000000:d/0/6.000000/6.000000/2.000000/2.000000:w/0/2.000000/6.000000/6.000000/7.000000:e/0/2.000000/6.000000/6.000000/7.000000:s/0/2.000000/6.000000/6.000000/7.000000:u/0/2.000000/2.000000/6.000000/6.000000,box=7.000000/1.000000/7.000000:9.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/15.000000:w/0/0.000000/0.000000/2.000000/15.000000:e/0/0.000000/0.000000/2.000000/15.000000:s/0/0.000000/0.000000/2.000000/15.000000:u/0/2.000000/0.000000/4.000000/2.000000 +[1.21.4-]modellist:id=%end_rod,state=facing=west,box=6.000000/0.000000/6.000000:10.000000/1.000000/10.000000:n/0/2.000000/6.000000/6.000000/7.000000:d/0/6.000000/6.000000/2.000000/2.000000:w/0/2.000000/6.000000/6.000000/7.000000:e/0/2.000000/6.000000/6.000000/7.000000:s/0/2.000000/6.000000/6.000000/7.000000:u/0/2.000000/2.000000/6.000000/6.000000:R/90/270/0,box=7.000000/1.000000/7.000000:9.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/15.000000:w/0/0.000000/0.000000/2.000000/15.000000:e/0/0.000000/0.000000/2.000000/15.000000:s/0/0.000000/0.000000/2.000000/15.000000:u/0/2.000000/0.000000/4.000000/2.000000:R/90/270/0 +[1.21.4-]modellist:id=%end_stone_brick_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%end_stone_brick_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%end_stone_brick_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%end_stone_brick_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%end_stone_brick_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%end_stone_brick_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%end_stone_brick_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%end_stone_brick_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%end_stone_brick_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%end_stone_brick_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%end_stone_brick_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%end_stone_brick_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%exposed_copper_bars,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%exposed_copper_bars,state=east:false/north:false/south:false/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/16.000000/8.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%exposed_copper_bars,state=east:false/north:false/south:false/west:true,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_copper_bars,state=east:false/north:false/south:true/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%exposed_copper_bars,state=east:false/north:true/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%exposed_copper_bars,state=east:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_copper_bars,state=east:true/north:false/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_copper_bars,state=north:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%exposed_copper_bars,state=south:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%exposed_copper_bars,state=west:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_copper_chain,state=axis=x,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/90/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%exposed_copper_chain,state=axis=y,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%exposed_copper_chain,state=axis=z,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/0/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%exposed_copper_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_copper_lantern,state=hanging=false,box=5.000000/0.000000/5.000000:11.000000/7.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/7.000000/6.000000:10.000000/9.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/9.000000/8.000000:9.500000/11.000000/8.000000:n/0/14.000000/1.000000/11.000000/3.000000:s/0/11.000000/1.000000/14.000000/3.000000/45/y/8/8/8,box=8.000000/9.000000/6.500000:8.000000/11.000000/9.500000:w/0/14.000000/10.000000/11.000000/12.000000:e/0/11.000000/10.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%exposed_copper_lantern,state=hanging=true,box=5.000000/1.000000/5.000000:11.000000/8.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/8.000000/6.000000:10.000000/10.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:d/0/1.000000/10.000000/5.000000/14.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/11.000000/8.000000:9.500000/15.000000/8.000000:n/0/14.000000/1.000000/11.000000/5.000000:s/0/11.000000/1.000000/14.000000/5.000000/45/y/8/8/8,box=8.000000/10.000000/6.500000:8.000000/16.000000/9.500000:w/0/14.000000/6.000000/11.000000/12.000000:e/0/11.000000/6.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%exposed_copper_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%exposed_copper_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_copper_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%exposed_copper_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_copper_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%exposed_copper_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%exposed_copper_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%exposed_copper_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%exposed_copper_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%exposed_copper_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%exposed_copper_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%exposed_copper_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%exposed_copper_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%exposed_copper_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%exposed_copper_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%exposed_copper_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%exposed_cut_copper_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%exposed_cut_copper_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%exposed_cut_copper_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%exposed_lightning_rod,state=facing=down/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%exposed_lightning_rod,state=facing=down/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%exposed_lightning_rod,state=facing=east/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%exposed_lightning_rod,state=facing=east/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%exposed_lightning_rod,state=facing=north/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%exposed_lightning_rod,state=facing=north/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%exposed_lightning_rod,state=facing=south/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%exposed_lightning_rod,state=facing=south/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%exposed_lightning_rod,state=facing=up/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.21.4-]modellist:id=%exposed_lightning_rod,state=facing=up/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.21.4-]modellist:id=%exposed_lightning_rod,state=facing=west/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%exposed_lightning_rod,state=facing=west/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%farmland,state=moisture=0,box=0.000000/0.000000/0.000000:16.000000/15.000000/16.000000:n/0/0.000000/1.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/1.000000/16.000000/16.000000:e/0/0.000000/1.000000/16.000000/16.000000:s/0/0.000000/1.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%farmland,state=moisture=1,box=0.000000/0.000000/0.000000:16.000000/15.000000/16.000000:n/0/0.000000/1.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/1.000000/16.000000/16.000000:e/0/0.000000/1.000000/16.000000/16.000000:s/0/0.000000/1.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%farmland,state=moisture=2,box=0.000000/0.000000/0.000000:16.000000/15.000000/16.000000:n/0/0.000000/1.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/1.000000/16.000000/16.000000:e/0/0.000000/1.000000/16.000000/16.000000:s/0/0.000000/1.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%farmland,state=moisture=3,box=0.000000/0.000000/0.000000:16.000000/15.000000/16.000000:n/0/0.000000/1.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/1.000000/16.000000/16.000000:e/0/0.000000/1.000000/16.000000/16.000000:s/0/0.000000/1.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%farmland,state=moisture=4,box=0.000000/0.000000/0.000000:16.000000/15.000000/16.000000:n/0/0.000000/1.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/1.000000/16.000000/16.000000:e/0/0.000000/1.000000/16.000000/16.000000:s/0/0.000000/1.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%farmland,state=moisture=5,box=0.000000/0.000000/0.000000:16.000000/15.000000/16.000000:n/0/0.000000/1.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/1.000000/16.000000/16.000000:e/0/0.000000/1.000000/16.000000/16.000000:s/0/0.000000/1.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%farmland,state=moisture=6,box=0.000000/0.000000/0.000000:16.000000/15.000000/16.000000:n/0/0.000000/1.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/1.000000/16.000000/16.000000:e/0/0.000000/1.000000/16.000000/16.000000:s/0/0.000000/1.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%farmland,state=moisture=7,box=0.000000/0.000000/0.000000:16.000000/15.000000/16.000000:n/0/0.000000/1.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/1.000000/16.000000/16.000000:e/0/0.000000/1.000000/16.000000/16.000000:s/0/0.000000/1.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%fern,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%fire,state=east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/8.800000:16.000000/22.400000/8.800000:s/0/0.000000/0.000000/16.000000/16.000000/-22.5/x/8/8/8,box=0.000000/0.000000/7.200000:16.000000/22.400000/7.200000:n/0/0.000000/0.000000/16.000000/16.000000/22.5/x/8/8/8,box=8.800000/0.000000/0.000000:8.800000/22.400000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000/-22.5/z/8/8/8,box=7.200000/0.000000/0.000000:7.200000/22.400000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/22.5/z/8/8/8 +[1.21.4-]modellist:id=%fire,state=east:true,box=0.000000/0.000000/0.010000:16.000000/22.400000/0.010000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%fire,state=north:true,box=0.000000/0.000000/0.010000:16.000000/22.400000/0.010000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%fire,state=south:true,box=0.000000/0.000000/0.010000:16.000000/22.400000/0.010000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%fire,state=up:true,box=0.000000/16.000000/0.000000:16.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000/22.5/z/16/16/8,box=0.000000/16.000000/0.000000:16.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000/-22.5/z/0/16/8 +[1.21.4-]modellist:id=%fire,state=west:true,box=0.000000/0.000000/0.010000:16.000000/22.400000/0.010000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%fire_coral,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%fire_coral_fan,box=8.000000/0.000000/0.000000:24.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/z/8/0/0,box=-8.000000/0.000000/0.000000:8.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/z/8/0/0,box=0.000000/0.000000/8.000000:16.000000/0.000000/24.000000:d/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/16.000000/0.000000/0.000000/-22.5/x/0/0/8,box=0.000000/0.000000/-8.000000:16.000000/0.000000/8.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/0/0/8 +[1.21.4-]modellist:id=%fire_coral_wall_fan,state=facing=east,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%fire_coral_wall_fan,state=facing=north,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/8/8/14,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/x/8/8/14 +[1.21.4-]modellist:id=%fire_coral_wall_fan,state=facing=south,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%fire_coral_wall_fan,state=facing=west,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%firefly_bush,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%flower_pot,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000 +[1.21.4-]modellist:id=%flowering_azalea,box=0.000000/16.000000/0.000000:16.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/5.000000/0.000000:16.000000/16.000000/0.010000:n/0/0.000000/0.000000/16.000000/11.000000:s/0/16.000000/0.000000/0.000000/11.000000,box=0.000000/5.000000/15.990000:16.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/11.000000:s/0/0.000000/0.000000/16.000000/11.000000,box=0.000000/5.000000/0.000000:0.010000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/11.000000:e/0/16.000000/0.000000/0.000000/11.000000,box=15.990000/5.000000/0.000000:16.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/11.000000:e/0/0.000000/0.000000/16.000000/11.000000,box=0.100000/0.000000/8.000000:15.900000/15.900000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.100000:8.000000/15.900000/15.900000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%frogspawn,box=0.000000/0.250000/0.000000:16.000000/0.250000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%glass_pane,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%glass_pane,state=east:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%glass_pane,state=east:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%glass_pane,state=north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%glass_pane,state=north:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%glass_pane,state=south:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%glass_pane,state=south:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%glass_pane,state=west:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%glass_pane,state=west:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%glow_lichen,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%glow_lichen,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%glow_lichen,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%glow_lichen,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%glow_lichen,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%glow_lichen,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%glow_lichen,state=down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%glow_lichen,state=east:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%glow_lichen,state=north:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%glow_lichen,state=south:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%glow_lichen,state=up:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%glow_lichen,state=west:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%granite_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%granite_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%granite_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%granite_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%granite_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%granite_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%granite_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%granite_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%granite_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%granite_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%granite_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%granite_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%granite_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%granite_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%granite_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%granite_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%granite_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%granite_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%grass_block,state=snowy=false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%gray_candle,state=candles=1/lit=false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%gray_candle,state=candles=1/lit=true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%gray_candle,state=candles=2/lit=false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%gray_candle,state=candles=2/lit=true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%gray_candle,state=candles=3/lit=false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%gray_candle,state=candles=3/lit=true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%gray_candle,state=candles=4/lit=false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%gray_candle,state=candles=4/lit=true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%gray_candle_cake,state=lit=false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%gray_candle_cake,state=lit=true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%gray_carpet,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%gray_stained_glass_pane,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%gray_stained_glass_pane,state=east:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%gray_stained_glass_pane,state=east:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%gray_stained_glass_pane,state=north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%gray_stained_glass_pane,state=north:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%gray_stained_glass_pane,state=south:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%gray_stained_glass_pane,state=south:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%gray_stained_glass_pane,state=west:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%gray_stained_glass_pane,state=west:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%green_candle,state=candles=1/lit=false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%green_candle,state=candles=1/lit=true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%green_candle,state=candles=2/lit=false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%green_candle,state=candles=2/lit=true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%green_candle,state=candles=3/lit=false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%green_candle,state=candles=3/lit=true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%green_candle,state=candles=4/lit=false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%green_candle,state=candles=4/lit=true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%green_candle_cake,state=lit=false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%green_candle_cake,state=lit=true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%green_carpet,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%green_stained_glass_pane,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%green_stained_glass_pane,state=east:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%green_stained_glass_pane,state=east:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%green_stained_glass_pane,state=north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%green_stained_glass_pane,state=north:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%green_stained_glass_pane,state=south:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%green_stained_glass_pane,state=south:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%green_stained_glass_pane,state=west:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%green_stained_glass_pane,state=west:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%grindstone,state=face=ceiling/facing=east,box=12.000000/0.000000/6.000000:14.000000/7.000000/10.000000:n/0/2.000000/9.000000/4.000000/16.000000:d/0/12.000000/6.000000/14.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/12.000000/9.000000/14.000000/16.000000:R/180/270/0,box=2.000000/0.000000/6.000000:4.000000/7.000000/10.000000:n/0/12.000000/9.000000/14.000000/16.000000:d/0/2.000000/6.000000/4.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/2.000000/9.000000/4.000000/16.000000:R/180/270/0,box=12.000000/7.000000/5.000000:14.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:e/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/180/270/0,box=2.000000/7.000000/5.000000:4.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:w/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/180/270/0,box=4.000000/4.000000/2.000000:12.000000/16.000000/14.000000:n/0/0.000000/0.000000/8.000000/12.000000:d/0/0.000000/0.000000/8.000000/12.000000:w/0/0.000000/0.000000/12.000000/12.000000:e/0/0.000000/0.000000/12.000000/12.000000:s/0/0.000000/0.000000/8.000000/12.000000:u/0/0.000000/0.000000/8.000000/12.000000:R/180/270/0 +[1.21.4-]modellist:id=%grindstone,state=face=ceiling/facing=north,box=12.000000/0.000000/6.000000:14.000000/7.000000/10.000000:n/0/2.000000/9.000000/4.000000/16.000000:d/0/12.000000/6.000000/14.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/12.000000/9.000000/14.000000/16.000000:R/180/180/0,box=2.000000/0.000000/6.000000:4.000000/7.000000/10.000000:n/0/12.000000/9.000000/14.000000/16.000000:d/0/2.000000/6.000000/4.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/2.000000/9.000000/4.000000/16.000000:R/180/180/0,box=12.000000/7.000000/5.000000:14.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:e/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/180/180/0,box=2.000000/7.000000/5.000000:4.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:w/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/180/180/0,box=4.000000/4.000000/2.000000:12.000000/16.000000/14.000000:n/0/0.000000/0.000000/8.000000/12.000000:d/0/0.000000/0.000000/8.000000/12.000000:w/0/0.000000/0.000000/12.000000/12.000000:e/0/0.000000/0.000000/12.000000/12.000000:s/0/0.000000/0.000000/8.000000/12.000000:u/0/0.000000/0.000000/8.000000/12.000000:R/180/180/0 +[1.21.4-]modellist:id=%grindstone,state=face=ceiling/facing=south,box=12.000000/0.000000/6.000000:14.000000/7.000000/10.000000:n/0/2.000000/9.000000/4.000000/16.000000:d/0/12.000000/6.000000/14.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/12.000000/9.000000/14.000000/16.000000:R/180/0/0,box=2.000000/0.000000/6.000000:4.000000/7.000000/10.000000:n/0/12.000000/9.000000/14.000000/16.000000:d/0/2.000000/6.000000/4.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/2.000000/9.000000/4.000000/16.000000:R/180/0/0,box=12.000000/7.000000/5.000000:14.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:e/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/180/0/0,box=2.000000/7.000000/5.000000:4.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:w/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/180/0/0,box=4.000000/4.000000/2.000000:12.000000/16.000000/14.000000:n/0/0.000000/0.000000/8.000000/12.000000:d/0/0.000000/0.000000/8.000000/12.000000:w/0/0.000000/0.000000/12.000000/12.000000:e/0/0.000000/0.000000/12.000000/12.000000:s/0/0.000000/0.000000/8.000000/12.000000:u/0/0.000000/0.000000/8.000000/12.000000:R/180/0/0 +[1.21.4-]modellist:id=%grindstone,state=face=ceiling/facing=west,box=12.000000/0.000000/6.000000:14.000000/7.000000/10.000000:n/0/2.000000/9.000000/4.000000/16.000000:d/0/12.000000/6.000000/14.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/12.000000/9.000000/14.000000/16.000000:R/180/90/0,box=2.000000/0.000000/6.000000:4.000000/7.000000/10.000000:n/0/12.000000/9.000000/14.000000/16.000000:d/0/2.000000/6.000000/4.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/2.000000/9.000000/4.000000/16.000000:R/180/90/0,box=12.000000/7.000000/5.000000:14.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:e/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/180/90/0,box=2.000000/7.000000/5.000000:4.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:w/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/180/90/0,box=4.000000/4.000000/2.000000:12.000000/16.000000/14.000000:n/0/0.000000/0.000000/8.000000/12.000000:d/0/0.000000/0.000000/8.000000/12.000000:w/0/0.000000/0.000000/12.000000/12.000000:e/0/0.000000/0.000000/12.000000/12.000000:s/0/0.000000/0.000000/8.000000/12.000000:u/0/0.000000/0.000000/8.000000/12.000000:R/180/90/0 +[1.21.4-]modellist:id=%grindstone,state=face=floor/facing=east,box=12.000000/0.000000/6.000000:14.000000/7.000000/10.000000:n/0/2.000000/9.000000/4.000000/16.000000:d/0/12.000000/6.000000/14.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/12.000000/9.000000/14.000000/16.000000:R/0/90/0,box=2.000000/0.000000/6.000000:4.000000/7.000000/10.000000:n/0/12.000000/9.000000/14.000000/16.000000:d/0/2.000000/6.000000/4.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/2.000000/9.000000/4.000000/16.000000:R/0/90/0,box=12.000000/7.000000/5.000000:14.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:e/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/0/90/0,box=2.000000/7.000000/5.000000:4.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:w/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/0/90/0,box=4.000000/4.000000/2.000000:12.000000/16.000000/14.000000:n/0/0.000000/0.000000/8.000000/12.000000:d/0/0.000000/0.000000/8.000000/12.000000:w/0/0.000000/0.000000/12.000000/12.000000:e/0/0.000000/0.000000/12.000000/12.000000:s/0/0.000000/0.000000/8.000000/12.000000:u/0/0.000000/0.000000/8.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%grindstone,state=face=floor/facing=north,box=12.000000/0.000000/6.000000:14.000000/7.000000/10.000000:n/0/2.000000/9.000000/4.000000/16.000000:d/0/12.000000/6.000000/14.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/12.000000/9.000000/14.000000/16.000000,box=2.000000/0.000000/6.000000:4.000000/7.000000/10.000000:n/0/12.000000/9.000000/14.000000/16.000000:d/0/2.000000/6.000000/4.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/2.000000/9.000000/4.000000/16.000000,box=12.000000/7.000000/5.000000:14.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:e/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000,box=2.000000/7.000000/5.000000:4.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:w/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000,box=4.000000/4.000000/2.000000:12.000000/16.000000/14.000000:n/0/0.000000/0.000000/8.000000/12.000000:d/0/0.000000/0.000000/8.000000/12.000000:w/0/0.000000/0.000000/12.000000/12.000000:e/0/0.000000/0.000000/12.000000/12.000000:s/0/0.000000/0.000000/8.000000/12.000000:u/0/0.000000/0.000000/8.000000/12.000000 +[1.21.4-]modellist:id=%grindstone,state=face=floor/facing=south,box=12.000000/0.000000/6.000000:14.000000/7.000000/10.000000:n/0/2.000000/9.000000/4.000000/16.000000:d/0/12.000000/6.000000/14.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/12.000000/9.000000/14.000000/16.000000:R/0/180/0,box=2.000000/0.000000/6.000000:4.000000/7.000000/10.000000:n/0/12.000000/9.000000/14.000000/16.000000:d/0/2.000000/6.000000/4.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/2.000000/9.000000/4.000000/16.000000:R/0/180/0,box=12.000000/7.000000/5.000000:14.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:e/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/0/180/0,box=2.000000/7.000000/5.000000:4.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:w/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/0/180/0,box=4.000000/4.000000/2.000000:12.000000/16.000000/14.000000:n/0/0.000000/0.000000/8.000000/12.000000:d/0/0.000000/0.000000/8.000000/12.000000:w/0/0.000000/0.000000/12.000000/12.000000:e/0/0.000000/0.000000/12.000000/12.000000:s/0/0.000000/0.000000/8.000000/12.000000:u/0/0.000000/0.000000/8.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%grindstone,state=face=floor/facing=west,box=12.000000/0.000000/6.000000:14.000000/7.000000/10.000000:n/0/2.000000/9.000000/4.000000/16.000000:d/0/12.000000/6.000000/14.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/12.000000/9.000000/14.000000/16.000000:R/0/270/0,box=2.000000/0.000000/6.000000:4.000000/7.000000/10.000000:n/0/12.000000/9.000000/14.000000/16.000000:d/0/2.000000/6.000000/4.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/2.000000/9.000000/4.000000/16.000000:R/0/270/0,box=12.000000/7.000000/5.000000:14.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:e/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/0/270/0,box=2.000000/7.000000/5.000000:4.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:w/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/0/270/0,box=4.000000/4.000000/2.000000:12.000000/16.000000/14.000000:n/0/0.000000/0.000000/8.000000/12.000000:d/0/0.000000/0.000000/8.000000/12.000000:w/0/0.000000/0.000000/12.000000/12.000000:e/0/0.000000/0.000000/12.000000/12.000000:s/0/0.000000/0.000000/8.000000/12.000000:u/0/0.000000/0.000000/8.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%grindstone,state=face=wall/facing=east,box=12.000000/0.000000/6.000000:14.000000/7.000000/10.000000:n/0/2.000000/9.000000/4.000000/16.000000:d/0/12.000000/6.000000/14.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/12.000000/9.000000/14.000000/16.000000:R/90/90/0,box=2.000000/0.000000/6.000000:4.000000/7.000000/10.000000:n/0/12.000000/9.000000/14.000000/16.000000:d/0/2.000000/6.000000/4.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/2.000000/9.000000/4.000000/16.000000:R/90/90/0,box=12.000000/7.000000/5.000000:14.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:e/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/90/90/0,box=2.000000/7.000000/5.000000:4.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:w/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/90/90/0,box=4.000000/4.000000/2.000000:12.000000/16.000000/14.000000:n/0/0.000000/0.000000/8.000000/12.000000:d/0/0.000000/0.000000/8.000000/12.000000:w/0/0.000000/0.000000/12.000000/12.000000:e/0/0.000000/0.000000/12.000000/12.000000:s/0/0.000000/0.000000/8.000000/12.000000:u/0/0.000000/0.000000/8.000000/12.000000:R/90/90/0 +[1.21.4-]modellist:id=%grindstone,state=face=wall/facing=north,box=12.000000/0.000000/6.000000:14.000000/7.000000/10.000000:n/0/2.000000/9.000000/4.000000/16.000000:d/0/12.000000/6.000000/14.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/12.000000/9.000000/14.000000/16.000000:R/90/0/0,box=2.000000/0.000000/6.000000:4.000000/7.000000/10.000000:n/0/12.000000/9.000000/14.000000/16.000000:d/0/2.000000/6.000000/4.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/2.000000/9.000000/4.000000/16.000000:R/90/0/0,box=12.000000/7.000000/5.000000:14.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:e/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/90/0/0,box=2.000000/7.000000/5.000000:4.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:w/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/90/0/0,box=4.000000/4.000000/2.000000:12.000000/16.000000/14.000000:n/0/0.000000/0.000000/8.000000/12.000000:d/0/0.000000/0.000000/8.000000/12.000000:w/0/0.000000/0.000000/12.000000/12.000000:e/0/0.000000/0.000000/12.000000/12.000000:s/0/0.000000/0.000000/8.000000/12.000000:u/0/0.000000/0.000000/8.000000/12.000000:R/90/0/0 +[1.21.4-]modellist:id=%grindstone,state=face=wall/facing=south,box=12.000000/0.000000/6.000000:14.000000/7.000000/10.000000:n/0/2.000000/9.000000/4.000000/16.000000:d/0/12.000000/6.000000/14.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/12.000000/9.000000/14.000000/16.000000:R/90/180/0,box=2.000000/0.000000/6.000000:4.000000/7.000000/10.000000:n/0/12.000000/9.000000/14.000000/16.000000:d/0/2.000000/6.000000/4.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/2.000000/9.000000/4.000000/16.000000:R/90/180/0,box=12.000000/7.000000/5.000000:14.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:e/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/90/180/0,box=2.000000/7.000000/5.000000:4.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:w/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/90/180/0,box=4.000000/4.000000/2.000000:12.000000/16.000000/14.000000:n/0/0.000000/0.000000/8.000000/12.000000:d/0/0.000000/0.000000/8.000000/12.000000:w/0/0.000000/0.000000/12.000000/12.000000:e/0/0.000000/0.000000/12.000000/12.000000:s/0/0.000000/0.000000/8.000000/12.000000:u/0/0.000000/0.000000/8.000000/12.000000:R/90/180/0 +[1.21.4-]modellist:id=%grindstone,state=face=wall/facing=west,box=12.000000/0.000000/6.000000:14.000000/7.000000/10.000000:n/0/2.000000/9.000000/4.000000/16.000000:d/0/12.000000/6.000000/14.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/12.000000/9.000000/14.000000/16.000000:R/90/270/0,box=2.000000/0.000000/6.000000:4.000000/7.000000/10.000000:n/0/12.000000/9.000000/14.000000/16.000000:d/0/2.000000/6.000000/4.000000/10.000000:w/0/6.000000/9.000000/10.000000/16.000000:e/0/10.000000/16.000000/6.000000/9.000000:s/0/2.000000/9.000000/4.000000/16.000000:R/90/270/0,box=12.000000/7.000000/5.000000:14.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:e/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/90/270/0,box=2.000000/7.000000/5.000000:4.000000/13.000000/11.000000:n/0/6.000000/0.000000/8.000000/6.000000:d/0/8.000000/0.000000/10.000000/6.000000:w/0/0.000000/0.000000/6.000000/6.000000:s/0/6.000000/0.000000/8.000000/6.000000:u/0/8.000000/0.000000/10.000000/6.000000:R/90/270/0,box=4.000000/4.000000/2.000000:12.000000/16.000000/14.000000:n/0/0.000000/0.000000/8.000000/12.000000:d/0/0.000000/0.000000/8.000000/12.000000:w/0/0.000000/0.000000/12.000000/12.000000:e/0/0.000000/0.000000/12.000000/12.000000:s/0/0.000000/0.000000/8.000000/12.000000:u/0/0.000000/0.000000/8.000000/12.000000:R/90/270/0 +[1.21.4-]modellist:id=%hanging_roots,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%heavy_core,box=4.000000/0.000000/4.000000:12.000000/8.000000/12.000000:n/0/0.000000/8.000000/8.000000/16.000000:d/0/8.000000/0.000000/16.000000/8.000000:w/0/0.000000/8.000000/8.000000/16.000000:e/0/0.000000/8.000000/8.000000/16.000000:s/0/0.000000/8.000000/8.000000/16.000000:u/0/0.000000/0.000000/8.000000/8.000000 +[1.21.4-]modellist:id=%heavy_weighted_pressure_plate,state=power=0,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%heavy_weighted_pressure_plate,state=power=1,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%heavy_weighted_pressure_plate,state=power=10,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%heavy_weighted_pressure_plate,state=power=11,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%heavy_weighted_pressure_plate,state=power=12,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%heavy_weighted_pressure_plate,state=power=13,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%heavy_weighted_pressure_plate,state=power=14,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%heavy_weighted_pressure_plate,state=power=15,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%heavy_weighted_pressure_plate,state=power=2,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%heavy_weighted_pressure_plate,state=power=3,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%heavy_weighted_pressure_plate,state=power=4,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%heavy_weighted_pressure_plate,state=power=5,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%heavy_weighted_pressure_plate,state=power=6,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%heavy_weighted_pressure_plate,state=power=7,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%heavy_weighted_pressure_plate,state=power=8,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%heavy_weighted_pressure_plate,state=power=9,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%honey_block,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=1.000000/1.000000/1.000000:15.000000/15.000000/15.000000:n/0/1.000000/1.000000/15.000000/15.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/1.000000/15.000000/15.000000:e/0/1.000000/1.000000/15.000000/15.000000:s/0/1.000000/1.000000/15.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%hopper,state=facing=down,box=0.000000/10.000000/0.000000:16.000000/11.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/11.000000/0.000000:2.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/11.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/11.000000/0.000000:14.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/11.000000/14.000000:14.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=4.000000/4.000000/4.000000:12.000000/10.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%hopper,state=facing=east,box=0.000000/10.000000/0.000000:16.000000/11.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/11.000000/0.000000:2.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=14.000000/11.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=2.000000/11.000000/0.000000:14.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=2.000000/11.000000/14.000000:14.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=4.000000/4.000000/4.000000:12.000000/10.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=6.000000/4.000000/0.000000:10.000000/8.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%hopper,state=facing=north,box=0.000000/10.000000/0.000000:16.000000/11.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/11.000000/0.000000:2.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/11.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/11.000000/0.000000:14.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/11.000000/14.000000:14.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=4.000000/4.000000/4.000000:12.000000/10.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=6.000000/4.000000/0.000000:10.000000/8.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%hopper,state=facing=south,box=0.000000/10.000000/0.000000:16.000000/11.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/11.000000/0.000000:2.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=14.000000/11.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=2.000000/11.000000/0.000000:14.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=2.000000/11.000000/14.000000:14.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=4.000000/4.000000/4.000000:12.000000/10.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=6.000000/4.000000/0.000000:10.000000/8.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%hopper,state=facing=west,box=0.000000/10.000000/0.000000:16.000000/11.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/11.000000/0.000000:2.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=14.000000/11.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=2.000000/11.000000/0.000000:14.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=2.000000/11.000000/14.000000:14.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=4.000000/4.000000/4.000000:12.000000/10.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=6.000000/4.000000/0.000000:10.000000/8.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%horn_coral,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%horn_coral_fan,box=8.000000/0.000000/0.000000:24.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/z/8/0/0,box=-8.000000/0.000000/0.000000:8.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/z/8/0/0,box=0.000000/0.000000/8.000000:16.000000/0.000000/24.000000:d/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/16.000000/0.000000/0.000000/-22.5/x/0/0/8,box=0.000000/0.000000/-8.000000:16.000000/0.000000/8.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/0/0/8 +[1.21.4-]modellist:id=%horn_coral_wall_fan,state=facing=east,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%horn_coral_wall_fan,state=facing=north,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/8/8/14,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/x/8/8/14 +[1.21.4-]modellist:id=%horn_coral_wall_fan,state=facing=south,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%horn_coral_wall_fan,state=facing=west,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%iron_bars,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%iron_bars,state=east:false/north:false/south:false/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/16.000000/8.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%iron_bars,state=east:false/north:false/south:false/west:true,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%iron_bars,state=east:false/north:false/south:true/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%iron_bars,state=east:false/north:true/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%iron_bars,state=east:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%iron_bars,state=east:true/north:false/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%iron_bars,state=north:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%iron_bars,state=south:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%iron_bars,state=west:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%iron_chain,state=axis=x,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/90/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%iron_chain,state=axis=y,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%iron_chain,state=axis=z,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/0/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%iron_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%iron_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%iron_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%iron_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%iron_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%iron_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%iron_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%iron_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%iron_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%iron_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%iron_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%iron_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%iron_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%iron_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%iron_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%iron_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%iron_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%iron_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%iron_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%iron_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%iron_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%iron_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%iron_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%iron_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%iron_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%iron_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%iron_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%iron_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%iron_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%iron_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%iron_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%iron_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%iron_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%iron_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%iron_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%iron_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%iron_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%iron_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%iron_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%iron_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%iron_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%iron_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%iron_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%iron_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%iron_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%iron_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%iron_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%iron_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_button,state=face=ceiling/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%jungle_button,state=face=ceiling/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%jungle_button,state=face=ceiling/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%jungle_button,state=face=ceiling/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%jungle_button,state=face=ceiling/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%jungle_button,state=face=ceiling/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%jungle_button,state=face=ceiling/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%jungle_button,state=face=ceiling/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%jungle_button,state=face=floor/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_button,state=face=floor/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_button,state=face=floor/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%jungle_button,state=face=floor/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%jungle_button,state=face=floor/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_button,state=face=floor/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_button,state=face=floor/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_button,state=face=floor/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_button,state=face=wall/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%jungle_button,state=face=wall/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%jungle_button,state=face=wall/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%jungle_button,state=face=wall/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%jungle_button,state=face=wall/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%jungle_button,state=face=wall/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%jungle_button,state=face=wall/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%jungle_button,state=face=wall/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%jungle_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%jungle_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%jungle_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%jungle_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%jungle_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%jungle_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%jungle_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%jungle_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_fence,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000 +[1.21.4-]modellist:id=%jungle_fence,state=east:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_fence,state=north:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%jungle_fence,state=south:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_fence,state=west:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_fence_gate,state=facing=east/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_fence_gate,state=facing=east/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_fence_gate,state=facing=east/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_fence_gate,state=facing=east/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_fence_gate,state=facing=north/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_fence_gate,state=facing=north/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_fence_gate,state=facing=north/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_fence_gate,state=facing=north/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_fence_gate,state=facing=south/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%jungle_fence_gate,state=facing=south/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%jungle_fence_gate,state=facing=south/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%jungle_fence_gate,state=facing=south/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%jungle_fence_gate,state=facing=west/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_fence_gate,state=facing=west/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_fence_gate,state=facing=west/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_fence_gate,state=facing=west/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_pressure_plate,state=powered=false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%jungle_pressure_plate,state=powered=true,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%jungle_sapling,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:east,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/90/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/90/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:east/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:east/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:east/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:east/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:east/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:north,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:north/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:north/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:north/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:north/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:north/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:south,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/180/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/180/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:south/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:south/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:south/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:south/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:south/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:west,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/270/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/270/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:west/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:west/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:west/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:west/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_shelf,state=facing:west/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%jungle_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%jungle_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%jungle_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%jungle_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/270/0 +[1.21.4-]modellist:id=%jungle_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%jungle_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%jungle_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%jungle_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/180/0 +[1.21.4-]modellist:id=%jungle_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%jungle_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/0/0 +[1.21.4-]modellist:id=%jungle_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%jungle_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/90/0 +[1.21.4-]modellist:id=%kelp,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%kelp_plant,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%ladder,state=facing=east,box=0.000000/0.000000/15.200000:16.000000/16.000000/15.200000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%ladder,state=facing=north,box=0.000000/0.000000/15.200000:16.000000/16.000000/15.200000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%ladder,state=facing=south,box=0.000000/0.000000/15.200000:16.000000/16.000000/15.200000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%ladder,state=facing=west,box=0.000000/0.000000/15.200000:16.000000/16.000000/15.200000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%lantern,state=hanging=false,box=5.000000/0.000000/5.000000:11.000000/7.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/7.000000/6.000000:10.000000/9.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/9.000000/8.000000:9.500000/11.000000/8.000000:n/0/14.000000/1.000000/11.000000/3.000000:s/0/11.000000/1.000000/14.000000/3.000000/45/y/8/8/8,box=8.000000/9.000000/6.500000:8.000000/11.000000/9.500000:w/0/14.000000/10.000000/11.000000/12.000000:e/0/11.000000/10.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%lantern,state=hanging=true,box=5.000000/1.000000/5.000000:11.000000/8.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/8.000000/6.000000:10.000000/10.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:d/0/1.000000/10.000000/5.000000/14.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/11.000000/8.000000:9.500000/15.000000/8.000000:n/0/14.000000/1.000000/11.000000/5.000000:s/0/11.000000/1.000000/14.000000/5.000000/45/y/8/8/8,box=8.000000/10.000000/6.500000:8.000000/16.000000/9.500000:w/0/14.000000/6.000000/11.000000/12.000000:e/0/11.000000/6.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%large_amethyst_bud,state=facing=down,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%large_amethyst_bud,state=facing=east,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/90/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%large_amethyst_bud,state=facing=north,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%large_amethyst_bud,state=facing=south,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/180/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%large_amethyst_bud,state=facing=up,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%large_amethyst_bud,state=facing=west,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/270/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%large_fern,state=half=lower,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%large_fern,state=half=upper,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%lava_cauldron,box=0.000000/3.000000/0.000000:2.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/2.000000:14.000000/4.000000/14.000000:d/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/3.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/0.000000:14.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/14.000000:14.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:4.000000/3.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/2.000000:2.000000/3.000000/4.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/0.000000:16.000000/3.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/2.000000:16.000000/3.000000/4.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/14.000000:4.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/12.000000:2.000000/3.000000/14.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/14.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/12.000000:16.000000/3.000000/14.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/4.000000/2.000000:14.000000/15.000000/14.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%leaf_litter,state=facing:east/segment_amount:1,box=0.000000/0.250000/0.000000:8.000000/0.250000/8.000000:d/0/0.000000/8.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%leaf_litter,state=facing:east/segment_amount:2|3,box=0.000000/0.250000/0.000000:8.000000/0.250000/16.000000:d/0/0.000000/16.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%leaf_litter,state=facing:east/segment_amount:3,box=8.000000/0.250000/8.000000:16.000000/0.250000/16.000000:d/0/8.000000/16.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%leaf_litter,state=facing:east/segment_amount:4,box=0.000000/0.250000/0.000000:16.000000/0.250000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%leaf_litter,state=facing:north/segment_amount:1,box=0.000000/0.250000/0.000000:8.000000/0.250000/8.000000:d/0/0.000000/8.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/8.000000 +[1.21.4-]modellist:id=%leaf_litter,state=facing:north/segment_amount:2|3,box=0.000000/0.250000/0.000000:8.000000/0.250000/16.000000:d/0/0.000000/16.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%leaf_litter,state=facing:north/segment_amount:3,box=8.000000/0.250000/8.000000:16.000000/0.250000/16.000000:d/0/8.000000/16.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%leaf_litter,state=facing:north/segment_amount:4,box=0.000000/0.250000/0.000000:16.000000/0.250000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%leaf_litter,state=facing:south/segment_amount:1,box=0.000000/0.250000/0.000000:8.000000/0.250000/8.000000:d/0/0.000000/8.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%leaf_litter,state=facing:south/segment_amount:2|3,box=0.000000/0.250000/0.000000:8.000000/0.250000/16.000000:d/0/0.000000/16.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%leaf_litter,state=facing:south/segment_amount:3,box=8.000000/0.250000/8.000000:16.000000/0.250000/16.000000:d/0/8.000000/16.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%leaf_litter,state=facing:south/segment_amount:4,box=0.000000/0.250000/0.000000:16.000000/0.250000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%leaf_litter,state=facing:west/segment_amount:1,box=0.000000/0.250000/0.000000:8.000000/0.250000/8.000000:d/0/0.000000/8.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%leaf_litter,state=facing:west/segment_amount:2|3,box=0.000000/0.250000/0.000000:8.000000/0.250000/16.000000:d/0/0.000000/16.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%leaf_litter,state=facing:west/segment_amount:3,box=8.000000/0.250000/8.000000:16.000000/0.250000/16.000000:d/0/8.000000/16.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%leaf_litter,state=facing:west/segment_amount:4,box=0.000000/0.250000/0.000000:16.000000/0.250000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%lectern,state=facing=east,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/6.000000/16.000000/8.000000:e/0/0.000000/6.000000/16.000000/8.000000:s/0/0.000000/6.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=4.000000/2.000000/4.000000:12.000000/15.000000/12.000000:n/0/0.000000/0.000000/8.000000/13.000000:w/0/2.000000/8.000000/15.000000/16.000000:e/0/2.000000/16.000000/15.000000/8.000000:s/0/8.000000/3.000000/16.000000/16.000000:R/0/90/0,box=0.012500/12.000000/3.000000:15.987500/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/0.000000/16.000000/13.000000:w/0/0.000000/4.000000/13.000000/8.000000:e/0/0.000000/4.000000/13.000000/8.000000:s/0/0.000000/4.000000/16.000000/8.000000:u/0/0.000000/1.000000/16.000000/14.000000:R/0/90/0 +[1.21.4-]modellist:id=%lectern,state=facing=north,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/6.000000/16.000000/8.000000:e/0/0.000000/6.000000/16.000000/8.000000:s/0/0.000000/6.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=4.000000/2.000000/4.000000:12.000000/15.000000/12.000000:n/0/0.000000/0.000000/8.000000/13.000000:w/0/2.000000/8.000000/15.000000/16.000000:e/0/2.000000/16.000000/15.000000/8.000000:s/0/8.000000/3.000000/16.000000/16.000000,box=0.012500/12.000000/3.000000:15.987500/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/0.000000/16.000000/13.000000:w/0/0.000000/4.000000/13.000000/8.000000:e/0/0.000000/4.000000/13.000000/8.000000:s/0/0.000000/4.000000/16.000000/8.000000:u/0/0.000000/1.000000/16.000000/14.000000/-22.5/x/8/8/8 +[1.21.4-]modellist:id=%lectern,state=facing=south,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/6.000000/16.000000/8.000000:e/0/0.000000/6.000000/16.000000/8.000000:s/0/0.000000/6.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=4.000000/2.000000/4.000000:12.000000/15.000000/12.000000:n/0/0.000000/0.000000/8.000000/13.000000:w/0/2.000000/8.000000/15.000000/16.000000:e/0/2.000000/16.000000/15.000000/8.000000:s/0/8.000000/3.000000/16.000000/16.000000:R/0/180/0,box=0.012500/12.000000/3.000000:15.987500/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/0.000000/16.000000/13.000000:w/0/0.000000/4.000000/13.000000/8.000000:e/0/0.000000/4.000000/13.000000/8.000000:s/0/0.000000/4.000000/16.000000/8.000000:u/0/0.000000/1.000000/16.000000/14.000000:R/0/180/0 +[1.21.4-]modellist:id=%lectern,state=facing=west,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/6.000000/16.000000/8.000000:e/0/0.000000/6.000000/16.000000/8.000000:s/0/0.000000/6.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=4.000000/2.000000/4.000000:12.000000/15.000000/12.000000:n/0/0.000000/0.000000/8.000000/13.000000:w/0/2.000000/8.000000/15.000000/16.000000:e/0/2.000000/16.000000/15.000000/8.000000:s/0/8.000000/3.000000/16.000000/16.000000:R/0/270/0,box=0.012500/12.000000/3.000000:15.987500/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/0.000000/16.000000/13.000000:w/0/0.000000/4.000000/13.000000/8.000000:e/0/0.000000/4.000000/13.000000/8.000000:s/0/0.000000/4.000000/16.000000/8.000000:u/0/0.000000/1.000000/16.000000/14.000000:R/0/270/0 +[1.21.4-]modellist:id=%lever,state=face=ceiling/facing=east/powered=false,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/180/270/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/180/270/0 +[1.21.4-]modellist:id=%lever,state=face=ceiling/facing=east/powered=true,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/180/270/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/180/270/0 +[1.21.4-]modellist:id=%lever,state=face=ceiling/facing=north/powered=false,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/180/180/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/180/180/0 +[1.21.4-]modellist:id=%lever,state=face=ceiling/facing=north/powered=true,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/180/180/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/180/180/0 +[1.21.4-]modellist:id=%lever,state=face=ceiling/facing=south/powered=false,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/180/0/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/180/0/0 +[1.21.4-]modellist:id=%lever,state=face=ceiling/facing=south/powered=true,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/180/0/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/180/0/0 +[1.21.4-]modellist:id=%lever,state=face=ceiling/facing=west/powered=false,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/180/90/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/180/90/0 +[1.21.4-]modellist:id=%lever,state=face=ceiling/facing=west/powered=true,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/180/90/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/180/90/0 +[1.21.4-]modellist:id=%lever,state=face=floor/facing=east/powered=false,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/0/90/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%lever,state=face=floor/facing=east/powered=true,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/0/90/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%lever,state=face=floor/facing=north/powered=false,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000/45/x/8/1/8 +[1.21.4-]modellist:id=%lever,state=face=floor/facing=north/powered=true,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000/-45/x/8/1/8 +[1.21.4-]modellist:id=%lever,state=face=floor/facing=south/powered=false,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/0/180/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%lever,state=face=floor/facing=south/powered=true,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/0/180/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%lever,state=face=floor/facing=west/powered=false,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/0/270/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%lever,state=face=floor/facing=west/powered=true,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/0/270/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%lever,state=face=wall/facing=east/powered=false,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/90/90/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/90/90/0 +[1.21.4-]modellist:id=%lever,state=face=wall/facing=east/powered=true,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/90/90/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/90/90/0 +[1.21.4-]modellist:id=%lever,state=face=wall/facing=north/powered=false,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/90/0/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/90/0/0 +[1.21.4-]modellist:id=%lever,state=face=wall/facing=north/powered=true,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/90/0/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/90/0/0 +[1.21.4-]modellist:id=%lever,state=face=wall/facing=south/powered=false,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/90/180/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/90/180/0 +[1.21.4-]modellist:id=%lever,state=face=wall/facing=south/powered=true,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/90/180/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/90/180/0 +[1.21.4-]modellist:id=%lever,state=face=wall/facing=west/powered=false,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/90/270/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/90/270/0 +[1.21.4-]modellist:id=%lever,state=face=wall/facing=west/powered=true,box=5.000000/-0.020000/4.000000:11.000000/2.980000/12.000000:n/0/5.000000/0.000000/11.000000/3.000000:d/0/5.000000/4.000000/11.000000/12.000000:w/0/4.000000/0.000000/12.000000/3.000000:e/0/4.000000/0.000000/12.000000/3.000000:s/0/5.000000/0.000000/11.000000/3.000000:u/0/5.000000/4.000000/11.000000/12.000000:R/90/270/0,box=7.000000/1.000000/7.000000:9.000000/11.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/90/270/0 +[1.21.4-]modellist:id=%light_blue_candle,state=candles=1/lit=false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%light_blue_candle,state=candles=1/lit=true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%light_blue_candle,state=candles=2/lit=false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%light_blue_candle,state=candles=2/lit=true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%light_blue_candle,state=candles=3/lit=false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%light_blue_candle,state=candles=3/lit=true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%light_blue_candle,state=candles=4/lit=false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%light_blue_candle,state=candles=4/lit=true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%light_blue_candle_cake,state=lit=false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%light_blue_candle_cake,state=lit=true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%light_blue_carpet,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%light_blue_stained_glass_pane,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%light_blue_stained_glass_pane,state=east:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%light_blue_stained_glass_pane,state=east:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%light_blue_stained_glass_pane,state=north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%light_blue_stained_glass_pane,state=north:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%light_blue_stained_glass_pane,state=south:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%light_blue_stained_glass_pane,state=south:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%light_blue_stained_glass_pane,state=west:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%light_blue_stained_glass_pane,state=west:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%light_gray_candle,state=candles=1/lit=false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%light_gray_candle,state=candles=1/lit=true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%light_gray_candle,state=candles=2/lit=false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%light_gray_candle,state=candles=2/lit=true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%light_gray_candle,state=candles=3/lit=false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%light_gray_candle,state=candles=3/lit=true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%light_gray_candle,state=candles=4/lit=false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%light_gray_candle,state=candles=4/lit=true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%light_gray_candle_cake,state=lit=false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%light_gray_candle_cake,state=lit=true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%light_gray_carpet,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%light_gray_stained_glass_pane,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%light_gray_stained_glass_pane,state=east:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%light_gray_stained_glass_pane,state=east:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%light_gray_stained_glass_pane,state=north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%light_gray_stained_glass_pane,state=north:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%light_gray_stained_glass_pane,state=south:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%light_gray_stained_glass_pane,state=south:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%light_gray_stained_glass_pane,state=west:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%light_gray_stained_glass_pane,state=west:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%light_weighted_pressure_plate,state=power=0,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%light_weighted_pressure_plate,state=power=1,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%light_weighted_pressure_plate,state=power=10,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%light_weighted_pressure_plate,state=power=11,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%light_weighted_pressure_plate,state=power=12,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%light_weighted_pressure_plate,state=power=13,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%light_weighted_pressure_plate,state=power=14,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%light_weighted_pressure_plate,state=power=15,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%light_weighted_pressure_plate,state=power=2,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%light_weighted_pressure_plate,state=power=3,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%light_weighted_pressure_plate,state=power=4,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%light_weighted_pressure_plate,state=power=5,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%light_weighted_pressure_plate,state=power=6,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%light_weighted_pressure_plate,state=power=7,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%light_weighted_pressure_plate,state=power=8,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%light_weighted_pressure_plate,state=power=9,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%lightning_rod,state=facing=down/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%lightning_rod,state=facing=down/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%lightning_rod,state=facing=east/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%lightning_rod,state=facing=east/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%lightning_rod,state=facing=north/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%lightning_rod,state=facing=north/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%lightning_rod,state=facing=south/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%lightning_rod,state=facing=south/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%lightning_rod,state=facing=up/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.21.4-]modellist:id=%lightning_rod,state=facing=up/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.21.4-]modellist:id=%lightning_rod,state=facing=west/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%lightning_rod,state=facing=west/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%lilac,state=half=lower,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%lilac,state=half=upper,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%lily_of_the_valley,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%lily_pad,box=0.000000/0.250000/0.000000:16.000000/0.250000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%lime_candle,state=candles=1/lit=false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%lime_candle,state=candles=1/lit=true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%lime_candle,state=candles=2/lit=false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%lime_candle,state=candles=2/lit=true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%lime_candle,state=candles=3/lit=false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%lime_candle,state=candles=3/lit=true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%lime_candle,state=candles=4/lit=false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%lime_candle,state=candles=4/lit=true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%lime_candle_cake,state=lit=false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%lime_candle_cake,state=lit=true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%lime_carpet,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%lime_stained_glass_pane,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%lime_stained_glass_pane,state=east:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%lime_stained_glass_pane,state=east:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%lime_stained_glass_pane,state=north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%lime_stained_glass_pane,state=north:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%lime_stained_glass_pane,state=south:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%lime_stained_glass_pane,state=south:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%lime_stained_glass_pane,state=west:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%lime_stained_glass_pane,state=west:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%magenta_candle,state=candles=1/lit=false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%magenta_candle,state=candles=1/lit=true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%magenta_candle,state=candles=2/lit=false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%magenta_candle,state=candles=2/lit=true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%magenta_candle,state=candles=3/lit=false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%magenta_candle,state=candles=3/lit=true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%magenta_candle,state=candles=4/lit=false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%magenta_candle,state=candles=4/lit=true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%magenta_candle_cake,state=lit=false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%magenta_candle_cake,state=lit=true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%magenta_carpet,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%magenta_stained_glass_pane,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%magenta_stained_glass_pane,state=east:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%magenta_stained_glass_pane,state=east:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%magenta_stained_glass_pane,state=north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%magenta_stained_glass_pane,state=north:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%magenta_stained_glass_pane,state=south:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%magenta_stained_glass_pane,state=south:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%magenta_stained_glass_pane,state=west:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%magenta_stained_glass_pane,state=west:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=ceiling/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=ceiling/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=ceiling/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=ceiling/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=ceiling/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=ceiling/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=ceiling/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=ceiling/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=floor/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=floor/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=floor/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%mangrove_button,state=face=floor/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%mangrove_button,state=face=floor/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=floor/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=floor/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=floor/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=wall/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=wall/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=wall/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=wall/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=wall/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=wall/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=wall/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%mangrove_button,state=face=wall/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%mangrove_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%mangrove_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%mangrove_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%mangrove_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%mangrove_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%mangrove_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%mangrove_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%mangrove_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_fence,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000 +[1.21.4-]modellist:id=%mangrove_fence,state=east:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_fence,state=north:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%mangrove_fence,state=south:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_fence,state=west:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_fence_gate,state=facing=east/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_fence_gate,state=facing=east/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_fence_gate,state=facing=east/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_fence_gate,state=facing=east/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_fence_gate,state=facing=north/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_fence_gate,state=facing=north/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_fence_gate,state=facing=north/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_fence_gate,state=facing=north/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_fence_gate,state=facing=south/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%mangrove_fence_gate,state=facing=south/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%mangrove_fence_gate,state=facing=south/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%mangrove_fence_gate,state=facing=south/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%mangrove_fence_gate,state=facing=west/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_fence_gate,state=facing=west/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_fence_gate,state=facing=west/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_fence_gate,state=facing=west/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_pressure_plate,state=powered=false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%mangrove_pressure_plate,state=powered=true,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%mangrove_propagule,state=age=0/hanging=false,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000:n/0/4.000000/1.000000/11.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000/45/y/8/0/8,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/4.000000/1.000000/11.000000/7.000000/45/y/8/0/8,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000/45/y/8/0/8,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000/45/y/8/0/8 +[1.21.4-]modellist:id=%mangrove_propagule,state=age=0/hanging=true,box=7.000000/13.611040/10.071930:9.000000/13.611040/12.071930:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/22.5/x/8/16/8,box=10.071930/13.611040/7.000000:12.071930/13.611040/9.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/-22.5/z/8/16/8,box=7.000000/13.611040/3.928070:9.000000/13.611040/5.928070:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/-22.5/x/8/16/8,box=3.928070/13.611040/7.000000:5.928070/13.611040/9.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/22.5/z/8/16/8,box=7.000000/13.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/2.000000/2.000000/3.000000:d/0/0.000000/3.000000/2.000000/5.000000:w/0/0.000000/2.000000/2.000000/3.000000:e/0/0.000000/2.000000/2.000000/3.000000:s/0/0.000000/2.000000/2.000000/3.000000:u/0/0.000000/0.000000/2.000000/2.000000/0/y/8/16/8,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000/-45/y/8/16/8,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000/45/y/8/16/8 +[1.21.4-]modellist:id=%mangrove_propagule,state=age=1/hanging=false,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000:n/0/4.000000/1.000000/11.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000/45/y/8/0/8,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/4.000000/1.000000/11.000000/7.000000/45/y/8/0/8,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000/45/y/8/0/8,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000/45/y/8/0/8 +[1.21.4-]modellist:id=%mangrove_propagule,state=age=1/hanging=true,box=7.000000/10.000000/7.000000:9.000000/13.000000/9.000000:n/0/0.000000/7.000000/2.000000/10.000000:d/0/0.000000/5.000000/2.000000/7.000000:w/0/0.000000/7.000000/2.000000/10.000000:e/0/0.000000/7.000000/2.000000/10.000000:s/0/0.000000/7.000000/2.000000/10.000000:u/0/0.000000/5.000000/2.000000/7.000000/0/y/8/16/8,box=7.000000/13.611040/10.071930:9.000000/13.611040/12.071930:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/22.5/x/8/16/8,box=10.071930/13.611040/7.000000:12.071930/13.611040/9.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/-22.5/z/8/16/8,box=7.000000/13.611040/3.928070:9.000000/13.611040/5.928070:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/-22.5/x/8/16/8,box=3.928070/13.611040/7.000000:5.928070/13.611040/9.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/22.5/z/8/16/8,box=7.000000/13.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/2.000000/2.000000/3.000000:d/0/0.000000/3.000000/2.000000/5.000000:w/0/0.000000/2.000000/2.000000/3.000000:e/0/0.000000/2.000000/2.000000/3.000000:s/0/0.000000/2.000000/2.000000/3.000000:u/0/0.000000/0.000000/2.000000/2.000000/0/y/8/16/8,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000/-45/y/8/16/8,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000/45/y/8/16/8 +[1.21.4-]modellist:id=%mangrove_propagule,state=age=2/hanging=false,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000:n/0/4.000000/1.000000/11.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000/45/y/8/0/8,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/4.000000/1.000000/11.000000/7.000000/45/y/8/0/8,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000/45/y/8/0/8,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000/45/y/8/0/8 +[1.21.4-]modellist:id=%mangrove_propagule,state=age=2/hanging=true,box=7.000000/10.000000/7.000000:9.000000/13.000000/9.000000:n/0/0.000000/7.000000/2.000000/10.000000:d/0/0.000000/10.000000/2.000000/12.000000:w/0/0.000000/7.000000/2.000000/10.000000:e/0/0.000000/7.000000/2.000000/10.000000:s/0/0.000000/7.000000/2.000000/10.000000:u/0/0.000000/5.000000/2.000000/7.000000/0/y/8/16/8,box=7.000000/13.611040/10.071930:9.000000/13.611040/12.071930:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/22.5/x/8/16/8,box=10.071930/13.611040/7.000000:12.071930/13.611040/9.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/-22.5/z/8/16/8,box=7.000000/13.611040/3.928070:9.000000/13.611040/5.928070:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/-22.5/x/8/16/8,box=3.928070/13.611040/7.000000:5.928070/13.611040/9.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/22.5/z/8/16/8,box=7.000000/13.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/2.000000/2.000000/3.000000:d/0/0.000000/3.000000/2.000000/5.000000:w/0/0.000000/2.000000/2.000000/3.000000:e/0/0.000000/2.000000/2.000000/3.000000:s/0/0.000000/2.000000/2.000000/3.000000:u/0/0.000000/0.000000/2.000000/2.000000/0/y/8/16/8,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000/-45/y/8/16/8,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000/45/y/8/16/8,box=7.000000/7.000000/8.000000:9.000000/10.000000/8.000000:n/0/3.000000/7.000000/5.000000/10.000000:d/0/11.000000/10.000000/13.000000/10.000000:w/0/11.000000/0.000000/11.000000/10.000000:e/0/13.000000/0.000000/13.000000/10.000000:s/0/3.000000/7.000000/5.000000/10.000000:u/0/11.000000/0.000000/13.000000/0.000000/45/y/8/16/8,box=7.000000/7.000000/8.000000:9.000000/10.000000/8.000000:n/0/3.000000/7.000000/5.000000/10.000000:d/0/11.000000/10.000000/13.000000/10.000000:w/0/13.000000/0.000000/13.000000/10.000000:e/0/11.000000/0.000000/11.000000/10.000000:s/0/3.000000/7.000000/5.000000/10.000000:u/0/11.000000/0.000000/13.000000/0.000000/-45/y/8/16/8 +[1.21.4-]modellist:id=%mangrove_propagule,state=age=3/hanging=false,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000:n/0/4.000000/1.000000/11.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000/45/y/8/0/8,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/4.000000/1.000000/11.000000/7.000000/45/y/8/0/8,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000/45/y/8/0/8,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000/45/y/8/0/8 +[1.21.4-]modellist:id=%mangrove_propagule,state=age=3/hanging=true,box=7.000000/10.000000/7.000000:9.000000/13.000000/9.000000:n/0/0.000000/7.000000/2.000000/10.000000:d/0/0.000000/10.000000/2.000000/12.000000:w/0/0.000000/7.000000/2.000000/10.000000:e/0/0.000000/7.000000/2.000000/10.000000:s/0/0.000000/7.000000/2.000000/10.000000:u/0/0.000000/5.000000/2.000000/7.000000/0/y/8/16/8,box=7.000000/13.611040/10.071930:9.000000/13.611040/12.071930:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/22.5/x/8/16/8,box=10.071930/13.611040/7.000000:12.071930/13.611040/9.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/-22.5/z/8/16/8,box=7.000000/13.611040/3.928070:9.000000/13.611040/5.928070:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/-22.5/x/8/16/8,box=3.928070/13.611040/7.000000:5.928070/13.611040/9.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/22.5/z/8/16/8,box=7.000000/13.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/2.000000/2.000000/3.000000:d/0/0.000000/3.000000/2.000000/5.000000:w/0/0.000000/2.000000/2.000000/3.000000:e/0/0.000000/2.000000/2.000000/3.000000:s/0/0.000000/2.000000/2.000000/3.000000:u/0/0.000000/0.000000/2.000000/2.000000/0/y/8/16/8,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000/-45/y/8/16/8,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000/45/y/8/16/8,box=7.000000/3.000000/8.000000:9.000000/10.000000/8.000000:n/0/3.000000/3.000000/5.000000/10.000000:d/0/11.000000/10.000000/13.000000/10.000000:w/0/11.000000/0.000000/11.000000/10.000000:e/0/13.000000/0.000000/13.000000/10.000000:s/0/3.000000/3.000000/5.000000/10.000000:u/0/11.000000/0.000000/13.000000/0.000000/45/y/8/16/8,box=7.000000/3.000000/8.000000:9.000000/10.000000/8.000000:n/0/3.000000/3.000000/5.000000/10.000000:d/0/11.000000/10.000000/13.000000/10.000000:w/0/13.000000/0.000000/13.000000/10.000000:e/0/11.000000/0.000000/11.000000/10.000000:s/0/3.000000/3.000000/5.000000/10.000000:u/0/11.000000/0.000000/13.000000/0.000000/-45/y/8/16/8 +[1.21.4-]modellist:id=%mangrove_propagule,state=age=4/hanging=false,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000:n/0/4.000000/1.000000/11.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000/45/y/8/0/8,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/4.000000/1.000000/11.000000/7.000000/45/y/8/0/8,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000/45/y/8/0/8,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000/45/y/8/0/8 +[1.21.4-]modellist:id=%mangrove_propagule,state=age=4/hanging=true,box=7.000000/10.000000/7.000000:9.000000/13.000000/9.000000:n/0/0.000000/7.000000/2.000000/10.000000:d/0/0.000000/10.000000/2.000000/12.000000:w/0/0.000000/7.000000/2.000000/10.000000:e/0/0.000000/7.000000/2.000000/10.000000:s/0/0.000000/7.000000/2.000000/10.000000:u/0/0.000000/5.000000/2.000000/7.000000/0/y/8/16/8,box=7.000000/13.611040/10.071930:9.000000/13.611040/12.071930:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/22.5/x/8/16/8,box=10.071930/13.611040/7.000000:12.071930/13.611040/9.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/-22.5/z/8/16/8,box=7.000000/13.611040/3.928070:9.000000/13.611040/5.928070:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/-22.5/x/8/16/8,box=3.928070/13.611040/7.000000:5.928070/13.611040/9.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000/22.5/z/8/16/8,box=7.000000/13.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/2.000000/2.000000/3.000000:d/0/0.000000/3.000000/2.000000/5.000000:w/0/0.000000/2.000000/2.000000/3.000000:e/0/0.000000/2.000000/2.000000/3.000000:s/0/0.000000/2.000000/2.000000/3.000000:u/0/0.000000/0.000000/2.000000/2.000000/0/y/8/16/8,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000/-45/y/8/16/8,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000/45/y/8/16/8,box=7.000000/0.000000/8.000000:9.000000/10.000000/8.000000:n/0/3.000000/0.000000/5.000000/10.000000:d/0/11.000000/10.000000/13.000000/10.000000:w/0/11.000000/0.000000/11.000000/10.000000:e/0/13.000000/0.000000/13.000000/10.000000:s/0/3.000000/0.000000/5.000000/10.000000:u/0/11.000000/0.000000/13.000000/0.000000/45/y/8/16/8,box=7.000000/0.000000/8.000000:9.000000/10.000000/8.000000:n/0/3.000000/0.000000/5.000000/10.000000:d/0/11.000000/10.000000/13.000000/10.000000:w/0/13.000000/0.000000/13.000000/10.000000:e/0/11.000000/0.000000/11.000000/10.000000:s/0/3.000000/0.000000/5.000000/10.000000:u/0/11.000000/0.000000/13.000000/0.000000/-45/y/8/16/8 +[1.21.4-]modellist:id=%mangrove_roots,box=0.000000/0.000000/8.000000:16.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/15.998000/0.000000:16.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:16.000000/0.002000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.002000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/15.998000:16.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:0.002000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=15.998000/0.000000/0.000000:16.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:east,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/90/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/90/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:east/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:east/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:east/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:east/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:east/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:north,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:north/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:north/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:north/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:north/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:north/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:south,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/180/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/180/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:south/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:south/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:south/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:south/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:south/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:west,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/270/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/270/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:west/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:west/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:west/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:west/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_shelf,state=facing:west/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mangrove_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mangrove_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mangrove_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%mangrove_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/270/0 +[1.21.4-]modellist:id=%mangrove_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%mangrove_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%mangrove_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%mangrove_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/180/0 +[1.21.4-]modellist:id=%mangrove_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%mangrove_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/0/0 +[1.21.4-]modellist:id=%mangrove_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%mangrove_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/90/0 +[1.21.4-]modellist:id=%medium_amethyst_bud,state=facing=down,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%medium_amethyst_bud,state=facing=east,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/90/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%medium_amethyst_bud,state=facing=north,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%medium_amethyst_bud,state=facing=south,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/180/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%medium_amethyst_bud,state=facing=up,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%medium_amethyst_bud,state=facing=west,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/270/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%melon_stem,state=age=0,box=0.000000/-1.000000/8.000000:16.000000/1.000000/8.000000:n/0/0.000000/0.000000/16.000000/2.000000:s/0/16.000000/0.000000/0.000000/2.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/1.000000/16.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/16.000000/0.000000/0.000000/2.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%melon_stem,state=age=1,box=0.000000/-1.000000/8.000000:16.000000/3.000000/8.000000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/16.000000/0.000000/0.000000/4.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%melon_stem,state=age=2,box=0.000000/-1.000000/8.000000:16.000000/5.000000/8.000000:n/0/0.000000/0.000000/16.000000/6.000000:s/0/16.000000/0.000000/0.000000/6.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/5.000000/16.000000:w/0/0.000000/0.000000/16.000000/6.000000:e/0/16.000000/0.000000/0.000000/6.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%melon_stem,state=age=3,box=0.000000/-1.000000/8.000000:16.000000/7.000000/8.000000:n/0/0.000000/0.000000/16.000000/8.000000:s/0/16.000000/0.000000/0.000000/8.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/7.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/16.000000/0.000000/0.000000/8.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%melon_stem,state=age=4,box=0.000000/-1.000000/8.000000:16.000000/9.000000/8.000000:n/0/0.000000/0.000000/16.000000/10.000000:s/0/16.000000/0.000000/0.000000/10.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/9.000000/16.000000:w/0/0.000000/0.000000/16.000000/10.000000:e/0/16.000000/0.000000/0.000000/10.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%melon_stem,state=age=5,box=0.000000/-1.000000/8.000000:16.000000/11.000000/8.000000:n/0/0.000000/0.000000/16.000000/12.000000:s/0/16.000000/0.000000/0.000000/12.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/11.000000/16.000000:w/0/0.000000/0.000000/16.000000/12.000000:e/0/16.000000/0.000000/0.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%melon_stem,state=age=6,box=0.000000/-1.000000/8.000000:16.000000/13.000000/8.000000:n/0/0.000000/0.000000/16.000000/14.000000:s/0/16.000000/0.000000/0.000000/14.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/13.000000/16.000000:w/0/0.000000/0.000000/16.000000/14.000000:e/0/16.000000/0.000000/0.000000/14.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%melon_stem,state=age=7,box=0.000000/-1.000000/8.000000:16.000000/15.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%moss_carpet,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mossy_cobblestone_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mossy_cobblestone_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mossy_cobblestone_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mossy_cobblestone_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mossy_cobblestone_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mossy_cobblestone_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mossy_cobblestone_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mossy_cobblestone_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mossy_cobblestone_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mossy_cobblestone_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mossy_cobblestone_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mossy_cobblestone_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mossy_stone_brick_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mossy_stone_brick_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mossy_stone_brick_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mossy_stone_brick_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mossy_stone_brick_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mossy_stone_brick_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mossy_stone_brick_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mossy_stone_brick_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mossy_stone_brick_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mossy_stone_brick_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mossy_stone_brick_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mossy_stone_brick_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mud_brick_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mud_brick_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%mud_brick_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%mud_brick_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mud_brick_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mud_brick_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mud_brick_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mud_brick_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mud_brick_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mud_brick_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mud_brick_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mud_brick_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mushroom_stem,state=down:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%mushroom_stem,state=down:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%mushroom_stem,state=east:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mushroom_stem,state=east:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%mushroom_stem,state=north:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mushroom_stem,state=north:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%mushroom_stem,state=south:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mushroom_stem,state=south:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%mushroom_stem,state=up:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%mushroom_stem,state=up:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%mushroom_stem,state=west:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%mushroom_stem,state=west:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%nether_brick_fence,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000 +[1.21.4-]modellist:id=%nether_brick_fence,state=east:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%nether_brick_fence,state=north:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%nether_brick_fence,state=south:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%nether_brick_fence,state=west:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%nether_brick_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%nether_brick_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%nether_brick_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%nether_brick_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%nether_brick_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%nether_brick_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%nether_brick_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%nether_brick_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%nether_brick_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%nether_brick_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%nether_brick_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%nether_brick_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%nether_portal,state=axis=x,box=0.000000/0.000000/6.000000:16.000000/16.000000/10.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%nether_portal,state=axis=z,box=6.000000/0.000000/0.000000:10.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%nether_sprouts,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%nether_wart,state=age=0,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%nether_wart,state=age=1,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%nether_wart,state=age=2,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%nether_wart,state=age=3,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oak_button,state=face=ceiling/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%oak_button,state=face=ceiling/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%oak_button,state=face=ceiling/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%oak_button,state=face=ceiling/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%oak_button,state=face=ceiling/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%oak_button,state=face=ceiling/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%oak_button,state=face=ceiling/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%oak_button,state=face=ceiling/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%oak_button,state=face=floor/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_button,state=face=floor/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_button,state=face=floor/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%oak_button,state=face=floor/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%oak_button,state=face=floor/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_button,state=face=floor/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_button,state=face=floor/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_button,state=face=floor/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_button,state=face=wall/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%oak_button,state=face=wall/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%oak_button,state=face=wall/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%oak_button,state=face=wall/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%oak_button,state=face=wall/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%oak_button,state=face=wall/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%oak_button,state=face=wall/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%oak_button,state=face=wall/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%oak_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%oak_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%oak_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%oak_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%oak_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%oak_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%oak_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%oak_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%oak_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_fence,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000 +[1.21.4-]modellist:id=%oak_fence,state=east:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_fence,state=north:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%oak_fence,state=south:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_fence,state=west:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_fence_gate,state=facing=east/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_fence_gate,state=facing=east/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_fence_gate,state=facing=east/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_fence_gate,state=facing=east/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_fence_gate,state=facing=north/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_fence_gate,state=facing=north/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_fence_gate,state=facing=north/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_fence_gate,state=facing=north/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_fence_gate,state=facing=south/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%oak_fence_gate,state=facing=south/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%oak_fence_gate,state=facing=south/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%oak_fence_gate,state=facing=south/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%oak_fence_gate,state=facing=west/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_fence_gate,state=facing=west/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_fence_gate,state=facing=west/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_fence_gate,state=facing=west/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_pressure_plate,state=powered=false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%oak_pressure_plate,state=powered=true,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%oak_sapling,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%oak_shelf,state=facing:east,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/90/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/90/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_shelf,state=facing:east/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_shelf,state=facing:east/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_shelf,state=facing:east/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_shelf,state=facing:east/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_shelf,state=facing:east/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_shelf,state=facing:north,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000 +[1.21.4-]modellist:id=%oak_shelf,state=facing:north/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000 +[1.21.4-]modellist:id=%oak_shelf,state=facing:north/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%oak_shelf,state=facing:north/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000 +[1.21.4-]modellist:id=%oak_shelf,state=facing:north/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000 +[1.21.4-]modellist:id=%oak_shelf,state=facing:north/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oak_shelf,state=facing:south,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/180/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/180/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_shelf,state=facing:south/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_shelf,state=facing:south/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_shelf,state=facing:south/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_shelf,state=facing:south/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_shelf,state=facing:south/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_shelf,state=facing:west,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/270/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/270/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_shelf,state=facing:west/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_shelf,state=facing:west/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_shelf,state=facing:west/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_shelf,state=facing:west/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_shelf,state=facing:west/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oak_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oak_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%oak_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oak_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oak_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%oak_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oak_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%oak_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%oak_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oak_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oak_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%oak_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oak_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%oak_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oak_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%oak_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oak_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oak_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%oak_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oak_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%oak_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oak_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%open_eyeblossom,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%orange_candle,state=candles=1/lit=false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%orange_candle,state=candles=1/lit=true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%orange_candle,state=candles=2/lit=false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%orange_candle,state=candles=2/lit=true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%orange_candle,state=candles=3/lit=false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%orange_candle,state=candles=3/lit=true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%orange_candle,state=candles=4/lit=false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%orange_candle,state=candles=4/lit=true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%orange_candle_cake,state=lit=false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%orange_candle_cake,state=lit=true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%orange_carpet,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%orange_stained_glass_pane,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%orange_stained_glass_pane,state=east:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%orange_stained_glass_pane,state=east:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%orange_stained_glass_pane,state=north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%orange_stained_glass_pane,state=north:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%orange_stained_glass_pane,state=south:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%orange_stained_glass_pane,state=south:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%orange_stained_glass_pane,state=west:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%orange_stained_glass_pane,state=west:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%orange_tulip,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%oxeye_daisy,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%oxidized_copper_bars,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%oxidized_copper_bars,state=east:false/north:false/south:false/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/16.000000/8.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_copper_bars,state=east:false/north:false/south:false/west:true,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_copper_bars,state=east:false/north:false/south:true/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_copper_bars,state=east:false/north:true/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_copper_bars,state=east:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_copper_bars,state=east:true/north:false/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_copper_bars,state=north:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%oxidized_copper_bars,state=south:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_copper_bars,state=west:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_copper_chain,state=axis=x,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/90/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%oxidized_copper_chain,state=axis=y,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%oxidized_copper_chain,state=axis=z,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/0/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%oxidized_copper_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_copper_lantern,state=hanging=false,box=5.000000/0.000000/5.000000:11.000000/7.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/7.000000/6.000000:10.000000/9.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/9.000000/8.000000:9.500000/11.000000/8.000000:n/0/14.000000/1.000000/11.000000/3.000000:s/0/11.000000/1.000000/14.000000/3.000000/45/y/8/8/8,box=8.000000/9.000000/6.500000:8.000000/11.000000/9.500000:w/0/14.000000/10.000000/11.000000/12.000000:e/0/11.000000/10.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%oxidized_copper_lantern,state=hanging=true,box=5.000000/1.000000/5.000000:11.000000/8.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/8.000000/6.000000:10.000000/10.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:d/0/1.000000/10.000000/5.000000/14.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/11.000000/8.000000:9.500000/15.000000/8.000000:n/0/14.000000/1.000000/11.000000/5.000000:s/0/11.000000/1.000000/14.000000/5.000000/45/y/8/8/8,box=8.000000/10.000000/6.500000:8.000000/16.000000/9.500000:w/0/14.000000/6.000000/11.000000/12.000000:e/0/11.000000/6.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%oxidized_copper_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_copper_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_copper_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_copper_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_copper_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_copper_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%oxidized_copper_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_copper_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%oxidized_copper_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_copper_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%oxidized_copper_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_copper_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%oxidized_copper_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_copper_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%oxidized_copper_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_copper_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_cut_copper_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%oxidized_cut_copper_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%oxidized_lightning_rod,state=facing=down/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%oxidized_lightning_rod,state=facing=down/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%oxidized_lightning_rod,state=facing=east/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%oxidized_lightning_rod,state=facing=east/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%oxidized_lightning_rod,state=facing=north/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%oxidized_lightning_rod,state=facing=north/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%oxidized_lightning_rod,state=facing=south/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%oxidized_lightning_rod,state=facing=south/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%oxidized_lightning_rod,state=facing=up/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_lightning_rod,state=facing=up/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.21.4-]modellist:id=%oxidized_lightning_rod,state=facing=west/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%oxidized_lightning_rod,state=facing=west/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%pale_hanging_moss,state=tip=false,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pale_hanging_moss,state=tip=true,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pale_moss_carpet,state=bottom:false/east:none/north:none/south:none/west:none,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%pale_moss_carpet,state=bottom:false/east:none/north:none/south:none/west:none,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%pale_moss_carpet,state=bottom:false/east:none/north:none/south:none/west:none,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_moss_carpet,state=bottom:false/east:none/north:none/south:none/west:none,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_moss_carpet,state=bottom:false/east:none/north:none/south:none/west:none,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_moss_carpet,state=bottom:true,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%pale_moss_carpet,state=east:low,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_moss_carpet,state=east:tall,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_moss_carpet,state=north:low,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%pale_moss_carpet,state=north:tall,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%pale_moss_carpet,state=south:low,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_moss_carpet,state=south:tall,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_moss_carpet,state=west:low,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_moss_carpet,state=west:tall,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=ceiling/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=ceiling/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=ceiling/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=ceiling/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=ceiling/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=ceiling/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=ceiling/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=ceiling/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=floor/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=floor/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=floor/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%pale_oak_button,state=face=floor/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%pale_oak_button,state=face=floor/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=floor/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=floor/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=floor/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=wall/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=wall/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=wall/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=wall/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=wall/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=wall/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=wall/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%pale_oak_button,state=face=wall/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_fence,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000 +[1.21.4-]modellist:id=%pale_oak_fence,state=east:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_fence,state=north:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%pale_oak_fence,state=south:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_fence,state=west:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_fence_gate,state=facing=east/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_fence_gate,state=facing=east/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_fence_gate,state=facing=east/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_fence_gate,state=facing=east/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_fence_gate,state=facing=north/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_fence_gate,state=facing=north/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_fence_gate,state=facing=north/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_fence_gate,state=facing=north/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_fence_gate,state=facing=south/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%pale_oak_fence_gate,state=facing=south/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%pale_oak_fence_gate,state=facing=south/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%pale_oak_fence_gate,state=facing=south/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%pale_oak_fence_gate,state=facing=west/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_fence_gate,state=facing=west/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_fence_gate,state=facing=west/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_fence_gate,state=facing=west/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_pressure_plate,state=powered=false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%pale_oak_pressure_plate,state=powered=true,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%pale_oak_sapling,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:east,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/90/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/90/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:east/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:east/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:east/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:east/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:east/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:north,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:north/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:north/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:north/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:north/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:north/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:south,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/180/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/180/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:south/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:south/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:south/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:south/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:south/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:west,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/270/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/270/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:west/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:west/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:west/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:west/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_shelf,state=facing:west/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%pale_oak_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%pale_oak_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%pale_oak_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%pale_oak_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/270/0 +[1.21.4-]modellist:id=%pale_oak_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%pale_oak_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%pale_oak_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%pale_oak_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/180/0 +[1.21.4-]modellist:id=%pale_oak_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%pale_oak_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/0/0 +[1.21.4-]modellist:id=%pale_oak_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%pale_oak_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/90/0 +[1.21.4-]modellist:id=%peony,state=half=lower,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%peony,state=half=upper,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%petrified_oak_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%petrified_oak_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%pink_candle,state=candles=1/lit=false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%pink_candle,state=candles=1/lit=true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%pink_candle,state=candles=2/lit=false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%pink_candle,state=candles=2/lit=true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%pink_candle,state=candles=3/lit=false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%pink_candle,state=candles=3/lit=true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%pink_candle,state=candles=4/lit=false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%pink_candle,state=candles=4/lit=true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%pink_candle_cake,state=lit=false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%pink_candle_cake,state=lit=true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%pink_carpet,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%pink_petals,state=facing:east,box=0.000000/2.990000/0.000000:8.000000/2.990000/8.000000:d/0/0.000000/8.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=4.250000/0.000000/-2.600000:4.250000/2.990000/-1.600000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/90/0,box=3.750000/0.000000/-2.100000:4.750000/2.990000/-2.100000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/90/0,box=4.900000/0.000000/2.300000:4.900000/2.990000/3.300000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/90/0,box=4.400000/0.000000/2.800000:5.400000/2.990000/2.800000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/90/0,box=9.150000/0.000000/-0.450000:9.150000/2.990000/0.550000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/90/0,box=8.650000/0.000000/0.050000:9.650000/2.990000/0.050000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%pink_petals,state=facing:east/flower_amount:2|3|4,box=0.000000/1.000000/8.000000:8.000000/1.000000/16.000000:d/0/0.000000/16.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0,box=0.000000/1.000000/8.000000:8.000000/1.000000/16.000000:d/0/0.000000/16.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0,box=10.150000/0.000000/5.250000:11.150000/1.000000/5.250000:n/0/0.000000/6.000000/1.000000/7.000000:s/0/0.000000/6.000000/1.000000/7.000000:R/0/90/0,box=10.650000/0.000000/4.750000:10.650000/1.000000/5.750000:w/0/0.000000/6.000000/1.000000/7.000000:e/0/0.000000/6.000000/1.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%pink_petals,state=facing:east/flower_amount:3|4,box=8.000000/2.000000/8.000000:16.000000/2.000000/16.000000:d/0/8.000000/16.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0,box=17.650000/0.000000/1.900000:18.650000/2.000000/1.900000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/90/0,box=18.150000/0.000000/1.400000:18.150000/2.000000/2.400000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/90/0,box=17.650000/0.000000/-3.350000:17.650000/2.000000/-2.350000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/90/0,box=17.150000/0.000000/-2.850000:18.150000/2.000000/-2.850000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/90/0,box=13.400000/0.000000/-0.500000:13.400000/2.000000/0.500000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/90/0,box=12.900000/0.000000/0.000000:13.900000/2.000000/0.000000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%pink_petals,state=facing:east/flower_amount:4,box=8.000000/2.000000/0.000000:16.000000/2.000000/8.000000:d/0/8.000000/8.000000/16.000000/0.000000:u/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0,box=12.400000/0.000000/-7.700000:12.400000/2.000000/-6.700000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/90/0,box=11.900000/0.000000/-7.200000:12.900000/2.000000/-7.200000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%pink_petals,state=facing:north,box=0.000000/2.990000/0.000000:8.000000/2.990000/8.000000:d/0/0.000000/8.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/8.000000,box=4.250000/0.000000/-2.600000:4.250000/2.990000/-1.600000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000/-45/y/0/0/0,box=3.750000/0.000000/-2.100000:4.750000/2.990000/-2.100000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000/-45/y/0/0/0,box=4.900000/0.000000/2.300000:4.900000/2.990000/3.300000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000/-45/y/0/0/0,box=4.400000/0.000000/2.800000:5.400000/2.990000/2.800000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000/-45/y/0/0/0,box=9.150000/0.000000/-0.450000:9.150000/2.990000/0.550000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000/-45/y/0/0/0,box=8.650000/0.000000/0.050000:9.650000/2.990000/0.050000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000/-45/y/0/0/0 +[1.21.4-]modellist:id=%pink_petals,state=facing:north/flower_amount:2|3|4,box=0.000000/1.000000/8.000000:8.000000/1.000000/16.000000:d/0/0.000000/16.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000,box=0.000000/1.000000/8.000000:8.000000/1.000000/16.000000:d/0/0.000000/16.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000,box=10.150000/0.000000/5.250000:11.150000/1.000000/5.250000:n/0/0.000000/6.000000/1.000000/7.000000:s/0/0.000000/6.000000/1.000000/7.000000/-45/y/0/0/1,box=10.650000/0.000000/4.750000:10.650000/1.000000/5.750000:w/0/0.000000/6.000000/1.000000/7.000000:e/0/0.000000/6.000000/1.000000/7.000000/-45/y/0/0/1 +[1.21.4-]modellist:id=%pink_petals,state=facing:north/flower_amount:3|4,box=8.000000/2.000000/8.000000:16.000000/2.000000/16.000000:d/0/8.000000/16.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000,box=17.650000/0.000000/1.900000:18.650000/2.000000/1.900000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000/-45/y/0.5/0/0.5,box=18.150000/0.000000/1.400000:18.150000/2.000000/2.400000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000/-45/y/0.5/0/0.5,box=17.650000/0.000000/-3.350000:17.650000/2.000000/-2.350000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000/-45/y/0/0/0,box=17.150000/0.000000/-2.850000:18.150000/2.000000/-2.850000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000/-45/y/0/0/0,box=13.400000/0.000000/-0.500000:13.400000/2.000000/0.500000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000/-45/y/0/0/0,box=12.900000/0.000000/0.000000:13.900000/2.000000/0.000000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000/-45/y/0/0/0 +[1.21.4-]modellist:id=%pink_petals,state=facing:north/flower_amount:4,box=8.000000/2.000000/0.000000:16.000000/2.000000/8.000000:d/0/8.000000/8.000000/16.000000/0.000000:u/0/8.000000/0.000000/16.000000/8.000000,box=12.400000/0.000000/-7.700000:12.400000/2.000000/-6.700000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000/-45/y/-1/0/-3,box=11.900000/0.000000/-7.200000:12.900000/2.000000/-7.200000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000/-45/y/-1/0/-3 +[1.21.4-]modellist:id=%pink_petals,state=facing:south,box=0.000000/2.990000/0.000000:8.000000/2.990000/8.000000:d/0/0.000000/8.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=4.250000/0.000000/-2.600000:4.250000/2.990000/-1.600000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/180/0,box=3.750000/0.000000/-2.100000:4.750000/2.990000/-2.100000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/180/0,box=4.900000/0.000000/2.300000:4.900000/2.990000/3.300000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/180/0,box=4.400000/0.000000/2.800000:5.400000/2.990000/2.800000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/180/0,box=9.150000/0.000000/-0.450000:9.150000/2.990000/0.550000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/180/0,box=8.650000/0.000000/0.050000:9.650000/2.990000/0.050000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/180/0 +[1.21.4-]modellist:id=%pink_petals,state=facing:south/flower_amount:2|3|4,box=0.000000/1.000000/8.000000:8.000000/1.000000/16.000000:d/0/0.000000/16.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0,box=0.000000/1.000000/8.000000:8.000000/1.000000/16.000000:d/0/0.000000/16.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0,box=10.150000/0.000000/5.250000:11.150000/1.000000/5.250000:n/0/0.000000/6.000000/1.000000/7.000000:s/0/0.000000/6.000000/1.000000/7.000000:R/0/180/0,box=10.650000/0.000000/4.750000:10.650000/1.000000/5.750000:w/0/0.000000/6.000000/1.000000/7.000000:e/0/0.000000/6.000000/1.000000/7.000000:R/0/180/0 +[1.21.4-]modellist:id=%pink_petals,state=facing:south/flower_amount:3|4,box=8.000000/2.000000/8.000000:16.000000/2.000000/16.000000:d/0/8.000000/16.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0,box=17.650000/0.000000/1.900000:18.650000/2.000000/1.900000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/180/0,box=18.150000/0.000000/1.400000:18.150000/2.000000/2.400000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/180/0,box=17.650000/0.000000/-3.350000:17.650000/2.000000/-2.350000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/180/0,box=17.150000/0.000000/-2.850000:18.150000/2.000000/-2.850000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/180/0,box=13.400000/0.000000/-0.500000:13.400000/2.000000/0.500000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/180/0,box=12.900000/0.000000/0.000000:13.900000/2.000000/0.000000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/180/0 +[1.21.4-]modellist:id=%pink_petals,state=facing:south/flower_amount:4,box=8.000000/2.000000/0.000000:16.000000/2.000000/8.000000:d/0/8.000000/8.000000/16.000000/0.000000:u/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0,box=12.400000/0.000000/-7.700000:12.400000/2.000000/-6.700000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/180/0,box=11.900000/0.000000/-7.200000:12.900000/2.000000/-7.200000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/180/0 +[1.21.4-]modellist:id=%pink_petals,state=facing:west,box=0.000000/2.990000/0.000000:8.000000/2.990000/8.000000:d/0/0.000000/8.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=4.250000/0.000000/-2.600000:4.250000/2.990000/-1.600000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/270/0,box=3.750000/0.000000/-2.100000:4.750000/2.990000/-2.100000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/270/0,box=4.900000/0.000000/2.300000:4.900000/2.990000/3.300000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/270/0,box=4.400000/0.000000/2.800000:5.400000/2.990000/2.800000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/270/0,box=9.150000/0.000000/-0.450000:9.150000/2.990000/0.550000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/270/0,box=8.650000/0.000000/0.050000:9.650000/2.990000/0.050000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/270/0 +[1.21.4-]modellist:id=%pink_petals,state=facing:west/flower_amount:2|3|4,box=0.000000/1.000000/8.000000:8.000000/1.000000/16.000000:d/0/0.000000/16.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0,box=0.000000/1.000000/8.000000:8.000000/1.000000/16.000000:d/0/0.000000/16.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0,box=10.150000/0.000000/5.250000:11.150000/1.000000/5.250000:n/0/0.000000/6.000000/1.000000/7.000000:s/0/0.000000/6.000000/1.000000/7.000000:R/0/270/0,box=10.650000/0.000000/4.750000:10.650000/1.000000/5.750000:w/0/0.000000/6.000000/1.000000/7.000000:e/0/0.000000/6.000000/1.000000/7.000000:R/0/270/0 +[1.21.4-]modellist:id=%pink_petals,state=facing:west/flower_amount:3|4,box=8.000000/2.000000/8.000000:16.000000/2.000000/16.000000:d/0/8.000000/16.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0,box=17.650000/0.000000/1.900000:18.650000/2.000000/1.900000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/270/0,box=18.150000/0.000000/1.400000:18.150000/2.000000/2.400000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/270/0,box=17.650000/0.000000/-3.350000:17.650000/2.000000/-2.350000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/270/0,box=17.150000/0.000000/-2.850000:18.150000/2.000000/-2.850000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/270/0,box=13.400000/0.000000/-0.500000:13.400000/2.000000/0.500000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/270/0,box=12.900000/0.000000/0.000000:13.900000/2.000000/0.000000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/270/0 +[1.21.4-]modellist:id=%pink_petals,state=facing:west/flower_amount:4,box=8.000000/2.000000/0.000000:16.000000/2.000000/8.000000:d/0/8.000000/8.000000/16.000000/0.000000:u/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0,box=12.400000/0.000000/-7.700000:12.400000/2.000000/-6.700000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/270/0,box=11.900000/0.000000/-7.200000:12.900000/2.000000/-7.200000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/270/0 +[1.21.4-]modellist:id=%pink_stained_glass_pane,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%pink_stained_glass_pane,state=east:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%pink_stained_glass_pane,state=east:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%pink_stained_glass_pane,state=north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%pink_stained_glass_pane,state=north:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%pink_stained_glass_pane,state=south:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%pink_stained_glass_pane,state=south:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%pink_stained_glass_pane,state=west:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%pink_stained_glass_pane,state=west:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%pink_tulip,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%piston,state=extended=true/facing=down,box=0.000000/0.000000/4.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/4.000000/16.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/4.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%piston,state=extended=true/facing=east,box=0.000000/0.000000/4.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/4.000000/16.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/4.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%piston,state=extended=true/facing=north,box=0.000000/0.000000/4.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/4.000000/16.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/4.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%piston,state=extended=true/facing=south,box=0.000000/0.000000/4.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/4.000000/16.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/4.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%piston,state=extended=true/facing=up,box=0.000000/0.000000/4.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/4.000000/16.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/4.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%piston,state=extended=true/facing=west,box=0.000000/0.000000/4.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/4.000000/16.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/4.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%piston_head,state=facing=down/short=false/type=normal,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/90/0/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/20.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/0.000000/0.000000:e/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/90/0/0 +[1.21.4-]modellist:id=%piston_head,state=facing=down/short=false/type=sticky,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/90/0/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/20.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/0.000000/0.000000:e/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/90/0/0 +[1.21.4-]modellist:id=%piston_head,state=facing=down/short=true/type=normal,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/90/0/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/16.000000:d/0/4.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/4.000000/0.000000:e/0/4.000000/0.000000/16.000000/4.000000:u/0/4.000000/0.000000/16.000000/4.000000:R/90/0/0 +[1.21.4-]modellist:id=%piston_head,state=facing=down/short=true/type=sticky,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/90/0/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/16.000000:d/0/4.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/4.000000/0.000000:e/0/4.000000/0.000000/16.000000/4.000000:u/0/4.000000/0.000000/16.000000/4.000000:R/90/0/0 +[1.21.4-]modellist:id=%piston_head,state=facing=east/short=false/type=normal,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/20.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/0.000000/0.000000:e/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0 +[1.21.4-]modellist:id=%piston_head,state=facing=east/short=false/type=sticky,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/20.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/0.000000/0.000000:e/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0 +[1.21.4-]modellist:id=%piston_head,state=facing=east/short=true/type=normal,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/16.000000:d/0/4.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/4.000000/0.000000:e/0/4.000000/0.000000/16.000000/4.000000:u/0/4.000000/0.000000/16.000000/4.000000:R/0/90/0 +[1.21.4-]modellist:id=%piston_head,state=facing=east/short=true/type=sticky,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/16.000000:d/0/4.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/4.000000/0.000000:e/0/4.000000/0.000000/16.000000/4.000000:u/0/4.000000/0.000000/16.000000/4.000000:R/0/90/0 +[1.21.4-]modellist:id=%piston_head,state=facing=north/short=false/type=normal,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=6.000000/6.000000/4.000000:10.000000/10.000000/20.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/0.000000/0.000000:e/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000 +[1.21.4-]modellist:id=%piston_head,state=facing=north/short=false/type=sticky,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=6.000000/6.000000/4.000000:10.000000/10.000000/20.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/0.000000/0.000000:e/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000 +[1.21.4-]modellist:id=%piston_head,state=facing=north/short=true/type=normal,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=6.000000/6.000000/4.000000:10.000000/10.000000/16.000000:d/0/4.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/4.000000/0.000000:e/0/4.000000/0.000000/16.000000/4.000000:u/0/4.000000/0.000000/16.000000/4.000000 +[1.21.4-]modellist:id=%piston_head,state=facing=north/short=true/type=sticky,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=6.000000/6.000000/4.000000:10.000000/10.000000/16.000000:d/0/4.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/4.000000/0.000000:e/0/4.000000/0.000000/16.000000/4.000000:u/0/4.000000/0.000000/16.000000/4.000000 +[1.21.4-]modellist:id=%piston_head,state=facing=south/short=false/type=normal,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/20.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/0.000000/0.000000:e/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0 +[1.21.4-]modellist:id=%piston_head,state=facing=south/short=false/type=sticky,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/20.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/0.000000/0.000000:e/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0 +[1.21.4-]modellist:id=%piston_head,state=facing=south/short=true/type=normal,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/16.000000:d/0/4.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/4.000000/0.000000:e/0/4.000000/0.000000/16.000000/4.000000:u/0/4.000000/0.000000/16.000000/4.000000:R/0/180/0 +[1.21.4-]modellist:id=%piston_head,state=facing=south/short=true/type=sticky,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/16.000000:d/0/4.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/4.000000/0.000000:e/0/4.000000/0.000000/16.000000/4.000000:u/0/4.000000/0.000000/16.000000/4.000000:R/0/180/0 +[1.21.4-]modellist:id=%piston_head,state=facing=up/short=false/type=normal,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/270/0/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/20.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/0.000000/0.000000:e/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/270/0/0 +[1.21.4-]modellist:id=%piston_head,state=facing=up/short=false/type=sticky,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/270/0/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/20.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/0.000000/0.000000:e/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/270/0/0 +[1.21.4-]modellist:id=%piston_head,state=facing=up/short=true/type=normal,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/270/0/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/16.000000:d/0/4.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/4.000000/0.000000:e/0/4.000000/0.000000/16.000000/4.000000:u/0/4.000000/0.000000/16.000000/4.000000:R/270/0/0 +[1.21.4-]modellist:id=%piston_head,state=facing=up/short=true/type=sticky,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/270/0/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/16.000000:d/0/4.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/4.000000/0.000000:e/0/4.000000/0.000000/16.000000/4.000000:u/0/4.000000/0.000000/16.000000/4.000000:R/270/0/0 +[1.21.4-]modellist:id=%piston_head,state=facing=west/short=false/type=normal,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/20.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/0.000000/0.000000:e/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0 +[1.21.4-]modellist:id=%piston_head,state=facing=west/short=false/type=sticky,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/20.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/0.000000/0.000000:e/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0 +[1.21.4-]modellist:id=%piston_head,state=facing=west/short=true/type=normal,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/16.000000:d/0/4.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/4.000000/0.000000:e/0/4.000000/0.000000/16.000000/4.000000:u/0/4.000000/0.000000/16.000000/4.000000:R/0/270/0 +[1.21.4-]modellist:id=%piston_head,state=facing=west/short=true/type=sticky,box=0.000000/0.000000/0.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=6.000000/6.000000/4.000000:10.000000/10.000000/16.000000:d/0/4.000000/0.000000/16.000000/4.000000:w/0/16.000000/4.000000/4.000000/0.000000:e/0/4.000000/0.000000/16.000000/4.000000:u/0/4.000000/0.000000/16.000000/4.000000:R/0/270/0 +[1.21.4-]modellist:id=%pitcher_crop,state=age=0/half=lower,box=5.000000/-1.000000/5.000000:11.000000/3.000000/11.000000:n/0/3.000000/10.000000/9.000000/14.000000:d/0/5.000000/5.000000/11.000000/11.000000:w/0/3.000000/10.000000/9.000000/14.000000:e/0/3.000000/10.000000/9.000000/14.000000:s/0/3.000000/10.000000/9.000000/14.000000:u/0/5.000000/5.000000/11.000000/11.000000 +[1.21.4-]modellist:id=%pitcher_crop,state=age=1/half=lower,box=0.000000/5.000000/8.000000:16.000000/21.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/5/8,box=0.000000/5.000000/8.000000:16.000000/21.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/-45/y/8/5/8,box=3.000000/-1.000000/3.000000:13.000000/5.000000/13.000000:n/0/3.000000/10.000000/13.000000/16.000000:d/0/3.000000/3.000000/13.000000/13.000000:w/0/3.000000/10.000000/13.000000/16.000000:e/0/3.000000/10.000000/13.000000/16.000000:s/0/3.000000/10.000000/13.000000/16.000000:u/0/3.000000/3.000000/13.000000/13.000000 +[1.21.4-]modellist:id=%pitcher_crop,state=age=2/half=lower,box=0.000000/5.000000/8.000000:16.000000/21.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/6/8,box=8.000000/5.000000/0.000000:8.000000/21.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/6/8,box=3.000000/-1.000000/3.000000:13.000000/5.000000/13.000000:n/0/3.000000/10.000000/13.000000/16.000000:d/0/3.000000/3.000000/13.000000/13.000000:w/0/3.000000/10.000000/13.000000/16.000000:e/0/3.000000/10.000000/13.000000/16.000000:s/0/3.000000/10.000000/13.000000/16.000000:u/0/3.000000/3.000000/13.000000/13.000000 +[1.21.4-]modellist:id=%pitcher_crop,state=age=3/half=lower,box=0.000000/0.000000/8.000000:16.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/0/8,box=0.000000/0.000000/8.000000:16.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/-45/y/8/0/8,box=3.000000/-1.000000/3.000000:13.000000/5.000000/13.000000:n/0/3.000000/10.000000/13.000000/16.000000:d/0/3.000000/3.000000/13.000000/13.000000:w/0/3.000000/10.000000/13.000000/16.000000:e/0/3.000000/10.000000/13.000000/16.000000:s/0/3.000000/10.000000/13.000000/16.000000:u/0/3.000000/3.000000/13.000000/13.000000 +[1.21.4-]modellist:id=%pitcher_crop,state=age=3/half=upper,box=0.000000/0.000000/8.000000:16.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/16/8,box=0.000000/0.000000/8.000000:16.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/-45/y/8/16/8 +[1.21.4-]modellist:id=%pitcher_crop,state=age=4/half=lower,box=8.000000/0.000000/0.000000:8.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/0/8,box=0.000000/0.000000/8.000000:16.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/0/8,box=3.000000/-1.000000/3.000000:13.000000/5.000000/13.000000:n/0/3.000000/10.000000/13.000000/16.000000:d/0/3.000000/3.000000/13.000000/13.000000:w/0/3.000000/10.000000/13.000000/16.000000:e/0/3.000000/10.000000/13.000000/16.000000:s/0/3.000000/10.000000/13.000000/16.000000:u/0/3.000000/3.000000/13.000000/13.000000 +[1.21.4-]modellist:id=%pitcher_crop,state=age=4/half=upper,box=8.000000/0.000000/0.000000:8.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/0/8,box=0.000000/0.000000/8.000000:16.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/0/8 +[1.21.4-]modellist:id=%pitcher_plant,state=half=lower,box=8.000000/-5.000000/0.000000:8.000000/11.000000/16.000000:n/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/0.000000/45/y/8/3/8,box=0.000000/-5.000000/8.000000:16.000000/11.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/0.000000/45/y/8/3/8 +[1.21.4-]modellist:id=%pitcher_plant,state=half=upper,box=8.000000/-5.000000/0.000000:8.000000/11.000000/16.000000:n/0/0.000000/0.000000/0.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/0.000000/45/y/8/19/8,box=0.000000/-5.000000/8.000000:16.000000/11.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/0.000000:w/0/0.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/0.000000/45/y/8/19/8 +[1.21.4-]modellist:id=%pointed_dripstone,state=thickness=base/vertical_direction=down,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pointed_dripstone,state=thickness=base/vertical_direction=up,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pointed_dripstone,state=thickness=frustum/vertical_direction=down,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pointed_dripstone,state=thickness=frustum/vertical_direction=up,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pointed_dripstone,state=thickness=middle/vertical_direction=down,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pointed_dripstone,state=thickness=middle/vertical_direction=up,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pointed_dripstone,state=thickness=tip/vertical_direction=down,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pointed_dripstone,state=thickness=tip/vertical_direction=up,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pointed_dripstone,state=thickness=tip_merge/vertical_direction=down,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pointed_dripstone,state=thickness=tip_merge/vertical_direction=up,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%polished_andesite_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_andesite_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_andesite_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_brick_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_brick_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_brick_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_brick_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_blackstone_brick_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=ceiling/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=ceiling/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=ceiling/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=ceiling/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=ceiling/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=ceiling/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=ceiling/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=ceiling/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=floor/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=floor/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=floor/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=floor/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=floor/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=floor/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=floor/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=floor/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=wall/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=wall/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=wall/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=wall/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=wall/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=wall/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=wall/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%polished_blackstone_button,state=face=wall/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%polished_blackstone_pressure_plate,state=powered=false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%polished_blackstone_pressure_plate,state=powered=true,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%polished_blackstone_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_blackstone_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_blackstone_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_blackstone_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_blackstone_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_blackstone_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_blackstone_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_blackstone_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_blackstone_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_deepslate_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_deepslate_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_deepslate_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_deepslate_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_deepslate_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_deepslate_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_deepslate_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_deepslate_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_deepslate_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_deepslate_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_deepslate_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_deepslate_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_diorite_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_diorite_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_diorite_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_granite_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_granite_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_granite_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_tuff_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_tuff_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%polished_tuff_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%polished_tuff_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_tuff_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%polished_tuff_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_tuff_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_tuff_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_tuff_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%polished_tuff_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%polished_tuff_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%polished_tuff_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%poppy,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potatoes,state=age=0,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%potatoes,state=age=1,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%potatoes,state=age=2,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%potatoes,state=age=3,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%potatoes,state=age=4,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%potatoes,state=age=5,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%potatoes,state=age=6,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%potatoes,state=age=7,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%potted_acacia_sapling,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_allium,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_azalea_bush,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=4.000000/15.900000/4.000000:12.000000/16.000000/12.000000:d/0/4.000000/12.000000/12.000000/4.000000:u/0/4.000000/4.000000/12.000000/12.000000,box=4.000000/8.000000/4.000000:12.000000/16.000000/4.000000:n/0/4.000000/5.000000/12.000000/13.000000:s/0/12.000000/5.000000/4.000000/13.000000,box=4.000000/8.000000/12.000000:12.000000/16.000000/12.000000:n/0/12.000000/5.000000/4.000000/13.000000:s/0/4.000000/5.000000/12.000000/13.000000,box=4.000000/8.000000/4.000000:4.000000/16.000000/12.000000:w/0/4.000000/5.000000/12.000000/13.000000:e/0/12.000000/5.000000/4.000000/13.000000,box=12.000000/8.000000/4.000000:12.000000/16.000000/12.000000:w/0/12.000000/5.000000/4.000000/13.000000:e/0/4.000000/5.000000/12.000000/13.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/4.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_azure_bluet,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_bamboo,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/6.000000/0.000000/8.000000/16.000000:w/0/6.000000/0.000000/8.000000/16.000000:e/0/6.000000/0.000000/8.000000/16.000000:s/0/6.000000/0.000000/8.000000/16.000000:u/0/13.000000/0.000000/15.000000/2.000000,box=0.000000/2.000000/8.000000:16.000000/18.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%potted_birch_sapling,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_blue_orchid,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_brown_mushroom,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_cactus,box=5.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=6.000000/5.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/11.000000:w/0/6.000000/0.000000/10.000000/11.000000:e/0/6.000000/0.000000/10.000000/11.000000:s/0/6.000000/0.000000/10.000000/11.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%potted_cherry_sapling,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_closed_eyeblossom,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_cornflower,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_crimson_fungus,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_crimson_roots,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_dandelion,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_dark_oak_sapling,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_dead_bush,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_fern,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_flowering_azalea_bush,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=4.000000/15.900000/4.000000:12.000000/16.000000/12.000000:d/0/4.000000/12.000000/12.000000/4.000000:u/0/4.000000/4.000000/12.000000/12.000000,box=4.000000/8.000000/4.000000:12.000000/16.000000/4.000000:n/0/4.000000/5.000000/12.000000/13.000000:s/0/12.000000/5.000000/4.000000/13.000000,box=4.000000/8.000000/12.000000:12.000000/16.000000/12.000000:n/0/12.000000/5.000000/4.000000/13.000000:s/0/4.000000/5.000000/12.000000/13.000000,box=4.000000/8.000000/4.000000:4.000000/16.000000/12.000000:w/0/4.000000/5.000000/12.000000/13.000000:e/0/12.000000/5.000000/4.000000/13.000000,box=12.000000/8.000000/4.000000:12.000000/16.000000/12.000000:w/0/12.000000/5.000000/4.000000/13.000000:e/0/4.000000/5.000000/12.000000/13.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/4.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_jungle_sapling,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_lily_of_the_valley,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_mangrove_propagule,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000:n/0/4.000000/1.000000/11.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000/45/y/8/0/8,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/4.000000/1.000000/11.000000/7.000000/45/y/8/0/8,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000/45/y/8/0/8,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000/45/y/8/0/8,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000 +[1.21.4-]modellist:id=%potted_oak_sapling,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_open_eyeblossom,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_orange_tulip,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_oxeye_daisy,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_pale_oak_sapling,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_pink_tulip,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_poppy,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_red_mushroom,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_red_tulip,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_spruce_sapling,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_torchflower,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_warped_fungus,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_warped_roots,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_white_tulip,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%potted_wither_rose,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%powder_snow,box=0.000000/15.998000/0.000000:16.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:16.000000/0.002000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.002000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/15.998000:16.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:0.002000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=15.998000/0.000000/0.000000:16.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%powder_snow_cauldron,state=level=1,box=0.000000/3.000000/0.000000:2.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/2.000000:14.000000/4.000000/14.000000:d/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/3.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/0.000000:14.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/14.000000:14.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:4.000000/3.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/2.000000:2.000000/3.000000/4.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/0.000000:16.000000/3.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/2.000000:16.000000/3.000000/4.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/14.000000:4.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/12.000000:2.000000/3.000000/14.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/14.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/12.000000:16.000000/3.000000/14.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/4.000000/2.000000:14.000000/9.000000/14.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%powder_snow_cauldron,state=level=2,box=0.000000/3.000000/0.000000:2.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/2.000000:14.000000/4.000000/14.000000:d/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/3.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/0.000000:14.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/14.000000:14.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:4.000000/3.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/2.000000:2.000000/3.000000/4.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/0.000000:16.000000/3.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/2.000000:16.000000/3.000000/4.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/14.000000:4.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/12.000000:2.000000/3.000000/14.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/14.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/12.000000:16.000000/3.000000/14.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/4.000000/2.000000:14.000000/12.000000/14.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%powder_snow_cauldron,state=level=3,box=0.000000/3.000000/0.000000:2.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/2.000000:14.000000/4.000000/14.000000:d/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/3.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/0.000000:14.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/14.000000:14.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:4.000000/3.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/2.000000:2.000000/3.000000/4.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/0.000000:16.000000/3.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/2.000000:16.000000/3.000000/4.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/14.000000:4.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/12.000000:2.000000/3.000000/14.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/14.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/12.000000:16.000000/3.000000/14.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/4.000000/2.000000:14.000000/15.000000/14.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%powered_rail,state=powered=false/shape=ascending_east,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%powered_rail,state=powered=false/shape=ascending_north,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/45/x/8/9/8 +[1.21.4-]modellist:id=%powered_rail,state=powered=false/shape=ascending_south,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-45/x/8/9/8 +[1.21.4-]modellist:id=%powered_rail,state=powered=false/shape=ascending_west,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%powered_rail,state=powered=false/shape=east_west,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%powered_rail,state=powered=false/shape=north_south,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%powered_rail,state=powered=true/shape=ascending_east,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%powered_rail,state=powered=true/shape=ascending_north,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/45/x/8/9/8 +[1.21.4-]modellist:id=%powered_rail,state=powered=true/shape=ascending_south,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-45/x/8/9/8 +[1.21.4-]modellist:id=%powered_rail,state=powered=true/shape=ascending_west,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%powered_rail,state=powered=true/shape=east_west,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%powered_rail,state=powered=true/shape=north_south,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_brick_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_brick_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%prismarine_brick_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%prismarine_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%prismarine_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%prismarine_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%prismarine_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%prismarine_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%prismarine_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%prismarine_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%prismarine_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%prismarine_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%pumpkin_stem,state=age=0,box=0.000000/-1.000000/8.000000:16.000000/1.000000/8.000000:n/0/0.000000/0.000000/16.000000/2.000000:s/0/16.000000/0.000000/0.000000/2.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/1.000000/16.000000:w/0/0.000000/0.000000/16.000000/2.000000:e/0/16.000000/0.000000/0.000000/2.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pumpkin_stem,state=age=1,box=0.000000/-1.000000/8.000000:16.000000/3.000000/8.000000:n/0/0.000000/0.000000/16.000000/4.000000:s/0/16.000000/0.000000/0.000000/4.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/3.000000/16.000000:w/0/0.000000/0.000000/16.000000/4.000000:e/0/16.000000/0.000000/0.000000/4.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pumpkin_stem,state=age=2,box=0.000000/-1.000000/8.000000:16.000000/5.000000/8.000000:n/0/0.000000/0.000000/16.000000/6.000000:s/0/16.000000/0.000000/0.000000/6.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/5.000000/16.000000:w/0/0.000000/0.000000/16.000000/6.000000:e/0/16.000000/0.000000/0.000000/6.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pumpkin_stem,state=age=3,box=0.000000/-1.000000/8.000000:16.000000/7.000000/8.000000:n/0/0.000000/0.000000/16.000000/8.000000:s/0/16.000000/0.000000/0.000000/8.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/7.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/16.000000/0.000000/0.000000/8.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pumpkin_stem,state=age=4,box=0.000000/-1.000000/8.000000:16.000000/9.000000/8.000000:n/0/0.000000/0.000000/16.000000/10.000000:s/0/16.000000/0.000000/0.000000/10.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/9.000000/16.000000:w/0/0.000000/0.000000/16.000000/10.000000:e/0/16.000000/0.000000/0.000000/10.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pumpkin_stem,state=age=5,box=0.000000/-1.000000/8.000000:16.000000/11.000000/8.000000:n/0/0.000000/0.000000/16.000000/12.000000:s/0/16.000000/0.000000/0.000000/12.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/11.000000/16.000000:w/0/0.000000/0.000000/16.000000/12.000000:e/0/16.000000/0.000000/0.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pumpkin_stem,state=age=6,box=0.000000/-1.000000/8.000000:16.000000/13.000000/8.000000:n/0/0.000000/0.000000/16.000000/14.000000:s/0/16.000000/0.000000/0.000000/14.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/13.000000/16.000000:w/0/0.000000/0.000000/16.000000/14.000000:e/0/16.000000/0.000000/0.000000/14.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%pumpkin_stem,state=age=7,box=0.000000/-1.000000/8.000000:16.000000/15.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000/45/y/8/8/8,box=8.000000/-1.000000/0.000000:8.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%purple_candle,state=candles=1/lit=false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%purple_candle,state=candles=1/lit=true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%purple_candle,state=candles=2/lit=false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%purple_candle,state=candles=2/lit=true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%purple_candle,state=candles=3/lit=false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%purple_candle,state=candles=3/lit=true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%purple_candle,state=candles=4/lit=false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%purple_candle,state=candles=4/lit=true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%purple_candle_cake,state=lit=false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%purple_candle_cake,state=lit=true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%purple_carpet,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%purple_stained_glass_pane,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%purple_stained_glass_pane,state=east:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%purple_stained_glass_pane,state=east:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%purple_stained_glass_pane,state=north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%purple_stained_glass_pane,state=north:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%purple_stained_glass_pane,state=south:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%purple_stained_glass_pane,state=south:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%purple_stained_glass_pane,state=west:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%purple_stained_glass_pane,state=west:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%purpur_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%purpur_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%purpur_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%quartz_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%quartz_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%quartz_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%rail,state=shape=ascending_east,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%rail,state=shape=ascending_north,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/45/x/8/9/8 +[1.21.4-]modellist:id=%rail,state=shape=ascending_south,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-45/x/8/9/8 +[1.21.4-]modellist:id=%rail,state=shape=ascending_west,box=0.000000/9.000000/0.000000:16.000000/9.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%rail,state=shape=east_west,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%rail,state=shape=north_east,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%rail,state=shape=north_south,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%rail,state=shape=north_west,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%rail,state=shape=south_east,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%rail,state=shape=south_west,box=0.000000/1.000000/0.000000:16.000000/1.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_candle,state=candles=1/lit=false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%red_candle,state=candles=1/lit=true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%red_candle,state=candles=2/lit=false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%red_candle,state=candles=2/lit=true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%red_candle,state=candles=3/lit=false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%red_candle,state=candles=3/lit=true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%red_candle,state=candles=4/lit=false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%red_candle,state=candles=4/lit=true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%red_candle_cake,state=lit=false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%red_candle_cake,state=lit=true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%red_carpet,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_mushroom,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%red_mushroom_block,state=down:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%red_mushroom_block,state=down:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%red_mushroom_block,state=east:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_mushroom_block,state=east:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_mushroom_block,state=north:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_mushroom_block,state=north:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_mushroom_block,state=south:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%red_mushroom_block,state=south:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%red_mushroom_block,state=up:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%red_mushroom_block,state=up:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%red_mushroom_block,state=west:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%red_mushroom_block,state=west:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.000000:n/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%red_nether_brick_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_nether_brick_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%red_nether_brick_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%red_nether_brick_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_nether_brick_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_nether_brick_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_nether_brick_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_nether_brick_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%red_nether_brick_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%red_nether_brick_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_nether_brick_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%red_nether_brick_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%red_sandstone_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_sandstone_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%red_sandstone_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%red_sandstone_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_sandstone_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_sandstone_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_sandstone_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_sandstone_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%red_sandstone_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%red_sandstone_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%red_sandstone_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%red_sandstone_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%red_stained_glass_pane,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%red_stained_glass_pane,state=east:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%red_stained_glass_pane,state=east:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_stained_glass_pane,state=north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%red_stained_glass_pane,state=north:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%red_stained_glass_pane,state=south:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_stained_glass_pane,state=south:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%red_stained_glass_pane,state=west:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%red_stained_glass_pane,state=west:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%red_tulip,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%redstone_torch,state=lit=false,box=7.000000/0.000000/7.000000:9.000000/10.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000 +[1.21.4-]modellist:id=%redstone_torch,state=lit=true,box=7.000000/0.000000/7.000000:9.000000/10.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=6.500000/7.500000/6.500000:9.500000/7.500000/9.500000:u/0/8.000000/5.000000/9.000000/6.000000,box=6.500000/10.500000/6.500000:9.500000/10.500000/9.500000:d/0/7.000000/5.000000/8.000000/6.000000,box=6.500000/7.500000/6.500000:9.500000/10.500000/6.500000:s/0/9.000000/6.000000/10.000000/7.000000,box=9.500000/7.500000/6.500000:9.500000/10.500000/9.500000:w/0/6.000000/7.000000/7.000000/8.000000,box=6.500000/7.500000/9.500000:9.500000/10.500000/9.500000:n/0/6.000000/6.000000/7.000000/7.000000,box=6.500000/7.500000/6.500000:6.500000/10.500000/9.500000:e/0/9.000000/7.000000/10.000000/8.000000 +[1.21.4-]modellist:id=%redstone_wall_torch,state=facing=east/lit=false,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000/-22.5/z/0/3.5/8 +[1.21.4-]modellist:id=%redstone_wall_torch,state=facing=east/lit=true,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000/-22.5/z/0/3.5/8,box=-1.500000/8.000000/6.500000:1.500000/11.000000/9.500000:u/0/6.000000/5.000000/7.000000/6.000000/-22.5/z/0/3.5/8,box=-1.500000/14.000000/6.500000:1.500000/17.000000/9.500000:d/0/6.000000/5.000000/7.000000/6.000000/-22.5/z/0/3.5/8,box=-1.500000/11.000000/3.500000:1.500000/14.000000/6.500000:s/0/6.000000/5.000000/7.000000/6.000000/-22.5/z/0/3.5/8,box=1.500000/11.000000/6.500000:4.500000/14.000000/9.500000:w/0/6.000000/5.000000/7.000000/6.000000/-22.5/z/0/3.5/8,box=-1.500000/11.000000/9.500000:1.500000/14.000000/12.500000:n/0/6.000000/5.000000/7.000000/6.000000/-22.5/z/0/3.5/8,box=-4.500000/11.000000/6.500000:-1.500000/14.000000/9.500000:e/0/6.000000/5.000000/7.000000/6.000000/-22.5/z/0/3.5/8 +[1.21.4-]modellist:id=%redstone_wall_torch,state=facing=north/lit=false,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%redstone_wall_torch,state=facing=north/lit=true,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=-1.500000/8.000000/6.500000:1.500000/11.000000/9.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=-1.500000/14.000000/6.500000:1.500000/17.000000/9.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=-1.500000/11.000000/3.500000:1.500000/14.000000/6.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=1.500000/11.000000/6.500000:4.500000/14.000000/9.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=-1.500000/11.000000/9.500000:1.500000/14.000000/12.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0,box=-4.500000/11.000000/6.500000:-1.500000/14.000000/9.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/270/0 +[1.21.4-]modellist:id=%redstone_wall_torch,state=facing=south/lit=false,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%redstone_wall_torch,state=facing=south/lit=true,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=-1.500000/8.000000/6.500000:1.500000/11.000000/9.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=-1.500000/14.000000/6.500000:1.500000/17.000000/9.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=-1.500000/11.000000/3.500000:1.500000/14.000000/6.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=1.500000/11.000000/6.500000:4.500000/14.000000/9.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=-1.500000/11.000000/9.500000:1.500000/14.000000/12.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0,box=-4.500000/11.000000/6.500000:-1.500000/14.000000/9.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/90/0 +[1.21.4-]modellist:id=%redstone_wall_torch,state=facing=west/lit=false,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%redstone_wall_torch,state=facing=west/lit=true,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=-1.500000/8.000000/6.500000:1.500000/11.000000/9.500000:u/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=-1.500000/14.000000/6.500000:1.500000/17.000000/9.500000:d/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=-1.500000/11.000000/3.500000:1.500000/14.000000/6.500000:s/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=1.500000/11.000000/6.500000:4.500000/14.000000/9.500000:w/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=-1.500000/11.000000/9.500000:1.500000/14.000000/12.500000:n/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0,box=-4.500000/11.000000/6.500000:-1.500000/14.000000/9.500000:e/0/6.000000/5.000000/7.000000/6.000000:R/0/180/0 +[1.21.4-]modellist:id=%redstone_wire,state=east:none/north:none/south:none/west:none,box=0.000000/0.250000/0.000000:16.000000/0.250000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.250000/0.000000:16.000000/0.250000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%redstone_wire,state=east:side|up,box=0.000000/0.250000/8.000000:16.000000/0.250000/16.000000:d/0/0.000000/16.000000/16.000000/8.000000:u/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.250000/8.000000:16.000000/0.250000/16.000000:d/0/0.000000/16.000000/16.000000/8.000000:u/0/0.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%redstone_wire,state=east:up,box=0.000000/0.000000/0.250000:16.000000/16.000000/0.250000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.250000:16.000000/16.000000/0.250000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%redstone_wire,state=north:side|up,box=0.000000/0.250000/0.000000:16.000000/0.250000/8.000000:d/0/0.000000/8.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/8.000000,box=0.000000/0.250000/0.000000:16.000000/0.250000/8.000000:d/0/0.000000/8.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/8.000000 +[1.21.4-]modellist:id=%redstone_wire,state=north:up,box=0.000000/0.000000/0.250000:16.000000/16.000000/0.250000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.250000:16.000000/16.000000/0.250000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%redstone_wire,state=south:side|up,box=0.000000/0.250000/8.000000:16.000000/0.250000/16.000000:d/0/0.000000/16.000000/16.000000/8.000000:u/0/0.000000/8.000000/16.000000/16.000000,box=0.000000/0.250000/8.000000:16.000000/0.250000/16.000000:d/0/0.000000/16.000000/16.000000/8.000000:u/0/0.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%redstone_wire,state=south:up,box=0.000000/0.000000/0.250000:16.000000/16.000000/0.250000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.250000:16.000000/16.000000/0.250000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%redstone_wire,state=west:side|up,box=0.000000/0.250000/0.000000:16.000000/0.250000/8.000000:d/0/0.000000/8.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/8.000000:R/0/270/0,box=0.000000/0.250000/0.000000:16.000000/0.250000/8.000000:d/0/0.000000/8.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%redstone_wire,state=west:up,box=0.000000/0.000000/0.250000:16.000000/16.000000/0.250000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.250000:16.000000/16.000000/0.250000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%repeater,state=delay=1/facing=east/locked=false/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=7.000000/2.000000/6.000000:9.000000/7.000000/8.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%repeater,state=delay=1/facing=east/locked=false/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=7.000000/2.000000/6.000000:9.000000/7.000000/8.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/270/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/270/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/270/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/270/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/270/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/270/0,box=6.500000/1.500000/5.500000:9.500000/4.500000/8.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/270/0,box=6.500000/7.500000/5.500000:9.500000/10.500000/8.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/270/0,box=6.500000/4.500000/2.500000:9.500000/7.500000/5.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/270/0,box=6.500000/4.500000/8.500000:9.500000/7.500000/11.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/270/0,box=3.500000/4.500000/5.500000:6.500000/7.500000/8.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/270/0,box=9.500000/4.500000/5.500000:12.500000/7.500000/8.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%repeater,state=delay=1/facing=east/locked=true/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=2.000000/2.000000/6.000000:14.000000/4.000000/8.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%repeater,state=delay=1/facing=east/locked=true/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=2.000000/2.000000/6.000000:14.000000/4.000000/8.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/270/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/270/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/270/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/270/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/270/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%repeater,state=delay=1/facing=north/locked=false/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=7.000000/2.000000/6.000000:9.000000/7.000000/8.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%repeater,state=delay=1/facing=north/locked=false/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=7.000000/2.000000/6.000000:9.000000/7.000000/8.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/180/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/180/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/180/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/180/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/180/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/180/0,box=6.500000/1.500000/5.500000:9.500000/4.500000/8.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/180/0,box=6.500000/7.500000/5.500000:9.500000/10.500000/8.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/180/0,box=6.500000/4.500000/2.500000:9.500000/7.500000/5.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/180/0,box=6.500000/4.500000/8.500000:9.500000/7.500000/11.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/180/0,box=3.500000/4.500000/5.500000:6.500000/7.500000/8.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/180/0,box=9.500000/4.500000/5.500000:12.500000/7.500000/8.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%repeater,state=delay=1/facing=north/locked=true/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=2.000000/2.000000/6.000000:14.000000/4.000000/8.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%repeater,state=delay=1/facing=north/locked=true/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=2.000000/2.000000/6.000000:14.000000/4.000000/8.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/180/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/180/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/180/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/180/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/180/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%repeater,state=delay=1/facing=south/locked=false/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/2.000000/6.000000:9.000000/7.000000/8.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000 +[1.21.4-]modellist:id=%repeater,state=delay=1/facing=south/locked=false/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/2.000000/6.000000:9.000000/7.000000/8.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000,box=6.500000/1.500000/5.500000:9.500000/4.500000/8.500000:u/0/8.000000/5.000000/9.000000/6.000000,box=6.500000/7.500000/5.500000:9.500000/10.500000/8.500000:d/0/7.000000/5.000000/8.000000/6.000000,box=6.500000/4.500000/2.500000:9.500000/7.500000/5.500000:s/0/9.000000/6.000000/10.000000/7.000000,box=6.500000/4.500000/8.500000:9.500000/7.500000/11.500000:n/0/6.000000/6.000000/7.000000/7.000000,box=3.500000/4.500000/5.500000:6.500000/7.500000/8.500000:e/0/9.000000/7.000000/10.000000/8.000000,box=9.500000/4.500000/5.500000:12.500000/7.500000/8.500000:w/0/6.000000/7.000000/7.000000/8.000000 +[1.21.4-]modellist:id=%repeater,state=delay=1/facing=south/locked=true/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/6.000000:14.000000/4.000000/8.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000 +[1.21.4-]modellist:id=%repeater,state=delay=1/facing=south/locked=true/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/6.000000:14.000000/4.000000/8.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000 +[1.21.4-]modellist:id=%repeater,state=delay=1/facing=west/locked=false/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/2.000000/6.000000:9.000000/7.000000/8.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%repeater,state=delay=1/facing=west/locked=false/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/2.000000/6.000000:9.000000/7.000000/8.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/90/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/90/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/90/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/90/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/90/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/90/0,box=6.500000/1.500000/5.500000:9.500000/4.500000/8.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/90/0,box=6.500000/7.500000/5.500000:9.500000/10.500000/8.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/90/0,box=6.500000/4.500000/2.500000:9.500000/7.500000/5.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/90/0,box=6.500000/4.500000/8.500000:9.500000/7.500000/11.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/90/0,box=3.500000/4.500000/5.500000:6.500000/7.500000/8.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/90/0,box=9.500000/4.500000/5.500000:12.500000/7.500000/8.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%repeater,state=delay=1/facing=west/locked=true/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=2.000000/2.000000/6.000000:14.000000/4.000000/8.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%repeater,state=delay=1/facing=west/locked=true/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=2.000000/2.000000/6.000000:14.000000/4.000000/8.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/90/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/90/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/90/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/90/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/90/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%repeater,state=delay=2/facing=east/locked=false/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=7.000000/2.000000/8.000000:9.000000/7.000000/10.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%repeater,state=delay=2/facing=east/locked=false/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=7.000000/2.000000/8.000000:9.000000/7.000000/10.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/270/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/270/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/270/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/270/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/270/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/270/0,box=6.500000/1.500000/7.500000:9.500000/4.500000/10.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/270/0,box=6.500000/7.500000/7.500000:9.500000/10.500000/10.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/270/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/270/0,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/270/0,box=3.500000/4.500000/7.500000:6.500000/7.500000/10.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/270/0,box=9.500000/4.500000/7.500000:12.500000/7.500000/10.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%repeater,state=delay=2/facing=east/locked=true/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=2.000000/2.000000/8.000000:14.000000/4.000000/10.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%repeater,state=delay=2/facing=east/locked=true/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=2.000000/2.000000/8.000000:14.000000/4.000000/10.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/270/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/270/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/270/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/270/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/270/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%repeater,state=delay=2/facing=north/locked=false/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=7.000000/2.000000/8.000000:9.000000/7.000000/10.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%repeater,state=delay=2/facing=north/locked=false/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=7.000000/2.000000/8.000000:9.000000/7.000000/10.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/180/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/180/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/180/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/180/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/180/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/180/0,box=6.500000/1.500000/7.500000:9.500000/4.500000/10.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/180/0,box=6.500000/7.500000/7.500000:9.500000/10.500000/10.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/180/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/180/0,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/180/0,box=3.500000/4.500000/7.500000:6.500000/7.500000/10.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/180/0,box=9.500000/4.500000/7.500000:12.500000/7.500000/10.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%repeater,state=delay=2/facing=north/locked=true/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=2.000000/2.000000/8.000000:14.000000/4.000000/10.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%repeater,state=delay=2/facing=north/locked=true/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=2.000000/2.000000/8.000000:14.000000/4.000000/10.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/180/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/180/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/180/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/180/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/180/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%repeater,state=delay=2/facing=south/locked=false/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/2.000000/8.000000:9.000000/7.000000/10.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000 +[1.21.4-]modellist:id=%repeater,state=delay=2/facing=south/locked=false/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/2.000000/8.000000:9.000000/7.000000/10.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000,box=6.500000/1.500000/7.500000:9.500000/4.500000/10.500000:u/0/8.000000/5.000000/9.000000/6.000000,box=6.500000/7.500000/7.500000:9.500000/10.500000/10.500000:d/0/7.000000/5.000000/8.000000/6.000000,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:s/0/9.000000/6.000000/10.000000/7.000000,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:n/0/6.000000/6.000000/7.000000/7.000000,box=3.500000/4.500000/7.500000:6.500000/7.500000/10.500000:e/0/9.000000/7.000000/10.000000/8.000000,box=9.500000/4.500000/7.500000:12.500000/7.500000/10.500000:w/0/6.000000/7.000000/7.000000/8.000000 +[1.21.4-]modellist:id=%repeater,state=delay=2/facing=south/locked=true/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/8.000000:14.000000/4.000000/10.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000 +[1.21.4-]modellist:id=%repeater,state=delay=2/facing=south/locked=true/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/8.000000:14.000000/4.000000/10.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000 +[1.21.4-]modellist:id=%repeater,state=delay=2/facing=west/locked=false/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/2.000000/8.000000:9.000000/7.000000/10.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%repeater,state=delay=2/facing=west/locked=false/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/2.000000/8.000000:9.000000/7.000000/10.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/90/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/90/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/90/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/90/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/90/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/90/0,box=6.500000/1.500000/7.500000:9.500000/4.500000/10.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/90/0,box=6.500000/7.500000/7.500000:9.500000/10.500000/10.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/90/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/90/0,box=6.500000/4.500000/10.500000:9.500000/7.500000/13.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/90/0,box=3.500000/4.500000/7.500000:6.500000/7.500000/10.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/90/0,box=9.500000/4.500000/7.500000:12.500000/7.500000/10.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%repeater,state=delay=2/facing=west/locked=true/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=2.000000/2.000000/8.000000:14.000000/4.000000/10.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%repeater,state=delay=2/facing=west/locked=true/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=2.000000/2.000000/8.000000:14.000000/4.000000/10.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/90/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/90/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/90/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/90/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/90/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%repeater,state=delay=3/facing=east/locked=false/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=7.000000/2.000000/10.000000:9.000000/7.000000/12.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%repeater,state=delay=3/facing=east/locked=false/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=7.000000/2.000000/10.000000:9.000000/7.000000/12.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/270/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/270/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/270/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/270/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/270/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/270/0,box=6.500000/1.500000/9.500000:9.500000/4.500000/12.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/270/0,box=6.500000/7.500000/9.500000:9.500000/10.500000/12.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/270/0,box=6.500000/4.500000/6.500000:9.500000/7.500000/9.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/270/0,box=6.500000/4.500000/12.500000:9.500000/7.500000/15.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/270/0,box=3.500000/4.500000/9.500000:6.500000/7.500000/12.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/270/0,box=9.500000/4.500000/9.500000:12.500000/7.500000/12.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%repeater,state=delay=3/facing=east/locked=true/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=2.000000/2.000000/10.000000:14.000000/4.000000/12.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%repeater,state=delay=3/facing=east/locked=true/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=2.000000/2.000000/10.000000:14.000000/4.000000/12.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/270/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/270/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/270/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/270/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/270/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%repeater,state=delay=3/facing=north/locked=false/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=7.000000/2.000000/10.000000:9.000000/7.000000/12.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%repeater,state=delay=3/facing=north/locked=false/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=7.000000/2.000000/10.000000:9.000000/7.000000/12.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/180/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/180/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/180/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/180/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/180/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/180/0,box=6.500000/1.500000/9.500000:9.500000/4.500000/12.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/180/0,box=6.500000/7.500000/9.500000:9.500000/10.500000/12.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/180/0,box=6.500000/4.500000/6.500000:9.500000/7.500000/9.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/180/0,box=6.500000/4.500000/12.500000:9.500000/7.500000/15.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/180/0,box=3.500000/4.500000/9.500000:6.500000/7.500000/12.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/180/0,box=9.500000/4.500000/9.500000:12.500000/7.500000/12.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%repeater,state=delay=3/facing=north/locked=true/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=2.000000/2.000000/10.000000:14.000000/4.000000/12.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%repeater,state=delay=3/facing=north/locked=true/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=2.000000/2.000000/10.000000:14.000000/4.000000/12.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/180/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/180/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/180/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/180/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/180/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%repeater,state=delay=3/facing=south/locked=false/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/2.000000/10.000000:9.000000/7.000000/12.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000 +[1.21.4-]modellist:id=%repeater,state=delay=3/facing=south/locked=false/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/2.000000/10.000000:9.000000/7.000000/12.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000,box=6.500000/1.500000/9.500000:9.500000/4.500000/12.500000:u/0/8.000000/5.000000/9.000000/6.000000,box=6.500000/7.500000/9.500000:9.500000/10.500000/12.500000:d/0/7.000000/5.000000/8.000000/6.000000,box=6.500000/4.500000/6.500000:9.500000/7.500000/9.500000:s/0/9.000000/6.000000/10.000000/7.000000,box=6.500000/4.500000/12.500000:9.500000/7.500000/15.500000:n/0/6.000000/6.000000/7.000000/7.000000,box=3.500000/4.500000/9.500000:6.500000/7.500000/12.500000:e/0/9.000000/7.000000/10.000000/8.000000,box=9.500000/4.500000/9.500000:12.500000/7.500000/12.500000:w/0/6.000000/7.000000/7.000000/8.000000 +[1.21.4-]modellist:id=%repeater,state=delay=3/facing=south/locked=true/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/10.000000:14.000000/4.000000/12.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000 +[1.21.4-]modellist:id=%repeater,state=delay=3/facing=south/locked=true/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/10.000000:14.000000/4.000000/12.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000 +[1.21.4-]modellist:id=%repeater,state=delay=3/facing=west/locked=false/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/2.000000/10.000000:9.000000/7.000000/12.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%repeater,state=delay=3/facing=west/locked=false/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/2.000000/10.000000:9.000000/7.000000/12.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/90/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/90/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/90/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/90/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/90/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/90/0,box=6.500000/1.500000/9.500000:9.500000/4.500000/12.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/90/0,box=6.500000/7.500000/9.500000:9.500000/10.500000/12.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/90/0,box=6.500000/4.500000/6.500000:9.500000/7.500000/9.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/90/0,box=6.500000/4.500000/12.500000:9.500000/7.500000/15.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/90/0,box=3.500000/4.500000/9.500000:6.500000/7.500000/12.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/90/0,box=9.500000/4.500000/9.500000:12.500000/7.500000/12.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%repeater,state=delay=3/facing=west/locked=true/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=2.000000/2.000000/10.000000:14.000000/4.000000/12.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%repeater,state=delay=3/facing=west/locked=true/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=2.000000/2.000000/10.000000:14.000000/4.000000/12.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/90/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/90/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/90/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/90/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/90/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%repeater,state=delay=4/facing=east/locked=false/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=7.000000/2.000000/12.000000:9.000000/7.000000/14.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%repeater,state=delay=4/facing=east/locked=false/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=7.000000/2.000000/12.000000:9.000000/7.000000/14.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/270/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/270/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/270/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/270/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/270/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/270/0,box=6.500000/1.500000/11.500000:9.500000/4.500000/14.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/270/0,box=6.500000/7.500000/11.500000:9.500000/10.500000/14.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/270/0,box=6.500000/4.500000/8.500000:9.500000/7.500000/11.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/270/0,box=6.500000/4.500000/14.500000:9.500000/7.500000/17.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/270/0,box=3.500000/4.500000/11.500000:6.500000/7.500000/14.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/270/0,box=9.500000/4.500000/11.500000:12.500000/7.500000/14.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%repeater,state=delay=4/facing=east/locked=true/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=2.000000/2.000000/12.000000:14.000000/4.000000/14.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%repeater,state=delay=4/facing=east/locked=true/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=2.000000/2.000000/12.000000:14.000000/4.000000/14.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/270/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/270/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/270/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/270/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/270/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/270/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%repeater,state=delay=4/facing=north/locked=false/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=7.000000/2.000000/12.000000:9.000000/7.000000/14.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%repeater,state=delay=4/facing=north/locked=false/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=7.000000/2.000000/12.000000:9.000000/7.000000/14.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/180/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/180/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/180/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/180/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/180/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/180/0,box=6.500000/1.500000/11.500000:9.500000/4.500000/14.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/180/0,box=6.500000/7.500000/11.500000:9.500000/10.500000/14.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/180/0,box=6.500000/4.500000/8.500000:9.500000/7.500000/11.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/180/0,box=6.500000/4.500000/14.500000:9.500000/7.500000/17.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/180/0,box=3.500000/4.500000/11.500000:6.500000/7.500000/14.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/180/0,box=9.500000/4.500000/11.500000:12.500000/7.500000/14.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%repeater,state=delay=4/facing=north/locked=true/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=2.000000/2.000000/12.000000:14.000000/4.000000/14.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%repeater,state=delay=4/facing=north/locked=true/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=2.000000/2.000000/12.000000:14.000000/4.000000/14.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/180/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/180/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/180/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/180/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/180/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/180/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%repeater,state=delay=4/facing=south/locked=false/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/2.000000/12.000000:9.000000/7.000000/14.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000 +[1.21.4-]modellist:id=%repeater,state=delay=4/facing=south/locked=false/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/2.000000/12.000000:9.000000/7.000000/14.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000,box=6.500000/1.500000/11.500000:9.500000/4.500000/14.500000:u/0/8.000000/5.000000/9.000000/6.000000,box=6.500000/7.500000/11.500000:9.500000/10.500000/14.500000:d/0/7.000000/5.000000/8.000000/6.000000,box=6.500000/4.500000/8.500000:9.500000/7.500000/11.500000:s/0/9.000000/6.000000/10.000000/7.000000,box=6.500000/4.500000/14.500000:9.500000/7.500000/17.500000:n/0/6.000000/6.000000/7.000000/7.000000,box=3.500000/4.500000/11.500000:6.500000/7.500000/14.500000:e/0/9.000000/7.000000/10.000000/8.000000,box=9.500000/4.500000/11.500000:12.500000/7.500000/14.500000:w/0/6.000000/7.000000/7.000000/8.000000 +[1.21.4-]modellist:id=%repeater,state=delay=4/facing=south/locked=true/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/12.000000:14.000000/4.000000/14.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000 +[1.21.4-]modellist:id=%repeater,state=delay=4/facing=south/locked=true/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/2.000000/12.000000:14.000000/4.000000/14.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000 +[1.21.4-]modellist:id=%repeater,state=delay=4/facing=west/locked=false/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/2.000000/12.000000:9.000000/7.000000/14.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%repeater,state=delay=4/facing=west/locked=false/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/2.000000/12.000000:9.000000/7.000000/14.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/90/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/90/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/90/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/90/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/90/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/90/0,box=6.500000/1.500000/11.500000:9.500000/4.500000/14.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/90/0,box=6.500000/7.500000/11.500000:9.500000/10.500000/14.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/90/0,box=6.500000/4.500000/8.500000:9.500000/7.500000/11.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/90/0,box=6.500000/4.500000/14.500000:9.500000/7.500000/17.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/90/0,box=3.500000/4.500000/11.500000:6.500000/7.500000/14.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/90/0,box=9.500000/4.500000/11.500000:12.500000/7.500000/14.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%repeater,state=delay=4/facing=west/locked=true/powered=false,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=2.000000/2.000000/12.000000:14.000000/4.000000/14.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%repeater,state=delay=4/facing=west/locked=true/powered=true,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=2.000000/2.000000/12.000000:14.000000/4.000000/14.000000:n/0/2.000000/7.000000/14.000000/9.000000:w/0/6.000000/7.000000/8.000000/9.000000:e/0/6.000000/7.000000/8.000000/9.000000:s/0/2.000000/7.000000/14.000000/9.000000:u/0/7.000000/2.000000/9.000000/14.000000:R/0/90/0,box=7.000000/2.000000/2.000000:9.000000/7.000000/4.000000:n/0/7.000000/6.000000/9.000000/11.000000:w/0/7.000000/6.000000/9.000000/11.000000:e/0/7.000000/6.000000/9.000000/11.000000:s/0/7.000000/6.000000/9.000000/11.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0,box=6.500000/1.500000/1.500000:9.500000/4.500000/4.500000:u/0/8.000000/5.000000/9.000000/6.000000:R/0/90/0,box=6.500000/7.500000/1.500000:9.500000/10.500000/4.500000:d/0/7.000000/5.000000/8.000000/6.000000:R/0/90/0,box=6.500000/4.500000/-1.500000:9.500000/7.500000/1.500000:s/0/9.000000/6.000000/10.000000/7.000000:R/0/90/0,box=6.500000/4.500000/4.500000:9.500000/7.500000/7.500000:n/0/6.000000/6.000000/7.000000/7.000000:R/0/90/0,box=3.500000/4.500000/1.500000:6.500000/7.500000/4.500000:e/0/9.000000/7.000000/10.000000/8.000000:R/0/90/0,box=9.500000/4.500000/1.500000:12.500000/7.500000/4.500000:w/0/6.000000/7.000000/7.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%resin_brick_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%resin_brick_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%resin_brick_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%resin_brick_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%resin_brick_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%resin_brick_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%resin_brick_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%resin_brick_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%resin_brick_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%resin_brick_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%resin_brick_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%resin_brick_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%resin_clump,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%resin_clump,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%resin_clump,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%resin_clump,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%resin_clump,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%resin_clump,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%resin_clump,state=down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%resin_clump,state=east:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%resin_clump,state=north:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%resin_clump,state=south:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%resin_clump,state=up:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%resin_clump,state=west:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%rose_bush,state=half=lower,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%rose_bush,state=half=upper,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%sandstone_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%sandstone_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%sandstone_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%sandstone_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%sandstone_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%sandstone_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%sandstone_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%sandstone_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%sandstone_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%sandstone_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%sandstone_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%sandstone_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%scaffolding,state=bottom=false,box=0.000000/15.990000/0.000000:16.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:2.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/14.000000:2.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/14.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/2.000000/2.000000/14.000000/4.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:n/0/14.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/14.000000/2.000000:16.000000/16.000000/14.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/14.000000/2.000000/2.000000/4.000000:e/0/14.000000/0.000000/2.000000/2.000000,box=0.000000/14.000000/2.000000:2.000000/16.000000/14.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/14.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%scaffolding,state=bottom=true,box=0.000000/15.990000/0.000000:16.000000/16.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:2.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/14.000000:2.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/14.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/0.000000:16.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/14.000000/0.000000:14.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/2.000000/2.000000/14.000000/4.000000,box=2.000000/14.000000/14.000000:14.000000/16.000000/16.000000:n/0/14.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/14.000000/2.000000:16.000000/16.000000/14.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/14.000000/2.000000/2.000000/4.000000:e/0/14.000000/0.000000/2.000000/2.000000,box=0.000000/14.000000/2.000000:2.000000/16.000000/14.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/14.000000/0.000000/2.000000/2.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/1.990000/0.000000:16.000000/2.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/0.000000/0.000000:14.000000/2.000000/2.000000:n/0/2.000000/0.000000/14.000000/2.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/2.000000/2.000000/14.000000/4.000000,box=2.000000/0.000000/14.000000:14.000000/2.000000/16.000000:n/0/14.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/2.000000/0.000000/14.000000/2.000000,box=14.000000/0.000000/2.000000:16.000000/2.000000/14.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/14.000000/2.000000/2.000000/4.000000:e/0/14.000000/0.000000/2.000000/2.000000,box=0.000000/0.000000/2.000000:2.000000/2.000000/14.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/14.000000/0.000000/2.000000/2.000000:e/0/2.000000/0.000000/14.000000/2.000000 +[1.21.4-]modellist:id=%sculk_sensor,state=sculk_sensor_phase=active,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000/45/y/3/12/3,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000/-45/y/13/12/3,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000/45/y/13/12/13,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000/-45/y/3/12/13 +[1.21.4-]modellist:id=%sculk_sensor,state=sculk_sensor_phase=cooldown,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000/45/y/3/12/3,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000/-45/y/13/12/3,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000/45/y/13/12/13,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000/-45/y/3/12/13 +[1.21.4-]modellist:id=%sculk_sensor,state=sculk_sensor_phase=inactive,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000/45/y/3/12/3,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000/-45/y/13/12/3,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000:n/0/12.000000/8.000000/4.000000/16.000000:s/0/4.000000/8.000000/12.000000/16.000000/45/y/13/12/13,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000:n/0/4.000000/8.000000/12.000000/16.000000:s/0/12.000000/8.000000/4.000000/16.000000/-45/y/3/12/13 +[1.21.4-]modellist:id=%sculk_shrieker,state=can_summon=false,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=1.000000/8.000000/1.000000:15.000000/15.000000/15.000000:n/0/1.000000/1.000000/15.000000/8.000000:w/0/1.000000/1.000000/15.000000/8.000000:e/0/1.000000/1.000000/15.000000/8.000000:s/0/1.000000/1.000000/15.000000/8.000000:u/0/1.000000/1.000000/15.000000/15.000000,box=1.000000/14.980000/1.000000:15.000000/14.980000/15.000000:d/0/1.000000/1.000000/15.000000/15.000000,box=1.000000/8.000000/14.980000:15.000000/15.000000/14.980000:n/0/1.000000/1.000000/15.000000/8.000000,box=1.000000/8.000000/1.020000:15.000000/15.000000/1.020000:s/0/1.000000/1.000000/15.000000/8.000000,box=14.980000/8.000000/1.000000:14.980000/15.000000/15.000000:w/0/1.000000/1.000000/15.000000/8.000000,box=1.020000/8.000000/1.000000:1.020000/15.000000/15.000000:e/0/1.000000/1.000000/15.000000/8.000000 +[1.21.4-]modellist:id=%sculk_shrieker,state=can_summon=true,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=1.000000/8.000000/1.000000:15.000000/15.000000/15.000000:n/0/1.000000/1.000000/15.000000/8.000000:w/0/1.000000/1.000000/15.000000/8.000000:e/0/1.000000/1.000000/15.000000/8.000000:s/0/1.000000/1.000000/15.000000/8.000000:u/0/1.000000/1.000000/15.000000/15.000000,box=1.000000/14.980000/1.000000:15.000000/14.980000/15.000000:d/0/1.000000/1.000000/15.000000/15.000000,box=1.000000/8.000000/14.980000:15.000000/15.000000/14.980000:n/0/1.000000/1.000000/15.000000/8.000000,box=1.000000/8.000000/1.020000:15.000000/15.000000/1.020000:s/0/1.000000/1.000000/15.000000/8.000000,box=14.980000/8.000000/1.000000:14.980000/15.000000/15.000000:w/0/1.000000/1.000000/15.000000/8.000000,box=1.020000/8.000000/1.000000:1.020000/15.000000/15.000000:e/0/1.000000/1.000000/15.000000/8.000000 +[1.21.4-]modellist:id=%sculk_vein,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%sculk_vein,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%sculk_vein,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%sculk_vein,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%sculk_vein,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%sculk_vein,state=down:false/east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%sculk_vein,state=down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%sculk_vein,state=east:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%sculk_vein,state=north:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%sculk_vein,state=south:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%sculk_vein,state=up:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%sculk_vein,state=west:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%sea_pickle,state=pickles=1/waterlogged=false,box=6.000000/0.000000/6.000000:10.000000/6.000000/10.000000:n/0/4.000000/5.000000/8.000000/11.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/11.000000:e/0/12.000000/5.000000/16.000000/11.000000:s/0/0.000000/5.000000/4.000000/11.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=6.000000/5.950000/6.000000:10.000000/5.950000/10.000000:u/0/8.000000/1.000000/12.000000/5.000000 +[1.21.4-]modellist:id=%sea_pickle,state=pickles=1/waterlogged=true,box=6.000000/0.000000/6.000000:10.000000/6.000000/10.000000:n/0/4.000000/5.000000/8.000000/11.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/11.000000:e/0/12.000000/5.000000/16.000000/11.000000:s/0/0.000000/5.000000/4.000000/11.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=6.000000/5.950000/6.000000:10.000000/5.950000/10.000000:u/0/8.000000/1.000000/12.000000/5.000000,box=7.500000/5.200000/8.000000:8.500000/8.700000/8.000000:n/0/1.000000/0.000000/3.000000/5.000000:s/0/3.000000/0.000000/1.000000/5.000000/45/y/8/8/8,box=8.000000/5.200000/7.500000:8.000000/8.700000/8.500000:w/0/13.000000/0.000000/15.000000/5.000000:e/0/15.000000/0.000000/13.000000/5.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%sea_pickle,state=pickles=2/waterlogged=false,box=3.000000/0.000000/3.000000:7.000000/6.000000/7.000000:n/0/4.000000/5.000000/8.000000/11.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/11.000000:e/0/12.000000/5.000000/16.000000/11.000000:s/0/0.000000/5.000000/4.000000/11.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=3.000000/5.950000/3.000000:7.000000/5.950000/7.000000:u/0/8.000000/1.000000/12.000000/5.000000,box=8.000000/0.000000/8.000000:12.000000/4.000000/12.000000:n/0/4.000000/5.000000/8.000000/9.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/9.000000:e/0/12.000000/5.000000/16.000000/9.000000:s/0/0.000000/5.000000/4.000000/9.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=8.000000/3.950000/8.000000:12.000000/3.950000/12.000000:u/0/8.000000/1.000000/12.000000/5.000000 +[1.21.4-]modellist:id=%sea_pickle,state=pickles=2/waterlogged=true,box=3.000000/0.000000/3.000000:7.000000/6.000000/7.000000:n/0/4.000000/5.000000/8.000000/11.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/11.000000:e/0/12.000000/5.000000/16.000000/11.000000:s/0/0.000000/5.000000/4.000000/11.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=3.000000/5.950000/3.000000:7.000000/5.950000/7.000000:u/0/8.000000/1.000000/12.000000/5.000000,box=8.000000/0.000000/8.000000:12.000000/4.000000/12.000000:n/0/4.000000/5.000000/8.000000/9.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/9.000000:e/0/12.000000/5.000000/16.000000/9.000000:s/0/0.000000/5.000000/4.000000/9.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=8.000000/3.950000/8.000000:12.000000/3.950000/12.000000:u/0/8.000000/1.000000/12.000000/5.000000,box=4.500000/5.200000/5.000000:5.500000/8.700000/5.000000:n/0/1.000000/0.000000/3.000000/5.000000:s/0/3.000000/0.000000/1.000000/5.000000/45/y/5/5.6/5,box=5.000000/5.200000/4.500000:5.000000/8.700000/5.500000:w/0/13.000000/0.000000/15.000000/5.000000:e/0/15.000000/0.000000/13.000000/5.000000/45/y/5/5.6/5,box=9.500000/3.200000/10.000000:10.500000/6.700000/10.000000:n/0/1.000000/0.000000/3.000000/5.000000:s/0/3.000000/0.000000/1.000000/5.000000/45/y/10/8/10,box=10.000000/3.200000/9.500000:10.000000/6.700000/10.500000:w/0/13.000000/0.000000/15.000000/5.000000:e/0/15.000000/0.000000/13.000000/5.000000/45/y/10/8/10 +[1.21.4-]modellist:id=%sea_pickle,state=pickles=3/waterlogged=false,box=6.000000/0.000000/9.000000:10.000000/6.000000/13.000000:n/0/4.000000/5.000000/8.000000/11.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/11.000000:e/0/12.000000/5.000000/16.000000/11.000000:s/0/0.000000/5.000000/4.000000/11.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=6.000000/5.950000/9.000000:10.000000/5.950000/13.000000:u/0/8.000000/1.000000/12.000000/5.000000,box=2.000000/0.000000/2.000000:6.000000/4.000000/6.000000:n/0/4.000000/5.000000/8.000000/9.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/9.000000:e/0/12.000000/5.000000/16.000000/9.000000:s/0/0.000000/5.000000/4.000000/9.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=2.000000/3.950000/2.000000:6.000000/3.950000/6.000000:u/0/8.000000/1.000000/12.000000/5.000000,box=8.000000/0.000000/4.000000:12.000000/6.000000/8.000000:n/0/4.000000/5.000000/8.000000/11.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/11.000000:e/0/12.000000/5.000000/16.000000/11.000000:s/0/0.000000/5.000000/4.000000/11.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=8.000000/5.950000/4.000000:12.000000/5.950000/8.000000:u/0/8.000000/1.000000/12.000000/5.000000 +[1.21.4-]modellist:id=%sea_pickle,state=pickles=3/waterlogged=true,box=6.000000/0.000000/9.000000:10.000000/6.000000/13.000000:n/0/4.000000/5.000000/8.000000/11.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/11.000000:e/0/12.000000/5.000000/16.000000/11.000000:s/0/0.000000/5.000000/4.000000/11.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=6.000000/5.950000/9.000000:10.000000/5.950000/13.000000:u/0/8.000000/1.000000/12.000000/5.000000,box=2.000000/0.000000/2.000000:6.000000/4.000000/6.000000:n/0/4.000000/5.000000/8.000000/9.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/9.000000:e/0/12.000000/5.000000/16.000000/9.000000:s/0/0.000000/5.000000/4.000000/9.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=2.000000/3.950000/2.000000:6.000000/3.950000/6.000000:u/0/8.000000/1.000000/12.000000/5.000000,box=8.000000/0.000000/4.000000:12.000000/6.000000/8.000000:n/0/4.000000/5.000000/8.000000/11.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/11.000000:e/0/12.000000/5.000000/16.000000/11.000000:s/0/0.000000/5.000000/4.000000/11.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=8.000000/5.950000/4.000000:12.000000/5.950000/8.000000:u/0/8.000000/1.000000/12.000000/5.000000,box=7.500000/5.200000/11.000000:8.500000/8.700000/11.000000:n/0/1.000000/0.000000/3.000000/5.000000:s/0/3.000000/0.000000/1.000000/5.000000/45/y/8/8/11,box=8.000000/5.200000/10.500000:8.000000/8.700000/11.500000:w/0/13.000000/0.000000/15.000000/5.000000:e/0/15.000000/0.000000/13.000000/5.000000/45/y/8/8/11,box=3.500000/3.200000/4.000000:4.500000/6.700000/4.000000:n/0/1.000000/0.000000/3.000000/5.000000:s/0/3.000000/0.000000/1.000000/5.000000/45/y/4/8/4,box=4.000000/3.200000/3.500000:4.000000/6.700000/4.500000:w/0/13.000000/0.000000/15.000000/5.000000:e/0/15.000000/0.000000/13.000000/5.000000/45/y/4/8/4,box=9.500000/5.200000/6.000000:10.500000/8.700000/6.000000:n/0/1.000000/0.000000/3.000000/5.000000:s/0/3.000000/0.000000/1.000000/5.000000/45/y/10/8/6,box=10.000000/5.200000/5.500000:10.000000/8.700000/6.500000:w/0/13.000000/0.000000/15.000000/5.000000:e/0/15.000000/0.000000/13.000000/5.000000/45/y/10/8/6 +[1.21.4-]modellist:id=%sea_pickle,state=pickles=4/waterlogged=false,box=2.000000/0.000000/2.000000:6.000000/6.000000/6.000000:n/0/4.000000/5.000000/8.000000/11.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/11.000000:e/0/12.000000/5.000000/16.000000/11.000000:s/0/0.000000/5.000000/4.000000/11.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=2.000000/5.950000/2.000000:6.000000/5.950000/6.000000:u/0/8.000000/1.000000/12.000000/5.000000,box=9.000000/0.000000/10.000000:13.000000/4.000000/14.000000:n/0/4.000000/5.000000/8.000000/9.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/9.000000:e/0/12.000000/5.000000/16.000000/9.000000:s/0/0.000000/5.000000/4.000000/9.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=9.000000/3.950000/10.000000:13.000000/3.950000/14.000000:u/0/8.000000/1.000000/12.000000/5.000000,box=9.000000/0.000000/2.000000:13.000000/6.000000/6.000000:n/0/4.000000/5.000000/8.000000/11.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/11.000000:e/0/12.000000/5.000000/16.000000/11.000000:s/0/0.000000/5.000000/4.000000/11.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=9.000000/5.950000/2.000000:13.000000/5.950000/6.000000:u/0/8.000000/1.000000/12.000000/5.000000,box=2.000000/0.000000/8.000000:6.000000/7.000000/12.000000:n/0/4.000000/5.000000/8.000000/12.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/12.000000:e/0/12.000000/5.000000/16.000000/12.000000:s/0/0.000000/5.000000/4.000000/12.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=2.000000/6.950000/8.000000:6.000000/6.950000/12.000000:u/0/8.000000/1.000000/12.000000/5.000000 +[1.21.4-]modellist:id=%sea_pickle,state=pickles=4/waterlogged=true,box=2.000000/0.000000/2.000000:6.000000/6.000000/6.000000:n/0/4.000000/5.000000/8.000000/11.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/11.000000:e/0/12.000000/5.000000/16.000000/11.000000:s/0/0.000000/5.000000/4.000000/11.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=2.000000/5.950000/2.000000:6.000000/5.950000/6.000000:u/0/8.000000/1.000000/12.000000/5.000000,box=9.000000/0.000000/10.000000:13.000000/4.000000/14.000000:n/0/4.000000/5.000000/8.000000/9.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/9.000000:e/0/12.000000/5.000000/16.000000/9.000000:s/0/0.000000/5.000000/4.000000/9.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=9.000000/3.950000/10.000000:13.000000/3.950000/14.000000:u/0/8.000000/1.000000/12.000000/5.000000,box=9.000000/0.000000/2.000000:13.000000/6.000000/6.000000:n/0/4.000000/5.000000/8.000000/11.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/11.000000:e/0/12.000000/5.000000/16.000000/11.000000:s/0/0.000000/5.000000/4.000000/11.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=9.000000/5.950000/2.000000:13.000000/5.950000/6.000000:u/0/8.000000/1.000000/12.000000/5.000000,box=2.000000/0.000000/8.000000:6.000000/7.000000/12.000000:n/0/4.000000/5.000000/8.000000/12.000000:d/0/8.000000/1.000000/12.000000/5.000000:w/0/8.000000/5.000000/12.000000/12.000000:e/0/12.000000/5.000000/16.000000/12.000000:s/0/0.000000/5.000000/4.000000/12.000000:u/0/4.000000/1.000000/8.000000/5.000000,box=2.000000/6.950000/8.000000:6.000000/6.950000/12.000000:u/0/8.000000/1.000000/12.000000/5.000000,box=3.500000/5.200000/4.000000:4.500000/8.700000/4.000000:n/0/1.000000/0.000000/3.000000/5.000000:s/0/3.000000/0.000000/1.000000/5.000000/45/y/4/8/4,box=4.000000/5.200000/3.500000:4.000000/8.700000/4.500000:w/0/13.000000/0.000000/15.000000/5.000000:e/0/15.000000/0.000000/13.000000/5.000000/45/y/4/8/4,box=10.500000/3.200000/12.000000:11.500000/6.700000/12.000000:n/0/1.000000/0.000000/3.000000/5.000000:s/0/3.000000/0.000000/1.000000/5.000000/45/y/11/8/12,box=11.000000/3.200000/11.500000:11.000000/6.700000/12.500000:w/0/13.000000/0.000000/15.000000/5.000000:e/0/15.000000/0.000000/13.000000/5.000000/45/y/11/8/12,box=10.500000/5.200000/4.000000:11.500000/8.700000/4.000000:n/0/1.000000/0.000000/3.000000/5.000000:s/0/3.000000/0.000000/1.000000/5.000000/45/y/11/8/4,box=11.000000/5.200000/3.500000:11.000000/8.700000/4.500000:w/0/13.000000/0.000000/15.000000/5.000000:e/0/15.000000/0.000000/13.000000/5.000000/45/y/11/8/4,box=3.500000/6.200000/10.000000:4.500000/9.700000/10.000000:n/0/1.000000/0.000000/3.000000/5.000000:s/0/3.000000/0.000000/1.000000/5.000000/45/y/4/8/10,box=4.000000/6.200000/9.500000:4.000000/9.700000/10.500000:w/0/13.000000/0.000000/15.000000/5.000000:e/0/15.000000/0.000000/13.000000/5.000000/45/y/4/8/10 +[1.21.4-]modellist:id=%seagrass,box=0.000000/0.000000/4.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/0.000000:12.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=4.000000/0.000000/0.000000:4.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/12.000000:16.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%short_dry_grass,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%short_grass,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%slime_block,box=3.000000/3.000000/3.000000:13.000000/13.000000/13.000000:n/0/3.000000/3.000000/13.000000/13.000000:d/0/3.000000/3.000000/13.000000/13.000000:w/0/3.000000/3.000000/13.000000/13.000000:e/0/3.000000/3.000000/13.000000/13.000000:s/0/3.000000/3.000000/13.000000/13.000000:u/0/3.000000/3.000000/13.000000/13.000000,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%small_amethyst_bud,state=facing=down,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%small_amethyst_bud,state=facing=east,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/90/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%small_amethyst_bud,state=facing=north,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%small_amethyst_bud,state=facing=south,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/180/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%small_amethyst_bud,state=facing=up,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%small_amethyst_bud,state=facing=west,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/270/0,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%small_dripleaf,state=facing=east/half=lower,box=4.500000/0.000000/8.000000:11.500000/16.000000/8.000000:n/0/5.000000/0.000000/12.000000/16.000000:s/0/5.000000/0.000000/12.000000/16.000000:R/0/90/0,box=4.500000/0.000000/8.000000:11.500000/16.000000/8.000000:n/0/5.000000/0.000000/12.000000/16.000000:s/0/5.000000/0.000000/12.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%small_dripleaf,state=facing=east/half=upper,box=8.000000/3.000000/8.000000:15.000000/3.000000/15.000000:d/0/8.000000/0.000000/0.000000/8.000000:u/0/8.000000/8.000000/0.000000/0.000000:R/0/90/0,box=1.000000/8.020000/1.000000:8.000000/8.020000/8.000000:d/0/0.000000/8.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=1.000000/12.020000/8.000000:8.000000/12.020000/15.000000:d/0/8.000000/0.000000/0.000000/8.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=8.000000/2.000000/8.000000:15.000000/3.000000/15.000000:n/0/0.000000/0.000000/8.000000/1.000000:w/0/0.000000/0.000000/8.000000/1.000000:e/0/0.000000/0.000000/8.000000/1.000000:s/0/0.000000/0.000000/8.000000/1.000000:R/0/90/0,box=1.000000/7.020000/1.000000:8.000000/8.020000/8.000000:n/0/0.000000/0.000000/8.000000/1.000000:w/0/0.000000/0.000000/8.000000/1.000000:e/0/0.000000/0.000000/8.000000/1.000000:s/0/0.000000/0.000000/8.000000/1.000000:R/0/90/0,box=1.000000/11.020000/8.000000:8.000000/12.020000/15.000000:n/0/0.000000/0.000000/8.000000/1.000000:w/0/0.000000/0.000000/8.000000/1.000000:e/0/0.000000/0.000000/8.000000/1.000000:s/0/0.000000/0.000000/8.000000/1.000000:R/0/90/0,box=4.500000/0.000000/8.000000:11.500000/14.000000/8.000000:n/0/4.000000/0.000000/12.000000/14.000000:s/0/4.000000/0.000000/12.000000/14.000000:R/0/90/0,box=4.500000/0.000000/8.000000:11.500000/14.000000/8.000000:n/0/4.000000/0.000000/12.000000/14.000000:s/0/4.000000/0.000000/12.000000/14.000000:R/0/90/0 +[1.21.4-]modellist:id=%small_dripleaf,state=facing=north/half=lower,box=4.500000/0.000000/8.000000:11.500000/16.000000/8.000000:n/0/5.000000/0.000000/12.000000/16.000000:s/0/5.000000/0.000000/12.000000/16.000000/45/y/8/8/8,box=4.500000/0.000000/8.000000:11.500000/16.000000/8.000000:n/0/5.000000/0.000000/12.000000/16.000000:s/0/5.000000/0.000000/12.000000/16.000000/-45/y/8/8/8 +[1.21.4-]modellist:id=%small_dripleaf,state=facing=north/half=upper,box=8.000000/3.000000/8.000000:15.000000/3.000000/15.000000:d/0/8.000000/0.000000/0.000000/8.000000:u/0/8.000000/8.000000/0.000000/0.000000,box=1.000000/8.020000/1.000000:8.000000/8.020000/8.000000:d/0/0.000000/8.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/8.000000,box=1.000000/12.020000/8.000000:8.000000/12.020000/15.000000:d/0/8.000000/0.000000/0.000000/8.000000:u/0/0.000000/0.000000/8.000000/8.000000,box=8.000000/2.000000/8.000000:15.000000/3.000000/15.000000:n/0/0.000000/0.000000/8.000000/1.000000:w/0/0.000000/0.000000/8.000000/1.000000:e/0/0.000000/0.000000/8.000000/1.000000:s/0/0.000000/0.000000/8.000000/1.000000,box=1.000000/7.020000/1.000000:8.000000/8.020000/8.000000:n/0/0.000000/0.000000/8.000000/1.000000:w/0/0.000000/0.000000/8.000000/1.000000:e/0/0.000000/0.000000/8.000000/1.000000:s/0/0.000000/0.000000/8.000000/1.000000,box=1.000000/11.020000/8.000000:8.000000/12.020000/15.000000:n/0/0.000000/0.000000/8.000000/1.000000:w/0/0.000000/0.000000/8.000000/1.000000:e/0/0.000000/0.000000/8.000000/1.000000:s/0/0.000000/0.000000/8.000000/1.000000,box=4.500000/0.000000/8.000000:11.500000/14.000000/8.000000:n/0/4.000000/0.000000/12.000000/14.000000:s/0/4.000000/0.000000/12.000000/14.000000/45/y/8/8/8,box=4.500000/0.000000/8.000000:11.500000/14.000000/8.000000:n/0/4.000000/0.000000/12.000000/14.000000:s/0/4.000000/0.000000/12.000000/14.000000/-45/y/8/8/8 +[1.21.4-]modellist:id=%small_dripleaf,state=facing=south/half=lower,box=4.500000/0.000000/8.000000:11.500000/16.000000/8.000000:n/0/5.000000/0.000000/12.000000/16.000000:s/0/5.000000/0.000000/12.000000/16.000000:R/0/180/0,box=4.500000/0.000000/8.000000:11.500000/16.000000/8.000000:n/0/5.000000/0.000000/12.000000/16.000000:s/0/5.000000/0.000000/12.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%small_dripleaf,state=facing=south/half=upper,box=8.000000/3.000000/8.000000:15.000000/3.000000/15.000000:d/0/8.000000/0.000000/0.000000/8.000000:u/0/8.000000/8.000000/0.000000/0.000000:R/0/180/0,box=1.000000/8.020000/1.000000:8.000000/8.020000/8.000000:d/0/0.000000/8.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=1.000000/12.020000/8.000000:8.000000/12.020000/15.000000:d/0/8.000000/0.000000/0.000000/8.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=8.000000/2.000000/8.000000:15.000000/3.000000/15.000000:n/0/0.000000/0.000000/8.000000/1.000000:w/0/0.000000/0.000000/8.000000/1.000000:e/0/0.000000/0.000000/8.000000/1.000000:s/0/0.000000/0.000000/8.000000/1.000000:R/0/180/0,box=1.000000/7.020000/1.000000:8.000000/8.020000/8.000000:n/0/0.000000/0.000000/8.000000/1.000000:w/0/0.000000/0.000000/8.000000/1.000000:e/0/0.000000/0.000000/8.000000/1.000000:s/0/0.000000/0.000000/8.000000/1.000000:R/0/180/0,box=1.000000/11.020000/8.000000:8.000000/12.020000/15.000000:n/0/0.000000/0.000000/8.000000/1.000000:w/0/0.000000/0.000000/8.000000/1.000000:e/0/0.000000/0.000000/8.000000/1.000000:s/0/0.000000/0.000000/8.000000/1.000000:R/0/180/0,box=4.500000/0.000000/8.000000:11.500000/14.000000/8.000000:n/0/4.000000/0.000000/12.000000/14.000000:s/0/4.000000/0.000000/12.000000/14.000000:R/0/180/0,box=4.500000/0.000000/8.000000:11.500000/14.000000/8.000000:n/0/4.000000/0.000000/12.000000/14.000000:s/0/4.000000/0.000000/12.000000/14.000000:R/0/180/0 +[1.21.4-]modellist:id=%small_dripleaf,state=facing=west/half=lower,box=4.500000/0.000000/8.000000:11.500000/16.000000/8.000000:n/0/5.000000/0.000000/12.000000/16.000000:s/0/5.000000/0.000000/12.000000/16.000000:R/0/270/0,box=4.500000/0.000000/8.000000:11.500000/16.000000/8.000000:n/0/5.000000/0.000000/12.000000/16.000000:s/0/5.000000/0.000000/12.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%small_dripleaf,state=facing=west/half=upper,box=8.000000/3.000000/8.000000:15.000000/3.000000/15.000000:d/0/8.000000/0.000000/0.000000/8.000000:u/0/8.000000/8.000000/0.000000/0.000000:R/0/270/0,box=1.000000/8.020000/1.000000:8.000000/8.020000/8.000000:d/0/0.000000/8.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=1.000000/12.020000/8.000000:8.000000/12.020000/15.000000:d/0/8.000000/0.000000/0.000000/8.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=8.000000/2.000000/8.000000:15.000000/3.000000/15.000000:n/0/0.000000/0.000000/8.000000/1.000000:w/0/0.000000/0.000000/8.000000/1.000000:e/0/0.000000/0.000000/8.000000/1.000000:s/0/0.000000/0.000000/8.000000/1.000000:R/0/270/0,box=1.000000/7.020000/1.000000:8.000000/8.020000/8.000000:n/0/0.000000/0.000000/8.000000/1.000000:w/0/0.000000/0.000000/8.000000/1.000000:e/0/0.000000/0.000000/8.000000/1.000000:s/0/0.000000/0.000000/8.000000/1.000000:R/0/270/0,box=1.000000/11.020000/8.000000:8.000000/12.020000/15.000000:n/0/0.000000/0.000000/8.000000/1.000000:w/0/0.000000/0.000000/8.000000/1.000000:e/0/0.000000/0.000000/8.000000/1.000000:s/0/0.000000/0.000000/8.000000/1.000000:R/0/270/0,box=4.500000/0.000000/8.000000:11.500000/14.000000/8.000000:n/0/4.000000/0.000000/12.000000/14.000000:s/0/4.000000/0.000000/12.000000/14.000000:R/0/270/0,box=4.500000/0.000000/8.000000:11.500000/14.000000/8.000000:n/0/4.000000/0.000000/12.000000/14.000000:s/0/4.000000/0.000000/12.000000/14.000000:R/0/270/0 +[1.21.4-]modellist:id=%smooth_quartz_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%smooth_quartz_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%smooth_quartz_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%smooth_red_sandstone_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%smooth_red_sandstone_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%smooth_sandstone_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%smooth_sandstone_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%smooth_sandstone_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%smooth_stone_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%smooth_stone_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%sniffer_egg,state=hatch=0,box=1.000000/0.000000/2.000000:15.000000/16.000000/14.000000:n/0/0.000000/0.000000/14.000000/16.000000:d/0/0.000000/0.000000/14.000000/12.000000:w/0/0.000000/0.000000/12.000000/16.000000:e/0/0.000000/0.000000/12.000000/16.000000:s/0/0.000000/0.000000/14.000000/16.000000:u/0/0.000000/0.000000/14.000000/12.000000 +[1.21.4-]modellist:id=%sniffer_egg,state=hatch=1,box=1.000000/0.000000/2.000000:15.000000/16.000000/14.000000:n/0/0.000000/0.000000/14.000000/16.000000:d/0/0.000000/0.000000/14.000000/12.000000:w/0/0.000000/0.000000/12.000000/16.000000:e/0/0.000000/0.000000/12.000000/16.000000:s/0/0.000000/0.000000/14.000000/16.000000:u/0/0.000000/0.000000/14.000000/12.000000 +[1.21.4-]modellist:id=%sniffer_egg,state=hatch=2,box=1.000000/0.000000/2.000000:15.000000/16.000000/14.000000:n/0/0.000000/0.000000/14.000000/16.000000:d/0/0.000000/0.000000/14.000000/12.000000:w/0/0.000000/0.000000/12.000000/16.000000:e/0/0.000000/0.000000/12.000000/16.000000:s/0/0.000000/0.000000/14.000000/16.000000:u/0/0.000000/0.000000/14.000000/12.000000 +[1.21.4-]modellist:id=%snow,state=layers=1,box=0.000000/0.000000/0.000000:16.000000/2.000000/16.000000:n/0/0.000000/14.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/14.000000/16.000000/16.000000:e/0/0.000000/14.000000/16.000000/16.000000:s/0/0.000000/14.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%snow,state=layers=2,box=0.000000/0.000000/0.000000:16.000000/4.000000/16.000000:n/0/0.000000/12.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/12.000000/16.000000/16.000000:e/0/0.000000/12.000000/16.000000/16.000000:s/0/0.000000/12.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%snow,state=layers=3,box=0.000000/0.000000/0.000000:16.000000/6.000000/16.000000:n/0/0.000000/10.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/10.000000/16.000000/16.000000:e/0/0.000000/10.000000/16.000000/16.000000:s/0/0.000000/10.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%snow,state=layers=4,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%snow,state=layers=5,box=0.000000/0.000000/0.000000:16.000000/10.000000/16.000000:n/0/0.000000/6.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/6.000000/16.000000/16.000000:e/0/0.000000/6.000000/16.000000/16.000000:s/0/0.000000/6.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%snow,state=layers=6,box=0.000000/0.000000/0.000000:16.000000/12.000000/16.000000:n/0/0.000000/4.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/4.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%snow,state=layers=7,box=0.000000/0.000000/0.000000:16.000000/14.000000/16.000000:n/0/0.000000/2.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/2.000000/16.000000/16.000000:e/0/0.000000/2.000000/16.000000/16.000000:s/0/0.000000/2.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%soul_campfire,state=facing=east/lit=false,box=1.000000/0.000000/0.000000:5.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/0.000000/0.000000/4.000000:e/0/0.000000/1.000000/16.000000/5.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=0.000000/3.000000/11.000000:16.000000/7.000000/15.000000:n/0/16.000000/0.000000/0.000000/4.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=11.000000/0.000000/0.000000:15.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/1.000000/0.000000/5.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=0.000000/3.000000/1.000000:16.000000/7.000000/5.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/16.000000/0.000000/0.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/1.000000/16.000000:n/0/0.000000/15.000000/6.000000/16.000000:d/0/0.000000/8.000000/16.000000/14.000000:s/0/10.000000/15.000000/16.000000/16.000000:u/0/0.000000/8.000000/16.000000/14.000000:R/0/270/0 +[1.21.4-]modellist:id=%soul_campfire,state=facing=east/lit=true,box=1.000000/0.000000/0.000000:5.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/0.000000/0.000000/4.000000:e/0/0.000000/1.000000/16.000000/5.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=0.000000/3.000000/11.000000:16.000000/7.000000/15.000000:n/0/16.000000/0.000000/0.000000/4.000000:d/0/0.000000/4.000000/16.000000/8.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=11.000000/0.000000/0.000000:15.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/1.000000/0.000000/5.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=0.000000/3.000000/1.000000:16.000000/7.000000/5.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/4.000000/16.000000/8.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/16.000000/0.000000/0.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/1.000000/16.000000:n/0/0.000000/15.000000/6.000000/16.000000:d/0/0.000000/8.000000/16.000000/14.000000:s/0/10.000000/15.000000/16.000000/16.000000:u/0/0.000000/8.000000/16.000000/14.000000:R/0/270/0,box=0.800000/1.000000/8.000000:15.200000/17.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/1.000000/0.800000:8.000000/17.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%soul_campfire,state=facing=north/lit=false,box=1.000000/0.000000/0.000000:5.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/0.000000/0.000000/4.000000:e/0/0.000000/1.000000/16.000000/5.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=0.000000/3.000000/11.000000:16.000000/7.000000/15.000000:n/0/16.000000/0.000000/0.000000/4.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=11.000000/0.000000/0.000000:15.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/1.000000/0.000000/5.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=0.000000/3.000000/1.000000:16.000000/7.000000/5.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/16.000000/0.000000/0.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/1.000000/16.000000:n/0/0.000000/15.000000/6.000000/16.000000:d/0/0.000000/8.000000/16.000000/14.000000:s/0/10.000000/15.000000/16.000000/16.000000:u/0/0.000000/8.000000/16.000000/14.000000:R/0/180/0 +[1.21.4-]modellist:id=%soul_campfire,state=facing=north/lit=true,box=1.000000/0.000000/0.000000:5.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/0.000000/0.000000/4.000000:e/0/0.000000/1.000000/16.000000/5.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=0.000000/3.000000/11.000000:16.000000/7.000000/15.000000:n/0/16.000000/0.000000/0.000000/4.000000:d/0/0.000000/4.000000/16.000000/8.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=11.000000/0.000000/0.000000:15.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/1.000000/0.000000/5.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=0.000000/3.000000/1.000000:16.000000/7.000000/5.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/4.000000/16.000000/8.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/16.000000/0.000000/0.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/1.000000/16.000000:n/0/0.000000/15.000000/6.000000/16.000000:d/0/0.000000/8.000000/16.000000/14.000000:s/0/10.000000/15.000000/16.000000/16.000000:u/0/0.000000/8.000000/16.000000/14.000000:R/0/180/0,box=0.800000/1.000000/8.000000:15.200000/17.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/1.000000/0.800000:8.000000/17.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%soul_campfire,state=facing=south/lit=false,box=1.000000/0.000000/0.000000:5.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/0.000000/0.000000/4.000000:e/0/0.000000/1.000000/16.000000/5.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=0.000000/3.000000/11.000000:16.000000/7.000000/15.000000:n/0/16.000000/0.000000/0.000000/4.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=11.000000/0.000000/0.000000:15.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/1.000000/0.000000/5.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=0.000000/3.000000/1.000000:16.000000/7.000000/5.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/16.000000/0.000000/0.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=5.000000/0.000000/0.000000:11.000000/1.000000/16.000000:n/0/0.000000/15.000000/6.000000/16.000000:d/0/0.000000/8.000000/16.000000/14.000000:s/0/10.000000/15.000000/16.000000/16.000000:u/0/0.000000/8.000000/16.000000/14.000000 +[1.21.4-]modellist:id=%soul_campfire,state=facing=south/lit=true,box=1.000000/0.000000/0.000000:5.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/0.000000/0.000000/4.000000:e/0/0.000000/1.000000/16.000000/5.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=0.000000/3.000000/11.000000:16.000000/7.000000/15.000000:n/0/16.000000/0.000000/0.000000/4.000000:d/0/0.000000/4.000000/16.000000/8.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=11.000000/0.000000/0.000000:15.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/1.000000/0.000000/5.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=0.000000/3.000000/1.000000:16.000000/7.000000/5.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/4.000000/16.000000/8.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/16.000000/0.000000/0.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000,box=5.000000/0.000000/0.000000:11.000000/1.000000/16.000000:n/0/0.000000/15.000000/6.000000/16.000000:d/0/0.000000/8.000000/16.000000/14.000000:s/0/10.000000/15.000000/16.000000/16.000000:u/0/0.000000/8.000000/16.000000/14.000000,box=0.800000/1.000000/8.000000:15.200000/17.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/1.000000/0.800000:8.000000/17.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%soul_campfire,state=facing=west/lit=false,box=1.000000/0.000000/0.000000:5.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/0.000000/0.000000/4.000000:e/0/0.000000/1.000000/16.000000/5.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=0.000000/3.000000/11.000000:16.000000/7.000000/15.000000:n/0/16.000000/0.000000/0.000000/4.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=11.000000/0.000000/0.000000:15.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/1.000000/0.000000/5.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=0.000000/3.000000/1.000000:16.000000/7.000000/5.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/16.000000/0.000000/0.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/1.000000/16.000000:n/0/0.000000/15.000000/6.000000/16.000000:d/0/0.000000/8.000000/16.000000/14.000000:s/0/10.000000/15.000000/16.000000/16.000000:u/0/0.000000/8.000000/16.000000/14.000000:R/0/90/0 +[1.21.4-]modellist:id=%soul_campfire,state=facing=west/lit=true,box=1.000000/0.000000/0.000000:5.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/0.000000/0.000000/4.000000:e/0/0.000000/1.000000/16.000000/5.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=0.000000/3.000000/11.000000:16.000000/7.000000/15.000000:n/0/16.000000/0.000000/0.000000/4.000000:d/0/0.000000/4.000000/16.000000/8.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/0.000000/0.000000/16.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=11.000000/0.000000/0.000000:15.000000/4.000000/16.000000:n/0/0.000000/4.000000/4.000000/8.000000:d/0/0.000000/0.000000/16.000000/4.000000:w/0/16.000000/1.000000/0.000000/5.000000:e/0/0.000000/0.000000/16.000000/4.000000:s/0/0.000000/4.000000/4.000000/8.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=0.000000/3.000000/1.000000:16.000000/7.000000/5.000000:n/0/0.000000/0.000000/16.000000/4.000000:d/0/0.000000/4.000000/16.000000/8.000000:w/0/0.000000/4.000000/4.000000/8.000000:e/0/0.000000/4.000000/4.000000/8.000000:s/0/16.000000/0.000000/0.000000/4.000000:u/0/0.000000/0.000000/16.000000/4.000000:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/1.000000/16.000000:n/0/0.000000/15.000000/6.000000/16.000000:d/0/0.000000/8.000000/16.000000/14.000000:s/0/10.000000/15.000000/16.000000/16.000000:u/0/0.000000/8.000000/16.000000/14.000000:R/0/90/0,box=0.800000/1.000000/8.000000:15.200000/17.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/1.000000/0.800000:8.000000/17.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%soul_fire,box=0.000000/0.000000/0.010000:16.000000/22.400000/0.010000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%soul_fire,box=0.000000/0.000000/0.010000:16.000000/22.400000/0.010000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%soul_fire,box=0.000000/0.000000/0.010000:16.000000/22.400000/0.010000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%soul_fire,box=0.000000/0.000000/0.010000:16.000000/22.400000/0.010000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%soul_fire,box=0.000000/0.000000/8.800000:16.000000/22.400000/8.800000:s/0/0.000000/0.000000/16.000000/16.000000/-22.5/x/8/8/8,box=0.000000/0.000000/7.200000:16.000000/22.400000/7.200000:n/0/0.000000/0.000000/16.000000/16.000000/22.5/x/8/8/8,box=8.800000/0.000000/0.000000:8.800000/22.400000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000/-22.5/z/8/8/8,box=7.200000/0.000000/0.000000:7.200000/22.400000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/22.5/z/8/8/8 +[1.21.4-]modellist:id=%soul_lantern,state=hanging=false,box=5.000000/0.000000/5.000000:11.000000/7.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/7.000000/6.000000:10.000000/9.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/9.000000/8.000000:9.500000/11.000000/8.000000:n/0/14.000000/1.000000/11.000000/3.000000:s/0/11.000000/1.000000/14.000000/3.000000/45/y/8/8/8,box=8.000000/9.000000/6.500000:8.000000/11.000000/9.500000:w/0/14.000000/10.000000/11.000000/12.000000:e/0/11.000000/10.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%soul_lantern,state=hanging=true,box=5.000000/1.000000/5.000000:11.000000/8.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/8.000000/6.000000:10.000000/10.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:d/0/1.000000/10.000000/5.000000/14.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/11.000000/8.000000:9.500000/15.000000/8.000000:n/0/14.000000/1.000000/11.000000/5.000000:s/0/11.000000/1.000000/14.000000/5.000000/45/y/8/8/8,box=8.000000/10.000000/6.500000:8.000000/16.000000/9.500000:w/0/14.000000/6.000000/11.000000/12.000000:e/0/11.000000/6.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%soul_torch,box=7.000000/0.000000/7.000000:9.000000/10.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000 +[1.21.4-]modellist:id=%soul_wall_torch,state=facing=east,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000/-22.5/z/0/3.5/8 +[1.21.4-]modellist:id=%soul_wall_torch,state=facing=north,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%soul_wall_torch,state=facing=south,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%soul_wall_torch,state=facing=west,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%spawner,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/16.000000:d/0/16.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%spore_blossom,box=1.000000/15.900000/1.000000:15.000000/15.900000/15.000000:d/0/1.000000/1.000000/15.000000/15.000000:u/0/1.000000/1.000000/15.000000/15.000000,box=8.000000/15.700000/0.000000:24.000000/15.700000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/z/8/16/0,box=-8.000000/15.700000/0.000000:8.000000/15.700000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/z/8/16/0,box=0.000000/15.700000/8.000000:16.000000/15.700000/24.000000:d/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/16.000000/0.000000/0.000000/22.5/x/0/16/8,box=0.000000/15.700000/-8.000000:16.000000/15.700000/8.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/x/0/16/8 +[1.21.4-]modellist:id=%spruce_button,state=face=ceiling/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%spruce_button,state=face=ceiling/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%spruce_button,state=face=ceiling/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%spruce_button,state=face=ceiling/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%spruce_button,state=face=ceiling/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%spruce_button,state=face=ceiling/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%spruce_button,state=face=ceiling/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%spruce_button,state=face=ceiling/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%spruce_button,state=face=floor/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_button,state=face=floor/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_button,state=face=floor/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%spruce_button,state=face=floor/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%spruce_button,state=face=floor/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_button,state=face=floor/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_button,state=face=floor/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_button,state=face=floor/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_button,state=face=wall/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%spruce_button,state=face=wall/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%spruce_button,state=face=wall/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%spruce_button,state=face=wall/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%spruce_button,state=face=wall/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%spruce_button,state=face=wall/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%spruce_button,state=face=wall/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%spruce_button,state=face=wall/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%spruce_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%spruce_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%spruce_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%spruce_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%spruce_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%spruce_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%spruce_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%spruce_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_fence,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000 +[1.21.4-]modellist:id=%spruce_fence,state=east:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_fence,state=north:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%spruce_fence,state=south:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_fence,state=west:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_fence_gate,state=facing=east/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_fence_gate,state=facing=east/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_fence_gate,state=facing=east/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_fence_gate,state=facing=east/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_fence_gate,state=facing=north/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_fence_gate,state=facing=north/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_fence_gate,state=facing=north/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_fence_gate,state=facing=north/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_fence_gate,state=facing=south/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%spruce_fence_gate,state=facing=south/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%spruce_fence_gate,state=facing=south/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%spruce_fence_gate,state=facing=south/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%spruce_fence_gate,state=facing=west/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_fence_gate,state=facing=west/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_fence_gate,state=facing=west/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_fence_gate,state=facing=west/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_pressure_plate,state=powered=false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%spruce_pressure_plate,state=powered=true,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%spruce_sapling,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:east,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/90/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/90/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:east/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:east/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:east/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:east/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:east/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:north,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:north/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:north/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:north/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:north/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:north/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:south,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/180/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/180/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:south/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:south/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:south/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:south/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:south/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:west,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/270/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/270/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:west/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:west/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:west/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:west/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_shelf,state=facing:west/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%spruce_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%spruce_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%spruce_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%spruce_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/270/0 +[1.21.4-]modellist:id=%spruce_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%spruce_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%spruce_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%spruce_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/180/0 +[1.21.4-]modellist:id=%spruce_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%spruce_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/0/0 +[1.21.4-]modellist:id=%spruce_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%spruce_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/90/0 +[1.21.4-]modellist:id=%sticky_piston,state=extended=true/facing=down,box=0.000000/0.000000/4.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/4.000000/16.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/4.000000/16.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%sticky_piston,state=extended=true/facing=east,box=0.000000/0.000000/4.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/4.000000/16.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/4.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%sticky_piston,state=extended=true/facing=north,box=0.000000/0.000000/4.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/4.000000/16.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/4.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%sticky_piston,state=extended=true/facing=south,box=0.000000/0.000000/4.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/4.000000/16.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/4.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%sticky_piston,state=extended=true/facing=up,box=0.000000/0.000000/4.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/4.000000/16.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/4.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%sticky_piston,state=extended=true/facing=west,box=0.000000/0.000000/4.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/4.000000/16.000000/16.000000:w/0/0.000000/4.000000/16.000000/16.000000:e/0/0.000000/4.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/4.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%stone_brick_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%stone_brick_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%stone_brick_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%stone_brick_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%stone_brick_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%stone_brick_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%stone_brick_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%stone_brick_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%stone_brick_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%stone_brick_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%stone_brick_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%stone_brick_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%stone_button,state=face=ceiling/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%stone_button,state=face=ceiling/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%stone_button,state=face=ceiling/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%stone_button,state=face=ceiling/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%stone_button,state=face=ceiling/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%stone_button,state=face=ceiling/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%stone_button,state=face=ceiling/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%stone_button,state=face=ceiling/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%stone_button,state=face=floor/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%stone_button,state=face=floor/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%stone_button,state=face=floor/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%stone_button,state=face=floor/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%stone_button,state=face=floor/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%stone_button,state=face=floor/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%stone_button,state=face=floor/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%stone_button,state=face=floor/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%stone_button,state=face=wall/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%stone_button,state=face=wall/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%stone_button,state=face=wall/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%stone_button,state=face=wall/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%stone_button,state=face=wall/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%stone_button,state=face=wall/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%stone_button,state=face=wall/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%stone_button,state=face=wall/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%stone_pressure_plate,state=powered=false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%stone_pressure_plate,state=powered=true,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%stone_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%stone_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%stone_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%stone_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%stone_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%stone_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%stone_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%stone_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%stone_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%stonecutter,state=facing=east,box=0.000000/0.000000/0.000000:16.000000/9.000000/16.000000:n/0/0.000000/7.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/7.000000/16.000000/16.000000:e/0/0.000000/7.000000/16.000000/16.000000:s/0/0.000000/7.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=1.000000/9.000000/8.000000:15.000000/16.000000/8.000000:n/0/1.000000/9.000000/15.000000/16.000000:s/0/15.000000/9.000000/1.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%stonecutter,state=facing=north,box=0.000000/0.000000/0.000000:16.000000/9.000000/16.000000:n/0/0.000000/7.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/7.000000/16.000000/16.000000:e/0/0.000000/7.000000/16.000000/16.000000:s/0/0.000000/7.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=1.000000/9.000000/8.000000:15.000000/16.000000/8.000000:n/0/1.000000/9.000000/15.000000/16.000000:s/0/15.000000/9.000000/1.000000/16.000000 +[1.21.4-]modellist:id=%stonecutter,state=facing=south,box=0.000000/0.000000/0.000000:16.000000/9.000000/16.000000:n/0/0.000000/7.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/7.000000/16.000000/16.000000:e/0/0.000000/7.000000/16.000000/16.000000:s/0/0.000000/7.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=1.000000/9.000000/8.000000:15.000000/16.000000/8.000000:n/0/1.000000/9.000000/15.000000/16.000000:s/0/15.000000/9.000000/1.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%stonecutter,state=facing=west,box=0.000000/0.000000/0.000000:16.000000/9.000000/16.000000:n/0/0.000000/7.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/7.000000/16.000000/16.000000:e/0/0.000000/7.000000/16.000000/16.000000:s/0/0.000000/7.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=1.000000/9.000000/8.000000:15.000000/16.000000/8.000000:n/0/1.000000/9.000000/15.000000/16.000000:s/0/15.000000/9.000000/1.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%sugar_cane,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%sunflower,state=half=lower,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%sunflower,state=half=upper,box=0.800000/0.000000/8.000000:15.200000/8.000000/8.000000:n/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/8.000000/15.200000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000/45/y/8/8/8,box=9.600000/-1.000000/1.000000:9.600000/15.000000/15.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/22.5/z/8/8/8 +[1.21.4-]modellist:id=%sweet_berry_bush,state=age=0,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%sweet_berry_bush,state=age=1,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%sweet_berry_bush,state=age=2,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%sweet_berry_bush,state=age=3,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%tall_dry_grass,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%tall_grass,state=half=lower,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%tall_grass,state=half=upper,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%tall_seagrass,state=half=lower,box=0.000000/0.000000/4.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/0.000000:12.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=4.000000/0.000000/0.000000:4.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/12.000000:16.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%tall_seagrass,state=half=upper,box=0.000000/0.000000/4.000000:16.000000/16.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/0.000000:12.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=4.000000/0.000000/0.000000:4.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/12.000000:16.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%torch,box=7.000000/0.000000/7.000000:9.000000/10.000000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000 +[1.21.4-]modellist:id=%torchflower,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%torchflower_crop,state=age=0,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%torchflower_crop,state=age=1,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%trial_spawner,state=ominous=false/trial_spawner_state=active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/16.000000:d/0/16.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%trial_spawner,state=ominous=false/trial_spawner_state=cooldown,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/16.000000:d/0/16.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%trial_spawner,state=ominous=false/trial_spawner_state=ejecting_reward,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/16.000000:d/0/16.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%trial_spawner,state=ominous=false/trial_spawner_state=inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/16.000000:d/0/16.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%trial_spawner,state=ominous=false/trial_spawner_state=waiting_for_players,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/16.000000:d/0/16.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%trial_spawner,state=ominous=false/trial_spawner_state=waiting_for_reward_ejection,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/16.000000:d/0/16.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%trial_spawner,state=ominous=true/trial_spawner_state=active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/16.000000:d/0/16.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%trial_spawner,state=ominous=true/trial_spawner_state=cooldown,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/16.000000:d/0/16.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%trial_spawner,state=ominous=true/trial_spawner_state=ejecting_reward,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/16.000000:d/0/16.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%trial_spawner,state=ominous=true/trial_spawner_state=inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/16.000000:d/0/16.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%trial_spawner,state=ominous=true/trial_spawner_state=waiting_for_players,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/16.000000:d/0/16.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%trial_spawner,state=ominous=true/trial_spawner_state=waiting_for_reward_ejection,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/16.000000:d/0/16.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%tripwire,state=attached=false/east=false/north=false/south=false/west=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=7.750000/1.500000/12.000000:8.250000/1.500000/16.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000 +[1.21.4-]modellist:id=%tripwire,state=attached=false/east=false/north=false/south=false/west=true,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/270/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/270/0,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/270/0 +[1.21.4-]modellist:id=%tripwire,state=attached=false/east=false/north=false/south=true/west=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/180/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/180/0,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/180/0 +[1.21.4-]modellist:id=%tripwire,state=attached=false/east=false/north=false/south=true/west=true,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/180/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/180/0,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/180/0,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/180/0 +[1.21.4-]modellist:id=%tripwire,state=attached=false/east=false/north=true/south=false/west=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000 +[1.21.4-]modellist:id=%tripwire,state=attached=false/east=false/north=true/south=false/west=true,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/270/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/270/0,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/270/0,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/270/0 +[1.21.4-]modellist:id=%tripwire,state=attached=false/east=false/north=true/south=true/west=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=7.750000/1.500000/12.000000:8.250000/1.500000/16.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000 +[1.21.4-]modellist:id=%tripwire,state=attached=false/east=false/north=true/south=true/west=true,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/180/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/180/0,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/180/0,box=7.750000/1.500000/12.000000:8.250000/1.500000/16.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/180/0,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/180/0,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/180/0 +[1.21.4-]modellist:id=%tripwire,state=attached=false/east=true/north=false/south=false/west=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/90/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/90/0,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/90/0 +[1.21.4-]modellist:id=%tripwire,state=attached=false/east=true/north=false/south=false/west=true,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/90/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/90/0,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/90/0,box=7.750000/1.500000/12.000000:8.250000/1.500000/16.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/90/0 +[1.21.4-]modellist:id=%tripwire,state=attached=false/east=true/north=false/south=true/west=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/90/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/90/0,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/90/0,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/90/0 +[1.21.4-]modellist:id=%tripwire,state=attached=false/east=true/north=false/south=true/west=true,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/90/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/90/0,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/90/0,box=7.750000/1.500000/12.000000:8.250000/1.500000/16.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/90/0,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/90/0,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/90/0 +[1.21.4-]modellist:id=%tripwire,state=attached=false/east=true/north=true/south=false/west=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000 +[1.21.4-]modellist:id=%tripwire,state=attached=false/east=true/north=true/south=false/west=true,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/270/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/270/0,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/270/0,box=7.750000/1.500000/12.000000:8.250000/1.500000/16.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/270/0,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/270/0,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000:R/0/270/0 +[1.21.4-]modellist:id=%tripwire,state=attached=false/east=true/north=true/south=true/west=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=7.750000/1.500000/12.000000:8.250000/1.500000/16.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000 +[1.21.4-]modellist:id=%tripwire,state=attached=false/east=true/north=true/south=true/west=true,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=7.750000/1.500000/12.000000:8.250000/1.500000/16.000000:d/0/16.000000/0.000000/0.000000/2.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=0.000000/1.500000/7.750000:4.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=4.000000/1.500000/7.750000:8.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/2.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/2.000000 +[1.21.4-]modellist:id=%tripwire,state=attached=true/east=false/north=false/south=false/west=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=7.750000/1.500000/12.000000:8.250000/1.500000/16.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000 +[1.21.4-]modellist:id=%tripwire,state=attached=true/east=false/north=false/south=false/west=true,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/270/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/270/0,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/270/0 +[1.21.4-]modellist:id=%tripwire,state=attached=true/east=false/north=false/south=true/west=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/180/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/180/0,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/180/0 +[1.21.4-]modellist:id=%tripwire,state=attached=true/east=false/north=false/south=true/west=true,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/180/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/180/0,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/180/0,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/180/0 +[1.21.4-]modellist:id=%tripwire,state=attached=true/east=false/north=true/south=false/west=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000 +[1.21.4-]modellist:id=%tripwire,state=attached=true/east=false/north=true/south=false/west=true,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/270/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/270/0,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/270/0,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/270/0 +[1.21.4-]modellist:id=%tripwire,state=attached=true/east=false/north=true/south=true/west=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=7.750000/1.500000/12.000000:8.250000/1.500000/16.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000 +[1.21.4-]modellist:id=%tripwire,state=attached=true/east=false/north=true/south=true/west=true,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/180/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/180/0,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/180/0,box=7.750000/1.500000/12.000000:8.250000/1.500000/16.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/180/0,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/180/0,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/180/0 +[1.21.4-]modellist:id=%tripwire,state=attached=true/east=true/north=false/south=false/west=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/90/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/90/0,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/90/0 +[1.21.4-]modellist:id=%tripwire,state=attached=true/east=true/north=false/south=false/west=true,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/90/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/90/0,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/90/0,box=7.750000/1.500000/12.000000:8.250000/1.500000/16.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/90/0 +[1.21.4-]modellist:id=%tripwire,state=attached=true/east=true/north=false/south=true/west=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/90/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/90/0,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/90/0,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/90/0 +[1.21.4-]modellist:id=%tripwire,state=attached=true/east=true/north=false/south=true/west=true,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/90/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/90/0,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/90/0,box=7.750000/1.500000/12.000000:8.250000/1.500000/16.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/90/0,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/90/0,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/90/0 +[1.21.4-]modellist:id=%tripwire,state=attached=true/east=true/north=true/south=false/west=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000 +[1.21.4-]modellist:id=%tripwire,state=attached=true/east=true/north=true/south=false/west=true,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/270/0,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/270/0,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/270/0,box=7.750000/1.500000/12.000000:8.250000/1.500000/16.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/270/0,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/270/0,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000:R/0/270/0 +[1.21.4-]modellist:id=%tripwire,state=attached=true/east=true/north=true/south=true/west=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=7.750000/1.500000/12.000000:8.250000/1.500000/16.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000 +[1.21.4-]modellist:id=%tripwire,state=attached=true/east=true/north=true/south=true/west=true,box=7.750000/1.500000/0.000000:8.250000/1.500000/4.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=7.750000/1.500000/4.000000:8.250000/1.500000/8.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=7.750000/1.500000/8.000000:8.250000/1.500000/12.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=7.750000/1.500000/12.000000:8.250000/1.500000/16.000000:d/0/16.000000/2.000000/0.000000/4.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=0.000000/1.500000/7.750000:4.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=4.000000/1.500000/7.750000:8.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=8.000000/1.500000/7.750000:12.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000,box=12.000000/1.500000/7.750000:16.000000/1.500000/8.250000:d/0/0.000000/4.000000/16.000000/2.000000:u/0/0.000000/2.000000/16.000000/4.000000 +[1.21.4-]modellist:id=%tripwire_hook,state=attached=false/facing=east/powered=false,box=6.200000/3.800000/7.900000:9.800000/4.600000/11.500000:n/0/5.000000/3.000000/11.000000/4.000000:d/0/5.000000/3.000000/11.000000/9.000000:w/0/5.000000/8.000000/11.000000/9.000000:e/0/5.000000/3.000000/11.000000/4.000000:s/0/5.000000/8.000000/11.000000/9.000000:u/0/5.000000/3.000000/11.000000/9.000000:R/0/90/0,box=7.400000/3.800000/10.300000:8.600000/4.600000/10.300000:n/0/7.000000/8.000000/9.000000/9.000000:R/0/90/0,box=7.400000/3.800000/9.100000:8.600000/4.600000/9.100000:s/0/7.000000/3.000000/9.000000/4.000000:R/0/90/0,box=7.400000/3.800000/9.100000:7.400000/4.600000/10.300000:e/0/7.000000/8.000000/9.000000/9.000000:R/0/90/0,box=8.600000/3.800000/9.100000:8.600000/4.600000/10.300000:w/0/7.000000/3.000000/9.000000/4.000000:R/0/90/0,box=7.400000/5.200000/10.000000:8.800000/6.800000/14.000000:n/0/7.000000/9.000000/9.000000/11.000000:d/0/7.000000/9.000000/9.000000/14.000000:w/0/2.000000/9.000000/7.000000/11.000000:e/0/9.000000/9.000000/14.000000/11.000000:s/0/7.000000/9.000000/9.000000/11.000000:u/0/7.000000/2.000000/9.000000/7.000000:R/0/90/0,box=6.000000/1.000000/14.000000:10.000000/9.000000/16.000000:n/0/6.000000/7.000000/10.000000/15.000000:d/0/6.000000/14.000000/10.000000/16.000000:w/0/0.000000/7.000000/2.000000/15.000000:e/0/14.000000/7.000000/16.000000/15.000000:s/0/6.000000/7.000000/10.000000/15.000000:u/0/6.000000/0.000000/10.000000/2.000000:R/0/90/0 +[1.21.4-]modellist:id=%tripwire_hook,state=attached=false/facing=east/powered=true,box=6.200000/4.200000/6.700000:9.800000/5.000000/10.300000:n/0/5.000000/3.000000/11.000000/4.000000:d/0/5.000000/3.000000/11.000000/9.000000:w/0/5.000000/8.000000/11.000000/9.000000:e/0/5.000000/3.000000/11.000000/4.000000:s/0/5.000000/8.000000/11.000000/9.000000:u/0/5.000000/3.000000/11.000000/9.000000:R/0/90/0,box=7.400000/4.200000/9.100000:8.600000/5.000000/9.100000:n/0/7.000000/8.000000/9.000000/9.000000:R/0/90/0,box=7.400000/4.200000/7.900000:8.600000/5.000000/7.900000:s/0/7.000000/3.000000/9.000000/4.000000:R/0/90/0,box=7.400000/4.200000/7.900000:7.400000/5.000000/9.100000:e/0/7.000000/8.000000/9.000000/9.000000:R/0/90/0,box=8.600000/4.200000/7.900000:8.600000/5.000000/9.100000:w/0/7.000000/3.000000/9.000000/4.000000:R/0/90/0,box=7.400000/5.200000/10.000000:8.800000/6.800000/14.000000:n/0/7.000000/9.000000/9.000000/11.000000:d/0/7.000000/9.000000/9.000000/14.000000:w/0/2.000000/9.000000/7.000000/11.000000:e/0/9.000000/9.000000/14.000000/11.000000:s/0/7.000000/9.000000/9.000000/11.000000:u/0/7.000000/2.000000/9.000000/7.000000:R/0/90/0,box=6.000000/1.000000/14.000000:10.000000/9.000000/16.000000:n/0/6.000000/7.000000/10.000000/15.000000:d/0/6.000000/14.000000/10.000000/16.000000:w/0/0.000000/7.000000/2.000000/15.000000:e/0/14.000000/7.000000/16.000000/15.000000:s/0/6.000000/7.000000/10.000000/15.000000:u/0/6.000000/0.000000/10.000000/2.000000:R/0/90/0 +[1.21.4-]modellist:id=%tripwire_hook,state=attached=false/facing=north/powered=false,box=6.200000/3.800000/7.900000:9.800000/4.600000/11.500000:n/0/5.000000/3.000000/11.000000/4.000000:d/0/5.000000/3.000000/11.000000/9.000000:w/0/5.000000/8.000000/11.000000/9.000000:e/0/5.000000/3.000000/11.000000/4.000000:s/0/5.000000/8.000000/11.000000/9.000000:u/0/5.000000/3.000000/11.000000/9.000000/-45/x/8/6/5.2,box=7.400000/3.800000/10.300000:8.600000/4.600000/10.300000:n/0/7.000000/8.000000/9.000000/9.000000/-45/x/8/6/5.2,box=7.400000/3.800000/9.100000:8.600000/4.600000/9.100000:s/0/7.000000/3.000000/9.000000/4.000000/-45/x/8/6/5.2,box=7.400000/3.800000/9.100000:7.400000/4.600000/10.300000:e/0/7.000000/8.000000/9.000000/9.000000/-45/x/8/6/5.2,box=8.600000/3.800000/9.100000:8.600000/4.600000/10.300000:w/0/7.000000/3.000000/9.000000/4.000000/-45/x/8/6/5.2,box=7.400000/5.200000/10.000000:8.800000/6.800000/14.000000:n/0/7.000000/9.000000/9.000000/11.000000:d/0/7.000000/9.000000/9.000000/14.000000:w/0/2.000000/9.000000/7.000000/11.000000:e/0/9.000000/9.000000/14.000000/11.000000:s/0/7.000000/9.000000/9.000000/11.000000:u/0/7.000000/2.000000/9.000000/7.000000/45/x/8/6/14,box=6.000000/1.000000/14.000000:10.000000/9.000000/16.000000:n/0/6.000000/7.000000/10.000000/15.000000:d/0/6.000000/14.000000/10.000000/16.000000:w/0/0.000000/7.000000/2.000000/15.000000:e/0/14.000000/7.000000/16.000000/15.000000:s/0/6.000000/7.000000/10.000000/15.000000:u/0/6.000000/0.000000/10.000000/2.000000 +[1.21.4-]modellist:id=%tripwire_hook,state=attached=false/facing=north/powered=true,box=6.200000/4.200000/6.700000:9.800000/5.000000/10.300000:n/0/5.000000/3.000000/11.000000/4.000000:d/0/5.000000/3.000000/11.000000/9.000000:w/0/5.000000/8.000000/11.000000/9.000000:e/0/5.000000/3.000000/11.000000/4.000000:s/0/5.000000/8.000000/11.000000/9.000000:u/0/5.000000/3.000000/11.000000/9.000000,box=7.400000/4.200000/9.100000:8.600000/5.000000/9.100000:n/0/7.000000/8.000000/9.000000/9.000000,box=7.400000/4.200000/7.900000:8.600000/5.000000/7.900000:s/0/7.000000/3.000000/9.000000/4.000000,box=7.400000/4.200000/7.900000:7.400000/5.000000/9.100000:e/0/7.000000/8.000000/9.000000/9.000000,box=8.600000/4.200000/7.900000:8.600000/5.000000/9.100000:w/0/7.000000/3.000000/9.000000/4.000000,box=7.400000/5.200000/10.000000:8.800000/6.800000/14.000000:n/0/7.000000/9.000000/9.000000/11.000000:d/0/7.000000/9.000000/9.000000/14.000000:w/0/2.000000/9.000000/7.000000/11.000000:e/0/9.000000/9.000000/14.000000/11.000000:s/0/7.000000/9.000000/9.000000/11.000000:u/0/7.000000/2.000000/9.000000/7.000000/-22.5/x/8/6/14,box=6.000000/1.000000/14.000000:10.000000/9.000000/16.000000:n/0/6.000000/7.000000/10.000000/15.000000:d/0/6.000000/14.000000/10.000000/16.000000:w/0/0.000000/7.000000/2.000000/15.000000:e/0/14.000000/7.000000/16.000000/15.000000:s/0/6.000000/7.000000/10.000000/15.000000:u/0/6.000000/0.000000/10.000000/2.000000 +[1.21.4-]modellist:id=%tripwire_hook,state=attached=false/facing=south/powered=false,box=6.200000/3.800000/7.900000:9.800000/4.600000/11.500000:n/0/5.000000/3.000000/11.000000/4.000000:d/0/5.000000/3.000000/11.000000/9.000000:w/0/5.000000/8.000000/11.000000/9.000000:e/0/5.000000/3.000000/11.000000/4.000000:s/0/5.000000/8.000000/11.000000/9.000000:u/0/5.000000/3.000000/11.000000/9.000000:R/0/180/0,box=7.400000/3.800000/10.300000:8.600000/4.600000/10.300000:n/0/7.000000/8.000000/9.000000/9.000000:R/0/180/0,box=7.400000/3.800000/9.100000:8.600000/4.600000/9.100000:s/0/7.000000/3.000000/9.000000/4.000000:R/0/180/0,box=7.400000/3.800000/9.100000:7.400000/4.600000/10.300000:e/0/7.000000/8.000000/9.000000/9.000000:R/0/180/0,box=8.600000/3.800000/9.100000:8.600000/4.600000/10.300000:w/0/7.000000/3.000000/9.000000/4.000000:R/0/180/0,box=7.400000/5.200000/10.000000:8.800000/6.800000/14.000000:n/0/7.000000/9.000000/9.000000/11.000000:d/0/7.000000/9.000000/9.000000/14.000000:w/0/2.000000/9.000000/7.000000/11.000000:e/0/9.000000/9.000000/14.000000/11.000000:s/0/7.000000/9.000000/9.000000/11.000000:u/0/7.000000/2.000000/9.000000/7.000000:R/0/180/0,box=6.000000/1.000000/14.000000:10.000000/9.000000/16.000000:n/0/6.000000/7.000000/10.000000/15.000000:d/0/6.000000/14.000000/10.000000/16.000000:w/0/0.000000/7.000000/2.000000/15.000000:e/0/14.000000/7.000000/16.000000/15.000000:s/0/6.000000/7.000000/10.000000/15.000000:u/0/6.000000/0.000000/10.000000/2.000000:R/0/180/0 +[1.21.4-]modellist:id=%tripwire_hook,state=attached=false/facing=south/powered=true,box=6.200000/4.200000/6.700000:9.800000/5.000000/10.300000:n/0/5.000000/3.000000/11.000000/4.000000:d/0/5.000000/3.000000/11.000000/9.000000:w/0/5.000000/8.000000/11.000000/9.000000:e/0/5.000000/3.000000/11.000000/4.000000:s/0/5.000000/8.000000/11.000000/9.000000:u/0/5.000000/3.000000/11.000000/9.000000:R/0/180/0,box=7.400000/4.200000/9.100000:8.600000/5.000000/9.100000:n/0/7.000000/8.000000/9.000000/9.000000:R/0/180/0,box=7.400000/4.200000/7.900000:8.600000/5.000000/7.900000:s/0/7.000000/3.000000/9.000000/4.000000:R/0/180/0,box=7.400000/4.200000/7.900000:7.400000/5.000000/9.100000:e/0/7.000000/8.000000/9.000000/9.000000:R/0/180/0,box=8.600000/4.200000/7.900000:8.600000/5.000000/9.100000:w/0/7.000000/3.000000/9.000000/4.000000:R/0/180/0,box=7.400000/5.200000/10.000000:8.800000/6.800000/14.000000:n/0/7.000000/9.000000/9.000000/11.000000:d/0/7.000000/9.000000/9.000000/14.000000:w/0/2.000000/9.000000/7.000000/11.000000:e/0/9.000000/9.000000/14.000000/11.000000:s/0/7.000000/9.000000/9.000000/11.000000:u/0/7.000000/2.000000/9.000000/7.000000:R/0/180/0,box=6.000000/1.000000/14.000000:10.000000/9.000000/16.000000:n/0/6.000000/7.000000/10.000000/15.000000:d/0/6.000000/14.000000/10.000000/16.000000:w/0/0.000000/7.000000/2.000000/15.000000:e/0/14.000000/7.000000/16.000000/15.000000:s/0/6.000000/7.000000/10.000000/15.000000:u/0/6.000000/0.000000/10.000000/2.000000:R/0/180/0 +[1.21.4-]modellist:id=%tripwire_hook,state=attached=false/facing=west/powered=false,box=6.200000/3.800000/7.900000:9.800000/4.600000/11.500000:n/0/5.000000/3.000000/11.000000/4.000000:d/0/5.000000/3.000000/11.000000/9.000000:w/0/5.000000/8.000000/11.000000/9.000000:e/0/5.000000/3.000000/11.000000/4.000000:s/0/5.000000/8.000000/11.000000/9.000000:u/0/5.000000/3.000000/11.000000/9.000000:R/0/270/0,box=7.400000/3.800000/10.300000:8.600000/4.600000/10.300000:n/0/7.000000/8.000000/9.000000/9.000000:R/0/270/0,box=7.400000/3.800000/9.100000:8.600000/4.600000/9.100000:s/0/7.000000/3.000000/9.000000/4.000000:R/0/270/0,box=7.400000/3.800000/9.100000:7.400000/4.600000/10.300000:e/0/7.000000/8.000000/9.000000/9.000000:R/0/270/0,box=8.600000/3.800000/9.100000:8.600000/4.600000/10.300000:w/0/7.000000/3.000000/9.000000/4.000000:R/0/270/0,box=7.400000/5.200000/10.000000:8.800000/6.800000/14.000000:n/0/7.000000/9.000000/9.000000/11.000000:d/0/7.000000/9.000000/9.000000/14.000000:w/0/2.000000/9.000000/7.000000/11.000000:e/0/9.000000/9.000000/14.000000/11.000000:s/0/7.000000/9.000000/9.000000/11.000000:u/0/7.000000/2.000000/9.000000/7.000000:R/0/270/0,box=6.000000/1.000000/14.000000:10.000000/9.000000/16.000000:n/0/6.000000/7.000000/10.000000/15.000000:d/0/6.000000/14.000000/10.000000/16.000000:w/0/0.000000/7.000000/2.000000/15.000000:e/0/14.000000/7.000000/16.000000/15.000000:s/0/6.000000/7.000000/10.000000/15.000000:u/0/6.000000/0.000000/10.000000/2.000000:R/0/270/0 +[1.21.4-]modellist:id=%tripwire_hook,state=attached=false/facing=west/powered=true,box=6.200000/4.200000/6.700000:9.800000/5.000000/10.300000:n/0/5.000000/3.000000/11.000000/4.000000:d/0/5.000000/3.000000/11.000000/9.000000:w/0/5.000000/8.000000/11.000000/9.000000:e/0/5.000000/3.000000/11.000000/4.000000:s/0/5.000000/8.000000/11.000000/9.000000:u/0/5.000000/3.000000/11.000000/9.000000:R/0/270/0,box=7.400000/4.200000/9.100000:8.600000/5.000000/9.100000:n/0/7.000000/8.000000/9.000000/9.000000:R/0/270/0,box=7.400000/4.200000/7.900000:8.600000/5.000000/7.900000:s/0/7.000000/3.000000/9.000000/4.000000:R/0/270/0,box=7.400000/4.200000/7.900000:7.400000/5.000000/9.100000:e/0/7.000000/8.000000/9.000000/9.000000:R/0/270/0,box=8.600000/4.200000/7.900000:8.600000/5.000000/9.100000:w/0/7.000000/3.000000/9.000000/4.000000:R/0/270/0,box=7.400000/5.200000/10.000000:8.800000/6.800000/14.000000:n/0/7.000000/9.000000/9.000000/11.000000:d/0/7.000000/9.000000/9.000000/14.000000:w/0/2.000000/9.000000/7.000000/11.000000:e/0/9.000000/9.000000/14.000000/11.000000:s/0/7.000000/9.000000/9.000000/11.000000:u/0/7.000000/2.000000/9.000000/7.000000:R/0/270/0,box=6.000000/1.000000/14.000000:10.000000/9.000000/16.000000:n/0/6.000000/7.000000/10.000000/15.000000:d/0/6.000000/14.000000/10.000000/16.000000:w/0/0.000000/7.000000/2.000000/15.000000:e/0/14.000000/7.000000/16.000000/15.000000:s/0/6.000000/7.000000/10.000000/15.000000:u/0/6.000000/0.000000/10.000000/2.000000:R/0/270/0 +[1.21.4-]modellist:id=%tripwire_hook,state=attached=true/facing=east/powered=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/6.700000:d/0/16.000000/6.000000/0.000000/8.000000:u/0/0.000000/6.000000/16.000000/8.000000:R/0/90/0,box=6.200000/4.200000/6.700000:9.800000/5.000000/10.300000:n/0/5.000000/3.000000/11.000000/4.000000:d/0/5.000000/3.000000/11.000000/9.000000:w/0/5.000000/8.000000/11.000000/9.000000:e/0/5.000000/3.000000/11.000000/4.000000:s/0/5.000000/8.000000/11.000000/9.000000:u/0/5.000000/3.000000/11.000000/9.000000:R/0/90/0,box=7.400000/4.200000/9.100000:8.600000/5.000000/9.100000:n/0/7.000000/8.000000/9.000000/9.000000:R/0/90/0,box=7.400000/4.200000/7.900000:8.600000/5.000000/7.900000:s/0/7.000000/3.000000/9.000000/4.000000:R/0/90/0,box=7.400000/4.200000/7.900000:7.400000/5.000000/9.100000:e/0/7.000000/8.000000/9.000000/9.000000:R/0/90/0,box=8.600000/4.200000/7.900000:8.600000/5.000000/9.100000:w/0/7.000000/3.000000/9.000000/4.000000:R/0/90/0,box=7.400000/5.200000/10.000000:8.800000/6.800000/14.000000:n/0/7.000000/9.000000/9.000000/11.000000:d/0/7.000000/9.000000/9.000000/14.000000:w/0/2.000000/9.000000/7.000000/11.000000:e/0/9.000000/9.000000/14.000000/11.000000:u/0/7.000000/2.000000/9.000000/7.000000:R/0/90/0,box=6.000000/1.000000/14.000000:10.000000/9.000000/16.000000:n/0/6.000000/7.000000/10.000000/15.000000:d/0/6.000000/14.000000/10.000000/16.000000:w/0/0.000000/7.000000/2.000000/15.000000:e/0/14.000000/7.000000/16.000000/15.000000:s/0/6.000000/7.000000/10.000000/15.000000:u/0/6.000000/0.000000/10.000000/2.000000:R/0/90/0 +[1.21.4-]modellist:id=%tripwire_hook,state=attached=true/facing=east/powered=true,box=7.750000/0.500000/0.000000:8.250000/0.500000/6.700000:d/0/16.000000/6.000000/0.000000/8.000000:u/0/0.000000/6.000000/16.000000/8.000000:R/0/90/0,box=6.200000/3.400000/6.700000:9.800000/4.200000/10.300000:n/0/5.000000/3.000000/11.000000/4.000000:d/0/5.000000/3.000000/11.000000/9.000000:w/0/5.000000/8.000000/11.000000/9.000000:e/0/5.000000/3.000000/11.000000/4.000000:s/0/5.000000/8.000000/11.000000/9.000000:u/0/5.000000/3.000000/11.000000/9.000000:R/0/90/0,box=7.400000/3.400000/9.100000:8.600000/4.200000/9.100000:n/0/7.000000/8.000000/9.000000/9.000000:R/0/90/0,box=7.400000/3.400000/7.900000:8.600000/4.200000/7.900000:s/0/7.000000/3.000000/9.000000/4.000000:R/0/90/0,box=7.400000/3.400000/7.900000:7.400000/4.200000/9.100000:e/0/7.000000/8.000000/9.000000/9.000000:R/0/90/0,box=8.600000/3.400000/7.900000:8.600000/4.200000/9.100000:w/0/7.000000/3.000000/9.000000/4.000000:R/0/90/0,box=7.400000/5.200000/10.000000:8.800000/6.800000/14.000000:n/0/7.000000/9.000000/9.000000/11.000000:d/0/7.000000/9.000000/9.000000/14.000000:w/0/2.000000/9.000000/7.000000/11.000000:e/0/9.000000/9.000000/14.000000/11.000000:s/0/7.000000/9.000000/9.000000/11.000000:u/0/7.000000/2.000000/9.000000/7.000000:R/0/90/0,box=6.000000/1.000000/14.000000:10.000000/9.000000/16.000000:n/0/6.000000/7.000000/10.000000/15.000000:d/0/6.000000/14.000000/10.000000/16.000000:w/0/0.000000/7.000000/2.000000/15.000000:e/0/14.000000/7.000000/16.000000/15.000000:s/0/6.000000/7.000000/10.000000/15.000000:u/0/6.000000/0.000000/10.000000/2.000000:R/0/90/0 +[1.21.4-]modellist:id=%tripwire_hook,state=attached=true/facing=north/powered=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/6.700000:d/0/16.000000/6.000000/0.000000/8.000000:u/0/0.000000/6.000000/16.000000/8.000000/-22.5/x/8/0/0,box=6.200000/4.200000/6.700000:9.800000/5.000000/10.300000:n/0/5.000000/3.000000/11.000000/4.000000:d/0/5.000000/3.000000/11.000000/9.000000:w/0/5.000000/8.000000/11.000000/9.000000:e/0/5.000000/3.000000/11.000000/4.000000:s/0/5.000000/8.000000/11.000000/9.000000:u/0/5.000000/3.000000/11.000000/9.000000/-22.5/x/8/4.2/6.7,box=7.400000/4.200000/9.100000:8.600000/5.000000/9.100000:n/0/7.000000/8.000000/9.000000/9.000000/-22.5/x/8/4.2/6.7,box=7.400000/4.200000/7.900000:8.600000/5.000000/7.900000:s/0/7.000000/3.000000/9.000000/4.000000/-22.5/x/8/4.2/6.7,box=7.400000/4.200000/7.900000:7.400000/5.000000/9.100000:e/0/7.000000/8.000000/9.000000/9.000000/-22.5/x/8/4.2/6.7,box=8.600000/4.200000/7.900000:8.600000/5.000000/9.100000:w/0/7.000000/3.000000/9.000000/4.000000/-22.5/x/8/4.2/6.7,box=7.400000/5.200000/10.000000:8.800000/6.800000/14.000000:n/0/7.000000/9.000000/9.000000/11.000000:d/0/7.000000/9.000000/9.000000/14.000000:w/0/2.000000/9.000000/7.000000/11.000000:e/0/9.000000/9.000000/14.000000/11.000000:u/0/7.000000/2.000000/9.000000/7.000000,box=6.000000/1.000000/14.000000:10.000000/9.000000/16.000000:n/0/6.000000/7.000000/10.000000/15.000000:d/0/6.000000/14.000000/10.000000/16.000000:w/0/0.000000/7.000000/2.000000/15.000000:e/0/14.000000/7.000000/16.000000/15.000000:s/0/6.000000/7.000000/10.000000/15.000000:u/0/6.000000/0.000000/10.000000/2.000000 +[1.21.4-]modellist:id=%tripwire_hook,state=attached=true/facing=north/powered=true,box=7.750000/0.500000/0.000000:8.250000/0.500000/6.700000:d/0/16.000000/6.000000/0.000000/8.000000:u/0/0.000000/6.000000/16.000000/8.000000/-22.5/x/8/0/0,box=6.200000/3.400000/6.700000:9.800000/4.200000/10.300000:n/0/5.000000/3.000000/11.000000/4.000000:d/0/5.000000/3.000000/11.000000/9.000000:w/0/5.000000/8.000000/11.000000/9.000000:e/0/5.000000/3.000000/11.000000/4.000000:s/0/5.000000/8.000000/11.000000/9.000000:u/0/5.000000/3.000000/11.000000/9.000000,box=7.400000/3.400000/9.100000:8.600000/4.200000/9.100000:n/0/7.000000/8.000000/9.000000/9.000000,box=7.400000/3.400000/7.900000:8.600000/4.200000/7.900000:s/0/7.000000/3.000000/9.000000/4.000000,box=7.400000/3.400000/7.900000:7.400000/4.200000/9.100000:e/0/7.000000/8.000000/9.000000/9.000000,box=8.600000/3.400000/7.900000:8.600000/4.200000/9.100000:w/0/7.000000/3.000000/9.000000/4.000000,box=7.400000/5.200000/10.000000:8.800000/6.800000/14.000000:n/0/7.000000/9.000000/9.000000/11.000000:d/0/7.000000/9.000000/9.000000/14.000000:w/0/2.000000/9.000000/7.000000/11.000000:e/0/9.000000/9.000000/14.000000/11.000000:s/0/7.000000/9.000000/9.000000/11.000000:u/0/7.000000/2.000000/9.000000/7.000000/-22.5/x/8/6/14,box=6.000000/1.000000/14.000000:10.000000/9.000000/16.000000:n/0/6.000000/7.000000/10.000000/15.000000:d/0/6.000000/14.000000/10.000000/16.000000:w/0/0.000000/7.000000/2.000000/15.000000:e/0/14.000000/7.000000/16.000000/15.000000:s/0/6.000000/7.000000/10.000000/15.000000:u/0/6.000000/0.000000/10.000000/2.000000 +[1.21.4-]modellist:id=%tripwire_hook,state=attached=true/facing=south/powered=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/6.700000:d/0/16.000000/6.000000/0.000000/8.000000:u/0/0.000000/6.000000/16.000000/8.000000:R/0/180/0,box=6.200000/4.200000/6.700000:9.800000/5.000000/10.300000:n/0/5.000000/3.000000/11.000000/4.000000:d/0/5.000000/3.000000/11.000000/9.000000:w/0/5.000000/8.000000/11.000000/9.000000:e/0/5.000000/3.000000/11.000000/4.000000:s/0/5.000000/8.000000/11.000000/9.000000:u/0/5.000000/3.000000/11.000000/9.000000:R/0/180/0,box=7.400000/4.200000/9.100000:8.600000/5.000000/9.100000:n/0/7.000000/8.000000/9.000000/9.000000:R/0/180/0,box=7.400000/4.200000/7.900000:8.600000/5.000000/7.900000:s/0/7.000000/3.000000/9.000000/4.000000:R/0/180/0,box=7.400000/4.200000/7.900000:7.400000/5.000000/9.100000:e/0/7.000000/8.000000/9.000000/9.000000:R/0/180/0,box=8.600000/4.200000/7.900000:8.600000/5.000000/9.100000:w/0/7.000000/3.000000/9.000000/4.000000:R/0/180/0,box=7.400000/5.200000/10.000000:8.800000/6.800000/14.000000:n/0/7.000000/9.000000/9.000000/11.000000:d/0/7.000000/9.000000/9.000000/14.000000:w/0/2.000000/9.000000/7.000000/11.000000:e/0/9.000000/9.000000/14.000000/11.000000:u/0/7.000000/2.000000/9.000000/7.000000:R/0/180/0,box=6.000000/1.000000/14.000000:10.000000/9.000000/16.000000:n/0/6.000000/7.000000/10.000000/15.000000:d/0/6.000000/14.000000/10.000000/16.000000:w/0/0.000000/7.000000/2.000000/15.000000:e/0/14.000000/7.000000/16.000000/15.000000:s/0/6.000000/7.000000/10.000000/15.000000:u/0/6.000000/0.000000/10.000000/2.000000:R/0/180/0 +[1.21.4-]modellist:id=%tripwire_hook,state=attached=true/facing=south/powered=true,box=7.750000/0.500000/0.000000:8.250000/0.500000/6.700000:d/0/16.000000/6.000000/0.000000/8.000000:u/0/0.000000/6.000000/16.000000/8.000000:R/0/180/0,box=6.200000/3.400000/6.700000:9.800000/4.200000/10.300000:n/0/5.000000/3.000000/11.000000/4.000000:d/0/5.000000/3.000000/11.000000/9.000000:w/0/5.000000/8.000000/11.000000/9.000000:e/0/5.000000/3.000000/11.000000/4.000000:s/0/5.000000/8.000000/11.000000/9.000000:u/0/5.000000/3.000000/11.000000/9.000000:R/0/180/0,box=7.400000/3.400000/9.100000:8.600000/4.200000/9.100000:n/0/7.000000/8.000000/9.000000/9.000000:R/0/180/0,box=7.400000/3.400000/7.900000:8.600000/4.200000/7.900000:s/0/7.000000/3.000000/9.000000/4.000000:R/0/180/0,box=7.400000/3.400000/7.900000:7.400000/4.200000/9.100000:e/0/7.000000/8.000000/9.000000/9.000000:R/0/180/0,box=8.600000/3.400000/7.900000:8.600000/4.200000/9.100000:w/0/7.000000/3.000000/9.000000/4.000000:R/0/180/0,box=7.400000/5.200000/10.000000:8.800000/6.800000/14.000000:n/0/7.000000/9.000000/9.000000/11.000000:d/0/7.000000/9.000000/9.000000/14.000000:w/0/2.000000/9.000000/7.000000/11.000000:e/0/9.000000/9.000000/14.000000/11.000000:s/0/7.000000/9.000000/9.000000/11.000000:u/0/7.000000/2.000000/9.000000/7.000000:R/0/180/0,box=6.000000/1.000000/14.000000:10.000000/9.000000/16.000000:n/0/6.000000/7.000000/10.000000/15.000000:d/0/6.000000/14.000000/10.000000/16.000000:w/0/0.000000/7.000000/2.000000/15.000000:e/0/14.000000/7.000000/16.000000/15.000000:s/0/6.000000/7.000000/10.000000/15.000000:u/0/6.000000/0.000000/10.000000/2.000000:R/0/180/0 +[1.21.4-]modellist:id=%tripwire_hook,state=attached=true/facing=west/powered=false,box=7.750000/1.500000/0.000000:8.250000/1.500000/6.700000:d/0/16.000000/6.000000/0.000000/8.000000:u/0/0.000000/6.000000/16.000000/8.000000:R/0/270/0,box=6.200000/4.200000/6.700000:9.800000/5.000000/10.300000:n/0/5.000000/3.000000/11.000000/4.000000:d/0/5.000000/3.000000/11.000000/9.000000:w/0/5.000000/8.000000/11.000000/9.000000:e/0/5.000000/3.000000/11.000000/4.000000:s/0/5.000000/8.000000/11.000000/9.000000:u/0/5.000000/3.000000/11.000000/9.000000:R/0/270/0,box=7.400000/4.200000/9.100000:8.600000/5.000000/9.100000:n/0/7.000000/8.000000/9.000000/9.000000:R/0/270/0,box=7.400000/4.200000/7.900000:8.600000/5.000000/7.900000:s/0/7.000000/3.000000/9.000000/4.000000:R/0/270/0,box=7.400000/4.200000/7.900000:7.400000/5.000000/9.100000:e/0/7.000000/8.000000/9.000000/9.000000:R/0/270/0,box=8.600000/4.200000/7.900000:8.600000/5.000000/9.100000:w/0/7.000000/3.000000/9.000000/4.000000:R/0/270/0,box=7.400000/5.200000/10.000000:8.800000/6.800000/14.000000:n/0/7.000000/9.000000/9.000000/11.000000:d/0/7.000000/9.000000/9.000000/14.000000:w/0/2.000000/9.000000/7.000000/11.000000:e/0/9.000000/9.000000/14.000000/11.000000:u/0/7.000000/2.000000/9.000000/7.000000:R/0/270/0,box=6.000000/1.000000/14.000000:10.000000/9.000000/16.000000:n/0/6.000000/7.000000/10.000000/15.000000:d/0/6.000000/14.000000/10.000000/16.000000:w/0/0.000000/7.000000/2.000000/15.000000:e/0/14.000000/7.000000/16.000000/15.000000:s/0/6.000000/7.000000/10.000000/15.000000:u/0/6.000000/0.000000/10.000000/2.000000:R/0/270/0 +[1.21.4-]modellist:id=%tripwire_hook,state=attached=true/facing=west/powered=true,box=7.750000/0.500000/0.000000:8.250000/0.500000/6.700000:d/0/16.000000/6.000000/0.000000/8.000000:u/0/0.000000/6.000000/16.000000/8.000000:R/0/270/0,box=6.200000/3.400000/6.700000:9.800000/4.200000/10.300000:n/0/5.000000/3.000000/11.000000/4.000000:d/0/5.000000/3.000000/11.000000/9.000000:w/0/5.000000/8.000000/11.000000/9.000000:e/0/5.000000/3.000000/11.000000/4.000000:s/0/5.000000/8.000000/11.000000/9.000000:u/0/5.000000/3.000000/11.000000/9.000000:R/0/270/0,box=7.400000/3.400000/9.100000:8.600000/4.200000/9.100000:n/0/7.000000/8.000000/9.000000/9.000000:R/0/270/0,box=7.400000/3.400000/7.900000:8.600000/4.200000/7.900000:s/0/7.000000/3.000000/9.000000/4.000000:R/0/270/0,box=7.400000/3.400000/7.900000:7.400000/4.200000/9.100000:e/0/7.000000/8.000000/9.000000/9.000000:R/0/270/0,box=8.600000/3.400000/7.900000:8.600000/4.200000/9.100000:w/0/7.000000/3.000000/9.000000/4.000000:R/0/270/0,box=7.400000/5.200000/10.000000:8.800000/6.800000/14.000000:n/0/7.000000/9.000000/9.000000/11.000000:d/0/7.000000/9.000000/9.000000/14.000000:w/0/2.000000/9.000000/7.000000/11.000000:e/0/9.000000/9.000000/14.000000/11.000000:s/0/7.000000/9.000000/9.000000/11.000000:u/0/7.000000/2.000000/9.000000/7.000000:R/0/270/0,box=6.000000/1.000000/14.000000:10.000000/9.000000/16.000000:n/0/6.000000/7.000000/10.000000/15.000000:d/0/6.000000/14.000000/10.000000/16.000000:w/0/0.000000/7.000000/2.000000/15.000000:e/0/14.000000/7.000000/16.000000/15.000000:s/0/6.000000/7.000000/10.000000/15.000000:u/0/6.000000/0.000000/10.000000/2.000000:R/0/270/0 +[1.21.4-]modellist:id=%tube_coral,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%tube_coral_fan,box=8.000000/0.000000/0.000000:24.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/z/8/0/0,box=-8.000000/0.000000/0.000000:8.000000/0.000000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/z/8/0/0,box=0.000000/0.000000/8.000000:16.000000/0.000000/24.000000:d/0/16.000000/0.000000/0.000000/16.000000:u/0/16.000000/16.000000/0.000000/0.000000/-22.5/x/0/0/8,box=0.000000/0.000000/-8.000000:16.000000/0.000000/8.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/0/0/8 +[1.21.4-]modellist:id=%tube_coral_wall_fan,state=facing=east,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%tube_coral_wall_fan,state=facing=north,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/22.5/x/8/8/14,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000/-22.5/x/8/8/14 +[1.21.4-]modellist:id=%tube_coral_wall_fan,state=facing=south,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%tube_coral_wall_fan,state=facing=west,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/0.000000:16.000000/8.000000/16.000000:d/0/16.000000/16.000000/0.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%tuff_brick_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%tuff_brick_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%tuff_brick_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%tuff_brick_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%tuff_brick_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%tuff_brick_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%tuff_brick_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%tuff_brick_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%tuff_brick_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%tuff_brick_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%tuff_brick_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%tuff_brick_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%tuff_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%tuff_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%tuff_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%tuff_wall,state=east:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%tuff_wall,state=east:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%tuff_wall,state=north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%tuff_wall,state=north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%tuff_wall,state=south:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%tuff_wall,state=south:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%tuff_wall,state=up:true,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%tuff_wall,state=west:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%tuff_wall,state=west:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%turtle_egg,state=eggs=1/hatch=0,box=5.000000/0.000000/4.000000:9.000000/7.000000/8.000000:n/0/1.000000/4.000000/5.000000/11.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/1.000000/4.000000/5.000000/11.000000:e/0/1.000000/4.000000/5.000000/11.000000:s/0/1.000000/4.000000/5.000000/11.000000:u/0/0.000000/0.000000/4.000000/4.000000 +[1.21.4-]modellist:id=%turtle_egg,state=eggs=1/hatch=1,box=5.000000/0.000000/4.000000:9.000000/7.000000/8.000000:n/0/1.000000/4.000000/5.000000/11.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/1.000000/4.000000/5.000000/11.000000:e/0/1.000000/4.000000/5.000000/11.000000:s/0/1.000000/4.000000/5.000000/11.000000:u/0/0.000000/0.000000/4.000000/4.000000 +[1.21.4-]modellist:id=%turtle_egg,state=eggs=1/hatch=2,box=5.000000/0.000000/4.000000:9.000000/7.000000/8.000000:n/0/1.000000/4.000000/5.000000/11.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/1.000000/4.000000/5.000000/11.000000:e/0/1.000000/4.000000/5.000000/11.000000:s/0/1.000000/4.000000/5.000000/11.000000:u/0/0.000000/0.000000/4.000000/4.000000 +[1.21.4-]modellist:id=%turtle_egg,state=eggs=2/hatch=0,box=5.000000/0.000000/4.000000:9.000000/7.000000/8.000000:n/0/1.000000/4.000000/5.000000/11.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/1.000000/4.000000/5.000000/11.000000:e/0/1.000000/4.000000/5.000000/11.000000:s/0/1.000000/4.000000/5.000000/11.000000:u/0/0.000000/0.000000/4.000000/4.000000,box=1.000000/0.000000/7.000000:5.000000/5.000000/11.000000:n/0/10.000000/10.000000/14.000000/15.000000:d/0/6.000000/7.000000/10.000000/11.000000:w/0/10.000000/10.000000/14.000000/15.000000:e/0/10.000000/10.000000/14.000000/15.000000:s/0/10.000000/10.000000/14.000000/15.000000:u/0/6.000000/7.000000/10.000000/11.000000 +[1.21.4-]modellist:id=%turtle_egg,state=eggs=2/hatch=1,box=5.000000/0.000000/4.000000:9.000000/7.000000/8.000000:n/0/1.000000/4.000000/5.000000/11.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/1.000000/4.000000/5.000000/11.000000:e/0/1.000000/4.000000/5.000000/11.000000:s/0/1.000000/4.000000/5.000000/11.000000:u/0/0.000000/0.000000/4.000000/4.000000,box=1.000000/0.000000/7.000000:5.000000/5.000000/11.000000:n/0/10.000000/10.000000/14.000000/15.000000:d/0/6.000000/7.000000/10.000000/11.000000:w/0/10.000000/10.000000/14.000000/15.000000:e/0/10.000000/10.000000/14.000000/15.000000:s/0/10.000000/10.000000/14.000000/15.000000:u/0/6.000000/7.000000/10.000000/11.000000 +[1.21.4-]modellist:id=%turtle_egg,state=eggs=2/hatch=2,box=5.000000/0.000000/4.000000:9.000000/7.000000/8.000000:n/0/1.000000/4.000000/5.000000/11.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/1.000000/4.000000/5.000000/11.000000:e/0/1.000000/4.000000/5.000000/11.000000:s/0/1.000000/4.000000/5.000000/11.000000:u/0/0.000000/0.000000/4.000000/4.000000,box=1.000000/0.000000/7.000000:5.000000/5.000000/11.000000:n/0/10.000000/10.000000/14.000000/15.000000:d/0/6.000000/7.000000/10.000000/11.000000:w/0/10.000000/10.000000/14.000000/15.000000:e/0/10.000000/10.000000/14.000000/15.000000:s/0/10.000000/10.000000/14.000000/15.000000:u/0/6.000000/7.000000/10.000000/11.000000 +[1.21.4-]modellist:id=%turtle_egg,state=eggs=3/hatch=0,box=5.000000/0.000000/4.000000:9.000000/7.000000/8.000000:n/0/1.000000/4.000000/5.000000/11.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/1.000000/4.000000/5.000000/11.000000:e/0/1.000000/4.000000/5.000000/11.000000:s/0/1.000000/4.000000/5.000000/11.000000:u/0/0.000000/0.000000/4.000000/4.000000,box=1.000000/0.000000/7.000000:5.000000/5.000000/11.000000:n/0/10.000000/10.000000/14.000000/15.000000:d/0/6.000000/7.000000/10.000000/11.000000:w/0/10.000000/10.000000/14.000000/15.000000:e/0/10.000000/10.000000/14.000000/15.000000:s/0/10.000000/10.000000/14.000000/15.000000:u/0/6.000000/7.000000/10.000000/11.000000,box=11.000000/0.000000/7.000000:14.000000/4.000000/10.000000:n/0/8.000000/3.000000/11.000000/7.000000:d/0/5.000000/0.000000/8.000000/3.000000:w/0/8.000000/3.000000/11.000000/7.000000:e/0/8.000000/3.000000/11.000000/7.000000:s/0/8.000000/3.000000/11.000000/7.000000:u/0/5.000000/0.000000/8.000000/3.000000 +[1.21.4-]modellist:id=%turtle_egg,state=eggs=3/hatch=1,box=5.000000/0.000000/4.000000:9.000000/7.000000/8.000000:n/0/1.000000/4.000000/5.000000/11.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/1.000000/4.000000/5.000000/11.000000:e/0/1.000000/4.000000/5.000000/11.000000:s/0/1.000000/4.000000/5.000000/11.000000:u/0/0.000000/0.000000/4.000000/4.000000,box=1.000000/0.000000/7.000000:5.000000/5.000000/11.000000:n/0/10.000000/10.000000/14.000000/15.000000:d/0/6.000000/7.000000/10.000000/11.000000:w/0/10.000000/10.000000/14.000000/15.000000:e/0/10.000000/10.000000/14.000000/15.000000:s/0/10.000000/10.000000/14.000000/15.000000:u/0/6.000000/7.000000/10.000000/11.000000,box=11.000000/0.000000/7.000000:14.000000/4.000000/10.000000:n/0/8.000000/3.000000/11.000000/7.000000:d/0/5.000000/0.000000/8.000000/3.000000:w/0/8.000000/3.000000/11.000000/7.000000:e/0/8.000000/3.000000/11.000000/7.000000:s/0/8.000000/3.000000/11.000000/7.000000:u/0/5.000000/0.000000/8.000000/3.000000 +[1.21.4-]modellist:id=%turtle_egg,state=eggs=3/hatch=2,box=5.000000/0.000000/4.000000:9.000000/7.000000/8.000000:n/0/1.000000/4.000000/5.000000/11.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/1.000000/4.000000/5.000000/11.000000:e/0/1.000000/4.000000/5.000000/11.000000:s/0/1.000000/4.000000/5.000000/11.000000:u/0/0.000000/0.000000/4.000000/4.000000,box=1.000000/0.000000/7.000000:5.000000/5.000000/11.000000:n/0/10.000000/10.000000/14.000000/15.000000:d/0/6.000000/7.000000/10.000000/11.000000:w/0/10.000000/10.000000/14.000000/15.000000:e/0/10.000000/10.000000/14.000000/15.000000:s/0/10.000000/10.000000/14.000000/15.000000:u/0/6.000000/7.000000/10.000000/11.000000,box=11.000000/0.000000/7.000000:14.000000/4.000000/10.000000:n/0/8.000000/3.000000/11.000000/7.000000:d/0/5.000000/0.000000/8.000000/3.000000:w/0/8.000000/3.000000/11.000000/7.000000:e/0/8.000000/3.000000/11.000000/7.000000:s/0/8.000000/3.000000/11.000000/7.000000:u/0/5.000000/0.000000/8.000000/3.000000 +[1.21.4-]modellist:id=%turtle_egg,state=eggs=4/hatch=0,box=5.000000/0.000000/4.000000:9.000000/7.000000/8.000000:n/0/1.000000/4.000000/5.000000/11.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/1.000000/4.000000/5.000000/11.000000:e/0/1.000000/4.000000/5.000000/11.000000:s/0/1.000000/4.000000/5.000000/11.000000:u/0/0.000000/0.000000/4.000000/4.000000,box=1.000000/0.000000/7.000000:5.000000/5.000000/11.000000:n/0/10.000000/10.000000/14.000000/15.000000:d/0/6.000000/7.000000/10.000000/11.000000:w/0/10.000000/10.000000/14.000000/15.000000:e/0/10.000000/10.000000/14.000000/15.000000:s/0/10.000000/10.000000/14.000000/15.000000:u/0/6.000000/7.000000/10.000000/11.000000,box=11.000000/0.000000/7.000000:14.000000/4.000000/10.000000:n/0/8.000000/3.000000/11.000000/7.000000:d/0/5.000000/0.000000/8.000000/3.000000:w/0/8.000000/3.000000/11.000000/7.000000:e/0/8.000000/3.000000/11.000000/7.000000:s/0/8.000000/3.000000/11.000000/7.000000:u/0/5.000000/0.000000/8.000000/3.000000,box=6.000000/0.000000/9.000000:10.000000/4.000000/13.000000:n/0/4.000000/11.000000/8.000000/15.000000:d/0/0.000000/11.000000/4.000000/15.000000:w/0/4.000000/11.000000/8.000000/15.000000:e/0/4.000000/11.000000/8.000000/15.000000:s/0/4.000000/11.000000/8.000000/15.000000:u/0/0.000000/11.000000/4.000000/15.000000 +[1.21.4-]modellist:id=%turtle_egg,state=eggs=4/hatch=1,box=5.000000/0.000000/4.000000:9.000000/7.000000/8.000000:n/0/1.000000/4.000000/5.000000/11.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/1.000000/4.000000/5.000000/11.000000:e/0/1.000000/4.000000/5.000000/11.000000:s/0/1.000000/4.000000/5.000000/11.000000:u/0/0.000000/0.000000/4.000000/4.000000,box=1.000000/0.000000/7.000000:5.000000/5.000000/11.000000:n/0/10.000000/10.000000/14.000000/15.000000:d/0/6.000000/7.000000/10.000000/11.000000:w/0/10.000000/10.000000/14.000000/15.000000:e/0/10.000000/10.000000/14.000000/15.000000:s/0/10.000000/10.000000/14.000000/15.000000:u/0/6.000000/7.000000/10.000000/11.000000,box=11.000000/0.000000/7.000000:14.000000/4.000000/10.000000:n/0/8.000000/3.000000/11.000000/7.000000:d/0/5.000000/0.000000/8.000000/3.000000:w/0/8.000000/3.000000/11.000000/7.000000:e/0/8.000000/3.000000/11.000000/7.000000:s/0/8.000000/3.000000/11.000000/7.000000:u/0/5.000000/0.000000/8.000000/3.000000,box=6.000000/0.000000/9.000000:10.000000/4.000000/13.000000:n/0/4.000000/11.000000/8.000000/15.000000:d/0/0.000000/11.000000/4.000000/15.000000:w/0/4.000000/11.000000/8.000000/15.000000:e/0/4.000000/11.000000/8.000000/15.000000:s/0/4.000000/11.000000/8.000000/15.000000:u/0/0.000000/11.000000/4.000000/15.000000 +[1.21.4-]modellist:id=%turtle_egg,state=eggs=4/hatch=2,box=5.000000/0.000000/4.000000:9.000000/7.000000/8.000000:n/0/1.000000/4.000000/5.000000/11.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/1.000000/4.000000/5.000000/11.000000:e/0/1.000000/4.000000/5.000000/11.000000:s/0/1.000000/4.000000/5.000000/11.000000:u/0/0.000000/0.000000/4.000000/4.000000,box=1.000000/0.000000/7.000000:5.000000/5.000000/11.000000:n/0/10.000000/10.000000/14.000000/15.000000:d/0/6.000000/7.000000/10.000000/11.000000:w/0/10.000000/10.000000/14.000000/15.000000:e/0/10.000000/10.000000/14.000000/15.000000:s/0/10.000000/10.000000/14.000000/15.000000:u/0/6.000000/7.000000/10.000000/11.000000,box=11.000000/0.000000/7.000000:14.000000/4.000000/10.000000:n/0/8.000000/3.000000/11.000000/7.000000:d/0/5.000000/0.000000/8.000000/3.000000:w/0/8.000000/3.000000/11.000000/7.000000:e/0/8.000000/3.000000/11.000000/7.000000:s/0/8.000000/3.000000/11.000000/7.000000:u/0/5.000000/0.000000/8.000000/3.000000,box=6.000000/0.000000/9.000000:10.000000/4.000000/13.000000:n/0/4.000000/11.000000/8.000000/15.000000:d/0/0.000000/11.000000/4.000000/15.000000:w/0/4.000000/11.000000/8.000000/15.000000:e/0/4.000000/11.000000/8.000000/15.000000:s/0/4.000000/11.000000/8.000000/15.000000:u/0/0.000000/11.000000/4.000000/15.000000 +[1.21.4-]modellist:id=%twisting_vines,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%twisting_vines_plant,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%vault,state=facing=east/ominous=false/vault_state=active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%vault,state=facing=east/ominous=false/vault_state=ejecting,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%vault,state=facing=east/ominous=false/vault_state=inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%vault,state=facing=east/ominous=false/vault_state=unlocking,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%vault,state=facing=east/ominous=true/vault_state=active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%vault,state=facing=east/ominous=true/vault_state=ejecting,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%vault,state=facing=east/ominous=true/vault_state=inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%vault,state=facing=east/ominous=true/vault_state=unlocking,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%vault,state=facing=north/ominous=false/vault_state=active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%vault,state=facing=north/ominous=false/vault_state=ejecting,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%vault,state=facing=north/ominous=false/vault_state=inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%vault,state=facing=north/ominous=false/vault_state=unlocking,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%vault,state=facing=north/ominous=true/vault_state=active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%vault,state=facing=north/ominous=true/vault_state=ejecting,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%vault,state=facing=north/ominous=true/vault_state=inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%vault,state=facing=north/ominous=true/vault_state=unlocking,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%vault,state=facing=south/ominous=false/vault_state=active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%vault,state=facing=south/ominous=false/vault_state=ejecting,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%vault,state=facing=south/ominous=false/vault_state=inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%vault,state=facing=south/ominous=false/vault_state=unlocking,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%vault,state=facing=south/ominous=true/vault_state=active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%vault,state=facing=south/ominous=true/vault_state=ejecting,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%vault,state=facing=south/ominous=true/vault_state=inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%vault,state=facing=south/ominous=true/vault_state=unlocking,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%vault,state=facing=west/ominous=false/vault_state=active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%vault,state=facing=west/ominous=false/vault_state=ejecting,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%vault,state=facing=west/ominous=false/vault_state=inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%vault,state=facing=west/ominous=false/vault_state=unlocking,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%vault,state=facing=west/ominous=true/vault_state=active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%vault,state=facing=west/ominous=true/vault_state=ejecting,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%vault,state=facing=west/ominous=true/vault_state=inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%vault,state=facing=west/ominous=true/vault_state=unlocking,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:n/0/16.000000/0.000000/0.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/13.000000:e/0/16.000000/0.000000/0.000000/13.000000:s/0/16.000000/0.000000/0.000000/13.000000:u/0/16.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%vine,state=east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.800000:16.000000/16.000000/0.800000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%vine,state=east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.800000:16.000000/16.000000/0.800000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%vine,state=east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.800000:16.000000/16.000000/0.800000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%vine,state=east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.800000:16.000000/16.000000/0.800000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%vine,state=east:false/north:false/south:false/up:false/west:false,box=0.000000/0.000000/0.800000:16.000000/16.000000/0.800000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%vine,state=east:true,box=0.000000/0.000000/0.800000:16.000000/16.000000/0.800000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%vine,state=north:true,box=0.000000/0.000000/0.800000:16.000000/16.000000/0.800000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%vine,state=south:true,box=0.000000/0.000000/0.800000:16.000000/16.000000/0.800000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%vine,state=up:true,box=0.000000/0.000000/0.800000:16.000000/16.000000/0.800000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0 +[1.21.4-]modellist:id=%vine,state=west:true,box=0.000000/0.000000/0.800000:16.000000/16.000000/0.800000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%wall_torch,state=facing=east,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000/-22.5/z/0/3.5/8 +[1.21.4-]modellist:id=%wall_torch,state=facing=north,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/270/0 +[1.21.4-]modellist:id=%wall_torch,state=facing=south,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/90/0 +[1.21.4-]modellist:id=%wall_torch,state=facing=west,box=-1.000000/3.500000/7.000000:1.000000/13.500000/9.000000:n/0/7.000000/6.000000/9.000000/16.000000:d/0/7.000000/13.000000/9.000000/15.000000:w/0/7.000000/6.000000/9.000000/16.000000:e/0/7.000000/6.000000/9.000000/16.000000:s/0/7.000000/6.000000/9.000000/16.000000:u/0/7.000000/6.000000/9.000000/8.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_button,state=face=ceiling/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%warped_button,state=face=ceiling/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/270/0 +[1.21.4-]modellist:id=%warped_button,state=face=ceiling/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%warped_button,state=face=ceiling/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/180/0 +[1.21.4-]modellist:id=%warped_button,state=face=ceiling/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%warped_button,state=face=ceiling/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/0/0 +[1.21.4-]modellist:id=%warped_button,state=face=ceiling/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%warped_button,state=face=ceiling/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/180/90/0 +[1.21.4-]modellist:id=%warped_button,state=face=floor/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_button,state=face=floor/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_button,state=face=floor/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%warped_button,state=face=floor/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000 +[1.21.4-]modellist:id=%warped_button,state=face=floor/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_button,state=face=floor/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_button,state=face=floor/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_button,state=face=floor/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_button,state=face=wall/facing=east/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%warped_button,state=face=wall/facing=east/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/90/0 +[1.21.4-]modellist:id=%warped_button,state=face=wall/facing=north/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%warped_button,state=face=wall/facing=north/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/0/0 +[1.21.4-]modellist:id=%warped_button,state=face=wall/facing=south/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%warped_button,state=face=wall/facing=south/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/180/0 +[1.21.4-]modellist:id=%warped_button,state=face=wall/facing=west/powered=false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%warped_button,state=face=wall/facing=west/powered=true,box=5.000000/0.000000/6.000000:11.000000/1.020000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/6.000000/11.000000/10.000000:R/90/270/0 +[1.21.4-]modellist:id=%warped_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%warped_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%warped_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%warped_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%warped_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%warped_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%warped_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%warped_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%warped_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_fence,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000 +[1.21.4-]modellist:id=%warped_fence,state=east:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_fence,state=north:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%warped_fence,state=south:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_fence,state=west:true,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_fence_gate,state=facing=east/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_fence_gate,state=facing=east/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_fence_gate,state=facing=east/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_fence_gate,state=facing=east/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_fence_gate,state=facing=north/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_fence_gate,state=facing=north/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_fence_gate,state=facing=north/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_fence_gate,state=facing=north/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_fence_gate,state=facing=south/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%warped_fence_gate,state=facing=south/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%warped_fence_gate,state=facing=south/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000 +[1.21.4-]modellist:id=%warped_fence_gate,state=facing=south/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%warped_fence_gate,state=facing=west/in_wall=false/open=false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_fence_gate,state=facing=west/in_wall=false/open=true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_fence_gate,state=facing=west/in_wall=true/open=false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_fence_gate,state=facing=west/in_wall=true/open=true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_fungus,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%warped_pressure_plate,state=powered=false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%warped_pressure_plate,state=powered=true,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000 +[1.21.4-]modellist:id=%warped_roots,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%warped_shelf,state=facing:east,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/90/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/90/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_shelf,state=facing:east/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_shelf,state=facing:east/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_shelf,state=facing:east/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_shelf,state=facing:east/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_shelf,state=facing:east/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_shelf,state=facing:north,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000 +[1.21.4-]modellist:id=%warped_shelf,state=facing:north/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000 +[1.21.4-]modellist:id=%warped_shelf,state=facing:north/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%warped_shelf,state=facing:north/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000 +[1.21.4-]modellist:id=%warped_shelf,state=facing:north/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000 +[1.21.4-]modellist:id=%warped_shelf,state=facing:north/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%warped_shelf,state=facing:south,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/180/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/180/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_shelf,state=facing:south/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_shelf,state=facing:south/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_shelf,state=facing:south/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_shelf,state=facing:south/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_shelf,state=facing:south/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_shelf,state=facing:west,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:d/0/16.000000/6.000000/8.000000/4.500000:w/0/14.500000/0.000000/16.000000/8.000000:e/0/8.000000/0.000000/9.500000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/16.000000/5.000000/8.000000/3.500000:R/0/270/0,box=0.000000/0.000000/11.000000:16.000000/4.000000/13.000000:n/0/0.000000/6.000000/8.000000/8.000000:d/0/16.000000/4.500000/8.000000/3.500000:w/0/5.500000/6.000000/6.500000/8.000000:e/0/1.500000/6.000000/2.500000/8.000000:u/0/8.000000/3.500000/16.000000/4.500000:R/0/270/0,box=0.000000/12.000000/11.000000:16.000000/16.000000/13.000000:n/0/0.000000/0.000000/8.000000/2.000000:d/0/8.000000/5.000000/16.000000/6.000000:w/0/5.500000/0.000000/6.500000/2.000000:e/0/1.500000/0.000000/2.500000/2.000000:u/0/16.000000/6.000000/8.000000/5.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_shelf,state=facing:west/powered:false,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/2.000000/8.000000/6.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_shelf,state=facing:west/powered:true/side_chain:center,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/12.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_shelf,state=facing:west/powered:true/side_chain:left,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/0.000000/8.000000/8.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_shelf,state=facing:west/powered:true/side_chain:right,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/8.000000/16.000000/12.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_shelf,state=facing:west/powered:true/side_chain:unconnected,box=0.000000/4.000000/13.000000:16.000000/12.000000/13.000000:n/0/8.000000/12.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%warped_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%warped_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%warped_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%warped_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%warped_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%warped_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%warped_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%warped_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%warped_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%warped_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/270/0 +[1.21.4-]modellist:id=%warped_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%warped_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%warped_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%warped_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/180/0 +[1.21.4-]modellist:id=%warped_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%warped_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/0/0 +[1.21.4-]modellist:id=%warped_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%warped_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/90/0 +[1.21.4-]modellist:id=%water_cauldron,state=level=1,box=0.000000/3.000000/0.000000:2.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/2.000000:14.000000/4.000000/14.000000:d/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/3.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/0.000000:14.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/14.000000:14.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:4.000000/3.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/2.000000:2.000000/3.000000/4.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/0.000000:16.000000/3.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/2.000000:16.000000/3.000000/4.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/14.000000:4.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/12.000000:2.000000/3.000000/14.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/14.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/12.000000:16.000000/3.000000/14.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/4.000000/2.000000:14.000000/9.000000/14.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%water_cauldron,state=level=2,box=0.000000/3.000000/0.000000:2.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/2.000000:14.000000/4.000000/14.000000:d/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/3.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/0.000000:14.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/14.000000:14.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:4.000000/3.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/2.000000:2.000000/3.000000/4.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/0.000000:16.000000/3.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/2.000000:16.000000/3.000000/4.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/14.000000:4.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/12.000000:2.000000/3.000000/14.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/14.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/12.000000:16.000000/3.000000/14.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/4.000000/2.000000:14.000000/12.000000/14.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%water_cauldron,state=level=3,box=0.000000/3.000000/0.000000:2.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/2.000000:14.000000/4.000000/14.000000:d/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/3.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/0.000000:14.000000/16.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/3.000000/14.000000:14.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:4.000000/3.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/2.000000:2.000000/3.000000/4.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/0.000000:16.000000/3.000000/2.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/2.000000:16.000000/3.000000/4.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/14.000000:4.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/12.000000:2.000000/3.000000/14.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=12.000000/0.000000/14.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=14.000000/0.000000/12.000000:16.000000/3.000000/14.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=2.000000/4.000000/2.000000:14.000000/15.000000/14.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_copper_bars,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%waxed_copper_bars,state=east:false/north:false/south:false/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/16.000000/8.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%waxed_copper_bars,state=east:false/north:false/south:false/west:true,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_copper_bars,state=east:false/north:false/south:true/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%waxed_copper_bars,state=east:false/north:true/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%waxed_copper_bars,state=east:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_copper_bars,state=east:true/north:false/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_copper_bars,state=north:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%waxed_copper_bars,state=south:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%waxed_copper_bars,state=west:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_copper_chain,state=axis=x,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/90/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%waxed_copper_chain,state=axis=y,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%waxed_copper_chain,state=axis=z,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/0/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_copper_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_copper_lantern,state=hanging=false,box=5.000000/0.000000/5.000000:11.000000/7.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/7.000000/6.000000:10.000000/9.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/9.000000/8.000000:9.500000/11.000000/8.000000:n/0/14.000000/1.000000/11.000000/3.000000:s/0/11.000000/1.000000/14.000000/3.000000/45/y/8/8/8,box=8.000000/9.000000/6.500000:8.000000/11.000000/9.500000:w/0/14.000000/10.000000/11.000000/12.000000:e/0/11.000000/10.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%waxed_copper_lantern,state=hanging=true,box=5.000000/1.000000/5.000000:11.000000/8.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/8.000000/6.000000:10.000000/10.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:d/0/1.000000/10.000000/5.000000/14.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/11.000000/8.000000:9.500000/15.000000/8.000000:n/0/14.000000/1.000000/11.000000/5.000000:s/0/11.000000/1.000000/14.000000/5.000000/45/y/8/8/8,box=8.000000/10.000000/6.500000:8.000000/16.000000/9.500000:w/0/14.000000/6.000000/11.000000/12.000000:e/0/11.000000/6.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%waxed_copper_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_copper_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_copper_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_copper_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_copper_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_copper_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%waxed_copper_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_copper_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%waxed_copper_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_copper_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_copper_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_copper_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_copper_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_copper_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_copper_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_copper_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_cut_copper_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_cut_copper_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_cut_copper_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_bars,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_bars,state=east:false/north:false/south:false/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/16.000000/8.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_bars,state=east:false/north:false/south:false/west:true,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_bars,state=east:false/north:false/south:true/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_bars,state=east:false/north:true/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_bars,state=east:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_bars,state=east:true/north:false/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_bars,state=north:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_bars,state=south:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_bars,state=west:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_chain,state=axis=x,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/90/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_chain,state=axis=y,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%waxed_exposed_copper_chain,state=axis=z,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/0/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_lantern,state=hanging=false,box=5.000000/0.000000/5.000000:11.000000/7.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/7.000000/6.000000:10.000000/9.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/9.000000/8.000000:9.500000/11.000000/8.000000:n/0/14.000000/1.000000/11.000000/3.000000:s/0/11.000000/1.000000/14.000000/3.000000/45/y/8/8/8,box=8.000000/9.000000/6.500000:8.000000/11.000000/9.500000:w/0/14.000000/10.000000/11.000000/12.000000:e/0/11.000000/10.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%waxed_exposed_copper_lantern,state=hanging=true,box=5.000000/1.000000/5.000000:11.000000/8.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/8.000000/6.000000:10.000000/10.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:d/0/1.000000/10.000000/5.000000/14.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/11.000000/8.000000:9.500000/15.000000/8.000000:n/0/14.000000/1.000000/11.000000/5.000000:s/0/11.000000/1.000000/14.000000/5.000000/45/y/8/8/8,box=8.000000/10.000000/6.500000:8.000000/16.000000/9.500000:w/0/14.000000/6.000000/11.000000/12.000000:e/0/11.000000/6.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%waxed_exposed_copper_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_exposed_copper_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_copper_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_exposed_cut_copper_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_exposed_lightning_rod,state=facing=down/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_exposed_lightning_rod,state=facing=down/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_exposed_lightning_rod,state=facing=east/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%waxed_exposed_lightning_rod,state=facing=east/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%waxed_exposed_lightning_rod,state=facing=north/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%waxed_exposed_lightning_rod,state=facing=north/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%waxed_exposed_lightning_rod,state=facing=south/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%waxed_exposed_lightning_rod,state=facing=south/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%waxed_exposed_lightning_rod,state=facing=up/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_lightning_rod,state=facing=up/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.21.4-]modellist:id=%waxed_exposed_lightning_rod,state=facing=west/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%waxed_exposed_lightning_rod,state=facing=west/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%waxed_lightning_rod,state=facing=down/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_lightning_rod,state=facing=down/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_lightning_rod,state=facing=east/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%waxed_lightning_rod,state=facing=east/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%waxed_lightning_rod,state=facing=north/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%waxed_lightning_rod,state=facing=north/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%waxed_lightning_rod,state=facing=south/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%waxed_lightning_rod,state=facing=south/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%waxed_lightning_rod,state=facing=up/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.21.4-]modellist:id=%waxed_lightning_rod,state=facing=up/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.21.4-]modellist:id=%waxed_lightning_rod,state=facing=west/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%waxed_lightning_rod,state=facing=west/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_bars,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_bars,state=east:false/north:false/south:false/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/16.000000/8.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_bars,state=east:false/north:false/south:false/west:true,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_bars,state=east:false/north:false/south:true/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_bars,state=east:false/north:true/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_bars,state=east:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_bars,state=east:true/north:false/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_bars,state=north:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_bars,state=south:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_bars,state=west:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_chain,state=axis=x,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/90/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_chain,state=axis=y,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%waxed_oxidized_copper_chain,state=axis=z,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/0/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_lantern,state=hanging=false,box=5.000000/0.000000/5.000000:11.000000/7.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/7.000000/6.000000:10.000000/9.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/9.000000/8.000000:9.500000/11.000000/8.000000:n/0/14.000000/1.000000/11.000000/3.000000:s/0/11.000000/1.000000/14.000000/3.000000/45/y/8/8/8,box=8.000000/9.000000/6.500000:8.000000/11.000000/9.500000:w/0/14.000000/10.000000/11.000000/12.000000:e/0/11.000000/10.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%waxed_oxidized_copper_lantern,state=hanging=true,box=5.000000/1.000000/5.000000:11.000000/8.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/8.000000/6.000000:10.000000/10.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:d/0/1.000000/10.000000/5.000000/14.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/11.000000/8.000000:9.500000/15.000000/8.000000:n/0/14.000000/1.000000/11.000000/5.000000:s/0/11.000000/1.000000/14.000000/5.000000/45/y/8/8/8,box=8.000000/10.000000/6.500000:8.000000/16.000000/9.500000:w/0/14.000000/6.000000/11.000000/12.000000:e/0/11.000000/6.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%waxed_oxidized_copper_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_copper_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_copper_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_cut_copper_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_lightning_rod,state=facing=down/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_oxidized_lightning_rod,state=facing=down/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_oxidized_lightning_rod,state=facing=east/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_lightning_rod,state=facing=east/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%waxed_oxidized_lightning_rod,state=facing=north/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%waxed_oxidized_lightning_rod,state=facing=north/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%waxed_oxidized_lightning_rod,state=facing=south/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_lightning_rod,state=facing=south/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%waxed_oxidized_lightning_rod,state=facing=up/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_lightning_rod,state=facing=up/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.21.4-]modellist:id=%waxed_oxidized_lightning_rod,state=facing=west/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%waxed_oxidized_lightning_rod,state=facing=west/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_bars,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_bars,state=east:false/north:false/south:false/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/16.000000/8.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_bars,state=east:false/north:false/south:false/west:true,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_bars,state=east:false/north:false/south:true/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_bars,state=east:false/north:true/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_bars,state=east:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_bars,state=east:true/north:false/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_bars,state=north:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_bars,state=south:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_bars,state=west:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_chain,state=axis=x,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/90/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_chain,state=axis=y,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%waxed_weathered_copper_chain,state=axis=z,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/0/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_lantern,state=hanging=false,box=5.000000/0.000000/5.000000:11.000000/7.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/7.000000/6.000000:10.000000/9.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/9.000000/8.000000:9.500000/11.000000/8.000000:n/0/14.000000/1.000000/11.000000/3.000000:s/0/11.000000/1.000000/14.000000/3.000000/45/y/8/8/8,box=8.000000/9.000000/6.500000:8.000000/11.000000/9.500000:w/0/14.000000/10.000000/11.000000/12.000000:e/0/11.000000/10.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%waxed_weathered_copper_lantern,state=hanging=true,box=5.000000/1.000000/5.000000:11.000000/8.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/8.000000/6.000000:10.000000/10.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:d/0/1.000000/10.000000/5.000000/14.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/11.000000/8.000000:9.500000/15.000000/8.000000:n/0/14.000000/1.000000/11.000000/5.000000:s/0/11.000000/1.000000/14.000000/5.000000/45/y/8/8/8,box=8.000000/10.000000/6.500000:8.000000/16.000000/9.500000:w/0/14.000000/6.000000/11.000000/12.000000:e/0/11.000000/6.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%waxed_weathered_copper_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_weathered_copper_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_copper_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%waxed_weathered_cut_copper_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%waxed_weathered_lightning_rod,state=facing=down/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_weathered_lightning_rod,state=facing=down/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%waxed_weathered_lightning_rod,state=facing=east/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%waxed_weathered_lightning_rod,state=facing=east/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%waxed_weathered_lightning_rod,state=facing=north/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%waxed_weathered_lightning_rod,state=facing=north/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%waxed_weathered_lightning_rod,state=facing=south/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%waxed_weathered_lightning_rod,state=facing=south/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%waxed_weathered_lightning_rod,state=facing=up/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_lightning_rod,state=facing=up/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.21.4-]modellist:id=%waxed_weathered_lightning_rod,state=facing=west/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%waxed_weathered_lightning_rod,state=facing=west/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%weathered_copper_bars,box=7.000000/0.001000/7.000000:9.000000/0.001000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000,box=7.000000/15.999000/7.000000:9.000000/15.999000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%weathered_copper_bars,state=east:false/north:false/south:false/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/7.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/16.000000/8.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%weathered_copper_bars,state=east:false/north:false/south:false/west:true,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_copper_bars,state=east:false/north:false/south:true/west:false,box=8.000000/0.000000/7.000000:8.000000/16.000000/8.000000:w/0/8.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/7.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:s/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%weathered_copper_bars,state=east:false/north:true/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%weathered_copper_bars,state=east:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_copper_bars,state=east:true/north:false/south:false/west:false,box=8.000000/0.000000/8.000000:8.000000/16.000000/9.000000:w/0/8.000000/0.000000/7.000000/16.000000:e/0/7.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_copper_bars,state=north:true,box=8.000000/0.000000/0.000000:8.000000/16.000000/8.000000:w/0/16.000000/0.000000/8.000000/16.000000:e/0/8.000000/0.000000/16.000000/16.000000,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000,box=7.000000/0.001000/0.000000:9.000000/0.001000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000,box=7.000000/15.999000/0.000000:9.000000/15.999000/7.000000:d/0/9.000000/0.000000/7.000000/7.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%weathered_copper_bars,state=south:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%weathered_copper_bars,state=west:true,box=8.000000/0.000000/8.000000:8.000000/16.000000/16.000000:w/0/8.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/8.000000/16.000000:R/0/90/0,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/0.001000/9.000000:9.000000/0.001000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0,box=7.000000/15.999000/9.000000:9.000000/15.999000/16.000000:d/0/9.000000/9.000000/7.000000/16.000000:u/0/7.000000/9.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_copper_chain,state=axis=x,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/90/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%weathered_copper_chain,state=axis=y,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%weathered_copper_chain,state=axis=z,box=6.500000/0.000000/8.000000:9.500000/16.000000/8.000000:n/0/3.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/90/0/0,box=8.000000/0.000000/6.500000:8.000000/16.000000/9.500000:w/0/6.000000/0.000000/3.000000/16.000000:e/0/3.000000/0.000000/6.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=east/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=east/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=east/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=east/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=east/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=east/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=east/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=east/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=north/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=north/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=north/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=north/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=north/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=north/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=north/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=north/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=south/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=south/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=south/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=south/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=south/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=south/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=south/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=south/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=west/half=lower/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=west/half=lower/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=west/half=lower/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=west/half=lower/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=west/half=upper/hinge=left/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=west/half=upper/hinge=left/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=west/half=upper/hinge=right/open=false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0 +[1.21.4-]modellist:id=%weathered_copper_door,state=facing=west/half=upper/hinge=right/open=true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_copper_lantern,state=hanging=false,box=5.000000/0.000000/5.000000:11.000000/7.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/7.000000/6.000000:10.000000/9.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/9.000000/8.000000:9.500000/11.000000/8.000000:n/0/14.000000/1.000000/11.000000/3.000000:s/0/11.000000/1.000000/14.000000/3.000000/45/y/8/8/8,box=8.000000/9.000000/6.500000:8.000000/11.000000/9.500000:w/0/14.000000/10.000000/11.000000/12.000000:e/0/11.000000/10.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%weathered_copper_lantern,state=hanging=true,box=5.000000/1.000000/5.000000:11.000000/8.000000/11.000000:n/0/0.000000/2.000000/6.000000/9.000000:d/0/0.000000/9.000000/6.000000/15.000000:w/0/0.000000/2.000000/6.000000/9.000000:e/0/0.000000/2.000000/6.000000/9.000000:s/0/0.000000/2.000000/6.000000/9.000000:u/0/0.000000/9.000000/6.000000/15.000000,box=6.000000/8.000000/6.000000:10.000000/10.000000/10.000000:n/0/1.000000/0.000000/5.000000/2.000000:d/0/1.000000/10.000000/5.000000/14.000000:w/0/1.000000/0.000000/5.000000/2.000000:e/0/1.000000/0.000000/5.000000/2.000000:s/0/1.000000/0.000000/5.000000/2.000000:u/0/1.000000/10.000000/5.000000/14.000000,box=6.500000/11.000000/8.000000:9.500000/15.000000/8.000000:n/0/14.000000/1.000000/11.000000/5.000000:s/0/11.000000/1.000000/14.000000/5.000000/45/y/8/8/8,box=8.000000/10.000000/6.500000:8.000000/16.000000/9.500000:w/0/14.000000/6.000000/11.000000/12.000000:e/0/11.000000/6.000000/14.000000/12.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%weathered_copper_trapdoor,state=facing=east/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%weathered_copper_trapdoor,state=facing=east/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_copper_trapdoor,state=facing=east/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%weathered_copper_trapdoor,state=facing=east/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_copper_trapdoor,state=facing=north/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%weathered_copper_trapdoor,state=facing=north/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%weathered_copper_trapdoor,state=facing=north/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%weathered_copper_trapdoor,state=facing=north/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000 +[1.21.4-]modellist:id=%weathered_copper_trapdoor,state=facing=south/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%weathered_copper_trapdoor,state=facing=south/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%weathered_copper_trapdoor,state=facing=south/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%weathered_copper_trapdoor,state=facing=south/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/180/0 +[1.21.4-]modellist:id=%weathered_copper_trapdoor,state=facing=west/half=bottom/open=false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%weathered_copper_trapdoor,state=facing=west/half=bottom/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%weathered_copper_trapdoor,state=facing=west/half=top/open=false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/13.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/16.000000/16.000000/13.000000:e/0/0.000000/16.000000/16.000000/13.000000:s/0/0.000000/16.000000/16.000000/13.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%weathered_copper_trapdoor,state=facing=west/half=top/open=true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/13.000000/16.000000:e/0/13.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/16.000000/16.000000/13.000000:R/0/270/0 +[1.21.4-]modellist:id=%weathered_cut_copper_slab,state=type=bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%weathered_cut_copper_slab,state=type=top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=east/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=east/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=east/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=east/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=east/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=east/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=east/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=east/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=east/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=east/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=north/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=north/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=north/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=north/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=north/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=north/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=north/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=north/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=north/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=north/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=south/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=south/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=south/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=south/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=south/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=south/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=south/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=south/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=south/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=south/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=west/half=bottom/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=west/half=bottom/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=west/half=bottom/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=west/half=bottom/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=west/half=bottom/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=west/half=top/shape=inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=west/half=top/shape=inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=west/half=top/shape=outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=west/half=top/shape=outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0 +[1.21.4-]modellist:id=%weathered_cut_copper_stairs,state=facing=west/half=top/shape=straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0 +[1.21.4-]modellist:id=%weathered_lightning_rod,state=facing=down/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%weathered_lightning_rod,state=facing=down/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0 +[1.21.4-]modellist:id=%weathered_lightning_rod,state=facing=east/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%weathered_lightning_rod,state=facing=east/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0 +[1.21.4-]modellist:id=%weathered_lightning_rod,state=facing=north/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%weathered_lightning_rod,state=facing=north/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0 +[1.21.4-]modellist:id=%weathered_lightning_rod,state=facing=south/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%weathered_lightning_rod,state=facing=south/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0 +[1.21.4-]modellist:id=%weathered_lightning_rod,state=facing=up/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.21.4-]modellist:id=%weathered_lightning_rod,state=facing=up/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000 +[1.21.4-]modellist:id=%weathered_lightning_rod,state=facing=west/powered=false,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%weathered_lightning_rod,state=facing=west/powered=true,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0 +[1.21.4-]modellist:id=%weeping_vines,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%weeping_vines_plant,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%wheat,state=age=0,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%wheat,state=age=1,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%wheat,state=age=2,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%wheat,state=age=3,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%wheat,state=age=4,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%wheat,state=age=5,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%wheat,state=age=6,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%wheat,state=age=7,box=4.000000/-1.000000/0.000000:4.000000/15.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=12.000000/-1.000000/0.000000:12.000000/15.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/-1.000000/4.000000:16.000000/15.000000/4.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/-1.000000/12.000000:16.000000/15.000000/12.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%white_candle,state=candles=1/lit=false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%white_candle,state=candles=1/lit=true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%white_candle,state=candles=2/lit=false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%white_candle,state=candles=2/lit=true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%white_candle,state=candles=3/lit=false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%white_candle,state=candles=3/lit=true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%white_candle,state=candles=4/lit=false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%white_candle,state=candles=4/lit=true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%white_candle_cake,state=lit=false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%white_candle_cake,state=lit=true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%white_carpet,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%white_stained_glass_pane,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%white_stained_glass_pane,state=east:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%white_stained_glass_pane,state=east:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%white_stained_glass_pane,state=north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%white_stained_glass_pane,state=north:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%white_stained_glass_pane,state=south:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%white_stained_glass_pane,state=south:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%white_stained_glass_pane,state=west:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%white_stained_glass_pane,state=west:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%white_tulip,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%wildflowers,state=facing:east,box=0.000000/2.990000/0.000000:8.000000/2.990000/8.000000:d/0/0.000000/8.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/90/0,box=4.250000/0.000000/-2.600000:4.250000/2.990000/-1.600000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/90/0,box=3.750000/0.000000/-2.100000:4.750000/2.990000/-2.100000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/90/0,box=4.900000/0.000000/2.300000:4.900000/2.990000/3.300000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/90/0,box=4.400000/0.000000/2.800000:5.400000/2.990000/2.800000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/90/0,box=9.150000/0.000000/-0.450000:9.150000/2.990000/0.550000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/90/0,box=8.650000/0.000000/0.050000:9.650000/2.990000/0.050000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%wildflowers,state=facing:east/flower_amount:2|3|4,box=0.000000/1.000000/8.000000:8.000000/1.000000/16.000000:d/0/0.000000/16.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0,box=0.000000/1.000000/8.000000:8.000000/1.000000/16.000000:d/0/0.000000/16.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0,box=10.150000/0.000000/5.250000:11.150000/1.000000/5.250000:n/0/0.000000/6.000000/1.000000/7.000000:s/0/0.000000/6.000000/1.000000/7.000000:R/0/90/0,box=10.650000/0.000000/4.750000:10.650000/1.000000/5.750000:w/0/0.000000/6.000000/1.000000/7.000000:e/0/0.000000/6.000000/1.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%wildflowers,state=facing:east/flower_amount:3|4,box=8.000000/2.000000/8.000000:16.000000/2.000000/16.000000:d/0/8.000000/16.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0,box=17.650000/0.000000/1.900000:18.650000/2.000000/1.900000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/90/0,box=18.150000/0.000000/1.400000:18.150000/2.000000/2.400000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/90/0,box=17.650000/0.000000/-3.350000:17.650000/2.000000/-2.350000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/90/0,box=17.150000/0.000000/-2.850000:18.150000/2.000000/-2.850000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/90/0,box=13.400000/0.000000/-0.500000:13.400000/2.000000/0.500000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/90/0,box=12.900000/0.000000/0.000000:13.900000/2.000000/0.000000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%wildflowers,state=facing:east/flower_amount:4,box=8.000000/2.000000/0.000000:16.000000/2.000000/8.000000:d/0/8.000000/8.000000/16.000000/0.000000:u/0/8.000000/0.000000/16.000000/8.000000:R/0/90/0,box=12.400000/0.000000/-7.700000:12.400000/2.000000/-6.700000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/90/0,box=11.900000/0.000000/-7.200000:12.900000/2.000000/-7.200000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%wildflowers,state=facing:north,box=0.000000/2.990000/0.000000:8.000000/2.990000/8.000000:d/0/0.000000/8.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/8.000000,box=4.250000/0.000000/-2.600000:4.250000/2.990000/-1.600000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000/-45/y/0/0/0,box=3.750000/0.000000/-2.100000:4.750000/2.990000/-2.100000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000/-45/y/0/0/0,box=4.900000/0.000000/2.300000:4.900000/2.990000/3.300000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000/-45/y/0/0/0,box=4.400000/0.000000/2.800000:5.400000/2.990000/2.800000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000/-45/y/0/0/0,box=9.150000/0.000000/-0.450000:9.150000/2.990000/0.550000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000/-45/y/0/0/0,box=8.650000/0.000000/0.050000:9.650000/2.990000/0.050000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000/-45/y/0/0/0 +[1.21.4-]modellist:id=%wildflowers,state=facing:north/flower_amount:2|3|4,box=0.000000/1.000000/8.000000:8.000000/1.000000/16.000000:d/0/0.000000/16.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000,box=0.000000/1.000000/8.000000:8.000000/1.000000/16.000000:d/0/0.000000/16.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000,box=10.150000/0.000000/5.250000:11.150000/1.000000/5.250000:n/0/0.000000/6.000000/1.000000/7.000000:s/0/0.000000/6.000000/1.000000/7.000000/-45/y/0/0/1,box=10.650000/0.000000/4.750000:10.650000/1.000000/5.750000:w/0/0.000000/6.000000/1.000000/7.000000:e/0/0.000000/6.000000/1.000000/7.000000/-45/y/0/0/1 +[1.21.4-]modellist:id=%wildflowers,state=facing:north/flower_amount:3|4,box=8.000000/2.000000/8.000000:16.000000/2.000000/16.000000:d/0/8.000000/16.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000,box=17.650000/0.000000/1.900000:18.650000/2.000000/1.900000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000/-45/y/0.5/0/0.5,box=18.150000/0.000000/1.400000:18.150000/2.000000/2.400000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000/-45/y/0.5/0/0.5,box=17.650000/0.000000/-3.350000:17.650000/2.000000/-2.350000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000/-45/y/0/0/0,box=17.150000/0.000000/-2.850000:18.150000/2.000000/-2.850000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000/-45/y/0/0/0,box=13.400000/0.000000/-0.500000:13.400000/2.000000/0.500000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000/-45/y/0/0/0,box=12.900000/0.000000/0.000000:13.900000/2.000000/0.000000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000/-45/y/0/0/0 +[1.21.4-]modellist:id=%wildflowers,state=facing:north/flower_amount:4,box=8.000000/2.000000/0.000000:16.000000/2.000000/8.000000:d/0/8.000000/8.000000/16.000000/0.000000:u/0/8.000000/0.000000/16.000000/8.000000,box=12.400000/0.000000/-7.700000:12.400000/2.000000/-6.700000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000/-45/y/-1/0/-3,box=11.900000/0.000000/-7.200000:12.900000/2.000000/-7.200000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000/-45/y/-1/0/-3 +[1.21.4-]modellist:id=%wildflowers,state=facing:south,box=0.000000/2.990000/0.000000:8.000000/2.990000/8.000000:d/0/0.000000/8.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/180/0,box=4.250000/0.000000/-2.600000:4.250000/2.990000/-1.600000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/180/0,box=3.750000/0.000000/-2.100000:4.750000/2.990000/-2.100000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/180/0,box=4.900000/0.000000/2.300000:4.900000/2.990000/3.300000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/180/0,box=4.400000/0.000000/2.800000:5.400000/2.990000/2.800000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/180/0,box=9.150000/0.000000/-0.450000:9.150000/2.990000/0.550000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/180/0,box=8.650000/0.000000/0.050000:9.650000/2.990000/0.050000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/180/0 +[1.21.4-]modellist:id=%wildflowers,state=facing:south/flower_amount:2|3|4,box=0.000000/1.000000/8.000000:8.000000/1.000000/16.000000:d/0/0.000000/16.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0,box=0.000000/1.000000/8.000000:8.000000/1.000000/16.000000:d/0/0.000000/16.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0,box=10.150000/0.000000/5.250000:11.150000/1.000000/5.250000:n/0/0.000000/6.000000/1.000000/7.000000:s/0/0.000000/6.000000/1.000000/7.000000:R/0/180/0,box=10.650000/0.000000/4.750000:10.650000/1.000000/5.750000:w/0/0.000000/6.000000/1.000000/7.000000:e/0/0.000000/6.000000/1.000000/7.000000:R/0/180/0 +[1.21.4-]modellist:id=%wildflowers,state=facing:south/flower_amount:3|4,box=8.000000/2.000000/8.000000:16.000000/2.000000/16.000000:d/0/8.000000/16.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0,box=17.650000/0.000000/1.900000:18.650000/2.000000/1.900000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/180/0,box=18.150000/0.000000/1.400000:18.150000/2.000000/2.400000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/180/0,box=17.650000/0.000000/-3.350000:17.650000/2.000000/-2.350000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/180/0,box=17.150000/0.000000/-2.850000:18.150000/2.000000/-2.850000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/180/0,box=13.400000/0.000000/-0.500000:13.400000/2.000000/0.500000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/180/0,box=12.900000/0.000000/0.000000:13.900000/2.000000/0.000000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/180/0 +[1.21.4-]modellist:id=%wildflowers,state=facing:south/flower_amount:4,box=8.000000/2.000000/0.000000:16.000000/2.000000/8.000000:d/0/8.000000/8.000000/16.000000/0.000000:u/0/8.000000/0.000000/16.000000/8.000000:R/0/180/0,box=12.400000/0.000000/-7.700000:12.400000/2.000000/-6.700000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/180/0,box=11.900000/0.000000/-7.200000:12.900000/2.000000/-7.200000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/180/0 +[1.21.4-]modellist:id=%wildflowers,state=facing:west,box=0.000000/2.990000/0.000000:8.000000/2.990000/8.000000:d/0/0.000000/8.000000/8.000000/0.000000:u/0/0.000000/0.000000/8.000000/8.000000:R/0/270/0,box=4.250000/0.000000/-2.600000:4.250000/2.990000/-1.600000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/270/0,box=3.750000/0.000000/-2.100000:4.750000/2.990000/-2.100000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/270/0,box=4.900000/0.000000/2.300000:4.900000/2.990000/3.300000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/270/0,box=4.400000/0.000000/2.800000:5.400000/2.990000/2.800000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/270/0,box=9.150000/0.000000/-0.450000:9.150000/2.990000/0.550000:w/0/0.000000/4.000000/1.000000/7.000000:e/0/0.000000/4.000000/1.000000/7.000000:R/0/270/0,box=8.650000/0.000000/0.050000:9.650000/2.990000/0.050000:n/0/0.000000/4.000000/1.000000/7.000000:s/0/0.000000/4.000000/1.000000/7.000000:R/0/270/0 +[1.21.4-]modellist:id=%wildflowers,state=facing:west/flower_amount:2|3|4,box=0.000000/1.000000/8.000000:8.000000/1.000000/16.000000:d/0/0.000000/16.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0,box=0.000000/1.000000/8.000000:8.000000/1.000000/16.000000:d/0/0.000000/16.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0,box=10.150000/0.000000/5.250000:11.150000/1.000000/5.250000:n/0/0.000000/6.000000/1.000000/7.000000:s/0/0.000000/6.000000/1.000000/7.000000:R/0/270/0,box=10.650000/0.000000/4.750000:10.650000/1.000000/5.750000:w/0/0.000000/6.000000/1.000000/7.000000:e/0/0.000000/6.000000/1.000000/7.000000:R/0/270/0 +[1.21.4-]modellist:id=%wildflowers,state=facing:west/flower_amount:3|4,box=8.000000/2.000000/8.000000:16.000000/2.000000/16.000000:d/0/8.000000/16.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0,box=17.650000/0.000000/1.900000:18.650000/2.000000/1.900000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/270/0,box=18.150000/0.000000/1.400000:18.150000/2.000000/2.400000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/270/0,box=17.650000/0.000000/-3.350000:17.650000/2.000000/-2.350000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/270/0,box=17.150000/0.000000/-2.850000:18.150000/2.000000/-2.850000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/270/0,box=13.400000/0.000000/-0.500000:13.400000/2.000000/0.500000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/270/0,box=12.900000/0.000000/0.000000:13.900000/2.000000/0.000000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/270/0 +[1.21.4-]modellist:id=%wildflowers,state=facing:west/flower_amount:4,box=8.000000/2.000000/0.000000:16.000000/2.000000/8.000000:d/0/8.000000/8.000000/16.000000/0.000000:u/0/8.000000/0.000000/16.000000/8.000000:R/0/270/0,box=12.400000/0.000000/-7.700000:12.400000/2.000000/-6.700000:w/0/0.000000/5.000000/1.000000/7.000000:e/0/0.000000/5.000000/1.000000/7.000000:R/0/270/0,box=11.900000/0.000000/-7.200000:12.900000/2.000000/-7.200000:n/0/0.000000/5.000000/1.000000/7.000000:s/0/0.000000/5.000000/1.000000/7.000000:R/0/270/0 +[1.21.4-]modellist:id=%wither_rose,box=0.800000/0.000000/8.000000:15.200000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8,box=8.000000/0.000000/0.800000:8.000000/16.000000/15.200000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000/45/y/8/8/8 +[1.21.4-]modellist:id=%yellow_candle,state=candles=1/lit=false,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%yellow_candle,state=candles=1/lit=true,box=7.000000/0.000000/7.000000:9.000000/6.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/6/8,box=7.500000/6.000000/8.000000:8.500000/7.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/6/8 +[1.21.4-]modellist:id=%yellow_candle,state=candles=2/lit=false,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%yellow_candle,state=candles=2/lit=true,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=9.000000/0.000000/6.000000:11.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/10/6/7,box=9.500000/6.000000/7.000000:10.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/10/6/7 +[1.21.4-]modellist:id=%yellow_candle,state=candles=3/lit=false,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%yellow_candle,state=candles=3/lit=true,box=7.000000/0.000000/9.000000:9.000000/3.000000/11.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/8/3/10,box=7.500000/3.000000/10.000000:8.500000/4.000000/10.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/8/3/10,box=5.000000/0.000000/7.000000:7.000000/5.000000/9.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/8,box=5.500000/5.000000/8.000000:6.500000/6.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/8,box=8.000000/0.000000/6.000000:10.000000/6.000000/8.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/7,box=8.500000/6.000000/7.000000:9.500000/7.000000/7.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/7 +[1.21.4-]modellist:id=%yellow_candle,state=candles=4/lit=false,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%yellow_candle,state=candles=4/lit=true,box=6.000000/0.000000/8.000000:8.000000/3.000000/10.000000:n/0/0.000000/8.000000/2.000000/11.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/11.000000:e/0/0.000000/8.000000/2.000000/11.000000:s/0/0.000000/8.000000/2.000000/11.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/7/3/9,box=6.500000/3.000000/9.000000:7.500000/4.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/7/3/9,box=9.000000/0.000000/8.000000:11.000000/5.000000/10.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/10/5/9,box=9.500000/5.000000/9.000000:10.500000/6.000000/9.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/10/5/9,box=5.000000/0.000000/5.000000:7.000000/5.000000/7.000000:n/0/0.000000/8.000000/2.000000/13.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/13.000000:e/0/0.000000/8.000000/2.000000/13.000000:s/0/0.000000/8.000000/2.000000/13.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/45/y/6/5/6,box=5.500000/5.000000/6.000000:6.500000/6.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/1.000000/5.000000/0.000000/6.000000/-45/y/6/5/6,box=8.000000/0.000000/5.000000:10.000000/6.000000/7.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/9/6/6,box=8.500000/6.000000/6.000000:9.500000/7.000000/6.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/9/6/6 +[1.21.4-]modellist:id=%yellow_candle_cake,state=lit=false,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%yellow_candle_cake,state=lit=true,box=1.000000/0.000000/1.000000:15.000000/8.000000/15.000000:n/0/0.000000/0.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=7.000000/8.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/8.000000/2.000000/14.000000:d/0/0.000000/14.000000/2.000000/16.000000:w/0/0.000000/8.000000/2.000000/14.000000:e/0/0.000000/8.000000/2.000000/14.000000:s/0/0.000000/8.000000/2.000000/14.000000:u/0/0.000000/6.000000/2.000000/8.000000,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/-45/y/8/14/8,box=7.500000/14.000000/8.000000:8.500000/15.000000/8.000000:n/0/0.000000/5.000000/1.000000/6.000000:s/0/0.000000/5.000000/1.000000/6.000000/45/y/8/14/8 +[1.21.4-]modellist:id=%yellow_carpet,box=0.000000/0.000000/0.000000:16.000000/1.000000/16.000000:n/0/0.000000/15.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/15.000000/16.000000/16.000000:e/0/0.000000/15.000000/16.000000/16.000000:s/0/0.000000/15.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000 +[1.21.4-]modellist:id=%yellow_stained_glass_pane,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:d/0/7.000000/7.000000/9.000000/9.000000:u/0/7.000000/7.000000/9.000000/9.000000 +[1.21.4-]modellist:id=%yellow_stained_glass_pane,state=east:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000 +[1.21.4-]modellist:id=%yellow_stained_glass_pane,state=east:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 +[1.21.4-]modellist:id=%yellow_stained_glass_pane,state=north:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000 +[1.21.4-]modellist:id=%yellow_stained_glass_pane,state=north:true,box=7.000000/0.000000/0.000000:9.000000/16.000000/7.000000:n/0/7.000000/0.000000/9.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/16.000000/0.000000/9.000000/16.000000:e/0/9.000000/0.000000/16.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%yellow_stained_glass_pane,state=south:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:e/0/7.000000/0.000000/9.000000/16.000000:R/0/90/0 +[1.21.4-]modellist:id=%yellow_stained_glass_pane,state=south:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000 +[1.21.4-]modellist:id=%yellow_stained_glass_pane,state=west:false,box=7.000000/0.000000/7.000000:9.000000/16.000000/9.000000:n/0/9.000000/0.000000/7.000000/16.000000:R/0/270/0 +[1.21.4-]modellist:id=%yellow_stained_glass_pane,state=west:true,box=7.000000/0.000000/9.000000:9.000000/16.000000/16.000000:d/0/7.000000/0.000000/9.000000/7.000000:w/0/7.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/7.000000/16.000000:s/0/7.000000/0.000000/9.000000/16.000000:u/0/7.000000/0.000000/9.000000/7.000000:R/0/90/0 diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/ambient_entity_effect.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/ambient_entity_effect.json new file mode 100644 index 000000000..3be9c3a95 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/ambient_entity_effect.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:effect_7", + "minecraft:effect_6", + "minecraft:effect_5", + "minecraft:effect_4", + "minecraft:effect_3", + "minecraft:effect_2", + "minecraft:effect_1", + "minecraft:effect_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/angry_villager.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/angry_villager.json new file mode 100644 index 000000000..ab50717b1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/angry_villager.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:angry" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/ash.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/ash.json new file mode 100644 index 000000000..ca698ca44 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/ash.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/bubble.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/bubble.json new file mode 100644 index 000000000..c9ad64490 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/bubble.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:bubble" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/bubble_column_up.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/bubble_column_up.json new file mode 100644 index 000000000..c9ad64490 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/bubble_column_up.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:bubble" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/bubble_pop.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/bubble_pop.json new file mode 100644 index 000000000..65ff9e5f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/bubble_pop.json @@ -0,0 +1,9 @@ +{ + "textures": [ + "minecraft:bubble_pop_0", + "minecraft:bubble_pop_1", + "minecraft:bubble_pop_2", + "minecraft:bubble_pop_3", + "minecraft:bubble_pop_4" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/campfire_cosy_smoke.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/campfire_cosy_smoke.json new file mode 100644 index 000000000..a99bffe8b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/campfire_cosy_smoke.json @@ -0,0 +1,16 @@ +{ + "textures": [ + "minecraft:big_smoke_0", + "minecraft:big_smoke_1", + "minecraft:big_smoke_2", + "minecraft:big_smoke_3", + "minecraft:big_smoke_4", + "minecraft:big_smoke_5", + "minecraft:big_smoke_6", + "minecraft:big_smoke_7", + "minecraft:big_smoke_8", + "minecraft:big_smoke_9", + "minecraft:big_smoke_10", + "minecraft:big_smoke_11" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/campfire_signal_smoke.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/campfire_signal_smoke.json new file mode 100644 index 000000000..a99bffe8b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/campfire_signal_smoke.json @@ -0,0 +1,16 @@ +{ + "textures": [ + "minecraft:big_smoke_0", + "minecraft:big_smoke_1", + "minecraft:big_smoke_2", + "minecraft:big_smoke_3", + "minecraft:big_smoke_4", + "minecraft:big_smoke_5", + "minecraft:big_smoke_6", + "minecraft:big_smoke_7", + "minecraft:big_smoke_8", + "minecraft:big_smoke_9", + "minecraft:big_smoke_10", + "minecraft:big_smoke_11" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/cherry_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/cherry_leaves.json new file mode 100644 index 000000000..c373f2e5b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/cherry_leaves.json @@ -0,0 +1,16 @@ +{ + "textures": [ + "minecraft:cherry_0", + "minecraft:cherry_1", + "minecraft:cherry_2", + "minecraft:cherry_3", + "minecraft:cherry_4", + "minecraft:cherry_5", + "minecraft:cherry_6", + "minecraft:cherry_7", + "minecraft:cherry_8", + "minecraft:cherry_9", + "minecraft:cherry_10", + "minecraft:cherry_11" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/cloud.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/cloud.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/cloud.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/composter.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/composter.json new file mode 100644 index 000000000..f9f9746ae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/composter.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:glint" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/copper_fire_flame.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/copper_fire_flame.json new file mode 100644 index 000000000..3708d7dc3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/copper_fire_flame.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:copper_fire_flame" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/crimson_spore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/crimson_spore.json new file mode 100644 index 000000000..ca698ca44 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/crimson_spore.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/crit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/crit.json new file mode 100644 index 000000000..735a9d74f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/crit.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:critical_hit" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/current_down.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/current_down.json new file mode 100644 index 000000000..c9ad64490 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/current_down.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:bubble" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/damage_indicator.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/damage_indicator.json new file mode 100644 index 000000000..3c9f32072 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/damage_indicator.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:damage" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dolphin.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dolphin.json new file mode 100644 index 000000000..ca698ca44 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dolphin.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dragon_breath.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dragon_breath.json new file mode 100644 index 000000000..e65716e39 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dragon_breath.json @@ -0,0 +1,7 @@ +{ + "textures": [ + "minecraft:generic_5", + "minecraft:generic_6", + "minecraft:generic_7" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_dripstone_lava.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_dripstone_lava.json new file mode 100644 index 000000000..987e9f30a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_dripstone_lava.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_hang" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_dripstone_water.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_dripstone_water.json new file mode 100644 index 000000000..987e9f30a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_dripstone_water.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_hang" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_honey.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_honey.json new file mode 100644 index 000000000..6a657af29 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_honey.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_hang" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_lava.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_lava.json new file mode 100644 index 000000000..987e9f30a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_lava.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_hang" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_obsidian_tear.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_obsidian_tear.json new file mode 100644 index 000000000..6a657af29 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_obsidian_tear.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_hang" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_water.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_water.json new file mode 100644 index 000000000..987e9f30a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dripping_water.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_hang" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dust.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dust.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dust.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dust_color_transition.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dust_color_transition.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dust_color_transition.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dust_plume.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dust_plume.json new file mode 100644 index 000000000..e0996e04f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/dust_plume.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/effect.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/effect.json new file mode 100644 index 000000000..3be9c3a95 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/effect.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:effect_7", + "minecraft:effect_6", + "minecraft:effect_5", + "minecraft:effect_4", + "minecraft:effect_3", + "minecraft:effect_2", + "minecraft:effect_1", + "minecraft:effect_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/egg_crack.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/egg_crack.json new file mode 100644 index 000000000..bab4ed655 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/egg_crack.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:glint" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/electric_spark.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/electric_spark.json new file mode 100644 index 000000000..aa3870da9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/electric_spark.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:glow" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/enchant.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/enchant.json new file mode 100644 index 000000000..d2175f03f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/enchant.json @@ -0,0 +1,30 @@ +{ + "textures": [ + "minecraft:sga_a", + "minecraft:sga_b", + "minecraft:sga_c", + "minecraft:sga_d", + "minecraft:sga_e", + "minecraft:sga_f", + "minecraft:sga_g", + "minecraft:sga_h", + "minecraft:sga_i", + "minecraft:sga_j", + "minecraft:sga_k", + "minecraft:sga_l", + "minecraft:sga_m", + "minecraft:sga_n", + "minecraft:sga_o", + "minecraft:sga_p", + "minecraft:sga_q", + "minecraft:sga_r", + "minecraft:sga_s", + "minecraft:sga_t", + "minecraft:sga_u", + "minecraft:sga_v", + "minecraft:sga_w", + "minecraft:sga_x", + "minecraft:sga_y", + "minecraft:sga_z" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/enchanted_hit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/enchanted_hit.json new file mode 100644 index 000000000..9dfa4dada --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/enchanted_hit.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:enchanted_hit" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/end_rod.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/end_rod.json new file mode 100644 index 000000000..4fdc55ffc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/end_rod.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:glitter_7", + "minecraft:glitter_6", + "minecraft:glitter_5", + "minecraft:glitter_4", + "minecraft:glitter_3", + "minecraft:glitter_2", + "minecraft:glitter_1", + "minecraft:glitter_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/entity_effect.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/entity_effect.json new file mode 100644 index 000000000..3be9c3a95 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/entity_effect.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:effect_7", + "minecraft:effect_6", + "minecraft:effect_5", + "minecraft:effect_4", + "minecraft:effect_3", + "minecraft:effect_2", + "minecraft:effect_1", + "minecraft:effect_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/explosion.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/explosion.json new file mode 100644 index 000000000..6e3e151a5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/explosion.json @@ -0,0 +1,20 @@ +{ + "textures": [ + "minecraft:explosion_0", + "minecraft:explosion_1", + "minecraft:explosion_2", + "minecraft:explosion_3", + "minecraft:explosion_4", + "minecraft:explosion_5", + "minecraft:explosion_6", + "minecraft:explosion_7", + "minecraft:explosion_8", + "minecraft:explosion_9", + "minecraft:explosion_10", + "minecraft:explosion_11", + "minecraft:explosion_12", + "minecraft:explosion_13", + "minecraft:explosion_14", + "minecraft:explosion_15" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_dripstone_lava.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_dripstone_lava.json new file mode 100644 index 000000000..520ad48bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_dripstone_lava.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_dripstone_water.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_dripstone_water.json new file mode 100644 index 000000000..520ad48bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_dripstone_water.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_dust.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_dust.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_dust.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_honey.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_honey.json new file mode 100644 index 000000000..2732837e3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_honey.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_lava.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_lava.json new file mode 100644 index 000000000..520ad48bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_lava.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_nectar.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_nectar.json new file mode 100644 index 000000000..2732837e3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_nectar.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_obsidian_tear.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_obsidian_tear.json new file mode 100644 index 000000000..2732837e3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_obsidian_tear.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_spore_blossom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_spore_blossom.json new file mode 100644 index 000000000..2732837e3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_spore_blossom.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_water.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_water.json new file mode 100644 index 000000000..520ad48bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/falling_water.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/firefly.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/firefly.json new file mode 100644 index 000000000..592e0f8f1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/firefly.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:firefly" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/firework.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/firework.json new file mode 100644 index 000000000..9e4709bc6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/firework.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:spark_7", + "minecraft:spark_6", + "minecraft:spark_5", + "minecraft:spark_4", + "minecraft:spark_3", + "minecraft:spark_2", + "minecraft:spark_1", + "minecraft:spark_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/fishing.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/fishing.json new file mode 100644 index 000000000..49f427bca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/fishing.json @@ -0,0 +1,8 @@ +{ + "textures": [ + "minecraft:splash_0", + "minecraft:splash_1", + "minecraft:splash_2", + "minecraft:splash_3" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/flame.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/flame.json new file mode 100644 index 000000000..f506424da --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/flame.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:flame" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/flash.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/flash.json new file mode 100644 index 000000000..9d842205b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/flash.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:flash" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/glow.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/glow.json new file mode 100644 index 000000000..8c0a8d204 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/glow.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:glow" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/glow_squid_ink.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/glow_squid_ink.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/glow_squid_ink.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/gust.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/gust.json new file mode 100644 index 000000000..ae6f2dd90 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/gust.json @@ -0,0 +1,16 @@ +{ + "textures": [ + "minecraft:gust_0", + "minecraft:gust_1", + "minecraft:gust_2", + "minecraft:gust_3", + "minecraft:gust_4", + "minecraft:gust_5", + "minecraft:gust_6", + "minecraft:gust_7", + "minecraft:gust_8", + "minecraft:gust_9", + "minecraft:gust_10", + "minecraft:gust_11" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/happy_villager.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/happy_villager.json new file mode 100644 index 000000000..f9f9746ae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/happy_villager.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:glint" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/heart.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/heart.json new file mode 100644 index 000000000..686a2dcf3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/heart.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:heart" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/infested.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/infested.json new file mode 100644 index 000000000..5910ce70c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/infested.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:infested" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/instant_effect.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/instant_effect.json new file mode 100644 index 000000000..7ec70d324 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/instant_effect.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:spell_7", + "minecraft:spell_6", + "minecraft:spell_5", + "minecraft:spell_4", + "minecraft:spell_3", + "minecraft:spell_2", + "minecraft:spell_1", + "minecraft:spell_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/landing_honey.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/landing_honey.json new file mode 100644 index 000000000..3af906fe9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/landing_honey.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_land" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/landing_lava.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/landing_lava.json new file mode 100644 index 000000000..89230de9a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/landing_lava.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_land" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/landing_obsidian_tear.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/landing_obsidian_tear.json new file mode 100644 index 000000000..3af906fe9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/landing_obsidian_tear.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_land" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/large_smoke.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/large_smoke.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/large_smoke.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/lava.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/lava.json new file mode 100644 index 000000000..da6979fed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/lava.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:lava" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/mycelium.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/mycelium.json new file mode 100644 index 000000000..ca698ca44 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/mycelium.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/nautilus.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/nautilus.json new file mode 100644 index 000000000..6b9eafdf8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/nautilus.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:nautilus" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/note.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/note.json new file mode 100644 index 000000000..8097a3d71 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/note.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:note" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/ominous_spawning.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/ominous_spawning.json new file mode 100644 index 000000000..6508b58d6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/ominous_spawning.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:ominous_spawning" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/pale_oak_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/pale_oak_leaves.json new file mode 100644 index 000000000..8769866f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/pale_oak_leaves.json @@ -0,0 +1,16 @@ +{ + "textures": [ + "minecraft:pale_oak_0", + "minecraft:pale_oak_1", + "minecraft:pale_oak_2", + "minecraft:pale_oak_3", + "minecraft:pale_oak_4", + "minecraft:pale_oak_5", + "minecraft:pale_oak_6", + "minecraft:pale_oak_7", + "minecraft:pale_oak_8", + "minecraft:pale_oak_9", + "minecraft:pale_oak_10", + "minecraft:pale_oak_11" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/poof.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/poof.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/poof.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/portal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/portal.json new file mode 100644 index 000000000..f970e447f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/portal.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_0", + "minecraft:generic_1", + "minecraft:generic_2", + "minecraft:generic_3", + "minecraft:generic_4", + "minecraft:generic_5", + "minecraft:generic_6", + "minecraft:generic_7" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/raid_omen.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/raid_omen.json new file mode 100644 index 000000000..37c611ef2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/raid_omen.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:raid_omen" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/rain.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/rain.json new file mode 100644 index 000000000..49f427bca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/rain.json @@ -0,0 +1,8 @@ +{ + "textures": [ + "minecraft:splash_0", + "minecraft:splash_1", + "minecraft:splash_2", + "minecraft:splash_3" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/reverse_portal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/reverse_portal.json new file mode 100644 index 000000000..f970e447f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/reverse_portal.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_0", + "minecraft:generic_1", + "minecraft:generic_2", + "minecraft:generic_3", + "minecraft:generic_4", + "minecraft:generic_5", + "minecraft:generic_6", + "minecraft:generic_7" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/scrape.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/scrape.json new file mode 100644 index 000000000..aa3870da9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/scrape.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:glow" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sculk_charge.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sculk_charge.json new file mode 100644 index 000000000..0e825f110 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sculk_charge.json @@ -0,0 +1,11 @@ +{ + "textures": [ + "minecraft:sculk_charge_0", + "minecraft:sculk_charge_1", + "minecraft:sculk_charge_2", + "minecraft:sculk_charge_3", + "minecraft:sculk_charge_4", + "minecraft:sculk_charge_5", + "minecraft:sculk_charge_6" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sculk_charge_pop.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sculk_charge_pop.json new file mode 100644 index 000000000..45d6bcc4f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sculk_charge_pop.json @@ -0,0 +1,8 @@ +{ + "textures": [ + "minecraft:sculk_charge_pop_0", + "minecraft:sculk_charge_pop_1", + "minecraft:sculk_charge_pop_2", + "minecraft:sculk_charge_pop_3" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sculk_soul.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sculk_soul.json new file mode 100644 index 000000000..642ff2825 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sculk_soul.json @@ -0,0 +1,15 @@ +{ + "textures": [ + "minecraft:sculk_soul_0", + "minecraft:sculk_soul_1", + "minecraft:sculk_soul_2", + "minecraft:sculk_soul_3", + "minecraft:sculk_soul_4", + "minecraft:sculk_soul_5", + "minecraft:sculk_soul_6", + "minecraft:sculk_soul_7", + "minecraft:sculk_soul_8", + "minecraft:sculk_soul_9", + "minecraft:sculk_soul_10" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/shriek.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/shriek.json new file mode 100644 index 000000000..ad08a5988 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/shriek.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:shriek" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/small_flame.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/small_flame.json new file mode 100644 index 000000000..ef790a1f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/small_flame.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:flame" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/small_gust.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/small_gust.json new file mode 100644 index 000000000..376dff661 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/small_gust.json @@ -0,0 +1,11 @@ +{ + "textures": [ + "minecraft:small_gust_0", + "minecraft:small_gust_1", + "minecraft:small_gust_2", + "minecraft:small_gust_3", + "minecraft:small_gust_4", + "minecraft:small_gust_5", + "minecraft:small_gust_6" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/smoke.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/smoke.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/smoke.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sneeze.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sneeze.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sneeze.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/snowflake.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/snowflake.json new file mode 100644 index 000000000..e0996e04f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/snowflake.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sonic_boom.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sonic_boom.json new file mode 100644 index 000000000..f08e512b0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sonic_boom.json @@ -0,0 +1,20 @@ +{ + "textures": [ + "minecraft:sonic_boom_0", + "minecraft:sonic_boom_1", + "minecraft:sonic_boom_2", + "minecraft:sonic_boom_3", + "minecraft:sonic_boom_4", + "minecraft:sonic_boom_5", + "minecraft:sonic_boom_6", + "minecraft:sonic_boom_7", + "minecraft:sonic_boom_8", + "minecraft:sonic_boom_9", + "minecraft:sonic_boom_10", + "minecraft:sonic_boom_11", + "minecraft:sonic_boom_12", + "minecraft:sonic_boom_13", + "minecraft:sonic_boom_14", + "minecraft:sonic_boom_15" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/soul.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/soul.json new file mode 100644 index 000000000..08defaea4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/soul.json @@ -0,0 +1,15 @@ +{ + "textures": [ + "minecraft:soul_0", + "minecraft:soul_1", + "minecraft:soul_2", + "minecraft:soul_3", + "minecraft:soul_4", + "minecraft:soul_5", + "minecraft:soul_6", + "minecraft:soul_7", + "minecraft:soul_8", + "minecraft:soul_9", + "minecraft:soul_10" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/soul_fire_flame.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/soul_fire_flame.json new file mode 100644 index 000000000..6064eacb8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/soul_fire_flame.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:soul_fire_flame" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/spit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/spit.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/spit.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/splash.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/splash.json new file mode 100644 index 000000000..49f427bca --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/splash.json @@ -0,0 +1,8 @@ +{ + "textures": [ + "minecraft:splash_0", + "minecraft:splash_1", + "minecraft:splash_2", + "minecraft:splash_3" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/spore_blossom_air.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/spore_blossom_air.json new file mode 100644 index 000000000..520ad48bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/spore_blossom_air.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:drip_fall" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/squid_ink.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/squid_ink.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/squid_ink.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sweep_attack.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sweep_attack.json new file mode 100644 index 000000000..3b9fe7896 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/sweep_attack.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:sweep_0", + "minecraft:sweep_1", + "minecraft:sweep_2", + "minecraft:sweep_3", + "minecraft:sweep_4", + "minecraft:sweep_5", + "minecraft:sweep_6", + "minecraft:sweep_7" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/tinted_leaves.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/tinted_leaves.json new file mode 100644 index 000000000..ac37a183b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/tinted_leaves.json @@ -0,0 +1,16 @@ +{ + "textures": [ + "minecraft:leaf_0", + "minecraft:leaf_1", + "minecraft:leaf_2", + "minecraft:leaf_3", + "minecraft:leaf_4", + "minecraft:leaf_5", + "minecraft:leaf_6", + "minecraft:leaf_7", + "minecraft:leaf_8", + "minecraft:leaf_9", + "minecraft:leaf_10", + "minecraft:leaf_11" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/totem_of_undying.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/totem_of_undying.json new file mode 100644 index 000000000..4fdc55ffc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/totem_of_undying.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:glitter_7", + "minecraft:glitter_6", + "minecraft:glitter_5", + "minecraft:glitter_4", + "minecraft:glitter_3", + "minecraft:glitter_2", + "minecraft:glitter_1", + "minecraft:glitter_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/trail.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/trail.json new file mode 100644 index 000000000..5590ac4d3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/trail.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:generic_0" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/trial_omen.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/trial_omen.json new file mode 100644 index 000000000..1e0bd583c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/trial_omen.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:trial_omen" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/trial_spawner_detection.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/trial_spawner_detection.json new file mode 100644 index 000000000..c39375485 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/trial_spawner_detection.json @@ -0,0 +1,9 @@ +{ + "textures": [ + "minecraft:trial_spawner_detection_0", + "minecraft:trial_spawner_detection_1", + "minecraft:trial_spawner_detection_2", + "minecraft:trial_spawner_detection_3", + "minecraft:trial_spawner_detection_4" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/trial_spawner_detection_ominous.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/trial_spawner_detection_ominous.json new file mode 100644 index 000000000..062b339fb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/trial_spawner_detection_ominous.json @@ -0,0 +1,9 @@ +{ + "textures": [ + "minecraft:trial_spawner_detection_ominous_0", + "minecraft:trial_spawner_detection_ominous_1", + "minecraft:trial_spawner_detection_ominous_2", + "minecraft:trial_spawner_detection_ominous_3", + "minecraft:trial_spawner_detection_ominous_4" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/underwater.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/underwater.json new file mode 100644 index 000000000..ca698ca44 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/underwater.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/vault_connection.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/vault_connection.json new file mode 100644 index 000000000..184afd460 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/vault_connection.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:vault_connection" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/vibration.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/vibration.json new file mode 100644 index 000000000..c2cf0ff5a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/vibration.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:vibration" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/warped_spore.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/warped_spore.json new file mode 100644 index 000000000..ca698ca44 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/warped_spore.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/wax_off.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/wax_off.json new file mode 100644 index 000000000..aa3870da9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/wax_off.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:glow" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/wax_on.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/wax_on.json new file mode 100644 index 000000000..aa3870da9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/wax_on.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:glow" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/white_ash.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/white_ash.json new file mode 100644 index 000000000..5590ac4d3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/white_ash.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "minecraft:generic_0" + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/white_smoke.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/white_smoke.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/white_smoke.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/witch.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/witch.json new file mode 100644 index 000000000..7ec70d324 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/particles/witch.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:spell_7", + "minecraft:spell_6", + "minecraft:spell_5", + "minecraft:spell_4", + "minecraft:spell_3", + "minecraft:spell_2", + "minecraft:spell_1", + "minecraft:spell_0" + ] +} \ No newline at end of file diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/regional_compliancies.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/regional_compliancies.json new file mode 100644 index 000000000..db5736b92 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/regional_compliancies.json @@ -0,0 +1,15 @@ +{ + "KOR" : [ + { + "delay": 1440, + "period": 60, + "title": "compliance.playtime.greaterThan24Hours", + "message": "compliance.playtime.message" + }, + { + "period": 60, + "title": "compliance.playtime.hours", + "message": "compliance.playtime.message" + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/blit_screen.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/blit_screen.fsh new file mode 100644 index 000000000..9f21bfeb7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/blit_screen.fsh @@ -0,0 +1,11 @@ +#version 330 + +uniform sampler2D InSampler; + +in vec2 texCoord; + +out vec4 fragColor; + +void main() { + fragColor = texture(InSampler, texCoord); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/blit_screen.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/blit_screen.json new file mode 100644 index 000000000..72894ff6b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/blit_screen.json @@ -0,0 +1,9 @@ +{ + "vertex": "blit_screen", + "fragment": "blit_screen", + "samplers": [ + { "name": "DiffuseSampler" } + ], + "uniforms": [ + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/blit_screen.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/blit_screen.vsh new file mode 100644 index 000000000..405da001a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/blit_screen.vsh @@ -0,0 +1,11 @@ +#version 150 + +in vec3 Position; + +out vec2 texCoord; + +void main() { + vec2 screenPos = Position.xy * 2.0 - 1.0; + gl_Position = vec4(screenPos.x, screenPos.y, 1.0, 1.0); + texCoord = Position.xy; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/entity.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/entity.fsh new file mode 100644 index 000000000..c267e18e0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/entity.fsh @@ -0,0 +1,41 @@ +#version 330 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +#ifdef PER_FACE_LIGHTING +in vec4 vertexPerFaceColorBack; +in vec4 vertexPerFaceColorFront; +#else +in vec4 vertexColor; +#endif +in vec4 lightMapColor; +in vec4 overlayColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); +#ifdef ALPHA_CUTOUT + if (color.a < ALPHA_CUTOUT) { + discard; + } +#endif +#ifdef PER_FACE_LIGHTING + color *= (gl_FrontFacing ? vertexPerFaceColorFront : vertexPerFaceColorBack) * ColorModulator; +#else + color *= vertexColor * ColorModulator; +#endif +#ifndef NO_OVERLAY + color.rgb = mix(overlayColor.rgb, color.rgb, overlayColor.a); +#endif +#ifndef EMISSIVE + color *= lightMapColor; +#endif + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/entity.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/entity.vsh new file mode 100644 index 000000000..56997e6a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/entity.vsh @@ -0,0 +1,54 @@ +#version 330 + +#moj_import +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV1; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler1; +uniform sampler2D Sampler2; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +#ifdef PER_FACE_LIGHTING +out vec4 vertexPerFaceColorBack; +out vec4 vertexPerFaceColorFront; +#else +out vec4 vertexColor; +#endif +out vec4 lightMapColor; +out vec4 overlayColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + +#ifdef PER_FACE_LIGHTING + vec2 light = minecraft_compute_light(Light0_Direction, Light1_Direction, Normal); + vertexPerFaceColorBack = minecraft_mix_light_separate(-light, Color); + vertexPerFaceColorFront = minecraft_mix_light_separate(light, Color); +#elif defined(NO_CARDINAL_LIGHTING) + vertexColor = Color; +#else + vertexColor = minecraft_mix_light(Light0_Direction, Light1_Direction, Normal, Color); +#endif +#ifndef EMISSIVE + lightMapColor = texelFetch(Sampler2, UV2 / 16, 0); +#endif + overlayColor = texelFetch(Sampler1, UV1, 0); + + texCoord0 = UV0; +#ifdef APPLY_TEXTURE_MATRIX + texCoord0 = (TextureMat * vec4(UV0, 0.0, 1.0)).xy; +#endif +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/glint.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/glint.fsh new file mode 100644 index 000000000..3f1881070 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/glint.fsh @@ -0,0 +1,22 @@ +#version 330 + +#moj_import +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * ColorModulator; + if (color.a < 0.1) { + discard; + } + float fade = (1.0f - total_fog_value(sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd)) * GlintAlpha; + fragColor = vec4(color.rgb * fade, color.a); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/glint.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/glint.vsh new file mode 100644 index 000000000..3267680a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/glint.vsh @@ -0,0 +1,20 @@ +#version 330 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec2 UV0; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + texCoord0 = (TextureMat * vec4(UV0, 0.0, 1.0)).xy; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/gui.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/gui.fsh new file mode 100644 index 000000000..226363d2b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/gui.fsh @@ -0,0 +1,23 @@ +#version 330 + +// Can't moj_import in things used during startup, when resource packs don't exist. +// This is a copy of dynamicimports.glsl +layout(std140) uniform DynamicTransforms { + mat4 ModelViewMat; + vec4 ColorModulator; + vec3 ModelOffset; + mat4 TextureMat; + float LineWidth; +}; + +in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + vec4 color = vertexColor; + if (color.a == 0.0) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/gui.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/gui.vsh new file mode 100644 index 000000000..36685d60f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/gui.vsh @@ -0,0 +1,25 @@ +#version 330 + +// Can't moj_import in things used during startup, when resource packs don't exist. +// This is a copy of dynamicimports.glsl and projection.glsl +layout(std140) uniform DynamicTransforms { + mat4 ModelViewMat; + vec4 ColorModulator; + vec3 ModelOffset; + mat4 TextureMat; + float LineWidth; +}; +layout(std140) uniform Projection { + mat4 ProjMat; +}; + +in vec3 Position; +in vec4 Color; + +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/lightmap.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/lightmap.fsh new file mode 100644 index 000000000..7595ecc19 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/lightmap.fsh @@ -0,0 +1,71 @@ +#version 330 + +layout(std140) uniform LightmapInfo { + float AmbientLightFactor; + float SkyFactor; + float BlockFactor; + float NightVisionFactor; + float DarknessScale; + float DarkenWorldFactor; + float BrightnessFactor; + vec3 SkyLightColor; + vec3 AmbientColor; +} lightmapInfo; + +in vec2 texCoord; + +out vec4 fragColor; + +float get_brightness(float level) { + return level / (4.0 - 3.0 * level); +} + +vec3 notGamma(vec3 color) { + float maxComponent = max(max(color.x, color.y), color.z); + float maxInverted = 1.0f - maxComponent; + float maxScaled = 1.0f - maxInverted * maxInverted * maxInverted * maxInverted; + return color * (maxScaled / maxComponent); +} + +void main() { + float block_brightness = get_brightness(floor(texCoord.x * 16) / 15) * lightmapInfo.BlockFactor; + float sky_brightness = get_brightness(floor(texCoord.y * 16) / 15) * lightmapInfo.SkyFactor; + + // cubic nonsense, dips to yellowish in the middle, white when fully saturated + vec3 color = vec3( + block_brightness, + block_brightness * ((block_brightness * 0.6 + 0.4) * 0.6 + 0.4), + block_brightness * (block_brightness * block_brightness * 0.6 + 0.4) + ); + + color = mix(color, lightmapInfo.AmbientColor, lightmapInfo.AmbientLightFactor); + + color += lightmapInfo.SkyLightColor * sky_brightness; + color = mix(color, vec3(0.75), 0.04); + + if (lightmapInfo.AmbientLightFactor == 0.0f) { + vec3 darkened_color = color * vec3(0.7, 0.6, 0.6); + color = mix(color, darkened_color, lightmapInfo.DarkenWorldFactor); + } + + if (lightmapInfo.NightVisionFactor > 0.0) { + // scale up uniformly until 1.0 is hit by one of the colors + float max_component = max(color.r, max(color.g, color.b)); + if (max_component < 1.0) { + vec3 bright_color = color / max_component; + color = mix(color, bright_color, lightmapInfo.NightVisionFactor); + } + } + + if (lightmapInfo.AmbientLightFactor == 0.0f) { + color = color - vec3(lightmapInfo.DarknessScale); + } + + color = clamp(color, 0.0, 1.0); + + vec3 notGamma = notGamma(color); + color = mix(color, notGamma, lightmapInfo.BrightnessFactor); + color = mix(color, vec3(0.75), 0.04); + + fragColor = vec4(color, 1.0); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/panorama.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/panorama.fsh new file mode 100644 index 000000000..ae81634f5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/panorama.fsh @@ -0,0 +1,11 @@ +#version 330 + +uniform samplerCube Sampler0; + +in vec3 texCoord0; + +out vec4 fragColor; + +void main() { + fragColor = texture(Sampler0, texCoord0); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/panorama.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/panorama.vsh new file mode 100644 index 000000000..e1f5e82f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/panorama.vsh @@ -0,0 +1,13 @@ +#version 330 + +#moj_import +#moj_import + +in vec3 Position; +out vec3 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + texCoord0 = Position; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/particle.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/particle.fsh new file mode 100644 index 000000000..333f972af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/particle.fsh @@ -0,0 +1,21 @@ +#version 330 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec2 texCoord0; +in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; + if (color.a < 0.1) { + discard; + } + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/particle.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/particle.json new file mode 100644 index 000000000..a3d330947 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/particle.json @@ -0,0 +1,17 @@ +{ + "vertex": "particle", + "fragment": "particle", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/particle.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/particle.vsh new file mode 100644 index 000000000..40320ef65 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/particle.vsh @@ -0,0 +1,26 @@ +#version 330 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec2 UV0; +in vec4 Color; +in ivec2 UV2; + +uniform sampler2D Sampler2; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec2 texCoord0; +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + texCoord0 = UV0; + vertexColor = Color * texelFetch(Sampler2, UV2 / 16, 0); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position.fsh new file mode 100644 index 000000000..7ddb7c1fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position.fsh @@ -0,0 +1,13 @@ +#version 330 + +#moj_import +#moj_import + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; + +out vec4 fragColor; + +void main() { + fragColor = apply_fog(ColorModulator, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position.json new file mode 100644 index 000000000..78516f65a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position.json @@ -0,0 +1,15 @@ +{ + "vertex": "position", + "fragment": "position", + "samplers": [ + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position.vsh new file mode 100644 index 000000000..129ffa7c8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position.vsh @@ -0,0 +1,17 @@ +#version 330 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color.fsh new file mode 100644 index 000000000..1e83300e9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color.fsh @@ -0,0 +1,15 @@ +#version 330 + +#moj_import + +in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + vec4 color = vertexColor; + if (color.a == 0.0) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color.json new file mode 100644 index 000000000..827d9af48 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color.json @@ -0,0 +1,11 @@ +{ + "vertex": "position_color", + "fragment": "position_color", + "samplers": [ + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color.vsh new file mode 100644 index 000000000..266f408ab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color.vsh @@ -0,0 +1,15 @@ +#version 330 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; + +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_lightmap.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_lightmap.fsh new file mode 100644 index 000000000..49a182cb7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_lightmap.fsh @@ -0,0 +1,15 @@ +#version 150 + +uniform sampler2D Sampler2; + +uniform vec4 ColorModulator; + +in vec4 vertexColor; +in vec2 texCoord2; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler2, texCoord2) * vertexColor; + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_lightmap.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_lightmap.json new file mode 100644 index 000000000..ed33a8b08 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_lightmap.json @@ -0,0 +1,12 @@ +{ + "vertex": "position_color_lightmap", + "fragment": "position_color_lightmap", + "samplers": [ + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_lightmap.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_lightmap.vsh new file mode 100644 index 000000000..8a08d3c7c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_lightmap.vsh @@ -0,0 +1,18 @@ +#version 150 + +in vec3 Position; +in vec4 Color; +in vec2 UV2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; + +out vec4 vertexColor; +out vec2 texCoord2; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; + texCoord2 = UV2; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_tex_lightmap.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_tex_lightmap.fsh new file mode 100644 index 000000000..d04bdec49 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_tex_lightmap.fsh @@ -0,0 +1,19 @@ +#version 150 + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; + +in vec4 vertexColor; +in vec2 texCoord0; +in vec2 texCoord2; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor; + if (color.a < 0.1) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_tex_lightmap.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_tex_lightmap.json new file mode 100644 index 000000000..1f1dbd538 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_tex_lightmap.json @@ -0,0 +1,12 @@ +{ + "vertex": "position_color_tex_lightmap", + "fragment": "position_color_tex_lightmap", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_tex_lightmap.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_tex_lightmap.vsh new file mode 100644 index 000000000..75bbab4f7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_color_tex_lightmap.vsh @@ -0,0 +1,21 @@ +#version 150 + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in vec2 UV2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; + +out vec4 vertexColor; +out vec2 texCoord0; +out vec2 texCoord2; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; + texCoord0 = UV0; + texCoord2 = UV2; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex.fsh new file mode 100644 index 000000000..72d768dac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex.fsh @@ -0,0 +1,17 @@ +#version 330 + +#moj_import + +uniform sampler2D Sampler0; + +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + if (color.a == 0.0) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex.json new file mode 100644 index 000000000..7ba6e132e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex.json @@ -0,0 +1,12 @@ +{ + "vertex": "position_tex", + "fragment": "position_tex", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex.vsh new file mode 100644 index 000000000..02b626829 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex.vsh @@ -0,0 +1,15 @@ +#version 330 + +#moj_import +#moj_import + +in vec3 Position; +in vec2 UV0; + +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex_color.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex_color.fsh new file mode 100644 index 000000000..cbe7f2a47 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex_color.fsh @@ -0,0 +1,26 @@ +#version 330 + +// Can't moj_import in things used during startup, when resource packs don't exist. +// This is a copy of dynamicimports.glsl +layout(std140) uniform DynamicTransforms { + mat4 ModelViewMat; + vec4 ColorModulator; + vec3 ModelOffset; + mat4 TextureMat; + float LineWidth; +}; + +uniform sampler2D Sampler0; + +in vec2 texCoord0; +in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor; + if (color.a == 0.0) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex_color.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex_color.json new file mode 100644 index 000000000..367ef5e92 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex_color.json @@ -0,0 +1,12 @@ +{ + "vertex": "position_tex_color", + "fragment": "position_tex_color", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex_color.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex_color.vsh new file mode 100644 index 000000000..2efe8335f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/position_tex_color.vsh @@ -0,0 +1,28 @@ +#version 330 + +// Can't moj_import in things used during startup, when resource packs don't exist. +// This is a copy of dynamicimports.glsl and projection.glsl +layout(std140) uniform DynamicTransforms { + mat4 ModelViewMat; + vec4 ColorModulator; + vec3 ModelOffset; + mat4 TextureMat; + float LineWidth; +}; +layout(std140) uniform Projection { + mat4 ProjMat; +}; + +in vec3 Position; +in vec2 UV0; +in vec4 Color; + +out vec2 texCoord0; +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + texCoord0 = UV0; + vertexColor = Color; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.fsh new file mode 100644 index 000000000..232a61df5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.fsh @@ -0,0 +1,25 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform vec4 FogColor; + +in float vertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; +in vec2 texCoord1; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; + if (color.a < 0.1) { + discard; + } + fragColor = linear_fog(color, vertexDistance, FogStart, FogEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.json new file mode 100644 index 000000000..7f15d3bf1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.json @@ -0,0 +1,19 @@ +{ + "vertex": "rendertype_armor_cutout_no_cull", + "fragment": "rendertype_armor_cutout_no_cull", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "Light0_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "Light1_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.vsh new file mode 100644 index 000000000..6366633be --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.vsh @@ -0,0 +1,34 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in vec2 UV1; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform int FogShape; + +uniform vec3 Light0_Direction; +uniform vec3 Light1_Direction; + +out float vertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; +out vec2 texCoord1; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = fog_distance(Position, FogShape); + vertexColor = minecraft_mix_light(Light0_Direction, Light1_Direction, Normal, Color) * texelFetch(Sampler2, UV2 / 16, 0); + texCoord0 = UV0; + texCoord1 = UV1; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_entity_glint.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_entity_glint.fsh new file mode 100644 index 000000000..9bcfd7dbd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_entity_glint.fsh @@ -0,0 +1,24 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform float GlintAlpha; + +in float vertexDistance; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * ColorModulator; + if (color.a < 0.1) { + discard; + } + float fade = linear_fog_fade(vertexDistance, FogStart, FogEnd) * GlintAlpha; + fragColor = vec4(color.rgb * fade, color.a); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_entity_glint.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_entity_glint.json new file mode 100644 index 000000000..982489f61 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_entity_glint.json @@ -0,0 +1,17 @@ +{ + "vertex": "rendertype_armor_entity_glint", + "fragment": "rendertype_armor_entity_glint", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "GlintAlpha", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] }, + { "name": "TextureMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_entity_glint.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_entity_glint.vsh new file mode 100644 index 000000000..f123a0e19 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_armor_entity_glint.vsh @@ -0,0 +1,21 @@ +#version 150 + +#moj_import + +in vec3 Position; +in vec2 UV0; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform mat4 TextureMat; +uniform int FogShape; + +out float vertexDistance; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = fog_distance(Position, FogShape); + texCoord0 = (TextureMat * vec4(UV0, 0.0, 1.0)).xy; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_beacon_beam.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_beacon_beam.fsh new file mode 100644 index 000000000..e189237d1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_beacon_beam.fsh @@ -0,0 +1,19 @@ +#version 330 + +#moj_import +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + color *= vertexColor * ColorModulator; + float fragmentDistance = -ProjMat[3].z / ((gl_FragCoord.z) * -2.0 + 1.0 - ProjMat[2].z); + fragColor = apply_fog(color, fragmentDistance, fragmentDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_beacon_beam.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_beacon_beam.json new file mode 100644 index 000000000..145874fff --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_beacon_beam.json @@ -0,0 +1,15 @@ +{ + "vertex": "rendertype_beacon_beam", + "fragment": "rendertype_beacon_beam", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_beacon_beam.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_beacon_beam.vsh new file mode 100644 index 000000000..c38076552 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_beacon_beam.vsh @@ -0,0 +1,18 @@ +#version 330 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; + +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_breeze_wind.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_breeze_wind.fsh new file mode 100644 index 000000000..89514fbad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_breeze_wind.fsh @@ -0,0 +1,23 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; + +in float vertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; + if (color.a < 0.1) { + discard; + } + fragColor = color * linear_fog_fade(vertexDistance, FogStart, FogEnd); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_breeze_wind.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_breeze_wind.json new file mode 100644 index 000000000..17da015fe --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_breeze_wind.json @@ -0,0 +1,17 @@ +{ + "vertex": "rendertype_breeze_wind", + "fragment": "rendertype_breeze_wind", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "TextureMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_breeze_wind.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_breeze_wind.vsh new file mode 100644 index 000000000..583325b97 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_breeze_wind.vsh @@ -0,0 +1,32 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV2; + +uniform sampler2D Sampler0; +uniform sampler2D Sampler2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform mat4 TextureMat; +uniform int FogShape; + +out float vertexDistance; +out vec4 vertexColor; +out vec4 lightMapColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = fog_distance(Position, FogShape); + lightMapColor = texelFetch(Sampler2, UV2 / 16, 0); + vertexColor = Color * lightMapColor; + + texCoord0 = (TextureMat * vec4(UV0, 0.0, 1.0)).xy; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_clouds.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_clouds.fsh new file mode 100644 index 000000000..f81e5e030 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_clouds.fsh @@ -0,0 +1,15 @@ +#version 330 + +#moj_import + + +in float vertexDistance; +in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + vec4 color = vertexColor; + color.a *= 1.0f - linear_fog_value(vertexDistance, 0, FogCloudsEnd); + fragColor = color; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_clouds.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_clouds.json new file mode 100644 index 000000000..6fc1c2fe4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_clouds.json @@ -0,0 +1,16 @@ +{ + "vertex": "rendertype_clouds", + "fragment": "rendertype_clouds", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_clouds.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_clouds.vsh new file mode 100644 index 000000000..afdd35f2f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_clouds.vsh @@ -0,0 +1,90 @@ +#version 330 + +#moj_import +#moj_import +#moj_import + +const int FLAG_MASK_DIR = 7; +const int FLAG_INSIDE_FACE = 1 << 4; +const int FLAG_USE_TOP_COLOR = 1 << 5; +const int FLAG_EXTRA_Z = 1 << 6; +const int FLAG_EXTRA_X = 1 << 7; + +layout(std140) uniform CloudInfo { + vec4 CloudColor; + vec3 CloudOffset; + vec3 CellSize; +}; + +uniform isamplerBuffer CloudFaces; + +out float vertexDistance; +out vec4 vertexColor; + +const vec3[] vertices = vec3[]( + // Bottom face + vec3(1, 0, 0), + vec3(1, 0, 1), + vec3(0, 0, 1), + vec3(0, 0, 0), + // Top face + vec3(0, 1, 0), + vec3(0, 1, 1), + vec3(1, 1, 1), + vec3(1, 1, 0), + // North face + vec3(0, 0, 0), + vec3(0, 1, 0), + vec3(1, 1, 0), + vec3(1, 0, 0), + // South face + vec3(1, 0, 1), + vec3(1, 1, 1), + vec3(0, 1, 1), + vec3(0, 0, 1), + // West face + vec3(0, 0, 1), + vec3(0, 1, 1), + vec3(0, 1, 0), + vec3(0, 0, 0), + // East face + vec3(1, 0, 0), + vec3(1, 1, 0), + vec3(1, 1, 1), + vec3(1, 0, 1) +); + +const vec4[] faceColors = vec4[]( + // Bottom face + vec4(0.7, 0.7, 0.7, 0.8), + // Top face + vec4(1.0, 1.0, 1.0, 0.8), + // North face + vec4(0.8, 0.8, 0.8, 0.8), + // South face + vec4(0.8, 0.8, 0.8, 0.8), + // West face + vec4(0.9, 0.9, 0.9, 0.8), + // East face + vec4(0.9, 0.9, 0.9, 0.8) +); + +void main() { + int quadVertex = gl_VertexID % 4; + int index = (gl_VertexID / 4) * 3; + + int cellX = texelFetch(CloudFaces, index).r; + int cellZ = texelFetch(CloudFaces, index + 1).r; + int dirAndFlags = texelFetch(CloudFaces, index + 2).r; + int direction = dirAndFlags & FLAG_MASK_DIR; + bool isInsideFace = (dirAndFlags & FLAG_INSIDE_FACE) == FLAG_INSIDE_FACE; + bool useTopColor = (dirAndFlags & FLAG_USE_TOP_COLOR) == FLAG_USE_TOP_COLOR; + cellX = (cellX << 1) | ((dirAndFlags & FLAG_EXTRA_X) >> 7); + cellZ = (cellZ << 1) | ((dirAndFlags & FLAG_EXTRA_Z) >> 6); + vec3 faceVertex = vertices[(direction * 4) + (isInsideFace ? 3 - quadVertex : quadVertex)]; + vec3 pos = (faceVertex * CellSize) + (vec3(cellX, 0, cellZ) * CellSize) + CloudOffset; + gl_Position = ProjMat * ModelViewMat * vec4(pos, 1.0); + + vertexDistance = fog_spherical_distance(pos); + vertexColor = (useTopColor ? faceColors[1] : faceColors[direction]) * CloudColor; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_crumbling.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_crumbling.fsh new file mode 100644 index 000000000..58057d535 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_crumbling.fsh @@ -0,0 +1,23 @@ +#version 330 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; +in vec2 texCoord2; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor; + if (color.a < 0.1) { + discard; + } + color = color * ColorModulator; + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_crumbling.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_crumbling.json new file mode 100644 index 000000000..01cd4bb2d --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_crumbling.json @@ -0,0 +1,12 @@ +{ + "vertex": "rendertype_crumbling", + "fragment": "rendertype_crumbling", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_crumbling.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_crumbling.vsh new file mode 100644 index 000000000..a1b0e961f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_crumbling.vsh @@ -0,0 +1,27 @@ +#version 330 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in vec2 UV2; +in vec3 Normal; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; +out vec2 texCoord2; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color; + texCoord0 = UV0; + texCoord2 = UV2; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout.fsh new file mode 100644 index 000000000..3fe46019e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout.fsh @@ -0,0 +1,24 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform vec4 FogColor; + +in float vertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; + if (color.a < 0.1) { + discard; + } + fragColor = linear_fog(color, vertexDistance, FogStart, FogEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout.json new file mode 100644 index 000000000..a9460d259 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout.json @@ -0,0 +1,18 @@ +{ + "vertex": "rendertype_cutout", + "fragment": "rendertype_cutout", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ChunkOffset", "type": "float", "count": 3, "values": [ 0.0, 0.0, 0.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout.vsh new file mode 100644 index 000000000..02f3d1178 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout.vsh @@ -0,0 +1,30 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform vec3 ChunkOffset; +uniform int FogShape; + +out float vertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + vec3 pos = Position + ChunkOffset; + gl_Position = ProjMat * ModelViewMat * vec4(pos, 1.0); + + vertexDistance = fog_distance(pos, FogShape); + vertexColor = Color * minecraft_sample_lightmap(Sampler2, UV2); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout_mipped.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout_mipped.fsh new file mode 100644 index 000000000..cb63a69a6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout_mipped.fsh @@ -0,0 +1,24 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform vec4 FogColor; + +in float vertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; + if (color.a < 0.5) { + discard; + } + fragColor = linear_fog(color, vertexDistance, FogStart, FogEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout_mipped.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout_mipped.json new file mode 100644 index 000000000..7698959af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout_mipped.json @@ -0,0 +1,18 @@ +{ + "vertex": "rendertype_cutout_mipped", + "fragment": "rendertype_cutout_mipped", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ChunkOffset", "type": "float", "count": 3, "values": [ 0.0, 0.0, 0.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout_mipped.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout_mipped.vsh new file mode 100644 index 000000000..02f3d1178 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_cutout_mipped.vsh @@ -0,0 +1,30 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform vec3 ChunkOffset; +uniform int FogShape; + +out float vertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + vec3 pos = Position + ChunkOffset; + gl_Position = ProjMat * ModelViewMat * vec4(pos, 1.0); + + vertexDistance = fog_distance(pos, FogShape); + vertexColor = Color * minecraft_sample_lightmap(Sampler2, UV2); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_end_gateway.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_end_gateway.json new file mode 100644 index 000000000..dd4095d29 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_end_gateway.json @@ -0,0 +1,14 @@ +{ + "vertex": "rendertype_end_portal", + "fragment": "rendertype_end_portal", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler1" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "GameTime", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "EndPortalLayers", "type": "int", "count": 1, "values": [ 16 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_end_portal.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_end_portal.fsh new file mode 100644 index 000000000..f16b0c20a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_end_portal.fsh @@ -0,0 +1,63 @@ +#version 330 + +#moj_import +#moj_import +#moj_import + +uniform sampler2D Sampler0; +uniform sampler2D Sampler1; + +in vec4 texProj0; +in float sphericalVertexDistance; +in float cylindricalVertexDistance; + +const vec3[] COLORS = vec3[]( + vec3(0.022087, 0.098399, 0.110818), + vec3(0.011892, 0.095924, 0.089485), + vec3(0.027636, 0.101689, 0.100326), + vec3(0.046564, 0.109883, 0.114838), + vec3(0.064901, 0.117696, 0.097189), + vec3(0.063761, 0.086895, 0.123646), + vec3(0.084817, 0.111994, 0.166380), + vec3(0.097489, 0.154120, 0.091064), + vec3(0.106152, 0.131144, 0.195191), + vec3(0.097721, 0.110188, 0.187229), + vec3(0.133516, 0.138278, 0.148582), + vec3(0.070006, 0.243332, 0.235792), + vec3(0.196766, 0.142899, 0.214696), + vec3(0.047281, 0.315338, 0.321970), + vec3(0.204675, 0.390010, 0.302066), + vec3(0.080955, 0.314821, 0.661491) +); + +const mat4 SCALE_TRANSLATE = mat4( + 0.5, 0.0, 0.0, 0.25, + 0.0, 0.5, 0.0, 0.25, + 0.0, 0.0, 1.0, 0.0, + 0.0, 0.0, 0.0, 1.0 +); + +mat4 end_portal_layer(float layer) { + mat4 translate = mat4( + 1.0, 0.0, 0.0, 17.0 / layer, + 0.0, 1.0, 0.0, (2.0 + layer / 1.5) * (GameTime * 1.5), + 0.0, 0.0, 1.0, 0.0, + 0.0, 0.0, 0.0, 1.0 + ); + + mat2 rotate = mat2_rotate_z(radians((layer * layer * 4321.0 + layer * 9.0) * 2.0)); + + mat2 scale = mat2((4.5 - layer / 4.0) * 2.0); + + return mat4(scale * rotate) * translate * SCALE_TRANSLATE; +} + +out vec4 fragColor; + +void main() { + vec3 color = textureProj(Sampler0, texProj0).rgb * COLORS[0]; + for (int i = 0; i < PORTAL_LAYERS; i++) { + color += textureProj(Sampler1, texProj0 * end_portal_layer(float(i + 1))).rgb * COLORS[i]; + } + fragColor = apply_fog(vec4(color, 1.0), sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_end_portal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_end_portal.json new file mode 100644 index 000000000..c66876489 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_end_portal.json @@ -0,0 +1,14 @@ +{ + "vertex": "rendertype_end_portal", + "fragment": "rendertype_end_portal", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler1" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "GameTime", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "EndPortalLayers", "type": "int", "count": 1, "values": [ 15 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_end_portal.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_end_portal.vsh new file mode 100644 index 000000000..f9bc7268a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_end_portal.vsh @@ -0,0 +1,20 @@ +#version 330 + +#moj_import +#moj_import +#moj_import +#moj_import + +in vec3 Position; + +out vec4 texProj0; +out float sphericalVertexDistance; +out float cylindricalVertexDistance; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + texProj0 = projection_from_position(gl_Position); + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_energy_swirl.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_energy_swirl.fsh new file mode 100644 index 000000000..89514fbad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_energy_swirl.fsh @@ -0,0 +1,23 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; + +in float vertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; + if (color.a < 0.1) { + discard; + } + fragColor = color * linear_fog_fade(vertexDistance, FogStart, FogEnd); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_energy_swirl.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_energy_swirl.json new file mode 100644 index 000000000..3696b6fe5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_energy_swirl.json @@ -0,0 +1,16 @@ +{ + "vertex": "rendertype_energy_swirl", + "fragment": "rendertype_energy_swirl", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "TextureMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_energy_swirl.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_energy_swirl.vsh new file mode 100644 index 000000000..23ddffdd8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_energy_swirl.vsh @@ -0,0 +1,24 @@ +#version 150 + +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform mat4 TextureMat; +uniform int FogShape; + +out float vertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = fog_distance(Position, FogShape); + vertexColor = Color; + texCoord0 = (TextureMat * vec4(UV0, 0.0, 1.0)).xy; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_alpha.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_alpha.fsh new file mode 100644 index 000000000..174c4b1bd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_alpha.fsh @@ -0,0 +1,18 @@ +#version 330 + +uniform sampler2D Sampler0; + +in vec4 vertexColor; +in vec2 texCoord0; +in vec2 texCoord1; +in vec2 texCoord2; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + if (color.a < vertexColor.a) { + discard; + } + fragColor = color; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_alpha.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_alpha.json new file mode 100644 index 000000000..3e3125762 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_alpha.json @@ -0,0 +1,11 @@ +{ + "vertex": "rendertype_entity_alpha", + "fragment": "rendertype_entity_alpha", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_alpha.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_alpha.vsh new file mode 100644 index 000000000..5fd78f77f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_alpha.vsh @@ -0,0 +1,25 @@ +#version 330 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in vec2 UV1; +in vec2 UV2; +in vec3 Normal; + +out vec4 vertexColor; +out vec2 texCoord0; +out vec2 texCoord1; +out vec2 texCoord2; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; + texCoord0 = UV0; + texCoord1 = UV1; + texCoord2 = UV2; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout.fsh new file mode 100644 index 000000000..82ee596b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout.fsh @@ -0,0 +1,29 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform vec4 FogColor; + +in float vertexDistance; +in vec4 vertexColor; +in vec4 lightMapColor; +in vec4 overlayColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + if (color.a < 0.1) { + discard; + } + color *= vertexColor * ColorModulator; + color.rgb = mix(overlayColor.rgb, color.rgb, overlayColor.a); + color *= lightMapColor; + fragColor = linear_fog(color, vertexDistance, FogStart, FogEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout.json new file mode 100644 index 000000000..def64e8a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout.json @@ -0,0 +1,20 @@ +{ + "vertex": "rendertype_entity_cutout", + "fragment": "rendertype_entity_cutout", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler1" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "Light0_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "Light1_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout.vsh new file mode 100644 index 000000000..de8af38a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout.vsh @@ -0,0 +1,37 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV1; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler1; +uniform sampler2D Sampler2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform int FogShape; + +uniform vec3 Light0_Direction; +uniform vec3 Light1_Direction; + +out float vertexDistance; +out vec4 vertexColor; +out vec4 lightMapColor; +out vec4 overlayColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = fog_distance(Position, FogShape); + vertexColor = minecraft_mix_light(Light0_Direction, Light1_Direction, Normal, Color); + lightMapColor = texelFetch(Sampler2, UV2 / 16, 0); + overlayColor = texelFetch(Sampler1, UV1, 0); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull.fsh new file mode 100644 index 000000000..82ee596b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull.fsh @@ -0,0 +1,29 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform vec4 FogColor; + +in float vertexDistance; +in vec4 vertexColor; +in vec4 lightMapColor; +in vec4 overlayColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + if (color.a < 0.1) { + discard; + } + color *= vertexColor * ColorModulator; + color.rgb = mix(overlayColor.rgb, color.rgb, overlayColor.a); + color *= lightMapColor; + fragColor = linear_fog(color, vertexDistance, FogStart, FogEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull.json new file mode 100644 index 000000000..2c3ec23ef --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull.json @@ -0,0 +1,20 @@ +{ + "vertex": "rendertype_entity_cutout_no_cull", + "fragment": "rendertype_entity_cutout_no_cull", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler1" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "Light0_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "Light1_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull.vsh new file mode 100644 index 000000000..de8af38a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull.vsh @@ -0,0 +1,37 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV1; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler1; +uniform sampler2D Sampler2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform int FogShape; + +uniform vec3 Light0_Direction; +uniform vec3 Light1_Direction; + +out float vertexDistance; +out vec4 vertexColor; +out vec4 lightMapColor; +out vec4 overlayColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = fog_distance(Position, FogShape); + vertexColor = minecraft_mix_light(Light0_Direction, Light1_Direction, Normal, Color); + lightMapColor = texelFetch(Sampler2, UV2 / 16, 0); + overlayColor = texelFetch(Sampler1, UV1, 0); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull_z_offset.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull_z_offset.fsh new file mode 100644 index 000000000..82ee596b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull_z_offset.fsh @@ -0,0 +1,29 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform vec4 FogColor; + +in float vertexDistance; +in vec4 vertexColor; +in vec4 lightMapColor; +in vec4 overlayColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + if (color.a < 0.1) { + discard; + } + color *= vertexColor * ColorModulator; + color.rgb = mix(overlayColor.rgb, color.rgb, overlayColor.a); + color *= lightMapColor; + fragColor = linear_fog(color, vertexDistance, FogStart, FogEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull_z_offset.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull_z_offset.json new file mode 100644 index 000000000..a2129c2cb --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull_z_offset.json @@ -0,0 +1,20 @@ +{ + "vertex": "rendertype_entity_cutout_no_cull_z_offset", + "fragment": "rendertype_entity_cutout_no_cull_z_offset", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler1" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "Light0_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "Light1_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull_z_offset.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull_z_offset.vsh new file mode 100644 index 000000000..de8af38a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_cutout_no_cull_z_offset.vsh @@ -0,0 +1,37 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV1; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler1; +uniform sampler2D Sampler2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform int FogShape; + +uniform vec3 Light0_Direction; +uniform vec3 Light1_Direction; + +out float vertexDistance; +out vec4 vertexColor; +out vec4 lightMapColor; +out vec4 overlayColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = fog_distance(Position, FogShape); + vertexColor = minecraft_mix_light(Light0_Direction, Light1_Direction, Normal, Color); + lightMapColor = texelFetch(Sampler2, UV2 / 16, 0); + overlayColor = texelFetch(Sampler1, UV1, 0); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_decal.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_decal.fsh new file mode 100644 index 000000000..935519686 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_decal.fsh @@ -0,0 +1,24 @@ +#version 330 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec4 overlayColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + if (color.a < 0.1) { + discard; + } + color.rgb = mix(overlayColor.rgb, color.rgb, overlayColor.a); + color *= vertexColor * ColorModulator; + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_decal.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_decal.json new file mode 100644 index 000000000..d3b01a999 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_decal.json @@ -0,0 +1,20 @@ +{ + "vertex": "rendertype_entity_decal", + "fragment": "rendertype_entity_decal", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler1" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "Light0_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "Light1_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_decal.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_decal.vsh new file mode 100644 index 000000000..e5f4ebb0a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_decal.vsh @@ -0,0 +1,33 @@ +#version 330 + +#moj_import +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV1; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler1; +uniform sampler2D Sampler2; + + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; +out vec4 overlayColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = minecraft_mix_light(Light0_Direction, Light1_Direction, Normal, Color) * texelFetch(Sampler2, UV2 / 16, 0); + overlayColor = texelFetch(Sampler1, UV1, 0); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint.fsh new file mode 100644 index 000000000..9bcfd7dbd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint.fsh @@ -0,0 +1,24 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform float GlintAlpha; + +in float vertexDistance; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * ColorModulator; + if (color.a < 0.1) { + discard; + } + float fade = linear_fog_fade(vertexDistance, FogStart, FogEnd) * GlintAlpha; + fragColor = vec4(color.rgb * fade, color.a); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint.json new file mode 100644 index 000000000..0e5ad7105 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint.json @@ -0,0 +1,17 @@ +{ + "vertex": "rendertype_entity_glint", + "fragment": "rendertype_entity_glint", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "GlintAlpha", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] }, + { "name": "TextureMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint.vsh new file mode 100644 index 000000000..f123a0e19 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint.vsh @@ -0,0 +1,21 @@ +#version 150 + +#moj_import + +in vec3 Position; +in vec2 UV0; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform mat4 TextureMat; +uniform int FogShape; + +out float vertexDistance; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = fog_distance(Position, FogShape); + texCoord0 = (TextureMat * vec4(UV0, 0.0, 1.0)).xy; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint_direct.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint_direct.fsh new file mode 100644 index 000000000..9bcfd7dbd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint_direct.fsh @@ -0,0 +1,24 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform float GlintAlpha; + +in float vertexDistance; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * ColorModulator; + if (color.a < 0.1) { + discard; + } + float fade = linear_fog_fade(vertexDistance, FogStart, FogEnd) * GlintAlpha; + fragColor = vec4(color.rgb * fade, color.a); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint_direct.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint_direct.json new file mode 100644 index 000000000..1f4d484a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint_direct.json @@ -0,0 +1,17 @@ +{ + "vertex": "rendertype_entity_glint_direct", + "fragment": "rendertype_entity_glint_direct", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "GlintAlpha", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] }, + { "name": "TextureMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint_direct.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint_direct.vsh new file mode 100644 index 000000000..f123a0e19 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_glint_direct.vsh @@ -0,0 +1,21 @@ +#version 150 + +#moj_import + +in vec3 Position; +in vec2 UV0; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform mat4 TextureMat; +uniform int FogShape; + +out float vertexDistance; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = fog_distance(Position, FogShape); + texCoord0 = (TextureMat * vec4(UV0, 0.0, 1.0)).xy; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_no_outline.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_no_outline.fsh new file mode 100644 index 000000000..851068d05 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_no_outline.fsh @@ -0,0 +1,21 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform vec4 FogColor; + +in float vertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; + fragColor = linear_fog(color, vertexDistance, FogStart, FogEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_no_outline.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_no_outline.json new file mode 100644 index 000000000..b9267dde0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_no_outline.json @@ -0,0 +1,19 @@ +{ + "vertex": "rendertype_entity_no_outline", + "fragment": "rendertype_entity_no_outline", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "Light0_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "Light1_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_no_outline.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_no_outline.vsh new file mode 100644 index 000000000..c65e77640 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_no_outline.vsh @@ -0,0 +1,31 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform int FogShape; + +uniform vec3 Light0_Direction; +uniform vec3 Light1_Direction; + +out float vertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = fog_distance(Position, FogShape); + vertexColor = minecraft_mix_light(Light0_Direction, Light1_Direction, Normal, Color) * texelFetch(Sampler2, UV2 / 16, 0); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_shadow.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_shadow.fsh new file mode 100644 index 000000000..4f02fefcf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_shadow.fsh @@ -0,0 +1,19 @@ +#version 330 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, clamp(texCoord0, 0.0, 1.0)); + color *= vertexColor * ColorModulator; + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_shadow.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_shadow.json new file mode 100644 index 000000000..49dd839d3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_shadow.json @@ -0,0 +1,16 @@ +{ + "vertex": "rendertype_entity_shadow", + "fragment": "rendertype_entity_shadow", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_shadow.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_shadow.vsh new file mode 100644 index 000000000..d2fa229f8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_shadow.vsh @@ -0,0 +1,23 @@ +#version 330 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color; + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_smooth_cutout.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_smooth_cutout.fsh new file mode 100644 index 000000000..82ee596b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_smooth_cutout.fsh @@ -0,0 +1,29 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform vec4 FogColor; + +in float vertexDistance; +in vec4 vertexColor; +in vec4 lightMapColor; +in vec4 overlayColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + if (color.a < 0.1) { + discard; + } + color *= vertexColor * ColorModulator; + color.rgb = mix(overlayColor.rgb, color.rgb, overlayColor.a); + color *= lightMapColor; + fragColor = linear_fog(color, vertexDistance, FogStart, FogEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_smooth_cutout.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_smooth_cutout.json new file mode 100644 index 000000000..016e8c145 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_smooth_cutout.json @@ -0,0 +1,20 @@ +{ + "vertex": "rendertype_entity_smooth_cutout", + "fragment": "rendertype_entity_smooth_cutout", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler1" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "Light0_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "Light1_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_smooth_cutout.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_smooth_cutout.vsh new file mode 100644 index 000000000..de8af38a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_smooth_cutout.vsh @@ -0,0 +1,37 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV1; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler1; +uniform sampler2D Sampler2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform int FogShape; + +uniform vec3 Light0_Direction; +uniform vec3 Light1_Direction; + +out float vertexDistance; +out vec4 vertexColor; +out vec4 lightMapColor; +out vec4 overlayColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = fog_distance(Position, FogShape); + vertexColor = minecraft_mix_light(Light0_Direction, Light1_Direction, Normal, Color); + lightMapColor = texelFetch(Sampler2, UV2 / 16, 0); + overlayColor = texelFetch(Sampler1, UV1, 0); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_solid.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_solid.fsh new file mode 100644 index 000000000..ff8974fc1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_solid.fsh @@ -0,0 +1,25 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform vec4 FogColor; + +in float vertexDistance; +in vec4 vertexColor; +in vec4 lightMapColor; +in vec4 overlayColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; + color.rgb = mix(overlayColor.rgb, color.rgb, overlayColor.a); + color *= lightMapColor; + fragColor = linear_fog(color, vertexDistance, FogStart, FogEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_solid.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_solid.json new file mode 100644 index 000000000..244b7a045 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_solid.json @@ -0,0 +1,20 @@ +{ + "vertex": "rendertype_entity_solid", + "fragment": "rendertype_entity_solid", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler1" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "Light0_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "Light1_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_solid.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_solid.vsh new file mode 100644 index 000000000..de8af38a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_solid.vsh @@ -0,0 +1,37 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV1; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler1; +uniform sampler2D Sampler2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform int FogShape; + +uniform vec3 Light0_Direction; +uniform vec3 Light1_Direction; + +out float vertexDistance; +out vec4 vertexColor; +out vec4 lightMapColor; +out vec4 overlayColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = fog_distance(Position, FogShape); + vertexColor = minecraft_mix_light(Light0_Direction, Light1_Direction, Normal, Color); + lightMapColor = texelFetch(Sampler2, UV2 / 16, 0); + overlayColor = texelFetch(Sampler1, UV1, 0); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent.fsh new file mode 100644 index 000000000..82ee596b2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent.fsh @@ -0,0 +1,29 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform vec4 FogColor; + +in float vertexDistance; +in vec4 vertexColor; +in vec4 lightMapColor; +in vec4 overlayColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + if (color.a < 0.1) { + discard; + } + color *= vertexColor * ColorModulator; + color.rgb = mix(overlayColor.rgb, color.rgb, overlayColor.a); + color *= lightMapColor; + fragColor = linear_fog(color, vertexDistance, FogStart, FogEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent.json new file mode 100644 index 000000000..cf4ed96a9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent.json @@ -0,0 +1,20 @@ +{ + "vertex": "rendertype_entity_translucent", + "fragment": "rendertype_entity_translucent", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler1" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "Light0_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "Light1_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent.vsh new file mode 100644 index 000000000..de8af38a2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent.vsh @@ -0,0 +1,37 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV1; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler1; +uniform sampler2D Sampler2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform int FogShape; + +uniform vec3 Light0_Direction; +uniform vec3 Light1_Direction; + +out float vertexDistance; +out vec4 vertexColor; +out vec4 lightMapColor; +out vec4 overlayColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = fog_distance(Position, FogShape); + vertexColor = minecraft_mix_light(Light0_Direction, Light1_Direction, Normal, Color); + lightMapColor = texelFetch(Sampler2, UV2 / 16, 0); + overlayColor = texelFetch(Sampler1, UV1, 0); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_cull.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_cull.fsh new file mode 100644 index 000000000..232a61df5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_cull.fsh @@ -0,0 +1,25 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform vec4 FogColor; + +in float vertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; +in vec2 texCoord1; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; + if (color.a < 0.1) { + discard; + } + fragColor = linear_fog(color, vertexDistance, FogStart, FogEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_cull.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_cull.json new file mode 100644 index 000000000..2db71dd7a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_cull.json @@ -0,0 +1,19 @@ +{ + "vertex": "rendertype_entity_translucent_cull", + "fragment": "rendertype_entity_translucent_cull", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "Light0_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "Light1_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_cull.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_cull.vsh new file mode 100644 index 000000000..a2c9595e3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_cull.vsh @@ -0,0 +1,36 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in vec2 UV1; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform int FogShape; + +uniform vec3 Light0_Direction; +uniform vec3 Light1_Direction; + +out float vertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; +out vec2 texCoord1; +out vec2 texCoord2; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = fog_distance(Position, FogShape); + vertexColor = minecraft_mix_light(Light0_Direction, Light1_Direction, Normal, Color) * texelFetch(Sampler2, UV2 / 16, 0); + texCoord0 = UV0; + texCoord1 = UV1; + texCoord2 = UV2; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_emissive.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_emissive.fsh new file mode 100644 index 000000000..b624e4bf9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_emissive.fsh @@ -0,0 +1,26 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; + +in float vertexDistance; +in vec4 vertexColor; +in vec4 overlayColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + if (color.a < 0.1) { + discard; + } + color *= vertexColor * ColorModulator; + color.rgb = mix(overlayColor.rgb, color.rgb, overlayColor.a); + fragColor = color * linear_fog_fade(vertexDistance, FogStart, FogEnd); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_emissive.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_emissive.json new file mode 100644 index 000000000..84e7f3207 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_emissive.json @@ -0,0 +1,18 @@ +{ + "vertex": "rendertype_entity_translucent_emissive", + "fragment": "rendertype_entity_translucent_emissive", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler1" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "Light0_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "Light1_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_emissive.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_emissive.vsh new file mode 100644 index 000000000..c1c4fb6ad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_entity_translucent_emissive.vsh @@ -0,0 +1,33 @@ +#version 150 + +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV1; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler1; +uniform sampler2D Sampler2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; + +uniform vec3 Light0_Direction; +uniform vec3 Light1_Direction; + +out float vertexDistance; +out vec4 vertexColor; +out vec4 overlayColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = length((ModelViewMat * vec4(Position, 1.0)).xyz); + vertexColor = minecraft_mix_light(Light0_Direction, Light1_Direction, Normal, Color); + overlayColor = texelFetch(Sampler1, UV1, 0); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_eyes.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_eyes.fsh new file mode 100644 index 000000000..cde91df5f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_eyes.fsh @@ -0,0 +1,20 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; + +in float vertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor; + fragColor = color * ColorModulator * linear_fog_fade(vertexDistance, FogStart, FogEnd); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_eyes.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_eyes.json new file mode 100644 index 000000000..48dad45e3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_eyes.json @@ -0,0 +1,15 @@ +{ + "vertex": "rendertype_eyes", + "fragment": "rendertype_eyes", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_eyes.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_eyes.vsh new file mode 100644 index 000000000..f5103b4c0 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_eyes.vsh @@ -0,0 +1,23 @@ +#version 150 + +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform int FogShape; + +out float vertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = fog_distance(Position, FogShape); + vertexColor = Color; + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint.fsh new file mode 100644 index 000000000..9bcfd7dbd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint.fsh @@ -0,0 +1,24 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform float GlintAlpha; + +in float vertexDistance; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * ColorModulator; + if (color.a < 0.1) { + discard; + } + float fade = linear_fog_fade(vertexDistance, FogStart, FogEnd) * GlintAlpha; + fragColor = vec4(color.rgb * fade, color.a); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint.json new file mode 100644 index 000000000..8af353303 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint.json @@ -0,0 +1,17 @@ +{ + "vertex": "rendertype_glint", + "fragment": "rendertype_glint", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "GlintAlpha", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] }, + { "name": "TextureMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint.vsh new file mode 100644 index 000000000..f123a0e19 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint.vsh @@ -0,0 +1,21 @@ +#version 150 + +#moj_import + +in vec3 Position; +in vec2 UV0; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform mat4 TextureMat; +uniform int FogShape; + +out float vertexDistance; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = fog_distance(Position, FogShape); + texCoord0 = (TextureMat * vec4(UV0, 0.0, 1.0)).xy; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint_translucent.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint_translucent.fsh new file mode 100644 index 000000000..9bcfd7dbd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint_translucent.fsh @@ -0,0 +1,24 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform float GlintAlpha; + +in float vertexDistance; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * ColorModulator; + if (color.a < 0.1) { + discard; + } + float fade = linear_fog_fade(vertexDistance, FogStart, FogEnd) * GlintAlpha; + fragColor = vec4(color.rgb * fade, color.a); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint_translucent.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint_translucent.json new file mode 100644 index 000000000..d0a7147ea --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint_translucent.json @@ -0,0 +1,17 @@ +{ + "vertex": "rendertype_glint_translucent", + "fragment": "rendertype_glint_translucent", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "GlintAlpha", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] }, + { "name": "TextureMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint_translucent.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint_translucent.vsh new file mode 100644 index 000000000..f123a0e19 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_glint_translucent.vsh @@ -0,0 +1,21 @@ +#version 150 + +#moj_import + +in vec3 Position; +in vec2 UV0; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform mat4 TextureMat; +uniform int FogShape; + +out float vertexDistance; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexDistance = fog_distance(Position, FogShape); + texCoord0 = (TextureMat * vec4(UV0, 0.0, 1.0)).xy; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui.fsh new file mode 100644 index 000000000..d7da70e81 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui.fsh @@ -0,0 +1,15 @@ +#version 150 + +in vec4 vertexColor; + +uniform vec4 ColorModulator; + +out vec4 fragColor; + +void main() { + vec4 color = vertexColor; + if (color.a == 0.0) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui.json new file mode 100644 index 000000000..bc550e8f4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui.json @@ -0,0 +1,11 @@ +{ + "vertex": "rendertype_gui", + "fragment": "rendertype_gui", + "samplers": [ + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui.vsh new file mode 100644 index 000000000..19d3fdbae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui.vsh @@ -0,0 +1,15 @@ +#version 150 + +in vec3 Position; +in vec4 Color; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; + +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_ghost_recipe_overlay.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_ghost_recipe_overlay.fsh new file mode 100644 index 000000000..d7da70e81 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_ghost_recipe_overlay.fsh @@ -0,0 +1,15 @@ +#version 150 + +in vec4 vertexColor; + +uniform vec4 ColorModulator; + +out vec4 fragColor; + +void main() { + vec4 color = vertexColor; + if (color.a == 0.0) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_ghost_recipe_overlay.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_ghost_recipe_overlay.json new file mode 100644 index 000000000..9a1d76e5e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_ghost_recipe_overlay.json @@ -0,0 +1,11 @@ +{ + "vertex": "rendertype_gui_ghost_recipe_overlay", + "fragment": "rendertype_gui_ghost_recipe_overlay", + "samplers": [ + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_ghost_recipe_overlay.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_ghost_recipe_overlay.vsh new file mode 100644 index 000000000..19d3fdbae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_ghost_recipe_overlay.vsh @@ -0,0 +1,15 @@ +#version 150 + +in vec3 Position; +in vec4 Color; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; + +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_overlay.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_overlay.fsh new file mode 100644 index 000000000..d7da70e81 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_overlay.fsh @@ -0,0 +1,15 @@ +#version 150 + +in vec4 vertexColor; + +uniform vec4 ColorModulator; + +out vec4 fragColor; + +void main() { + vec4 color = vertexColor; + if (color.a == 0.0) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_overlay.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_overlay.json new file mode 100644 index 000000000..625c2586b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_overlay.json @@ -0,0 +1,11 @@ +{ + "vertex": "rendertype_gui_overlay", + "fragment": "rendertype_gui_overlay", + "samplers": [ + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_overlay.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_overlay.vsh new file mode 100644 index 000000000..19d3fdbae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_overlay.vsh @@ -0,0 +1,15 @@ +#version 150 + +in vec3 Position; +in vec4 Color; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; + +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_text_highlight.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_text_highlight.fsh new file mode 100644 index 000000000..d7da70e81 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_text_highlight.fsh @@ -0,0 +1,15 @@ +#version 150 + +in vec4 vertexColor; + +uniform vec4 ColorModulator; + +out vec4 fragColor; + +void main() { + vec4 color = vertexColor; + if (color.a == 0.0) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_text_highlight.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_text_highlight.json new file mode 100644 index 000000000..170e2cb44 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_text_highlight.json @@ -0,0 +1,11 @@ +{ + "vertex": "rendertype_gui_text_highlight", + "fragment": "rendertype_gui_text_highlight", + "samplers": [ + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_text_highlight.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_text_highlight.vsh new file mode 100644 index 000000000..19d3fdbae --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_gui_text_highlight.vsh @@ -0,0 +1,15 @@ +#version 150 + +in vec3 Position; +in vec4 Color; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; + +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.fsh new file mode 100644 index 000000000..24e0a42cf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.fsh @@ -0,0 +1,22 @@ +#version 330 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; +in vec2 texCoord1; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; + if (color.a < 0.1) { + discard; + } + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.json new file mode 100644 index 000000000..cb19baf29 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.json @@ -0,0 +1,19 @@ +{ + "vertex": "rendertype_item_entity_translucent_cull", + "fragment": "rendertype_item_entity_translucent_cull", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "Light0_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "Light1_Direction", "type": "float", "count": 3, "values": [0.0, 0.0, 0.0] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.vsh new file mode 100644 index 000000000..e71ea6025 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_item_entity_translucent_cull.vsh @@ -0,0 +1,34 @@ +#version 330 + +#moj_import +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in vec2 UV1; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler2; + + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; +out vec2 texCoord1; +out vec2 texCoord2; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = minecraft_mix_light(Light0_Direction, Light1_Direction, Normal, Color) * texelFetch(Sampler2, UV2 / 16, 0); + texCoord0 = UV0; + texCoord1 = UV1; + texCoord2 = UV2; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_leash.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_leash.fsh new file mode 100644 index 000000000..bbddb26bf --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_leash.fsh @@ -0,0 +1,14 @@ +#version 330 + +#moj_import + + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +flat in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + fragColor = apply_fog(vertexColor, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_leash.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_leash.json new file mode 100644 index 000000000..62701714f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_leash.json @@ -0,0 +1,16 @@ +{ + "vertex": "rendertype_leash", + "fragment": "rendertype_leash", + "samplers": [ + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_leash.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_leash.vsh new file mode 100644 index 000000000..f69465321 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_leash.vsh @@ -0,0 +1,23 @@ +#version 330 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in ivec2 UV2; + +uniform sampler2D Sampler2; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +flat out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color * ColorModulator * texelFetch(Sampler2, UV2 / 16, 0); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lightning.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lightning.fsh new file mode 100644 index 000000000..5d72251c7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lightning.fsh @@ -0,0 +1,14 @@ +#version 330 + +#moj_import +#moj_import + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + fragColor = vertexColor * ColorModulator * (1.0f - total_fog_value(sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd)); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lightning.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lightning.json new file mode 100644 index 000000000..9e7f3d363 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lightning.json @@ -0,0 +1,14 @@ +{ + "vertex": "rendertype_lightning", + "fragment": "rendertype_lightning", + "samplers": [ + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lightning.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lightning.vsh new file mode 100644 index 000000000..4f02f7369 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lightning.vsh @@ -0,0 +1,20 @@ +#version 330 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lines.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lines.fsh new file mode 100644 index 000000000..7d5ac2d83 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lines.fsh @@ -0,0 +1,15 @@ +#version 330 + +#moj_import +#moj_import + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + vec4 color = vertexColor * ColorModulator; + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lines.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lines.json new file mode 100644 index 000000000..670a8bd76 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lines.json @@ -0,0 +1,17 @@ +{ + "vertex": "rendertype_lines", + "fragment": "rendertype_lines", + "samplers": [ + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "LineWidth", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "ScreenSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lines.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lines.vsh new file mode 100644 index 000000000..55c43e6b5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_lines.vsh @@ -0,0 +1,47 @@ +#version 330 + +#moj_import +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec3 Normal; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; + +const float VIEW_SHRINK = 1.0 - (1.0 / 256.0); +const mat4 VIEW_SCALE = mat4( + VIEW_SHRINK, 0.0, 0.0, 0.0, + 0.0, VIEW_SHRINK, 0.0, 0.0, + 0.0, 0.0, VIEW_SHRINK, 0.0, + 0.0, 0.0, 0.0, 1.0 +); + +void main() { + vec4 linePosStart = ProjMat * VIEW_SCALE * ModelViewMat * vec4(Position, 1.0); + vec4 linePosEnd = ProjMat * VIEW_SCALE * ModelViewMat * vec4(Position + Normal, 1.0); + + vec3 ndc1 = linePosStart.xyz / linePosStart.w; + vec3 ndc2 = linePosEnd.xyz / linePosEnd.w; + + vec2 lineScreenDirection = normalize((ndc2.xy - ndc1.xy) * ScreenSize); + vec2 lineOffset = vec2(-lineScreenDirection.y, lineScreenDirection.x) * LineWidth / ScreenSize; + + if (lineOffset.x < 0.0) { + lineOffset *= -1.0; + } + + if (gl_VertexID % 2 == 0) { + gl_Position = vec4((ndc1 + vec3(lineOffset, 0.0)) * linePosStart.w, linePosStart.w); + } else { + gl_Position = vec4((ndc1 - vec3(lineOffset, 0.0)) * linePosStart.w, linePosStart.w); + } + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_outline.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_outline.fsh new file mode 100644 index 000000000..fb511d7e6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_outline.fsh @@ -0,0 +1,18 @@ +#version 330 + +#moj_import + +uniform sampler2D Sampler0; + +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + if (color.a == 0.0) { + discard; + } + fragColor = vec4(ColorModulator.rgb * vertexColor.rgb, ColorModulator.a); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_outline.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_outline.json new file mode 100644 index 000000000..ea6c72fe9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_outline.json @@ -0,0 +1,12 @@ +{ + "vertex": "rendertype_outline", + "fragment": "rendertype_outline", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_outline.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_outline.vsh new file mode 100644 index 000000000..c38076552 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_outline.vsh @@ -0,0 +1,18 @@ +#version 330 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; + +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_solid.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_solid.fsh new file mode 100644 index 000000000..851068d05 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_solid.fsh @@ -0,0 +1,21 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform vec4 FogColor; + +in float vertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; + fragColor = linear_fog(color, vertexDistance, FogStart, FogEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_solid.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_solid.json new file mode 100644 index 000000000..a9e5db459 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_solid.json @@ -0,0 +1,18 @@ +{ + "vertex": "rendertype_solid", + "fragment": "rendertype_solid", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ChunkOffset", "type": "float", "count": 3, "values": [ 0.0, 0.0, 0.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_solid.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_solid.vsh new file mode 100644 index 000000000..02f3d1178 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_solid.vsh @@ -0,0 +1,30 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform vec3 ChunkOffset; +uniform int FogShape; + +out float vertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + vec3 pos = Position + ChunkOffset; + gl_Position = ProjMat * ModelViewMat * vec4(pos, 1.0); + + vertexDistance = fog_distance(pos, FogShape); + vertexColor = Color * minecraft_sample_lightmap(Sampler2, UV2); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text.fsh new file mode 100644 index 000000000..02207c364 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text.fsh @@ -0,0 +1,21 @@ +#version 330 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; + if (color.a < 0.1) { + discard; + } + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text.json new file mode 100644 index 000000000..607a9c1e8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text.json @@ -0,0 +1,17 @@ +{ + "vertex": "rendertype_text", + "fragment": "rendertype_text", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text.vsh new file mode 100644 index 000000000..96fb48bf2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text.vsh @@ -0,0 +1,26 @@ +#version 330 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV2; + +uniform sampler2D Sampler2; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color * texelFetch(Sampler2, UV2 / 16, 0); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background.fsh new file mode 100644 index 000000000..2fc71dbd9 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background.fsh @@ -0,0 +1,21 @@ +#version 330 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = vertexColor * ColorModulator; + if (color.a < 0.1) { + discard; + } + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background.json new file mode 100644 index 000000000..b498c38a5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background.json @@ -0,0 +1,16 @@ +{ + "vertex": "rendertype_text_background", + "fragment": "rendertype_text_background", + "samplers": [ + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background.vsh new file mode 100644 index 000000000..b311e937e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background.vsh @@ -0,0 +1,23 @@ +#version 330 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in ivec2 UV2; + +uniform sampler2D Sampler2; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color * texelFetch(Sampler2, UV2 / 16, 0); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background_see_through.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background_see_through.fsh new file mode 100644 index 000000000..80e32f666 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background_see_through.fsh @@ -0,0 +1,15 @@ +#version 330 + +#moj_import + +in vec4 vertexColor; + +out vec4 fragColor; + +void main() { + vec4 color = vertexColor; + if (color.a < 0.1) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background_see_through.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background_see_through.json new file mode 100644 index 000000000..a1fb14dd2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background_see_through.json @@ -0,0 +1,11 @@ +{ + "vertex": "rendertype_text_background_see_through", + "fragment": "rendertype_text_background_see_through", + "samplers": [ + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background_see_through.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background_see_through.vsh new file mode 100644 index 000000000..266f408ab --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_background_see_through.vsh @@ -0,0 +1,15 @@ +#version 330 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; + +out vec4 vertexColor; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity.fsh new file mode 100644 index 000000000..44879f044 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity.fsh @@ -0,0 +1,21 @@ +#version 330 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0).rrrr * vertexColor * ColorModulator; + if (color.a < 0.1) { + discard; + } + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity.json new file mode 100644 index 000000000..18712ec03 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity.json @@ -0,0 +1,17 @@ +{ + "vertex": "rendertype_text_intensity", + "fragment": "rendertype_text_intensity", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity.vsh new file mode 100644 index 000000000..96fb48bf2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity.vsh @@ -0,0 +1,26 @@ +#version 330 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV2; + +uniform sampler2D Sampler2; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color * texelFetch(Sampler2, UV2 / 16, 0); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity_see_through.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity_see_through.fsh new file mode 100644 index 000000000..9c5360d3b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity_see_through.fsh @@ -0,0 +1,18 @@ +#version 330 + +#moj_import + +uniform sampler2D Sampler0; + +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0).rrrr * vertexColor; + if (color.a < 0.1) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity_see_through.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity_see_through.json new file mode 100644 index 000000000..aaeee8b46 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity_see_through.json @@ -0,0 +1,12 @@ +{ + "vertex": "rendertype_text_intensity_see_through", + "fragment": "rendertype_text_intensity_see_through", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity_see_through.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity_see_through.vsh new file mode 100644 index 000000000..c38076552 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_intensity_see_through.vsh @@ -0,0 +1,18 @@ +#version 330 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; + +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_see_through.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_see_through.fsh new file mode 100644 index 000000000..bcad29a5f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_see_through.fsh @@ -0,0 +1,18 @@ +#version 330 + +#moj_import + +uniform sampler2D Sampler0; + +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor; + if (color.a < 0.1) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_see_through.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_see_through.json new file mode 100644 index 000000000..ae7f4bee6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_see_through.json @@ -0,0 +1,12 @@ +{ + "vertex": "rendertype_text_see_through", + "fragment": "rendertype_text_see_through", + "samplers": [ + { "name": "Sampler0" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_see_through.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_see_through.vsh new file mode 100644 index 000000000..c38076552 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_text_see_through.vsh @@ -0,0 +1,18 @@ +#version 330 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; + +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + vertexColor = Color; + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent.fsh new file mode 100644 index 000000000..851068d05 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent.fsh @@ -0,0 +1,21 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform vec4 FogColor; + +in float vertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; + fragColor = linear_fog(color, vertexDistance, FogStart, FogEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent.json new file mode 100644 index 000000000..f157ec73a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent.json @@ -0,0 +1,18 @@ +{ + "vertex": "rendertype_translucent", + "fragment": "rendertype_translucent", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ChunkOffset", "type": "float", "count": 3, "values": [ 0.0, 0.0, 0.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent.vsh new file mode 100644 index 000000000..02f3d1178 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent.vsh @@ -0,0 +1,30 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform vec3 ChunkOffset; +uniform int FogShape; + +out float vertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + vec3 pos = Position + ChunkOffset; + gl_Position = ProjMat * ModelViewMat * vec4(pos, 1.0); + + vertexDistance = fog_distance(pos, FogShape); + vertexColor = Color * minecraft_sample_lightmap(Sampler2, UV2); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent_moving_block.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent_moving_block.fsh new file mode 100644 index 000000000..251d9aa7b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent_moving_block.fsh @@ -0,0 +1,20 @@ +#version 330 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; +uniform sampler2D Sampler2; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor; + color = color * ColorModulator; + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent_moving_block.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent_moving_block.json new file mode 100644 index 000000000..1c08b62c5 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent_moving_block.json @@ -0,0 +1,13 @@ +{ + "vertex": "rendertype_translucent_moving_block", + "fragment": "rendertype_translucent_moving_block", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent_moving_block.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent_moving_block.vsh new file mode 100644 index 000000000..e0e27a2c7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_translucent_moving_block.vsh @@ -0,0 +1,27 @@ +#version 330 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler2; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); + vertexColor = Color * texelFetch(Sampler2, UV2 / 16, 0); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_tripwire.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_tripwire.fsh new file mode 100644 index 000000000..3fe46019e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_tripwire.fsh @@ -0,0 +1,24 @@ +#version 150 + +#moj_import + +uniform sampler2D Sampler0; + +uniform vec4 ColorModulator; +uniform float FogStart; +uniform float FogEnd; +uniform vec4 FogColor; + +in float vertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; + if (color.a < 0.1) { + discard; + } + fragColor = linear_fog(color, vertexDistance, FogStart, FogEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_tripwire.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_tripwire.json new file mode 100644 index 000000000..759278d8f --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_tripwire.json @@ -0,0 +1,18 @@ +{ + "vertex": "rendertype_tripwire", + "fragment": "rendertype_tripwire", + "samplers": [ + { "name": "Sampler0" }, + { "name": "Sampler2" } + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ChunkOffset", "type": "float", "count": 3, "values": [ 0.0, 0.0, 0.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] }, + { "name": "FogStart", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "FogEnd", "type": "float", "count": 1, "values": [ 1.0 ] }, + { "name": "FogColor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 0.0, 0.0 ] }, + { "name": "FogShape", "type": "int", "count": 1, "values": [ 0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_tripwire.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_tripwire.vsh new file mode 100644 index 000000000..02f3d1178 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_tripwire.vsh @@ -0,0 +1,30 @@ +#version 150 + +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler2; + +uniform mat4 ModelViewMat; +uniform mat4 ProjMat; +uniform vec3 ChunkOffset; +uniform int FogShape; + +out float vertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +void main() { + vec3 pos = Position + ChunkOffset; + gl_Position = ProjMat * ModelViewMat * vec4(pos, 1.0); + + vertexDistance = fog_distance(pos, FogShape); + vertexColor = Color * minecraft_sample_lightmap(Sampler2, UV2); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_water_mask.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_water_mask.fsh new file mode 100644 index 000000000..4c6e20ce7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_water_mask.fsh @@ -0,0 +1,9 @@ +#version 330 + +#moj_import + +out vec4 fragColor; + +void main() { + fragColor = ColorModulator; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_water_mask.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_water_mask.json new file mode 100644 index 000000000..32bfac935 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_water_mask.json @@ -0,0 +1,11 @@ +{ + "vertex": "rendertype_water_mask", + "fragment": "rendertype_water_mask", + "samplers": [ + ], + "uniforms": [ + { "name": "ModelViewMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "ColorModulator", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_water_mask.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_water_mask.vsh new file mode 100644 index 000000000..5192641ed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_water_mask.vsh @@ -0,0 +1,10 @@ +#version 330 + +#moj_import +#moj_import + +in vec3 Position; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_world_border.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_world_border.fsh new file mode 100644 index 000000000..72d768dac --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_world_border.fsh @@ -0,0 +1,17 @@ +#version 330 + +#moj_import + +uniform sampler2D Sampler0; + +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0); + if (color.a == 0.0) { + discard; + } + fragColor = color * ColorModulator; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_world_border.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_world_border.vsh new file mode 100644 index 000000000..f46622fdc --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/rendertype_world_border.vsh @@ -0,0 +1,16 @@ +#version 330 + +#moj_import +#moj_import + +in vec3 Position; +in vec2 UV0; + +out vec2 texCoord0; + +void main() { + vec3 pos = Position + ModelOffset; + gl_Position = ProjMat * ModelViewMat * vec4(pos, 1.0); + + texCoord0 = (TextureMat * vec4(UV0, 0.0, 1.0)).xy; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/screenquad.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/screenquad.vsh new file mode 100644 index 000000000..6700d0c92 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/screenquad.vsh @@ -0,0 +1,11 @@ +#version 330 + +out vec2 texCoord; + +void main() { + vec2 uv = vec2((gl_VertexID << 1) & 2, gl_VertexID & 2); + vec4 pos = vec4(uv * vec2(2, 2) + vec2(-1, -1), 0, 1); + + gl_Position = pos; + texCoord = uv; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/sky.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/sky.fsh new file mode 100644 index 000000000..c11907d74 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/sky.fsh @@ -0,0 +1,13 @@ +#version 330 + +#moj_import +#moj_import + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; + +out vec4 fragColor; + +void main() { + fragColor = apply_fog(ColorModulator, sphericalVertexDistance, cylindricalVertexDistance, 0.0, FogSkyEnd, FogSkyEnd, FogSkyEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/sky.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/sky.vsh new file mode 100644 index 000000000..129ffa7c8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/sky.vsh @@ -0,0 +1,17 @@ +#version 330 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); + + sphericalVertexDistance = fog_spherical_distance(Position); + cylindricalVertexDistance = fog_cylindrical_distance(Position); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/stars.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/stars.fsh new file mode 100644 index 000000000..4c6e20ce7 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/stars.fsh @@ -0,0 +1,9 @@ +#version 330 + +#moj_import + +out vec4 fragColor; + +void main() { + fragColor = ColorModulator; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/stars.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/stars.vsh new file mode 100644 index 000000000..5192641ed --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/stars.vsh @@ -0,0 +1,10 @@ +#version 330 + +#moj_import +#moj_import + +in vec3 Position; + +void main() { + gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/terrain.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/terrain.fsh new file mode 100644 index 000000000..df69ca7f2 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/terrain.fsh @@ -0,0 +1,23 @@ +#version 330 + +#moj_import +#moj_import + +uniform sampler2D Sampler0; + +in float sphericalVertexDistance; +in float cylindricalVertexDistance; +in vec4 vertexColor; +in vec2 texCoord0; + +out vec4 fragColor; + +void main() { + vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator; +#ifdef ALPHA_CUTOUT + if (color.a < ALPHA_CUTOUT) { + discard; + } +#endif + fragColor = apply_fog(color, sphericalVertexDistance, cylindricalVertexDistance, FogEnvironmentalStart, FogEnvironmentalEnd, FogRenderDistanceStart, FogRenderDistanceEnd, FogColor); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/terrain.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/terrain.vsh new file mode 100644 index 000000000..256610d97 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/core/terrain.vsh @@ -0,0 +1,32 @@ +#version 330 + +#moj_import +#moj_import +#moj_import + +in vec3 Position; +in vec4 Color; +in vec2 UV0; +in ivec2 UV2; +in vec3 Normal; + +uniform sampler2D Sampler2; + +out float sphericalVertexDistance; +out float cylindricalVertexDistance; +out vec4 vertexColor; +out vec2 texCoord0; + +vec4 minecraft_sample_lightmap(sampler2D lightMap, ivec2 uv) { + return texture(lightMap, clamp((uv / 256.0) + 0.5 / 16.0, vec2(0.5 / 16.0), vec2(15.5 / 16.0))); +} + +void main() { + vec3 pos = Position + ModelOffset; + gl_Position = ProjMat * ModelViewMat * vec4(pos, 1.0); + + sphericalVertexDistance = fog_spherical_distance(pos); + cylindricalVertexDistance = fog_cylindrical_distance(pos); + vertexColor = Color * minecraft_sample_lightmap(Sampler2, UV2); + texCoord0 = UV0; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/dynamictransforms.glsl b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/dynamictransforms.glsl new file mode 100644 index 000000000..6233506d1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/dynamictransforms.glsl @@ -0,0 +1,9 @@ +#version 330 + +layout(std140) uniform DynamicTransforms { + mat4 ModelViewMat; + vec4 ColorModulator; + vec3 ModelOffset; + mat4 TextureMat; + float LineWidth; +}; diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/fog.glsl b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/fog.glsl new file mode 100644 index 000000000..cbdcb2d13 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/fog.glsl @@ -0,0 +1,40 @@ +#version 330 + +layout(std140) uniform Fog { + vec4 FogColor; + float FogEnvironmentalStart; + float FogEnvironmentalEnd; + float FogRenderDistanceStart; + float FogRenderDistanceEnd; + float FogSkyEnd; + float FogCloudsEnd; +}; + +float linear_fog_value(float vertexDistance, float fogStart, float fogEnd) { + if (vertexDistance <= fogStart) { + return 0.0; + } else if (vertexDistance >= fogEnd) { + return 1.0; + } + + return (vertexDistance - fogStart) / (fogEnd - fogStart); +} + +float total_fog_value(float sphericalVertexDistance, float cylindricalVertexDistance, float environmentalStart, float environmantalEnd, float renderDistanceStart, float renderDistanceEnd) { + return max(linear_fog_value(sphericalVertexDistance, environmentalStart, environmantalEnd), linear_fog_value(cylindricalVertexDistance, renderDistanceStart, renderDistanceEnd)); +} + +vec4 apply_fog(vec4 inColor, float sphericalVertexDistance, float cylindricalVertexDistance, float environmentalStart, float environmantalEnd, float renderDistanceStart, float renderDistanceEnd, vec4 fogColor) { + float fogValue = total_fog_value(sphericalVertexDistance, cylindricalVertexDistance, environmentalStart, environmantalEnd, renderDistanceStart, renderDistanceEnd); + return vec4(mix(inColor.rgb, fogColor.rgb, fogValue * fogColor.a), inColor.a); +} + +float fog_spherical_distance(vec3 pos) { + return length(pos); +} + +float fog_cylindrical_distance(vec3 pos) { + float distXZ = length(pos.xz); + float distY = abs(pos.y); + return max(distXZ, distY); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/globals.glsl b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/globals.glsl new file mode 100644 index 000000000..948df9018 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/globals.glsl @@ -0,0 +1,8 @@ +#version 330 + +layout(std140) uniform Globals { + vec2 ScreenSize; + float GlintAlpha; + float GameTime; + int MenuBlurRadius; +}; diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/light.glsl b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/light.glsl new file mode 100644 index 000000000..80a0f7ea6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/light.glsl @@ -0,0 +1,25 @@ +#version 330 + +#define MINECRAFT_LIGHT_POWER (0.6) +#define MINECRAFT_AMBIENT_LIGHT (0.4) + +layout(std140) uniform Lighting { + vec3 Light0_Direction; + vec3 Light1_Direction; +}; + +vec2 minecraft_compute_light(vec3 lightDir0, vec3 lightDir1, vec3 normal) { + return vec2(dot(lightDir0, normal), dot(lightDir1, normal)); +} + +vec4 minecraft_mix_light_separate(vec2 light, vec4 color) { + vec2 lightValue = max(vec2(0.0), light); + float lightAccum = min(1.0, (lightValue.x + lightValue.y) * MINECRAFT_LIGHT_POWER + MINECRAFT_AMBIENT_LIGHT); + return vec4(color.rgb * lightAccum, color.a); +} + +vec4 minecraft_mix_light(vec3 lightDir0, vec3 lightDir1, vec3 normal, vec4 color) { + vec2 light = minecraft_compute_light(lightDir0, lightDir1, normal); + return minecraft_mix_light_separate(light, color); +} + diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/matrix.glsl b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/matrix.glsl new file mode 100644 index 000000000..7c5c0d7f3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/matrix.glsl @@ -0,0 +1,8 @@ +#version 330 + +mat2 mat2_rotate_z(float radians) { + return mat2( + cos(radians), -sin(radians), + sin(radians), cos(radians) + ); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/projection.glsl b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/projection.glsl new file mode 100644 index 000000000..c405b8f8b --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/include/projection.glsl @@ -0,0 +1,12 @@ +#version 330 + +layout(std140) uniform Projection { + mat4 ProjMat; +}; + +vec4 projection_from_position(vec4 position) { + vec4 projection = position * 0.5; + projection.xy = vec2(projection.x + projection.w, projection.y + projection.w); + projection.zw = position.zw; + return projection; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/bits.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/bits.fsh new file mode 100644 index 000000000..4169756a1 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/bits.fsh @@ -0,0 +1,35 @@ +#version 330 + +uniform sampler2D InSampler; + +in vec2 texCoord; + +layout(std140) uniform SamplerInfo { + vec2 OutSize; + vec2 InSize; +}; + +layout(std140) uniform BitsConfig { + float Resolution; + float MosaicSize; +}; + +out vec4 fragColor; + +const float Saturation = 1.5; + +void main() { + vec2 oneTexel = 1.0 / InSize; + vec2 mosaicInSize = InSize / MosaicSize; + vec2 fractPix = fract(texCoord * mosaicInSize) / mosaicInSize; + + vec4 baseTexel = texture(InSampler, texCoord - fractPix); + + vec3 fractTexel = baseTexel.rgb - fract(baseTexel.rgb * Resolution) / Resolution; + float luma = dot(fractTexel, vec3(0.3, 0.59, 0.11)); + vec3 chroma = (fractTexel - luma) * Saturation; + baseTexel.rgb = luma + chroma; + baseTexel.a = 1.0; + + fragColor = baseTexel; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/blit.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/blit.fsh new file mode 100644 index 000000000..72d8c1ecd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/blit.fsh @@ -0,0 +1,15 @@ +#version 330 + +uniform sampler2D InSampler; + +layout(std140) uniform BlitConfig { + vec4 ColorModulate; +}; + +in vec2 texCoord; + +out vec4 fragColor; + +void main(){ + fragColor = texture(InSampler, texCoord) * ColorModulate; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/blur.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/blur.json new file mode 100644 index 000000000..096cd06fd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/blur.json @@ -0,0 +1,81 @@ +{ + "targets": [ + "swap" + ], + "passes": [ + { + "name": "box_blur", + "intarget": "minecraft:main", + "outtarget": "swap", + "use_linear_filter": true, + "uniforms": [ + { + "name": "BlurDir", + "values": [ 1.0, 0.0 ] + } + ] + }, + { + "name": "box_blur", + "intarget": "swap", + "outtarget": "minecraft:main", + "use_linear_filter": true, + "uniforms": [ + { + "name": "BlurDir", + "values": [ 0.0, 1.0 ] + } + ] + }, { + "name": "box_blur", + "intarget": "minecraft:main", + "outtarget": "swap", + "use_linear_filter": true, + "uniforms": [ + { + "name": "BlurDir", + "values": [ 1.0, 0.0 ], + "RadiusMultiplier" : 0.5 + } + ] + }, + { + "name": "box_blur", + "intarget": "swap", + "outtarget": "minecraft:main", + "use_linear_filter": true, + "uniforms": [ + { + "name": "BlurDir", + "values": [ 0.0, 1.0 ], + "RadiusMultiplier" : 0.5 + } + ] + }, { + "name": "box_blur", + "intarget": "minecraft:main", + "outtarget": "swap", + "use_linear_filter": true, + "uniforms": [ + { + "name": "BlurDir", + "values": [ 1.0, 0.0 ], + "RadiusMultiplier" : 0.25 + } + ] + }, + { + "name": "box_blur", + "intarget": "swap", + "outtarget": "minecraft:main", + "use_linear_filter": true, + "uniforms": [ + { + "name": "BlurDir", + "values": [ 0.0, 1.0 ], + "RadiusMultiplier" : 0.25 + } + ] + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/box_blur.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/box_blur.fsh new file mode 100644 index 000000000..9e016a328 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/box_blur.fsh @@ -0,0 +1,35 @@ +#version 330 + +#moj_import + +uniform sampler2D InSampler; + +layout(std140) uniform SamplerInfo { + vec2 OutSize; + vec2 InSize; +}; + +layout(std140) uniform BlurConfig { + vec2 BlurDir; + float Radius; +}; + +in vec2 texCoord; + +out vec4 fragColor; + +// This shader relies on GL_LINEAR sampling to reduce the amount of texture samples in half. +// Instead of sampling each pixel position with a step of 1 we sample between pixels with a step of 2. +// In the end we sample the last pixel with a half weight, since the amount of pixels to sample is always odd (actualRadius * 2 + 1). +void main() { + vec2 oneTexel = 1.0 / InSize; + vec2 sampleStep = oneTexel * BlurDir; + + vec4 blurred = vec4(0.0); + float actualRadius = Radius >= 0.5 ? round(Radius) : float(MenuBlurRadius); + for (float a = -actualRadius + 0.5; a <= actualRadius; a += 2.0) { + blurred += texture(InSampler, texCoord + sampleStep * a); + } + blurred += texture(InSampler, texCoord + sampleStep * actualRadius) / 2.0; + fragColor = blurred / (actualRadius + 0.5); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/color_convolve.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/color_convolve.fsh new file mode 100644 index 000000000..f18866a30 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/color_convolve.fsh @@ -0,0 +1,39 @@ +#version 330 + +uniform sampler2D InSampler; + +in vec2 texCoord; + +layout(std140) uniform SamplerInfo { + vec2 OutSize; + vec2 InSize; +}; + +layout(std140) uniform ColorConfig { + vec3 RedMatrix; + vec3 GreenMatrix; + vec3 BlueMatrix; +}; + +const vec3 Gray = vec3(0.3, 0.59, 0.11); +const float Saturation = 1.8; + +out vec4 fragColor; + +void main() { + vec2 oneTexel = 1.0 / InSize; + vec4 InTexel = texture(InSampler, texCoord); + + // Color Matrix + float RedValue = dot(InTexel.rgb, RedMatrix); + float GreenValue = dot(InTexel.rgb, GreenMatrix); + float BlueValue = dot(InTexel.rgb, BlueMatrix); + vec3 OutColor = vec3(RedValue, GreenValue, BlueValue); + + // Saturation + float Luma = dot(OutColor, Gray); + vec3 Chroma = OutColor - Luma; + OutColor = (Chroma * Saturation) + Luma; + + fragColor = vec4(OutColor, 1.0); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/creeper.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/creeper.json new file mode 100644 index 000000000..da503f1af --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/creeper.json @@ -0,0 +1,41 @@ +{ + "targets": [ + "swap" + ], + "passes": [ + { + "name": "color_convolve", + "intarget": "minecraft:main", + "outtarget": "swap", + "uniforms": [ + { + "name": "RedMatrix", + "values": [ 0.0, 0.0, 0.0 ] + }, + { + "name": "GreenMatrix", + "values": [ 0.3, 0.59, 0.11 ] + }, + { + "name": "BlueMatrix", + "values": [ 0.0, 0.0, 0.0 ] + } + ] + }, + { + "name": "bits", + "intarget": "swap", + "outtarget": "minecraft:main", + "uniforms": [ + { + "name": "Resolution", + "values": [ 16.0 ] + }, + { + "name": "MosaicSize", + "values": [ 4.0 ] + } + ] + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/entity_outline.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/entity_outline.json new file mode 100644 index 000000000..a2efc39cd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/entity_outline.json @@ -0,0 +1,42 @@ +{ + "targets": [ + "swap", + "final" + ], + "passes": [ + { + "name": "entity_outline", + "intarget": "final", + "outtarget": "swap" + }, + { + "name": "entity_outline_box_blur", + "intarget": "swap", + "outtarget": "final", + "use_linear_filter": true, + "uniforms": [ + { + "name": "BlurDir", + "values": [ 1.0, 0.0 ] + } + ] + }, + { + "name": "entity_outline_box_blur", + "intarget": "final", + "outtarget": "swap", + "use_linear_filter": true, + "uniforms": [ + { + "name": "BlurDir", + "values": [ 0.0, 1.0 ] + } + ] + }, + { + "name": "blit", + "intarget": "swap", + "outtarget": "final" + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/entity_outline_box_blur.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/entity_outline_box_blur.fsh new file mode 100644 index 000000000..75d00591e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/entity_outline_box_blur.fsh @@ -0,0 +1,30 @@ +#version 330 + +layout(std140) uniform SamplerInfo { + vec2 OutSize; + vec2 InSize; +}; + +layout(std140) uniform BlurConfig { + vec2 BlurDir; + float Radius; +}; + +uniform sampler2D InSampler; + +in vec2 texCoord; + +out vec4 fragColor; + +void main() { + vec2 oneTexel = 1.0 / InSize; + vec2 sampleStep = oneTexel * BlurDir; + + vec4 blurred = vec4(0.0); + float radius = 2.0; + for (float a = -radius + 0.5; a <= radius; a += 2.0) { + blurred += texture(InSampler, texCoord + sampleStep * a); + } + blurred += texture(InSampler, texCoord + sampleStep * radius) / 2.0; + fragColor = vec4((blurred / (radius + 0.5)).rgb, blurred.a); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/entity_sobel.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/entity_sobel.fsh new file mode 100644 index 000000000..262f2a63a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/entity_sobel.fsh @@ -0,0 +1,29 @@ +#version 330 + +uniform sampler2D InSampler; + +layout(std140) uniform SamplerInfo { + vec2 OutSize; + vec2 InSize; +}; + +in vec2 texCoord; + +out vec4 fragColor; + +void main(){ + vec2 oneTexel = 1.0 / InSize; + + vec4 center = texture(InSampler, texCoord); + vec4 left = texture(InSampler, texCoord - vec2(oneTexel.x, 0.0)); + vec4 right = texture(InSampler, texCoord + vec2(oneTexel.x, 0.0)); + vec4 up = texture(InSampler, texCoord - vec2(0.0, oneTexel.y)); + vec4 down = texture(InSampler, texCoord + vec2(0.0, oneTexel.y)); + float leftDiff = abs(center.a - left.a); + float rightDiff = abs(center.a - right.a); + float upDiff = abs(center.a - up.a); + float downDiff = abs(center.a - down.a); + float total = clamp(leftDiff + rightDiff + upDiff + downDiff, 0.0, 1.0); + vec3 outColor = center.rgb * center.a + left.rgb * left.a + right.rgb * right.a + up.rgb * up.a + down.rgb * down.a; + fragColor = vec4(outColor * 0.2, total); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/invert.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/invert.fsh new file mode 100644 index 000000000..aed77179c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/invert.fsh @@ -0,0 +1,25 @@ +#version 330 + +uniform sampler2D InSampler; + +in vec2 texCoord; + +layout(std140) uniform SamplerInfo { + vec2 OutSize; + vec2 InSize; +}; + +layout(std140) uniform InvertConfig { + float InverseAmount; +}; + +out vec4 fragColor; + +void main(){ + vec2 sizeRatio = OutSize / InSize; + + vec4 diffuseColor = texture(InSampler, texCoord); + vec4 invertColor = 1.0 - diffuseColor; + vec4 outColor = mix(diffuseColor, invertColor, InverseAmount); + fragColor = vec4(outColor.rgb, 1.0); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/invert.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/invert.json new file mode 100644 index 000000000..2ab63fb65 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/invert.json @@ -0,0 +1,23 @@ +{ + "targets": [ + "swap" + ], + "passes": [ + { + "name": "invert", + "intarget": "minecraft:main", + "outtarget": "swap", + "uniforms": [ + { + "name": "InverseAmount", + "values": [ 0.8 ] + } + ] + }, + { + "name": "blit", + "intarget": "swap", + "outtarget": "minecraft:main" + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/rotscale.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/rotscale.vsh new file mode 100644 index 000000000..c70e9fc34 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/rotscale.vsh @@ -0,0 +1,31 @@ +#version 330 + +layout(std140) uniform SamplerInfo { + vec2 OutSize; + vec2 InSize; +}; + +layout(std140) uniform RotScaleConfig { + vec2 InScale; + vec2 InOffset; + float InRotation; +}; + +out vec2 texCoord; +out vec2 scaledCoord; + +void main(){ + vec2 uv = vec2((gl_VertexID << 1) & 2, gl_VertexID & 2); + vec4 pos = vec4(uv * vec2(2, 2) + vec2(-1, -1), 0, 1); + + gl_Position = pos; + texCoord = uv; + + float Deg2Rad = 0.0174532925; + float InRadians = InRotation * Deg2Rad; + float Cosine = cos(InRadians); + float Sine = sin(InRadians); + float RotU = texCoord.x * Cosine - texCoord.y * Sine; + float RotV = texCoord.y * Cosine + texCoord.x * Sine; + scaledCoord = vec2(RotU, RotV) * InScale + InOffset; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/spider.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/spider.json new file mode 100644 index 000000000..ea8a59fa6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/spider.json @@ -0,0 +1,234 @@ +{ + "targets": [ + "largeBlur", + "smallBlur", + "temp", + "swap" + ], + "passes": [ + { + "name": "box_blur", + "intarget": "minecraft:main", + "outtarget": "temp", + "use_linear_filter": true, + "uniforms": [ + { + "name": "BlurDir", + "values": [ 1.0, 0.0 ] + }, + { + "name": "Radius", + "values": [ 15.0 ] + } + ] + }, + { + "name": "box_blur", + "intarget": "temp", + "outtarget": "largeBlur", + "use_linear_filter": true, + "uniforms": [ + { + "name": "BlurDir", + "values": [ 0.0, 1.0 ] + }, + { + "name": "Radius", + "values": [ 15.0 ] + } + ] + }, + { + "name": "box_blur", + "intarget": "minecraft:main", + "outtarget": "temp", + "use_linear_filter": true, + "uniforms": [ + { + "name": "BlurDir", + "values": [ 1.0, 0.0 ] + }, + { + "name": "Radius", + "values": [ 7.0 ] + } + ] + }, + { + "name": "box_blur", + "intarget": "temp", + "outtarget": "smallBlur", + "use_linear_filter": true, + "uniforms": [ + { + "name": "BlurDir", + "values": [ 0.0, 1.0 ] + }, + { + "name": "Radius", + "values": [ 7.0 ] + } + ] + }, + { + "name": "spider", + "intarget": "minecraft:main", + "outtarget": "temp", + "auxtargets": [ + { + "name": "BlurSampler", + "id": "largeBlur" + } + ], + "uniforms": [ + { + "name": "InScale", + "values": [ 1.25, 2.0 ] + }, + { + "name": "InOffset", + "values": [ -0.125, -0.1 ] + }, + { + "name": "Scissor", + "values": [ 0.0, 0.0, 1.0, 1.0 ] + }, + { + "name": "Vignette", + "values": [ 0.1, 0.1, 0.9, 0.9 ] + } + ] + }, + { + "name": "spider", + "intarget": "smallBlur", + "outtarget": "swap", + "auxtargets": [ + { + "name": "BlurSampler", + "id": "temp" + } + ], + "uniforms": [ + { + "name": "InScale", + "values": [ 2.35, 4.2 ] + }, + { + "name": "InOffset", + "values": [ -1.1, -1.5 ] + }, + { + "name": "InRotation", + "values": [ -45.0 ] + }, + { + "name": "Scissor", + "values": [ 0.21, 0.0, 0.79, 1.0 ] + }, + { + "name": "Vignette", + "values": [ 0.31, 0.1, 0.69, 0.9 ] + } + ] + }, + { + "name": "spider", + "intarget": "smallBlur", + "outtarget": "temp", + "auxtargets": [ + { + "name": "BlurSampler", + "id": "swap" + } + ], + "uniforms": [ + { + "name": "InScale", + "values": [ 2.35, 4.2 ] + }, + { + "name": "InOffset", + "values": [ 0.45, -4.45 ] + }, + { + "name": "InRotation", + "values": [ 45.0 ] + }, + { + "name": "Scissor", + "values": [ 0.21, 0.0, 0.79, 1.0 ] + }, + { + "name": "Vignette", + "values": [ 0.31, 0.1, 0.69, 0.9 ] + } + ] + }, + { + "name": "spider", + "intarget": "smallBlur", + "outtarget": "swap", + "auxtargets": [ + { + "name": "BlurSampler", + "id": "temp" + } + ], + "uniforms": [ + { + "name": "InScale", + "values": [ 2.35, 2.35 ] + }, + { + "name": "InOffset", + "values": [ -0.385, -1.29 ] + }, + { + "name": "InRotation", + "values": [ 0.0 ] + }, + { + "name": "Vignette", + "values": [ 0.31, 0.1, 0.69, 0.9 ] + } + ] + }, + { + "name": "spider", + "intarget": "smallBlur", + "outtarget": "temp", + "auxtargets": [ + { + "name": "BlurSampler", + "id": "swap" + } + ], + "uniforms": [ + { + "name": "InScale", + "values": [ 2.35, 2.35 ] + }, + { + "name": "InOffset", + "values": [ -0.965, -1.29 ] + }, + { + "name": "Vignette", + "values": [ 0.31, 0.1, 0.69, 0.9 ] + } + ] + }, + { + "name": "blit", + "intarget": "temp", + "outtarget": "minecraft:main", + "uniforms": [ + { + "name": "ColorModulate", + "values": [ 1.0, 0.8, 0.8, 1.0 ] + } + ] + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/spiderclip.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/spiderclip.fsh new file mode 100644 index 000000000..aea5762ad --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/spiderclip.fsh @@ -0,0 +1,39 @@ +#version 330 + +uniform sampler2D InSampler; +uniform sampler2D BlurSampler; + +in vec2 texCoord; +in vec2 scaledCoord; + +layout(std140) uniform SamplerInfo { + vec2 OutSize; + vec2 InSize; +}; + +layout(std140) uniform SpiderConfig { + vec4 Scissor; + vec4 Vignette; +}; + +out vec4 fragColor; + +void main() { + vec4 ScaledTexel = texture(InSampler, scaledCoord); + vec4 BlurTexel = texture(BlurSampler, texCoord); + vec4 OutTexel = ScaledTexel; + + // -- Alpha Clipping -- + if (scaledCoord.x < Scissor.x) OutTexel = BlurTexel; + if (scaledCoord.y < Scissor.y) OutTexel = BlurTexel; + if (scaledCoord.x > Scissor.z) OutTexel = BlurTexel; + if (scaledCoord.y > Scissor.w) OutTexel = BlurTexel; + + clamp(scaledCoord, 0.0, 1.0); + + if (scaledCoord.x < Vignette.x) OutTexel = mix(BlurTexel, OutTexel, (Scissor.x - scaledCoord.x) / (Scissor.x - Vignette.x)); + if (scaledCoord.y < Vignette.y) OutTexel = mix(BlurTexel, OutTexel, (Scissor.y - scaledCoord.y) / (Scissor.y - Vignette.y)); + if (scaledCoord.x > Vignette.z) OutTexel = mix(BlurTexel, OutTexel, (Scissor.z - scaledCoord.x) / (Scissor.z - Vignette.z)); + if (scaledCoord.y > Vignette.w) OutTexel = mix(BlurTexel, OutTexel, (Scissor.w - scaledCoord.y) / (Scissor.w - Vignette.w)); + fragColor = vec4(OutTexel.rgb, 1.0); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/transparency.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/transparency.fsh new file mode 100644 index 000000000..109deb534 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/transparency.fsh @@ -0,0 +1,68 @@ +#version 330 + +uniform sampler2D MainSampler; +uniform sampler2D MainDepthSampler; +uniform sampler2D TranslucentSampler; +uniform sampler2D TranslucentDepthSampler; +uniform sampler2D ItemEntitySampler; +uniform sampler2D ItemEntityDepthSampler; +uniform sampler2D ParticlesSampler; +uniform sampler2D ParticlesDepthSampler; +uniform sampler2D WeatherSampler; +uniform sampler2D WeatherDepthSampler; +uniform sampler2D CloudsSampler; +uniform sampler2D CloudsDepthSampler; + +in vec2 texCoord; + +vec4 color_layers[6] = vec4[](vec4(0.0), vec4(0.0), vec4(0.0), vec4(0.0), vec4(0.0), vec4(0.0)); +float depth_layers[6] = float[](0, 0, 0, 0, 0, 0); +int active_layers = 0; + +out vec4 fragColor; + +void try_insert(vec4 color, float depth) { + if (color.a == 0.0) { + return; + } + + color_layers[active_layers] = color; + depth_layers[active_layers] = depth; + + int jj = active_layers++; + int ii = jj - 1; + while (jj > 0 && depth_layers[jj] > depth_layers[ii]) { + float depthTemp = depth_layers[ii]; + depth_layers[ii] = depth_layers[jj]; + depth_layers[jj] = depthTemp; + + vec4 colorTemp = color_layers[ii]; + color_layers[ii] = color_layers[jj]; + color_layers[jj] = colorTemp; + + jj = ii--; + } +} + +vec3 blend(vec3 dst, vec4 src) { + return (dst * (1.0 - src.a)) + src.rgb; +} + +void main() { + color_layers[0] = vec4(texture(MainSampler, texCoord).rgb, 1.0); + depth_layers[0] = texture(MainDepthSampler, texCoord).r; + active_layers = 1; + + try_insert(texture(TranslucentSampler, texCoord), texture(TranslucentDepthSampler, texCoord).r); + try_insert(texture(ItemEntitySampler, texCoord), texture(ItemEntityDepthSampler, texCoord).r); + try_insert(texture(ParticlesSampler, texCoord), texture(ParticlesDepthSampler, texCoord).r); + try_insert(texture(WeatherSampler, texCoord), texture(WeatherDepthSampler, texCoord).r); + try_insert(texture(CloudsSampler, texCoord), texture(CloudsDepthSampler, texCoord).r); + + vec3 texelAccum = color_layers[0].rgb; + for (int ii = 1; ii < active_layers; ++ii) { + texelAccum = blend(texelAccum, color_layers[ii]); + } + + fragColor = vec4(texelAccum.rgb, 1.0); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/transparency.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/transparency.json new file mode 100644 index 000000000..8642ac2d4 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/post/transparency.json @@ -0,0 +1,69 @@ +{ + "targets": [ + "water", + "translucent", + "itemEntity", + "particles", + "clouds", + "weather", + "final" + ], + "passes": [ + { + "name": "transparency", + "intarget": "minecraft:main", + "outtarget": "final", + "auxtargets": [ + { + "name": "DiffuseDepthSampler", + "id": "minecraft:main:depth" + }, + { + "name": "TranslucentSampler", + "id": "translucent" + }, + { + "name": "TranslucentDepthSampler", + "id": "translucent:depth" + }, + { + "name": "ItemEntitySampler", + "id": "itemEntity" + }, + { + "name": "ItemEntityDepthSampler", + "id": "itemEntity:depth" + }, + { + "name": "ParticlesSampler", + "id": "particles" + }, + { + "name": "ParticlesDepthSampler", + "id": "particles:depth" + }, + { + "name": "CloudsSampler", + "id": "clouds" + }, + { + "name": "CloudsDepthSampler", + "id": "clouds:depth" + }, + { + "name": "WeatherSampler", + "id": "weather" + }, + { + "name": "WeatherDepthSampler", + "id": "weather:depth" + } + ] + }, + { + "name": "blit", + "intarget": "final", + "outtarget": "minecraft:main" + } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/bits.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/bits.fsh new file mode 100644 index 000000000..d4b86c223 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/bits.fsh @@ -0,0 +1,29 @@ +#version 150 + +uniform sampler2D DiffuseSampler; + +in vec2 texCoord; +in vec2 oneTexel; + +uniform vec2 InSize; + +uniform float Resolution; +uniform float Saturation; +uniform float MosaicSize; + +out vec4 fragColor; + +void main() { + vec2 mosaicInSize = InSize / MosaicSize; + vec2 fractPix = fract(texCoord * mosaicInSize) / mosaicInSize; + + vec4 baseTexel = texture(DiffuseSampler, texCoord - fractPix); + + vec3 fractTexel = baseTexel.rgb - fract(baseTexel.rgb * Resolution) / Resolution; + float luma = dot(fractTexel, vec3(0.3, 0.59, 0.11)); + vec3 chroma = (fractTexel - luma) * Saturation; + baseTexel.rgb = luma + chroma; + baseTexel.a = 1.0; + + fragColor = baseTexel; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/bits.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/bits.json new file mode 100644 index 000000000..e2623f7d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/bits.json @@ -0,0 +1,21 @@ +{ + "blend": { + "func": "add", + "srcrgb": "srcalpha", + "dstrgb": "1-srcalpha" + }, + "vertex": "sobel", + "fragment": "bits", + "attributes": [ "Position" ], + "samplers": [ + { "name": "DiffuseSampler" } + ], + "uniforms": [ + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "InSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] }, + { "name": "OutSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] }, + { "name": "Resolution", "type": "float", "count": 1, "values": [ 4.0 ] }, + { "name": "Saturation", "type": "float", "count": 1, "values": [ 1.5 ] }, + { "name": "MosaicSize", "type": "float", "count": 1, "values": [ 8.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/blit.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/blit.fsh new file mode 100644 index 000000000..18202e06c --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/blit.fsh @@ -0,0 +1,13 @@ +#version 150 + +uniform sampler2D DiffuseSampler; + +uniform vec4 ColorModulate; + +in vec2 texCoord; + +out vec4 fragColor; + +void main(){ + fragColor = texture(DiffuseSampler, texCoord) * ColorModulate; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/blit.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/blit.json new file mode 100644 index 000000000..1256b6b1e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/blit.json @@ -0,0 +1,18 @@ +{ + "blend": { + "func": "add", + "srcrgb": "srcalpha", + "dstrgb": "1-srcalpha" + }, + "vertex": "blit", + "fragment": "blit", + "attributes": [ "Position" ], + "samplers": [ + { "name": "DiffuseSampler" } + ], + "uniforms": [ + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "OutSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] }, + { "name": "ColorModulate", "type": "float", "count": 4, "values": [ 1.0, 1.0, 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/blit.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/blit.vsh new file mode 100644 index 000000000..443e1f34e --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/blit.vsh @@ -0,0 +1,15 @@ +#version 150 + +in vec4 Position; + +uniform mat4 ProjMat; +uniform vec2 OutSize; + +out vec2 texCoord; + +void main(){ + vec4 outPos = ProjMat * vec4(Position.xy, 0.0, 1.0); + gl_Position = vec4(outPos.xy, 0.2, 1.0); + + texCoord = Position.xy / OutSize; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/blur.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/blur.vsh new file mode 100644 index 000000000..5917d86b3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/blur.vsh @@ -0,0 +1,21 @@ +#version 150 + +in vec4 Position; + +uniform mat4 ProjMat; +uniform vec2 InSize; +uniform vec2 OutSize; +uniform vec2 BlurDir; + +out vec2 texCoord; +out vec2 sampleStep; + +void main() { + vec4 outPos = ProjMat * vec4(Position.xy, 0.0, 1.0); + gl_Position = vec4(outPos.xy, 0.2, 1.0); + + vec2 oneTexel = 1.0 / InSize; + sampleStep = oneTexel * BlurDir; + + texCoord = Position.xy / OutSize; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/box_blur.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/box_blur.fsh new file mode 100644 index 000000000..ea02d30d8 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/box_blur.fsh @@ -0,0 +1,24 @@ +#version 150 + +uniform sampler2D DiffuseSampler; + +in vec2 texCoord; +in vec2 sampleStep; + +uniform float Radius; +uniform float RadiusMultiplier; + +out vec4 fragColor; + +// This shader relies on GL_LINEAR sampling to reduce the amount of texture samples in half. +// Instead of sampling each pixel position with a step of 1 we sample between pixels with a step of 2. +// In the end we sample the last pixel with a half weight, since the amount of pixels to sample is always odd (actualRadius * 2 + 1). +void main() { + vec4 blurred = vec4(0.0); + float actualRadius = round(Radius * RadiusMultiplier); + for (float a = -actualRadius + 0.5; a <= actualRadius; a += 2.0) { + blurred += texture(DiffuseSampler, texCoord + sampleStep * a); + } + blurred += texture(DiffuseSampler, texCoord + sampleStep * actualRadius) / 2.0; + fragColor = blurred / (actualRadius + 0.5); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/box_blur.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/box_blur.json new file mode 100644 index 000000000..e60d51b40 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/box_blur.json @@ -0,0 +1,21 @@ +{ + "blend": { + "func": "add", + "srcrgb": "one", + "dstrgb": "zero" + }, + "vertex": "blur", + "fragment": "box_blur", + "attributes": [ "Position" ], + "samplers": [ + { "name": "DiffuseSampler" } + ], + "uniforms": [ + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "InSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] }, + { "name": "OutSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] }, + { "name": "BlurDir", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] }, + { "name": "Radius", "type": "float", "count": 1, "values": [ 5.0 ] }, + { "name": "RadiusMultiplier", "type": "float", "count": 1, "values": [ 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/color_convolve.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/color_convolve.fsh new file mode 100644 index 000000000..9ee675f38 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/color_convolve.fsh @@ -0,0 +1,38 @@ +#version 150 + +uniform sampler2D DiffuseSampler; + +in vec2 texCoord; +in vec2 oneTexel; + +uniform vec2 InSize; + +uniform vec3 Gray; +uniform vec3 RedMatrix; +uniform vec3 GreenMatrix; +uniform vec3 BlueMatrix; +uniform vec3 Offset; +uniform vec3 ColorScale; +uniform float Saturation; + +out vec4 fragColor; + +void main() { + vec4 InTexel = texture(DiffuseSampler, texCoord); + + // Color Matrix + float RedValue = dot(InTexel.rgb, RedMatrix); + float GreenValue = dot(InTexel.rgb, GreenMatrix); + float BlueValue = dot(InTexel.rgb, BlueMatrix); + vec3 OutColor = vec3(RedValue, GreenValue, BlueValue); + + // Offset & Scale + OutColor = (OutColor * ColorScale) + Offset; + + // Saturation + float Luma = dot(OutColor, Gray); + vec3 Chroma = OutColor - Luma; + OutColor = (Chroma * Saturation) + Luma; + + fragColor = vec4(OutColor, 1.0); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/color_convolve.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/color_convolve.json new file mode 100644 index 000000000..e3a32c2de --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/color_convolve.json @@ -0,0 +1,25 @@ +{ + "blend": { + "func": "add", + "srcrgb": "one", + "dstrgb": "zero" + }, + "vertex": "sobel", + "fragment": "color_convolve", + "attributes": [ "Position" ], + "samplers": [ + { "name": "DiffuseSampler" } + ], + "uniforms": [ + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "InSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] }, + { "name": "OutSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] }, + { "name": "Gray", "type": "float", "count": 3, "values": [ 0.3, 0.59, 0.11 ] }, + { "name": "RedMatrix", "type": "float", "count": 3, "values": [ 1.0, 0.0, 0.0 ] }, + { "name": "GreenMatrix", "type": "float", "count": 3, "values": [ 0.0, 1.0, 0.0 ] }, + { "name": "BlueMatrix", "type": "float", "count": 3, "values": [ 0.0, 0.0, 1.0 ] }, + { "name": "Offset", "type": "float", "count": 3, "values": [ 0.0, 0.0, 0.0 ] }, + { "name": "ColorScale", "type": "float", "count": 3, "values": [ 1.0, 1.0, 1.0 ] }, + { "name": "Saturation", "type": "float", "count": 1, "values": [ 1.8 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/entity_outline.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/entity_outline.json new file mode 100644 index 000000000..d7c776319 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/entity_outline.json @@ -0,0 +1,18 @@ +{ + "blend": { + "func": "add", + "srcrgb": "srcalpha", + "dstrgb": "1-srcalpha" + }, + "vertex": "sobel", + "fragment": "entity_sobel", + "attributes": [ "Position" ], + "samplers": [ + { "name": "DiffuseSampler" } + ], + "uniforms": [ + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "InSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] }, + { "name": "OutSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/entity_outline_box_blur.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/entity_outline_box_blur.fsh new file mode 100644 index 000000000..1c59ff645 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/entity_outline_box_blur.fsh @@ -0,0 +1,18 @@ +#version 150 + +uniform sampler2D DiffuseSampler; + +in vec2 texCoord; +in vec2 sampleStep; + +out vec4 fragColor; + +void main() { + vec4 blurred = vec4(0.0); + float radius = 2.0; + for (float a = -radius + 0.5; a <= radius; a += 2.0) { + blurred += texture(DiffuseSampler, texCoord + sampleStep * a); + } + blurred += texture(DiffuseSampler, texCoord + sampleStep * radius) / 2.0; + fragColor = vec4((blurred / (radius + 0.5)).rgb, blurred.a); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/entity_outline_box_blur.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/entity_outline_box_blur.json new file mode 100644 index 000000000..58fa7da1a --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/entity_outline_box_blur.json @@ -0,0 +1,19 @@ +{ + "blend": { + "func": "add", + "srcrgb": "one", + "dstrgb": "zero" + }, + "vertex": "blur", + "fragment": "entity_outline_box_blur", + "attributes": [ "Position" ], + "samplers": [ + { "name": "DiffuseSampler" } + ], + "uniforms": [ + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "InSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] }, + { "name": "OutSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] }, + { "name": "BlurDir", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/entity_sobel.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/entity_sobel.fsh new file mode 100644 index 000000000..770813850 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/entity_sobel.fsh @@ -0,0 +1,23 @@ +#version 150 + +uniform sampler2D DiffuseSampler; + +in vec2 texCoord; +in vec2 oneTexel; + +out vec4 fragColor; + +void main(){ + vec4 center = texture(DiffuseSampler, texCoord); + vec4 left = texture(DiffuseSampler, texCoord - vec2(oneTexel.x, 0.0)); + vec4 right = texture(DiffuseSampler, texCoord + vec2(oneTexel.x, 0.0)); + vec4 up = texture(DiffuseSampler, texCoord - vec2(0.0, oneTexel.y)); + vec4 down = texture(DiffuseSampler, texCoord + vec2(0.0, oneTexel.y)); + float leftDiff = abs(center.a - left.a); + float rightDiff = abs(center.a - right.a); + float upDiff = abs(center.a - up.a); + float downDiff = abs(center.a - down.a); + float total = clamp(leftDiff + rightDiff + upDiff + downDiff, 0.0, 1.0); + vec3 outColor = center.rgb * center.a + left.rgb * left.a + right.rgb * right.a + up.rgb * up.a + down.rgb * down.a; + fragColor = vec4(outColor * 0.2, total); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/invert.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/invert.fsh new file mode 100644 index 000000000..fce3ba462 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/invert.fsh @@ -0,0 +1,16 @@ +#version 150 + +uniform sampler2D DiffuseSampler; + +in vec2 texCoord; + +uniform float InverseAmount; + +out vec4 fragColor; + +void main(){ + vec4 diffuseColor = texture(DiffuseSampler, texCoord); + vec4 invertColor = 1.0 - diffuseColor; + vec4 outColor = mix(diffuseColor, invertColor, InverseAmount); + fragColor = vec4(outColor.rgb, 1.0); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/invert.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/invert.json new file mode 100644 index 000000000..f9ab649c6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/invert.json @@ -0,0 +1,19 @@ +{ + "blend": { + "func": "add", + "srcrgb": "one", + "dstrgb": "zero" + }, + "vertex": "blit", + "fragment": "invert", + "attributes": [ "Position" ], + "samplers": [ + { "name": "DiffuseSampler" } + ], + "uniforms": [ + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "InSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] }, + { "name": "OutSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] }, + { "name": "InverseAmount", "type": "float", "count": 1, "values": [ 0.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/invert.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/invert.vsh new file mode 100644 index 000000000..f30f3a838 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/invert.vsh @@ -0,0 +1,20 @@ +#version 150 + +in vec4 Position; + +uniform mat4 ProjMat; +uniform vec2 InSize; +uniform vec2 OutSize; + +out vec2 texCoord; + +void main(){ + vec4 outPos = ProjMat * vec4(Position.xy, 0.0, 1.0); + gl_Position = vec4(outPos.xy, 0.2, 1.0); + + vec2 sizeRatio = OutSize / InSize; + texCoord = Position.xy / OutSize; + texCoord.x = texCoord.x * sizeRatio.x; + texCoord.y = texCoord.y * sizeRatio.y; + texCoord.y = sizeRatio.y - texCoord.y; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/rotscale.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/rotscale.vsh new file mode 100644 index 000000000..6c55a8931 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/rotscale.vsh @@ -0,0 +1,30 @@ +#version 150 + +in vec4 Position; + +uniform mat4 ProjMat; +uniform vec2 InSize; +uniform vec2 OutSize; + +uniform vec2 InScale; +uniform vec2 InOffset; +uniform float InRotation; +uniform float Time; + +out vec2 texCoord; +out vec2 scaledCoord; + +void main(){ + vec4 outPos = ProjMat * vec4(Position.xy, 0.0, 1.0); + gl_Position = vec4(outPos.xy, 0.2, 1.0); + + texCoord = Position.xy / OutSize; + + float Deg2Rad = 0.0174532925; + float InRadians = InRotation * Deg2Rad; + float Cosine = cos(InRadians); + float Sine = sin(InRadians); + float RotU = texCoord.x * Cosine - texCoord.y * Sine; + float RotV = texCoord.y * Cosine + texCoord.x * Sine; + scaledCoord = vec2(RotU, RotV) * InScale + InOffset; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/screenquad.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/screenquad.vsh new file mode 100644 index 000000000..9dfe91cd6 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/screenquad.vsh @@ -0,0 +1,14 @@ +#version 150 + +in vec4 Position; + +uniform mat4 ProjMat; +uniform vec2 OutSize; + +out vec2 texCoord; + +void main() { + vec4 outPos = ProjMat * vec4(Position.xy, 0.0, 1.0); + gl_Position = vec4(outPos.xy, 0.2, 1.0); + texCoord = Position.xy / OutSize; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/sobel.vsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/sobel.vsh new file mode 100644 index 000000000..99e97e068 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/sobel.vsh @@ -0,0 +1,19 @@ +#version 150 + +in vec4 Position; + +uniform mat4 ProjMat; +uniform vec2 InSize; +uniform vec2 OutSize; + +out vec2 texCoord; +out vec2 oneTexel; + +void main(){ + vec4 outPos = ProjMat * vec4(Position.xy, 0.0, 1.0); + gl_Position = vec4(outPos.xy, 0.2, 1.0); + + oneTexel = 1.0 / InSize; + + texCoord = Position.xy / OutSize; +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/spider.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/spider.json new file mode 100644 index 000000000..3a47688ec --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/spider.json @@ -0,0 +1,25 @@ +{ + "blend": { + "func": "add", + "srcrgb": "one", + "dstrgb": "zero" + }, + "vertex": "rotscale", + "fragment": "spiderclip", + "attributes": [ "Position" ], + "samplers": [ + { "name": "DiffuseSampler" }, + { "name": "BlurSampler" } + ], + "uniforms": [ + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "InSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] }, + { "name": "InScale", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] }, + { "name": "InOffset", "type": "float", "count": 2, "values": [ 0.0, 0.0 ] }, + { "name": "InRotation", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "Time", "type": "float", "count": 1, "values": [ 0.0 ] }, + { "name": "Scissor", "type": "float", "count": 4, "values": [ 0.0, 0.0, 1.0, 1.0 ] }, + { "name": "Vignette", "type": "float", "count": 4, "values": [ 0.0, 0.0, 1.0, 1.0 ] }, + { "name": "OutSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/spiderclip.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/spiderclip.fsh new file mode 100644 index 000000000..c586188f3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/spiderclip.fsh @@ -0,0 +1,33 @@ +#version 150 + +uniform sampler2D DiffuseSampler; +uniform sampler2D BlurSampler; + +in vec2 texCoord; +in vec2 scaledCoord; + +uniform vec2 InSize; +uniform vec4 Scissor; +uniform vec4 Vignette; + +out vec4 fragColor; + +void main() { + vec4 ScaledTexel = texture(DiffuseSampler, scaledCoord); + vec4 BlurTexel = texture(BlurSampler, texCoord); + vec4 OutTexel = ScaledTexel; + + // -- Alpha Clipping -- + if (scaledCoord.x < Scissor.x) OutTexel = BlurTexel; + if (scaledCoord.y < Scissor.y) OutTexel = BlurTexel; + if (scaledCoord.x > Scissor.z) OutTexel = BlurTexel; + if (scaledCoord.y > Scissor.w) OutTexel = BlurTexel; + + clamp(scaledCoord, 0.0, 1.0); + + if (scaledCoord.x < Vignette.x) OutTexel = mix(BlurTexel, OutTexel, (Scissor.x - scaledCoord.x) / (Scissor.x - Vignette.x)); + if (scaledCoord.y < Vignette.y) OutTexel = mix(BlurTexel, OutTexel, (Scissor.y - scaledCoord.y) / (Scissor.y - Vignette.y)); + if (scaledCoord.x > Vignette.z) OutTexel = mix(BlurTexel, OutTexel, (Scissor.z - scaledCoord.x) / (Scissor.z - Vignette.z)); + if (scaledCoord.y > Vignette.w) OutTexel = mix(BlurTexel, OutTexel, (Scissor.w - scaledCoord.y) / (Scissor.w - Vignette.w)); + fragColor = vec4(OutTexel.rgb, 1.0); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/transparency.fsh b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/transparency.fsh new file mode 100644 index 000000000..3b277ace3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/transparency.fsh @@ -0,0 +1,70 @@ +#version 150 + +uniform sampler2D DiffuseSampler; +uniform sampler2D DiffuseDepthSampler; +uniform sampler2D TranslucentSampler; +uniform sampler2D TranslucentDepthSampler; +uniform sampler2D ItemEntitySampler; +uniform sampler2D ItemEntityDepthSampler; +uniform sampler2D ParticlesSampler; +uniform sampler2D ParticlesDepthSampler; +uniform sampler2D WeatherSampler; +uniform sampler2D WeatherDepthSampler; +uniform sampler2D CloudsSampler; +uniform sampler2D CloudsDepthSampler; + +in vec2 texCoord; + +#define NUM_LAYERS 6 + +vec4 color_layers[NUM_LAYERS]; +float depth_layers[NUM_LAYERS]; +int active_layers = 0; + +out vec4 fragColor; + +void try_insert( vec4 color, float depth ) { + if ( color.a == 0.0 ) { + return; + } + + color_layers[active_layers] = color; + depth_layers[active_layers] = depth; + + int jj = active_layers++; + int ii = jj - 1; + while ( jj > 0 && depth_layers[jj] > depth_layers[ii] ) { + float depthTemp = depth_layers[ii]; + depth_layers[ii] = depth_layers[jj]; + depth_layers[jj] = depthTemp; + + vec4 colorTemp = color_layers[ii]; + color_layers[ii] = color_layers[jj]; + color_layers[jj] = colorTemp; + + jj = ii--; + } +} + +vec3 blend( vec3 dst, vec4 src ) { + return ( dst * ( 1.0 - src.a ) ) + src.rgb; +} + +void main() { + color_layers[0] = vec4( texture( DiffuseSampler, texCoord ).rgb, 1.0 ); + depth_layers[0] = texture( DiffuseDepthSampler, texCoord ).r; + active_layers = 1; + + try_insert( texture( TranslucentSampler, texCoord ), texture( TranslucentDepthSampler, texCoord ).r ); + try_insert( texture( ItemEntitySampler, texCoord ), texture( ItemEntityDepthSampler, texCoord ).r ); + try_insert( texture( ParticlesSampler, texCoord ), texture( ParticlesDepthSampler, texCoord ).r ); + try_insert( texture( WeatherSampler, texCoord ), texture( WeatherDepthSampler, texCoord ).r ); + try_insert( texture( CloudsSampler, texCoord ), texture( CloudsDepthSampler, texCoord ).r ); + + vec3 texelAccum = color_layers[0].rgb; + for ( int ii = 1; ii < active_layers; ++ii ) { + texelAccum = blend( texelAccum, color_layers[ii] ); + } + + fragColor = vec4( texelAccum.rgb, 1.0 ); +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/transparency.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/transparency.json new file mode 100644 index 000000000..66b9835de --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/shaders/program/transparency.json @@ -0,0 +1,28 @@ +{ + "blend": { + "func": "add", + "srcrgb": "one", + "dstrgb": "zero" + }, + "vertex": "screenquad", + "fragment": "transparency", + "attributes": [ "Position" ], + "samplers": [ + { "name": "DiffuseSampler" }, + { "name": "DiffuseDepthSampler" }, + { "name": "TranslucentSampler" }, + { "name": "TranslucentDepthSampler" }, + { "name": "ItemEntitySampler" }, + { "name": "ItemEntityDepthSampler" }, + { "name": "ParticlesSampler" }, + { "name": "ParticlesDepthSampler" }, + { "name": "CloudsSampler" }, + { "name": "CloudsDepthSampler" }, + { "name": "WeatherSampler" }, + { "name": "WeatherDepthSampler" } + ], + "uniforms": [ + { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, + { "name": "OutSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] } + ] +} diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/texts/credits.json b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/texts/credits.json new file mode 100644 index 000000000..ee7abf1f3 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/texts/credits.json @@ -0,0 +1,4863 @@ +[ + { + "section": "Mojang Studios", + "disciplines": [ + { + "discipline": "Mojang Studios Leadership", + "titles": [ + { + "title": "Studio Head", + "names": [ + "Kayleen Walters" + ] + }, + { + "title": "Chief Operating Officer", + "names": [ + "Annie Chenn" + ] + }, + { + "title": "Head of Brand, Growth & Partnerships", + "names": [ + "Ada Duan" + ] + }, + { + "title": "Head of Minecraft Game Experience", + "names": [ + "Ryan B. Cooper" + ] + }, + { + "title": "Chief of Staff", + "names": [ + "Amy Stillion" + ] + }, + { + "title": "Chief Creative Officer", + "names": [ + "Jens Bergensten" + ] + }, + { + "title": "Head of Franchise Product Strategy", + "names": [ + "Scott Dell'Osso" + ] + }, + { + "title": "Head of People Operations", + "names": [ + "Emma Brandt" + ] + } + ] + }, + { + "discipline": "Design", + "titles": [ + { + "title": "Game Director, Minecraft", + "names": [ + "Agnes Larsson" + ] + }, + { + "title": "Creative Director, Brand", + "names": [ + "Markus Toivonen" + ] + }, + { + "title": "Creative Director", + "names": [ + "John Yamamoto" + ] + }, + { + "title": "Creative Directors, Games", + "names": [ + "Craig Leigh", + "Magnus Nedfors", + "Måns Olson" + ] + }, + { + "title": "Creative Director, Entertainment", + "names": [ + "Torfi Frans Ólafsson" + ] + }, + { + "title": "Creative Managers", + "names": [ + "Alex Macleod", + "Rasmus Eriksson", + "Samir Belarbi" + ] + }, + { + "title": "Design Directors", + "names": [ + "Antti Meriluoto", + "Laura de Llorens Garcia", + "Orvar Halldorsson" + ] + }, + { + "title": "Design Managers", + "names": [ + "Art Usher", + "Jesper Staafjord", + "Robin Hedin" + ] + }, + { + "title": "Lead Game Designers", + "names": [ + "Cory Scheviak", + "Daniel Jansson", + "Guillaume Mroz", + "Matthew Gatland", + "Nickole Li", + "Rob Poerschke", + "Robin V Vincent", + "Uladzislau Charnaus" + ] + }, + { + "title": "Game Designers", + "names": [ + "Brandon Pearce", + "Christian Berg", + "Colton Phillips", + "Dana Lee (Insight Global, Inc)", + "Giuseppe Libonati (Insight Global, Inc)", + "Justice Mealer (Insight Global, Inc)", + "Katherine Durkin (Insight Global, Inc)", + "Kelsey Howard", + "Kyle Wood (Insight Global, Inc)", + "Mark Anthony Esparagoza (Insight Global, Inc)", + "Michael Söderqvist", + "Michael Stagnitta", + "Nir Vaknin", + "Steve Enos", + "Tate Sliwa (Insight Global, Inc)", + "Tod Pang" + ] + }, + { + "title": "Narrative Director", + "names": [ + "Kevin Grace" + ] + }, + { + "title": "Narrative Director, Entertainment", + "names": [ + "Alex Wiltshire" + ] + }, + { + "title": "User Experience Design Directors", + "names": [ + "Anna Wendelin", + "Carlos Lidón" + ] + }, + { + "title": "User Experience Design Leads", + "names": [ + "Josefine Lindqvist", + "Unn Swanström" + ] + }, + { + "title": "User Experience Designers", + "names": [ + "Aksel Englund", + "Alejandra Ricciardi (Globant)", + "Hajar Harda", + "Imani Ricks", + "Jem Alexander", + "Karolin Pettersson", + "Margot Laucournet", + "Sebastian Melchor Hedman", + "Tom Keen" + ] + } + ] + }, + { + "discipline": "Programming", + "titles": [ + { + "title": "Technical Directors", + "names": [ + "Michael J. Ott", + "Stefan Annell" + ] + }, + { + "title": "Engineering Director", + "names": [ + "Mathias Ericsson" + ] + }, + { + "title": "Engineering Director, Franchise Technologies and Services", + "names": [ + "Geoff Ebersol" + ] + }, + { + "title": "Engineering Director, Growth Products", + "names": [ + "Lawrence M. Sanchez II" + ] + }, + { + "title": "Engineering Director, Internal New Games", + "names": [ + "Aisling Canton" + ] + }, + { + "title": "Engineering Directors, Bedrock Platform", + "names": [ + "Jeff McKune", + "Vince Curley" + ] + }, + { + "title": "Engineering Manager, Franchise Services", + "names": [ + "Matt Hawley" + ] + }, + { + "title": "Engineering Managers", + "names": [ + "Christian Diefenbach", + "Elina Dettner", + "Ellenor Wiig", + "Elvira Melentyeva", + "Erik Wallin", + "Erika Renlund", + "Fanny P Vadillo Herrera", + "Haronid Moncivais", + "Henrik Savenstedt", + "Joel Bergman", + "Jonas Jonsson", + "Jonas Keating", + "Lie Fujita", + "Magnus Puig De La Bellacasa Cristiansson", + "Nick Horvath", + "Per Sahlée", + "Rijil Narath", + "Tanya Reinhardt (Ascendion, Inc)" + ] + }, + { + "title": "Lead Software Engineers", + "names": [ + "Bill Carlson", + "Brian Schwartz", + "Brock Davis", + "Bryan Yeo", + "Chris BeHanna", + "Dan Samhold", + "David Carlton", + "David Cowan", + "Derrick Price", + "Gary McLaughlin", + "Henning Erlandsen", + "Jake Shirley", + "Jose Marcos De Oliveira", + "Kanita Rauniyar", + "Loren Hoffman", + "Mason McCuskey", + "Matt Cooley", + "Max Bouchez", + "Nickolas Graczyk", + "Paul Crawford", + "River Gillis", + "Ryan Burns", + "Torbjörn Allard", + "Yash Shroff" + ] + }, + { + "title": "Technical Leads", + "names": [ + "Andrew Maher", + "Anton Arbring", + "Dan Mauk", + "David Ekermann", + "Felix Jones", + "Garrett Allen", + "Jahmai O'Sullivan", + "Jakob Rydén", + "James S Yarrow", + "Jeffrey Kumley", + "Joe Brockhaus", + "Mangal Srinivasamurthy", + "Michael Kranz", + "Michael Stoyke", + "Mikael Hedberg", + "Nick Burlingame", + "Oleg Kozitsyn", + "Patrick McGannon", + "Paulo Ragonha", + "Raphael Landaverde", + "Robert Sanchez", + "Robert Sjödahl", + "Sue Loh", + "Tristan Schneider", + "Zhengwu Zhang" + ] + }, + { + "title": "Software Engineers", + "names": [ + "A.J. Fairfield", + "Abhinav Jain (Ascendion, Inc)", + "Abhishek Talati (Ascendion, Inc)", + "Abinaya Sambandam (Ascendion, Inc)", + "Addison Kaufmann", + "Adrian Ferrer (Insight Global, Inc)", + "Adrian Ster (Globant)", + "Aileen Hadsell", + "Ajit Belkunde (Ascendion, Inc)", + "Alec Chan", + "Alejandro Rosales Martinez (Artech Consulting, LLC)", + "Alex Carvalho Camargo (Ascendion, Inc)", + "Alex Schuldberg", + "Alex Troyer", + "Alex Wouters (Insight Global, Inc)", + "Alexander Kofford (Insight Global, Inc)", + "Alexander Torstling", + "Alexandru Boaru (Globant)", + "Ali Yassiry (Netlight)", + "Álvaro García Gutiérrez (Globant)", + "Alvee Akash (Ascendion, Inc)", + "Amy Bernhoft", + "Andres Altamirano Montealvo", + "Andrew Griffin", + "Anna Päärni", + "Anthony Sopkow (Ascendion, Inc)", + "Anthony Young", + "Antonino Liconti", + "Apurva Raman", + "Ashwin Brahmarouthu (Ascendion, Inc)", + "Austin Shaythong (Insight Global, Inc)", + "Ayannah Rashida Oluwatoyin Adegeye", + "Bartosz Bok", + "Billy Sjöberg", + "Björn Larsson", + "Brian Luger", + "Bryan DeNosky", + "Cameron Chancey (Insight Global, Inc)", + "Chad George", + "Chad Meyers", + "Chloe Basel", + "Chris Mhley", + "Chris Sedar", + "Christian Adåker", + "Christopher Miceli", + "Cierra Shawe", + "Corey Goodman (Insight Global, Inc)", + "Corey Smith (Insight Global, Inc)", + "Craig Steyn", + "Dana Zhu", + "Daniel Lobo", + "Daniel Stevens", + "Dat Trieu", + "David Rice (Ascendion, Inc)", + "David Westen", + "Declan Hopkins", + "Dmytro Safonov", + "Dominic DaCosta", + "Dragos Bogdan (Globant)", + "Dylan Johanson", + "Dylan Ross (Insight Global, Inc)", + "Elisabeth Gangenes", + "Emma Villemoes", + "Eric Grimsborn (Netlight)", + "Eric Johnston", + "Eric Rehmeyer", + "Eric Sjögren", + "Eric Walston", + "Ericson Gonzalez (Globant)", + "Erik M Schulz", + "Francisco Alejandro Garcia Cebada", + "Georgii \"Fry\" Gavrichev", + "Guilherme Recchi Cardozo", + "Gunnar Headley", + "Gustav Taxén", + "Harald Johansson", + "Hebert Pena Serna (Artech Consulting, LLC)", + "Hector M Arriaga Pineda", + "Hector M Llanos III", + "Hedvig Fahlstedt (Netlight)", + "Huanyu Shao", + "Hugo Hägglund", + "Ian Gaither", + "Isaac Dayton", + "Isaiah Dickison (Insight Global, Inc)", + "Jaafer Sheriff", + "Jacek Wołkowicz", + "Jacob Presley (Insight Global, Inc)", + "Jaime Vargas", + "James Friedenberg (Insight Global, Inc)", + "James G Moore", + "James Nicholls", + "Jamie Fristrom", + "Javier Castro Landaverde (Artech Consulting, LLC)", + "Jeremy Robinson (Insight Global, Inc)", + "Jessica Chen", + "Jifeng Zhang", + "Jillian Polsin", + "Jithin Joji Anchanattu (Ascendion, Inc)", + "Johan Yngman", + "Johannes Busch", + "John Littlewood (Mirado Consulting)", + "Jon Maiga", + "Jonas Eriksson", + "Jonas Johansson", + "Jordan Maxwell (Insight Global, Inc)", + "José Carlos Bellido", + "Jozsef Hollo (Globant)", + "Julio Novais Raffaine", + "Justin Watkins", + "Khaleel Harper", + "Kiran Beersing-Vasquez (Netlight)", + "Kirsten Springer", + "Kyle Schwaneke", + "Lina Juuso", + "Lorenzo Vigano", + "Marco Ballabio", + "Mark Elling (Ascendion, Inc)", + "Mark Rowland (Insight Global, Inc)", + "Markus Gustavsson", + "Markus Winroth", + "Marlon Huber-Smith", + "Martin Hornqvist", + "Martin Moe", + "Matijas Matijevic", + "Matt Staubus", + "Matthew Clohessy", + "Max Perea Düring", + "Maxime Lebrot", + "Michael Davidson (Insight Global, Inc)", + "Michael Oliveira-Silva", + "Michael Seydl", + "Michelle Burd", + "Michelle Rosenbarker (Insight Global, Inc)", + "Mike Swartz", + "Miles Mbo", + "Molly Flemming", + "Mona El-Falou (Ascendion, Inc)", + "Natalie Mueller", + "Nathan Adams", + "Nicholas Curtis", + "Nico Suc", + "Nicolas del Fiorentino (Globant)", + "Niklas Erhard Olsson", + "Nilay Karaoglu", + "Nishith Gadhiya (Ascendion, Inc)", + "Oden Stark", + "Omar ElGaml", + "Oscar Åkesson", + "Oscar Andersson (Netlight)", + "Oswaldo Leyva Barrientos", + "Pär Axelsson", + "Parth Parikh (Ascendion, Inc)", + "Patrick Tobin", + "Paul Schierman", + "Per Ersson", + "Petter Gisslen", + "Petter Lundgren", + "Pouya Ashraf (Netlight)", + "Ragnar Rova", + "Rasmus Källqvist", + "Rebecca Kullenius", + "Rebecca McFadden", + "Reece Sagun (Ascendion, Inc)", + "Richard Meurling", + "Richard Payne (Insight Global, Inc)", + "Robert Di Battista", + "Robert Hunt", + "Rodel Dela Cruz (Ascendion, Inc)", + "Sam Hallam", + "Samuel Sage (Insight Global, Inc)", + "Samuel Schimmel (Insight Global, Inc)", + "Santosha Bhat (Ascendion, Inc)", + "Sarmis Streanga (Globant)", + "Sebastian Ross", + "Shane Pierce", + "Shipra Behera", + "Simon Fagerholm", + "Sofie Niska", + "Soundar B (Ascendion, Inc)", + "Stauffer Taylor", + "Stefan Torstensson", + "Stephanie Huynh", + "Sunil Nikam (Ascendion, Inc)", + "Tara Pratap", + "Taylor Feddersen", + "Tejas Shah", + "Therese Andersson", + "Timur Nazarov", + "Tobias Bexelius", + "Trancy Xiaoying Zhu", + "Tushar Patil (Ascendion, Inc)", + "Tyler Fedoris (Insight Global, Inc)", + "Vinay Kumar S B (Ascendion, Inc)", + "Vincent Telleria", + "Vishnu Kumar (Ascendion, Inc)", + "Wenfei Zhu", + "Wes Pesetti", + "Yeabsira Mekonnen", + "Zawar Alam (Ascendion, Inc)" + ] + } + ] + }, + { + "discipline": "Production", + "titles": [ + { + "title": "Head of Franchise Technologies and Services", + "names": [ + "Elvir Bahtijaragic" + ] + }, + { + "title": "Executive Producer, Education", + "names": [ + "Allison Matthews" + ] + }, + { + "title": "Executive Producers", + "names": [ + "Anita Sujarit", + "Fredrik Telenius", + "Hai Shi", + "Ingela Garneij", + "Klas Hammarström", + "Nikoo Jorjani" + ] + }, + { + "title": "Director of Bedrock Platform", + "names": [ + "Dave Cohen" + ] + }, + { + "title": "Director of Creator", + "names": [ + "Kayla Kinnunen" + ] + }, + { + "title": "Director of Internal New Games", + "names": [ + "David Nisshagen" + ] + }, + { + "title": "Director of Minecraft Launcher", + "names": [ + "David Marc Siegel" + ] + }, + { + "title": "Director of Minecraft Online & Marketplace", + "names": [ + "Travis Howland" + ] + }, + { + "title": "Director of Minecraft Websites", + "names": [ + "Todd Baldwin" + ] + }, + { + "title": "Director of Publishing and Licensing", + "names": [ + "Dennis Ries" + ] + }, + { + "title": "Director of Trust and Safety", + "names": [ + "Carlos Figueiredo" + ] + }, + { + "title": "Production Directors", + "names": [ + "Alina Skripnyk", + "Bryant Hawthorne", + "Eric Taylor", + "Justin Edwards", + "Kristina Ashment", + "Marcus Bodin", + "Mike Ammerlaan", + "Molly Woodruff", + "Nathan Rose", + "Todd Stevens" + ] + }, + { + "title": "Production Managers", + "names": [ + "Caroline Smith (Insight Global, Inc)", + "Luis Cascante" + ] + }, + { + "title": "Production Leads", + "names": [ + "Carrie Doring", + "Milo Bengtsson", + "Mona Landh Gullberg", + "Tim Mardell" + ] + }, + { + "title": "Principal Producers", + "names": [ + "Melinda Knight", + "Su Liu" + ] + }, + { + "title": "Producers", + "names": [ + "Aaron Hughes (Insight Global, Inc)", + "Adrian Östergård", + "Anjelika Zora Kosanic", + "Barrett Livingston", + "Bryan G. Bonham", + "Carlos Naranjo", + "Dawn Boughton (Apex Systems, Inc)", + "Elin Roslund", + "Ellen Karlsten", + "Eric Karlshammar", + "Gareth Young", + "Heesung Koo", + "Hillary Good (Simplicity Consulting Inc.)", + "Jennifer Boespflug Dotson (Insight Global, Inc)", + "Josefin Olsson", + "Kev Katona (Insight Global, Inc)", + "Kristina Barandiy", + "Laylah Bulman", + "Linda Dalin", + "Lisa Kempe", + "Marie Bustgaard", + "Micael Sjölund", + "Nicolette Suraga", + "Petter Denninger", + "Rakiv Joy", + "Riccardo Lenzi", + "Sarah Von Reis", + "Seo Hee Hong", + "Sofia Gothlin" + ] + }, + { + "title": "Media Producers", + "names": [ + "Andreas Dea Svensson", + "Johan Björnung Kvarnemo", + "Sandra Schöön" + ] + }, + { + "title": "Product Directors, Franchise Technologies and Services", + "names": [ + "Deanna Hearns", + "Saher Hirji" + ] + }, + { + "title": "Product Manager Leads", + "names": [ + "Anna Lundgren", + "Candice Giffin", + "Divya Babuji", + "Justin Johnson" + ] + }, + { + "title": "Product Managers", + "names": [ + "Ahmed Asif", + "August Carow", + "Barbara Konchinski", + "Carolina Broberg (Netlight)", + "Dejan Dimic", + "Donyea Cooley-White", + "Eliot Lee", + "Esteban Balbuena (Globant)", + "Grace Jung (Allegis Group Services, Inc)", + "Jorge Aleman Rodriguez", + "Kara Kono", + "Kari C Whiteside", + "Kat Siegert", + "Katie Ellison", + "Liz Smith", + "Madeline Psenka", + "Malte Tammerström", + "Marc Watson", + "Micah Myerscough", + "Milena Gonzalez", + "Nick Ljungqvist (MVP Global AB)", + "Rachel Ji", + "Stephen Scott", + "Tia Dalupan", + "Tori Tippin", + "Zerelina Mukherjee" + ] + }, + { + "title": "Organizational Coach", + "names": [ + "Jennie Martensson (Jenuine Coaching & Consulting AB)" + ] + }, + { + "title": "Release Management Lead", + "names": [ + "Josh Mulanax" + ] + }, + { + "title": "Release Managers", + "names": [ + "Andrew Pritchard", + "Hailey Dice (Hanson Consulting Group, Inc)", + "Joseph Panaccione (Apex Systems, Inc)", + "Joshua Bullard", + "Kristian Björk Grimberg", + "Kyle Sullivan (Hanson Consulting Group, Inc)" + ] + }, + { + "title": "Technical Writers", + "names": [ + "Jeff Kim (Insight Global, Inc)", + "Jill Headen (Insight Global, Inc)" + ] + }, + { + "title": "Technical Program Manager Lead", + "names": [ + "Eric Odell-Hein" + ] + }, + { + "title": "Technical Program Managers", + "names": [ + "Andrea Lam-Flannery", + "Aqsa Rauf (Apex Systems, Inc)", + "Benjamin Fall", + "Bobby Ou (my3Twelve, LLC)", + "Brynn Mendelsohn (Insight Global, Inc)", + "Chloe Li (my3Twelve, LLC)", + "Daniel Stewart", + "David Jho (my3Twelve, LLC)", + "Diana Lind (Harvey Nash, Inc)", + "Dylan Kesselring", + "Elizabeth Carty (Insight Global, Inc)", + "Garbo Chan (my3Twelve, LLC)", + "James Gregory", + "Jered Dowden (Ascendion, Inc)", + "Kei Schafer", + "Lauren Henderson", + "Mabel Chan (my3Twelve, LLC)", + "Timothy Mehta (Aquent, LLC)", + "Tina Lin (Ascendion, Inc)", + "William Weber (Apex Systems, Inc)" + ] + }, + { + "title": "Playtest Coordinator", + "names": [ + "Jonathan Carroll (Insight Global, Inc)" + ] + } + ] + }, + { + "discipline": "Visual Arts", + "titles": [ + { + "title": "Creative Leads", + "names": [ + "Erik Gestrelius", + "Johan Aronsson", + "Martin Johansson-He" + ] + }, + { + "title": "Art Directors", + "names": [ + "Amanda Ström", + "Filip Keatley Thoms", + "Jasper Boerstra", + "Julian Kerr", + "Markus Karlsson Frost", + "Ninni Landin", + "Seung Sung", + "Sherin Kwan", + "Ullis Linder" + ] + }, + { + "title": "Art Manager", + "names": [ + "Magdalena Berglind" + ] + }, + { + "title": "Artist Leads", + "names": [ + "Alexandra Dogaru", + "Evelina Kolovou", + "Joule Garvin", + "Meagan Dumford", + "Michael Apolis", + "Michael Neumann" + ] + }, + { + "title": "Artists", + "names": [ + "Adam Sellerfors", + "Amelie Bjurenhed", + "Brandon Korvas (Ten Gun Design, Inc)", + "Celene Presto (Harvey Nash, Inc)", + "Chase Farthing (Allegis Group Services, Inc)", + "Chi Wong", + "Christian Nordgren", + "Christina Dolan (Aquent, LLC)", + "Cristina Bravo Amigueti", + "Dana Mack (Harvey Nash, Inc)", + "Jan Cariaga", + "Jesse Munguia", + "Kirk Barnett", + "Lauren Bravo-Kohler", + "Margarita Sanchez (Allegis Group Services, Inc)", + "Mattis Grahm", + "Morten Rasmussen", + "Noam Briner", + "Peter Sheff", + "Rodrigo Corvalan Vivedes", + "Sarah Boeving", + "Scott Jobe (Allegis Group Services, Inc)", + "Stephanie Nannariello (Harvey Nash, Inc)" + ] + }, + { + "title": "Technical Artists", + "names": [ + "Brendan 'Sully' Sullivan", + "Dan Sonne" + ] + }, + { + "title": "Product Design Leads", + "names": [ + "Connor Burtis", + "Ryan Sand", + "Will Krause" + ] + }, + { + "title": "Product Designers", + "names": [ + "Adrian Ward", + "Débora Martins", + "Laura Palmroth", + "Ro Ocampo (Allegis Group Services, Inc)", + "Timothy Lusk (Allegis Group Services, Inc)" + ] + }, + { + "title": "Graphic Designers", + "names": [ + "Caitlin Willhoite (Ten Gun Design, Inc)", + "Isak de Jong" + ] + } + ] + }, + { + "discipline": "Audio", + "titles": [ + { + "title": "Audio Directors", + "names": [ + "Peter Hont", + "Samuel Åberg" + ] + }, + { + "title": "Sound Designers", + "names": [ + "Sandra Karlsson", + "Thareeq Roshan", + "Tom Koselnik Olovsson" + ] + }, + { + "title": "Music composed by", + "names": [ + "Aaron Cherof", + "Amos Roddy", + "Daniel Rosenfeld", + "Kumi Tanioka", + "Lena Raine" + ] + }, + { + "title": "Music Supervisors", + "names": [ + "Kyle Hopkins", + "Maya Halfon Cordova" + ] + } + ] + }, + { + "discipline": "Quality Assessment", + "titles": [ + { + "title": "Quality Director, Franchise Technologies and Services", + "names": [ + "Matthew Ng" + ] + }, + { + "title": "Quality Manager", + "names": [ + "David Fries" + ] + }, + { + "title": "Quality Leads", + "names": [ + "Joe Whitman", + "Mimi Holmstead" + ] + }, + { + "title": "Quality Engineers", + "names": [ + "Agata Monk", + "Aidan Bower", + "Alyssa Liu", + "Angela Ong", + "Archita Keni", + "Chris Woelfel", + "Christina Tran", + "Dalrek Davis", + "Erik Davis", + "Lisa Porter", + "Mark McAllister", + "Melissa Moorehead", + "Michelle Hyde", + "Mike Su", + "Tom Brisbane", + "Tom French" + ] + }, + { + "title": "Quality Assessment Specialists", + "names": [ + "Björn Philipson", + "Matthew Dryden", + "Olle Personne" + ] + }, + { + "title": "Program Managers", + "names": [ + "Bill Brewster (Experis)", + "Darren Benskin (Experis)", + "Dave Watkins (Experis)", + "Jon Doyle (Experis)", + "Lewis Read (Experis)", + "Onur Unaldi" + ] + }, + { + "title": "Test Director", + "names": [ + "Angelica Morris (Experis)" + ] + }, + { + "title": "Test Managers", + "names": [ + "Ben Farley (Experis)", + "Emily Lovering (Experis)", + "Mateusz Kałuża (Lionbridge)", + "Paweł Piekarski (Lionbridge)", + "Raasahn Browder (Experis)", + "Tyler Lovemark (Experis)" + ] + }, + { + "title": "Team Leads", + "names": [ + "Iwona Cieśla (Lionbridge)", + "Michał Sławek (Lionbridge)", + "Paulina Pałdyna (Lionbridge)", + "Piotr Jasiński (Lionbridge)", + "Witold Matejewski (Lionbridge)" + ] + }, + { + "title": "Test Leads", + "names": [ + "Adam Ronowski (Lionbridge)", + "Benjamin Sousa (Experis)", + "Daniel March (Lionbridge)", + "Kamil Zakrzewski (Lionbridge)", + "Maria Berube (Experis)", + "Santiago Quinio (Experis)" + ] + }, + { + "title": "Test Automation Engineers", + "names": [ + "Łukasz Marek (Lionbridge)", + "Marcin Cudny (Lionbridge)", + "Michał Nowak (Lionbridge)" + ] + }, + { + "title": "Software Test Engineers", + "names": [ + "Ada Kierzkowska (Lionbridge)", + "Adam DuBois (Experis)", + "Adam Rączkowski (Lionbridge)", + "Agata 'Tiger' Kawalec (Lionbridge)", + "Albert Wujkowski (Lionbridge)", + "Aleksandra Traczyk (Lionbridge)", + "Alex Vue (Experis)", + "Amelia Rozborska (Lionbridge)", + "Bartłomiej Krupiński (Lionbridge)", + "Bartłomiej Łobocki (Lionbridge)", + "Bartłomiej Mathea (Lionbridge)", + "Bartosz Kacprzak (Lionbridge)", + "Błażej Rajewski (Lionbridge)", + "Cezary Romecki (Lionbridge)", + "Damian Galicki (Lionbridge)", + "Daniel Posiadała (Lionbridge)", + "Daniel Tazelaar (Lionbridge)", + "David Deans (Experis)", + "Eric Izurieta (Experis)", + "Gabe Castro (Experis)", + "Gabriel Mróz (Lionbridge)", + "Henrik Ackler (Lionbridge)", + "Isaac Villagomez (Lionbridge)", + "Jakub Budzyński (Lionbridge)", + "Jakub Opaliński (Lionbridge)", + "Jordan Heredia (Experis)", + "Joseph Cuen (Experis)", + "Julie Tucker (Experis)", + "Katarzyna Pastor (Lionbridge)", + "Krzysztof Górski (Lionbridge)", + "Logan Marshall-Medlock (Experis)", + "Łukasz Jankowski (Lionbridge)", + "Łukasz Michalak (Lionbridge)", + "Marcin Klimek (Lionbridge)", + "Marcin Krysiak (Lionbridge)", + "Marcin Rosłon (Lionbridge)", + "Mateusz Miksa (Lionbridge)", + "Mikaela Reed (Experis)", + "Mikołaj Gruźliński (Lionbridge)", + "Piotr Burkowski (Lionbridge)", + "Piotr Gruszczyński (Lionbridge)", + "Piotr Orłowski (Lionbridge)", + "Richard Withrow (Experis)", + "Robert Bergeron (Experis)", + "Ryan Weant (Experis)", + "Sebastian Polanica (Lionbridge)", + "Sviatoslav Porubanskyi (Lionbridge)", + "Weronika Szajnfeld (Lionbridge)", + "Witold Januszewski-Skup (Lionbridge)" + ] + }, + { + "title": "Test Associates", + "names": [ + "Adam Czajkowski (Lionbridge)", + "Adrian Jakóbczak (Lionbridge)", + "Agata Stelmach (Lionbridge)", + "Agnieszka Sobieszuk (Lionbridge)", + "Aibat Yelemes (Lionbridge)", + "Alan Kotowski (Lionbridge)", + "Aleksander Borysiak (Lionbridge)", + "Aleksander Sierocinski (Lionbridge)", + "Aleksander Zygier (Lionbridge)", + "Aleksandra Jakubowska (Lionbridge)", + "Aleksandra Stelmach (Lionbridge)", + "Alex Nissen (Insight Global, Inc)", + "Alexey Solopov (Lionbridge)", + "Andrew McFarland (Lionbridge)", + "Andżelika Kurek (Lionbridge)", + "Aneta Woźnica (Lionbridge)", + "Anna Gordon (Lionbridge)", + "Anna Gutowska (Lionbridge)", + "Anna Zachara (Lionbridge)", + "Anthony Lopez (Lionbridge)", + "Anthony Zehm (Lionbridge)", + "Antoni Kostrzewa (Lionbridge)", + "Arkadiusz Czarnecki (Lionbridge)", + "Arkadiusz Grzesiński (Lionbridge)", + "Artem Matvieievskyi (Lionbridge)", + "Ata Helvacioglu (Lionbridge)", + "Barbara Rutkowska (Lionbridge)", + "Bartłomiej Słodkowski (Lionbridge)", + "Bartłomiej Truszkowski (Lionbridge)", + "Bartlomiej Wysocki", + "Bartosz Paciorkiewicz (Lionbridge)", + "Bartosz Pikutin (Lionbridge)", + "Bartosz Sowiński (Lionbridge)", + "Bartosz Staszczak (Lionbridge)", + "Bartosz Świderski (Lionbridge)", + "Bartosz Waleśkiewicz (Lionbridge)", + "Brady Smith (Lionbridge)", + "Burton Groves (Lionbridge)", + "Casey Nelson (Lionbridge)", + "Casper Sparks (Insight Global, Inc)", + "Cassan François (Lionbridge)", + "Damian Rokosz (Lionbridge)", + "Damian Spysiński (Lionbridge)", + "Damian Sztyk (Lionbridge)", + "Daniel Niewiadomski (Lionbridge)", + "Dawid Gryczan (Lionbridge)", + "Dominik Zwoliński (Lionbridge)", + "Emir Ali Misiratov (Lionbridge)", + "Ewa Merska (Lionbridge)", + "Filip Busłowicz (Lionbridge)", + "Filip Firlej (Lionbridge)", + "Franciszek Ścirka (Lionbridge)", + "Gabriel Wiśniowski (Lionbridge)", + "Hayden Dalton (Lionbridge)", + "Hubert Uberman (Lionbridge)", + "Igor Bogusiewicz (Lionbridge)", + "Igor Grabski (Lionbridge)", + "Igor Niewiadomski (Lionbridge)", + "Jacek Misztal (Lionbridge)", + "Jacob Childers (Experis)", + "Jacob Otto (Lionbridge)", + "Jakub Bobiński (Lionbridge)", + "Jakub Byliniak (Lionbridge)", + "Jakub Górnicki (Lionbridge)", + "Jakub Grzebisz (Lionbridge)", + "Jakub Istynowicz (Lionbridge)", + "Jakub Łuckiewicz (Lionbridge)", + "Jakub Malinowski (Lionbridge)", + "Jakub Mierzejewski (Lionbridge)", + "Jakub Mihułka (Lionbridge)", + "Jakub Obstawski (Lionbridge)", + "Jakub Owczarzak (Lionbridge)", + "Jakub Piekart (Lionbridge)", + "Jakub Puzio (Lionbridge)", + "Jakub Sierociński (Lionbridge)", + "Jakub Tabiszewski (Lionbridge)", + "Jakub Więch (Lionbridge)", + "Jakub Wojciechowski (Lionbridge)", + "Jakub Zgajewski (Lionbridge)", + "Jan Górski (Lionbridge)", + "Jan Kamiński (Lionbridge)", + "Jan Owczarczyk (Lionbridge)", + "Jan Tomaszewski (Lionbridge)", + "Jarosław Gasiński (Lionbridge)", + "Jessica Stephenson (Lionbridge)", + "Joanna Kossut (Lionbridge)", + "Julia Fischbach (Lionbridge)", + "Julia Jóźwiak (Lionbridge)", + "Kacper Bujakowski (Lionbridge)", + "Kacper Gosławski (Lionbridge)", + "Kacper Paś (Lionbridge)", + "Kacper Pławny (Lionbridge)", + "Kacper Senkowicz (Lionbridge)", + "Kamil Szymański (Lionbridge)", + "Kamran Akhundov (Lionbridge)", + "Kansas Spence (Experis)", + "Karol Kopeć (Lionbridge)", + "Karolina Pietraś (Lionbridge)", + "Karolina Prekurat (Lionbridge)", + "Karolina Zaleszczyk (Lionbridge)", + "Khaya Mvimbi (Lionbridge)", + "Kinga Banasiuk (Lionbridge)", + "Klim Kuznetsov (Lionbridge)", + "Konrad Justyński (Lionbridge)", + "Konrad Kruszyński (Lionbridge)", + "Konrad Pyrzanowski (Lionbridge)", + "Krzysztof Bajor (Lionbridge)", + "Kuba Karakula (Lionbridge)", + "Kyrylo Kunytskyi (Lionbridge)", + "Laura Androsiuk (Lionbridge)", + "Łukasz Majchrowski (Lionbridge)", + "Łukasz Sterna (Lionbridge)", + "Maciej Bielecki (Lionbridge)", + "Maciej Ginter (Lionbridge)", + "Maciej Michaluk (Lionbridge)", + "Maciej Pieszalski (Lionbridge)", + "Maciej Ruciński (Lionbridge)", + "Maciej Waszczuk (Lionbridge)", + "Maciej Wnuk (Lionbridge)", + "Maciej Wójcik (Lionbridge)", + "Magdalena Orzyłowska (Lionbridge)", + "Magdalena Wardak (Lionbridge)", + "Maja Piątek (Lionbridge)", + "Maksymilian Fabjańczuk-Niemirski (Lionbridge)", + "Maksymilian Kubiak (Lionbridge)", + "Maksymilian Skalski (Lionbridge)", + "Maksymilian Szydlik (Lionbridge)", + "Malichi Wilson (Lionbridge)", + "Maliki Wilson (Lionbridge)", + "Marceli Naskrętski (Lionbridge)", + "Marcin Kubicki (Lionbridge)", + "Marcin Paszkiewicz (Lionbridge)", + "Marcin Słoniewski (Lionbridge)", + "Marharyta Yelsukova (Lionbridge)", + "Marion Bojarski (Lionbridge)", + "Marta Czwarnóg (Lionbridge)", + "Martyna Szczepańska (Lionbridge)", + "Mateusz Borowski (Lionbridge)", + "Mateusz Iwaniuk (Lionbridge)", + "Mateusz Koriat (Lionbridge)", + "Mateusz Panek (Lionbridge)", + "Mateusz Radzyński (Lionbridge)", + "Mateusz Świecki (Lionbridge)", + "Max Stein (Experis)", + "Michał Kierzkowski (Lionbridge)", + "Michał Kowalik (Lionbridge)", + "Michał Przystup (Lionbridge)", + "Michał Sobianek (Lionbridge)", + "Mikołaj Błażejewski (Lionbridge)", + "Mikołaj Pawlak (Lionbridge)", + "Milena Olesiejuk (Lionbridge)", + "Mykhailo Prokhorov (Lionbridge)", + "Natalia Walczyńska (Lionbridge)", + "Nikola Janiak (Lionbridge)", + "Odo Przęczka (Lionbridge)", + "Oleksandr Lohin (Lionbridge)", + "Oleksii Hrabovskyi (Lionbridge)", + "Oskar Wiktorowicz (Lionbridge)", + "Oskar Żurawski (Lionbridge)", + "Patrycja Dwojak (Lionbridge)", + "Patryk Karwowski (Lionbridge)", + "Patryk Kubiszewski (Lionbridge)", + "Patryk Piekarski (Lionbridge)", + "Paweł Kaleta (Lionbridge)", + "Paweł Wójcik (Lionbridge)", + "Paweł Zwoliński (Lionbridge)", + "Piotr Adamiak (Lionbridge)", + "Piotr Gałecki (Lionbridge)", + "Piotr Kompa (Lionbridge)", + "Piotr Kruszewicz (Lionbridge)", + "Piotr Mudryk (Lionbridge)", + "Piotr Szafranowski (Lionbridge)", + "Platon Ogarev (Lionbridge)", + "Przemysław Rybicki (Lionbridge)", + "Przemysław Wojtaszek (Lionbridge)", + "Radosław Czerniszewski (Lionbridge)", + "Rafał Adamski (Lionbridge)", + "Rafał Gołębiowski (Lionbridge)", + "Rafał Owsa (Lionbridge)", + "Rafał Żulewski (Lionbridge)", + "Robert Zabłocki (Lionbridge)", + "Robert Żulewski (Lionbridge)", + "Sabina Ocaya Gamon (Lionbridge)", + "Samanta Giedraityte (Lionbridge)", + "Samantha Glass (Insight Global, Inc)", + "Sebastian Biegaj (Lionbridge)", + "Sebastian Esqueda (Experis)", + "Sebastian Łuczak (Lionbridge)", + "Sebastian Michalski (Lionbridge)", + "Stanisław Świderski (Lionbridge)", + "Szymon Barciś (Lionbridge)", + "Szymon Pielacha (Lionbridge)", + "Szymon Studencki (Lionbridge)", + "Thomas Jessup (Lionbridge)", + "Tim Radoń-Dubiniecki (Lionbridge)", + "Tomasz Kubajka (Lionbridge)", + "Tomasz Pyszczek (Lionbridge)", + "Uladzislau Kakhniuk (Lionbridge)", + "Viktoryia Liashkevich (Lionbridge)", + "Wiktor Wrona (Lionbridge)", + "Wiktoria Błaszkiewicz (Lionbridge)", + "Wiktoria Brodzik (Lionbridge)", + "Wiktoria Hałatkiewicz (Lionbridge)", + "Wiktoria Książek (Lionbridge)", + "Wiktoria Zatyka (Lionbridge)", + "Wojciech Olszewski (Lionbridge)", + "Wojciech Przewdziecki (Lionbridge)", + "Wyat Simmons (Lionbridge)", + "Yuliia Stefurak (Lionbridge)", + "Zofia Kossarzecka (Lionbridge)", + "Zuzanna Krężlewicz (Lionbridge)" + ] + } + ] + }, + { + "discipline": "User Research", + "titles": [ + { + "title": "User Research Lead", + "names": [ + "Deanne Adams" + ] + }, + { + "title": "User Researcher", + "names": [ + "Sarah Santiago" + ] + } + ] + }, + { + "discipline": "Operations", + "titles": [ + { + "title": "Operations Director, Global", + "names": [ + "Shanlenn B. Colby" + ] + }, + { + "title": "Operations Director", + "names": [ + "Jewell Morelli" + ] + }, + { + "title": "Operations Managers", + "names": [ + "Karolina Nylén", + "Mikaela Illanes", + "Renee Wikander", + "Sheila Ho", + "Stephanie Golden (Insight Global, Inc)" + ] + }, + { + "title": "Operations Coordinator", + "names": [ + "Stefanie Forsberg" + ] + }, + { + "title": "Creative Operations Director", + "names": [ + "Ulrika Silfverstolpe" + ] + }, + { + "title": "Creative Operations Manager", + "names": [ + "Isabella Balk" + ] + }, + { + "title": "People Operations Managers", + "names": [ + "Adam Lemcio", + "Aleksandra Ola Zajac", + "Ani Grey", + "Brittney Pettway", + "Catherine Hendrix", + "Georgia Marra", + "Joël Älveroth", + "Ludwig Moberg Edenbäck" + ] + }, + { + "title": "HR Directors", + "names": [ + "Darcy Harpel", + "Natalie Graham" + ] + }, + { + "title": "Human Resources", + "names": [ + "Line Thomson", + "Linn Holmertz", + "Yvonne Zarrin Manesh" + ] + }, + { + "title": "Talent Acquisition", + "names": [ + "Adam Conder (Insight Global, Inc)", + "Jeff Guyton (Insight Global, Inc)", + "Scott MacPherson (Insight Global, Inc)", + "Sofia Andersson" + ] + }, + { + "title": "Executive Business Administrators", + "names": [ + "Dinah Divinagracia", + "Erin Decker", + "Francine Jordan", + "Lovisa Grindelius" + ] + }, + { + "title": "IT Managers", + "names": [ + "Jason Perry Minard", + "Rene Astorga" + ] + }, + { + "title": "IT", + "names": [ + "Aaron Brindell (Experis)", + "Aaron Ingram (Experis)", + "Adam Barnette (Experis)", + "Brian Hein (Experis)", + "Dacke Blixt (Techfactory, AB)", + "Eric Filarski (My3Twelve, LLC)", + "Hannah Feilberg-Maiti (Techfactory, AB)", + "Matthew Cha (my3Twelve, LLC)", + "Shoghi Cervantes Pueyo", + "Tim Foster (my3Twelve, LLC)", + "Zelda Karttunen (Academic Work IT AB)" + ] + }, + { + "title": "Lead Automation Support", + "names": [ + "Matthew C. Moreno" + ] + }, + { + "title": "DevOps Engineer", + "names": [ + "Jordan Crockett (Allegis Group Services, Inc)" + ] + } + ] + }, + { + "discipline": "Player Care", + "titles": [ + { + "title": "Director of Player Care", + "names": [ + "Anne Quaranta" + ] + }, + { + "title": "Player Support Program Leads", + "names": [ + "Alexandru Giuglea", + "Erfon Haubenstock", + "Jake Rexus", + "Jen Pedersen" + ] + }, + { + "title": "Player Support Operations Manager", + "names": [ + "Justin Putnam (Apex Systems, Inc)" + ] + }, + { + "title": "Player Support", + "names": [ + "Angel De Aguiar (Apex Systems, Inc)", + "Arturo Gutierrez (Apex Systems, Inc)", + "Briana Acosta (Apex Systems, Inc)", + "Caleb Masters (Apex Systems, Inc)", + "Chirs Lok (Apex Systems, Inc)", + "Chris Eells (Apex Systems, Inc)", + "Daniel Coronel (Apex Systems, Inc)", + "Gabriel Gonzales (Apex Systems, Inc)", + "Julia Osobampo (Apex Systems, Inc)", + "Karoline Malik (Apex Systems, Inc)", + "Mara Croesy (Apex Systems, Inc)", + "Melinda Morales (Apex Systems, Inc)", + "Mey Saechao (Apex Systems, Inc)", + "Raul Garza (Apex Systems, Inc)", + "Sarah Wylie (Apex Systems, Inc)", + "Whitney Okafor (Apex Systems, Inc)" + ] + } + ] + }, + { + "discipline": "Data Analytics", + "titles": [ + { + "title": "Player Analytics and Insights Director", + "names": [ + "Francisco Rius" + ] + }, + { + "title": "Data Science and Analytics Managers", + "names": [ + "Abby Gaddis", + "Duncan Davis", + "Laura Funa", + "Miguel Fierro" + ] + }, + { + "title": "Data Engineering Manager", + "names": [ + "Bill Chism" + ] + }, + { + "title": "Data and Analytics Lead", + "names": [ + "Smitha Menon" + ] + }, + { + "title": "Analytics Environment Manager", + "names": [ + "Troy Henke" + ] + }, + { + "title": "Analytics Environment Engineering", + "names": [ + "Lucas Neubert (Ascendion, Inc)", + "Ryan Cox (Ascendion, Inc)", + "Sebastian Soffici", + "Whitney King (Fractal Analytics Inc)" + ] + }, + { + "title": "Data Science", + "names": [ + "Aaron Johnson", + "Alvaro Gil Moradillo", + "Axel Orrenius", + "Bhrigu Shree", + "Christer Norstrom", + "Grant Poinsatte", + "Kent Go (Aquent, LLC)", + "Kyle Iman", + "Matilda Tamm", + "Matthew Skirvin", + "Pujeethaa Jakka", + "Ramitha Kotarkonda", + "Scott Graham", + "Siva Balantrapu (Hitachi Digital Services LLC)", + "Swathi Sivadas", + "Tiana Ramirez (KellyMitchell Group, LLC)", + "Usama Bin Salim (Agility Partners LLC)", + "Victor Fong (Ascendion, Inc)", + "Xuan Ting Liu" + ] + }, + { + "title": "Data Engineering", + "names": [ + "Bill Klees", + "Deepthi Rajashekar", + "Dhiraj Nilange", + "Olusola Timothy Olojede", + "Sachin Dekate" + ] + } + ] + }, + { + "discipline": "Business Management & Licensing", + "titles": [ + { + "title": "Program Director, China Consumer & Global Partnerships", + "names": [ + "Jeremy Snook" + ] + }, + { + "title": "Program Director, Consumer Products", + "names": [ + "Hanna Willis" + ] + }, + { + "title": "Program Director, Franchise Development", + "names": [ + "Federico San Martin" + ] + }, + { + "title": "Program Directors", + "names": [ + "Ava Volandes", + "Bob Brennecke", + "Eileen Lee", + "Gaylon Blank", + "Sonal Majmudar", + "Stephanie Louie Craig" + ] + }, + { + "title": "Business Director, Franchise", + "names": [ + "Anthony Murphy" + ] + }, + { + "title": "Business Director, Japan & Market Expansion", + "names": [ + "Yutaka Noma" + ] + }, + { + "title": "Business Directors, Operations", + "names": [ + "Bill Lindell", + "Donald Brinkman" + ] + }, + { + "title": "Business Directors", + "names": [ + "Dan Zou", + "Michelle Hua", + "Patrick Geuder", + "Shabnam Elmi", + "Tim Gould" + ] + }, + { + "title": "Business Development Manager Leads", + "names": [ + "Inga Chamberlain", + "Rebecca A Miller" + ] + }, + { + "title": "Business Development Managers", + "names": [ + "Albert Pastore", + "Amy Barenblat (Iconma LLC)", + "Christy Weckner", + "MaryKate Mullen (Allegis Global Services, Inc)", + "Roger Villegas (Allegis Global Services, Inc)", + "Timothy Norton (Ascendion, Inc)" + ] + }, + { + "title": "Program Manager Lead", + "names": [ + "Susie Tinker" + ] + }, + { + "title": "Program Managers", + "names": [ + "Alex Luschen", + "Anita Collins (Excelsior Staffing LLC)", + "Bethany Gager (Apex Systems, Inc)", + "Brett Coleman (Apex Systems, Inc)", + "Chris Dauchot (Insight Global, Inc)", + "Emily Carlson", + "Greg Walls (Insight Global, Inc)", + "John Mercil (Insight Global, Inc)", + "Josh Ayala (Insight Global, Inc)", + "Liz Leo", + "Micky Yamaguchi", + "Monica Burba (Apex Systems, Inc)", + "Morgan Farrar", + "Nedra Wilson", + "Susan Morales (Apex Systems, Inc)", + "Vince Davis Espino (Insight Global, Inc)" + ] + }, + { + "title": "Business Managers", + "names": [ + "Audrey Searcy", + "Brandon H Kim", + "Christopher Johnsen (Allegis Group Services, Inc)", + "David K. Lau", + "Elizabeth Link (Aquent, LLC)", + "Ellen Wu", + "Eve Vashkus", + "Janet Cunningham", + "Kristin Grein", + "Lori Merritt (SGF USA LLC)", + "Matt Morgan", + "Natalia Ellenson", + "Nichole Green", + "Stephanie Turl (Simplicity Consulting Inc.)" + ] + }, + { + "title": "Technical Program Managers", + "names": [ + "DJ Stiner", + "Quinn Richter" + ] + } + ] + }, + { + "discipline": "Brand Management", + "titles": [ + { + "title": "Brand Director", + "names": [ + "Thomas Falkenstrom" + ] + }, + { + "title": "Brand Manager", + "names": [ + "Harry Elonen" + ] + }, + { + "title": "Brand Strategist", + "names": [ + "Astrid Segerlund" + ] + }, + { + "title": "Brand Analyst", + "names": [ + "Sofia Alm" + ] + } + ] + }, + { + "discipline": "Communications", + "titles": [ + { + "title": "Media Director", + "names": [ + "Vu Bui" + ] + }, + { + "title": "Director of Communications", + "names": [ + "Emil Rodriguez", + "Owen Jones" + ] + }, + { + "title": "Communications Managers", + "names": [ + "Addie Coronado", + "Alexis Crofts (Assembly Media, Inc)", + "Cristina Anderca", + "Cynthia Park (Assembly Media, Inc)", + "Holly Amber Smith", + "Maysan Zubi (Assembly Media, Inc)", + "Michael Rougeau (Assembly Media, Inc)", + "Petra Tell", + "Ramona Suris (Assembly Media, Inc)", + "Wesley Gore (Assembly Media, Inc)", + "Zulai Serrano Shimamoto" + ] + }, + { + "title": "Creative Writers", + "names": [ + "Julius Olofsson", + "Linn Viberg", + "Per Landin", + "Sophie Austin" + ] + }, + { + "title": "Director of Community", + "names": [ + "Nea Aime Rollan" + ] + }, + { + "title": "Social Media Lead", + "names": [ + "Sean Flanery" + ] + }, + { + "title": "Social Media Managers", + "names": [ + "Angelica Batth (Kforce, Inc)", + "Anthony Toczek", + "Cassandra Jones (Cypress Human Capital)", + "Paulina Espinoza-Gonzalez (Kforce, Inc)", + "Will Mowery (Harvey Nash, Inc)", + "William Chang (Randstad)" + ] + }, + { + "title": "Community Management Lead", + "names": [ + "Joel Sasaki" + ] + }, + { + "title": "Community Managers", + "names": [ + "Emily Hayes (Averro LLC)", + "Gustav Höglund", + "Jay Wells", + "Kristina Horner", + "Lindsey Schaal", + "Matt Gartzke", + "Michelle Archer Waterman", + "Sophia Lyon" + ] + }, + { + "title": "Content Managers", + "names": [ + "John Hansen (Insight Global, Inc)", + "Nadja Anderberg", + "Oskar Thysell", + "Reagan Sterner (Apex Systems, Inc)" + ] + }, + { + "title": "Publishing Editor", + "names": [ + "Lauren Marklund" + ] + } + ] + }, + { + "discipline": "Marketing", + "titles": [ + { + "title": "Head of Marketing", + "names": [ + "Jeanie DuMont" + ] + }, + { + "title": "Marketing Directors", + "names": [ + "Fergus Lynch", + "Gaylord Escalona", + "Katie Penza" + ] + }, + { + "title": "Marketing Managers", + "names": [ + "Amanda Correia", + "Amy Vuong (Cypress Human Capital)", + "Anton Maslennikov", + "Arkadiy Goldenshtern", + "Bradley Cummings", + "Egil Gloersen", + "Emily Orrson (Unfollow Media)", + "Halley Chang", + "Irene Ahn", + "Jaime Limon", + "Janis Fein (Ascendion, Inc)", + "Jeff Rivait", + "Jen Barry (Ten Gun Design, Inc)", + "Lauren Schuur (Ten Gun Design, Inc)", + "Lindsay Auten (Synaxis Corporation)", + "Makayla Mota (Harvey Nash, Inc)", + "Melissa Jenkins", + "Nick Ketter", + "Nicolas Sherman (Nextant LLC)", + "Sam Brody", + "Sara Cornish", + "Shari Gari (Aquent, LLC)", + "Terry Lewis (Ten Gun Design, Inc)" + ] + }, + { + "title": "Marketing Content Managers", + "names": [ + "Britt Riley (Insight Global, Inc)", + "Daria Sykuleva (Tata Consultancy Services LTD)", + "Jules Caesar (Insight Global, Inc)", + "Nicole Fabian Parodi (Tata Consultancy Services LTD)", + "Richard Lecker (Insight Global, Inc)", + "Sanjana Jadhav (Tata Consultancy Services LTD)", + "Wanda Roe (Tata Consultancy Services LTD)" + ] + }, + { + "title": "Web Content Manager", + "names": [ + "Joe Corrigan (Ten Gun Design, Inc)" + ] + }, + { + "title": "Web Content Authors & QA", + "names": [ + "Arvapally Bharath (HCL Technologies)", + "Jack Markley (HCL Technologies)", + "Nilesh Jaiswal (HCL Technologies)", + "Tobias Bankson (Ten Gun Design, Inc)" + ] + }, + { + "title": "Project Manager", + "names": [ + "Julie Toomey (Ten Gun Design, Inc)" + ] + } + ] + }, + { + "discipline": "Legal", + "titles": [ + { + "title": "Head of Legal", + "names": [ + "Nick Morgan (CELA)" + ] + }, + { + "title": "Senior Legal Counsel", + "names": [ + "Tim Han (CELA)" + ] + }, + { + "title": "Legal Counsel", + "names": [ + "Jessica Henderson", + "Jyl Brown (CELA)", + "Kari Annand (Snodgrass Annand)", + "Maya Yamazaki (Davis Wright Tremaine)" + ] + } + ] + }, + { + "discipline": "Finance", + "titles": [ + { + "title": "Finance Director", + "names": [ + "Marina Kostesic" + ] + }, + { + "title": "Finance Managers", + "names": [ + "Dennis Laviolette (Apex Systems, Inc)", + "Felix Huang Jr.", + "Mikkel Flækøy", + "Robert Scheibeck" + ] + }, + { + "title": "Financial Accountant", + "names": [ + "Josefina Axelsson" + ] + }, + { + "title": "Financial Consultants", + "names": [ + "Elias Selmo", + "Martin Rybrink" + ] + } + ] + } + ] + }, + { + "section": "Special Thanks", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "", + "names": [ + "4J Studios", + "Accenture, Web Engineering Services", + "Dan Roque, Creature Developer", + "Gideon Driver, Zen3 Infosolutions America, Inc", + "Jannis Petersen, Creator of Blockbench", + "John 'DrZhark' Olarte, Creature Developer", + "Julian Gough, Writer", + "Kent Christian Jense, Creature Developer", + "Michele \"skypjack\" Caini, Senior Software Engineer", + "Microsoft Gaming Safety Team", + "Microsoft Magic Team", + "Reza Elghazi, Developer Account Manager", + "The PlayFab Team", + "The Xbox Live Team", + "Vishnu Nalagangula, Zen3 Infosolutions America, Inc", + "Xbox Games Studios" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Blackbird Interactive", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Programmers", + "names": [ + "David Galloway", + "Devon Plourde", + "Jc Fowles", + "Michelle Rocha", + "Mike Biddlecombe", + "Sabrina Korsch-Sharma", + "Stevie Giovanni", + "Tim Stump" + ] + }, + { + "title": "Producer", + "names": [ + "Jeremy Powell" + ] + }, + { + "title": "Vice President, Development", + "names": [ + "Lee McKinnon Pederson" + ] + }, + { + "title": "Studio Technical Director", + "names": [ + "Michael Sikora" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Disbelief", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "President", + "names": [ + "Steve Ellmore" + ] + }, + { + "title": "CTO", + "names": [ + "Steve Anichini" + ] + }, + { + "title": "Producer", + "names": [ + "Andre Gracias" + ] + }, + { + "title": "Additional Production", + "names": [ + "Glenn Zomchek" + ] + }, + { + "title": "Technical Director", + "names": [ + "Kristofel Munson" + ] + }, + { + "title": "Lead Programmer", + "names": [ + "Tim Hagberg" + ] + }, + { + "title": "Senior Programmers", + "names": [ + "Matt Mackowski", + "Torin Wiebelt" + ] + }, + { + "title": "Programmers", + "names": [ + "Abhijit Zala", + "David Stout", + "Dylan Borg", + "Emmaline Kelly", + "Hugo Machado", + "Joey Montgomery", + "Micah Johnston" + ] + }, + { + "title": "Art Director", + "names": [ + "Gabe Bott" + ] + }, + { + "title": "Senior Technical Artist", + "names": [ + "Katie McCarthy" + ] + }, + { + "title": "Technical Artist", + "names": [ + "Ezri Sullivan" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Red Lens", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "President", + "names": [ + "Jared Noftle" + ] + }, + { + "title": "Dev Lead", + "names": [ + "Veasna Chhaysy-Park" + ] + }, + { + "title": "Tech Lead", + "names": [ + "Lily Leblanc" + ] + }, + { + "title": "Producer", + "names": [ + "Nova Barlow" + ] + }, + { + "title": "Software Engineers", + "names": [ + "Elgin Ciani", + "Grady Wright", + "Johnathan Liu", + "Jon Castro", + "Joshua Greene", + "Minji Chhaysy-Park", + "Mitchell Lee", + "Skyler Powers" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Skybox", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Founders", + "names": [ + "Derek MacNeil", + "Shyang Kong", + "Steven Silvester" + ] + }, + { + "title": "Production", + "names": [ + "Chris Aduna", + "Jason Obertas", + "Jennifer Barron", + "Keegan Dillman", + "Madeeha Ahmad", + "Michael Tolkamp", + "Phoenix Valencia", + "Tud Racanelli", + "Veronica Ng", + "Yaw Obiri-Yeboah" + ] + }, + { + "title": "Quality Assurance", + "names": [ + "Ace Cheung", + "Faith Chow", + "Franka Mostert", + "Ivan Yemelianov", + "Jimmy Chen", + "Leo Hewitt", + "Mark Ball", + "Valeriia Kirka", + "Vicky Huang", + "William Redmond", + "Zack Hutchinson" + ] + }, + { + "title": "Software Developers", + "names": [ + "Adrien Givry", + "Aidan Dearing", + "Alex Denford", + "Alexandra Kabak", + "Andrew Halabourda", + "Anthony Wong", + "Benny Wang", + "Brandon Chan", + "Chris Spyropoulos", + "Cody Ward", + "Colin Basnett", + "Daniel Shim", + "Delling Ingvaldson", + "Derek Bell", + "Don Liu", + "Eser Kokturk", + "Eugene Kuznetsov", + "Fred Zhang", + "Glen Conolly", + "Hao Tian", + "Harrison Mulder", + "Hayden Hur", + "Jaegar Sarauer", + "Jaidon van Herwaarden", + "Jian Bang Xu", + "Jiazhi Chang", + "John Ferguson", + "Jon Head", + "Jonathan Yim", + "Jordan Lacey", + "Jordan Millar", + "Justin Tim", + "Kirill Bizin", + "Kyle Roblin", + "Lawrence Wu", + "Marija Petkova", + "Max Fanning", + "Michael Di Spirito", + "Michael Stickland", + "Michel Morin", + "Mike Demone", + "Mukund Agarwal", + "Nathan Lacey", + "Niamh Cuileann", + "Remy Truong", + "Richard Walker", + "Robert Felizardo", + "Sardana Nikolaeva", + "Shreyas Babu", + "Teo Dutra", + "Thierry Bouchard", + "Thomas Le Gerroue-Drevillon", + "Ting-Chun Sun", + "Todd Saharchuk", + "Vassil Anguelov", + "Yong Hou", + "Younggi Kim", + "Zach Campbell", + "Zaid Rauf" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Sprung Studios Ltd", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "CEO", + "names": [ + "James Chaytor" + ] + }, + { + "title": "Director of Global Business Development", + "names": [ + "Brooke Allison" + ] + }, + { + "title": "Studio Director", + "names": [ + "Ben Adams" + ] + }, + { + "title": "Senior Producer", + "names": [ + "Amelia Wales" + ] + }, + { + "title": "Producer", + "names": [ + "Jaclynn Wong" + ] + }, + { + "title": "Head of UX/UI", + "names": [ + "Anton Li" + ] + }, + { + "title": "Senior UX/UI Designer", + "names": [ + "Dimitria Eleftherios" + ] + }, + { + "title": "UX/UI Designers", + "names": [ + "Felix Pham", + "Leticia Dornel", + "Ryan Chen" + ] + }, + { + "title": "Head of Engineering", + "names": [ + "Matthew Jarvis" + ] + }, + { + "title": "Senior UI Engineer", + "names": [ + "Louis Edbrooke" + ] + }, + { + "title": "Front-End Developers", + "names": [ + "Daniel Gomme", + "Spring McParlin Jones" + ] + }, + { + "title": "UI Engineers", + "names": [ + "Andrew Ting", + "Michael Nation", + "Yewon Jung" + ] + }, + { + "title": "Head of User Research", + "names": [ + "Luke Fraser" + ] + }, + { + "title": "Senior User Researcher", + "names": [ + "Erica Qiu" + ] + }, + { + "title": "IT Support", + "names": [ + "Sofwan Naing" + ] + } + ] + } + ] + }, + { + "section": "Mojang Studios Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Original Creator of Minecraft", + "names": [ + "Markus Persson" + ] + }, + { + "title": "Studio Head", + "names": [ + "Åsa Bredin", + "Helen Chiang" + ] + }, + { + "title": "Head of Minecraft", + "names": [ + "Matt Booty" + ] + }, + { + "title": "Head of Stockholm Studio", + "names": [ + "Ulrika Hojgard" + ] + }, + { + "title": "Chief Executive Officer", + "names": [ + "Carl Manneh" + ] + }, + { + "title": "Chief Technology Officer", + "names": [ + "Rikard Herlitz" + ] + }, + { + "title": "Chief of Staff", + "names": [ + "Andrew J. Adamyk", + "Yassal Sundman" + ] + }, + { + "title": "Chief Creative Officer", + "names": [ + "Saxs Persson" + ] + }, + { + "title": "Head of Franchise Operations", + "names": [ + "Josh Bliggenstorfer" + ] + }, + { + "title": "Head of Games", + "names": [ + "Patrick Liu", + "Sara Jansson Bach" + ] + }, + { + "title": "Game Director", + "names": [ + "Henrik Pettersson" + ] + }, + { + "title": "Creative Director", + "names": [ + "John Hendricks" + ] + }, + { + "title": "Creative Leads", + "names": [ + "Jesse Merriam", + "Louise Smith (Formosa)", + "Michael Harnisch" + ] + }, + { + "title": "Design Managers", + "names": [ + "Oskar Hansson Wettergren", + "Peter Diar Friman", + "Rabi Afram" + ] + }, + { + "title": "Game Designers", + "names": [ + "Brandon Franklin (Insight Global, Inc)", + "Colten Murphy (TEKsystems, Inc.)", + "Daniel Brynolf", + "H Jones", + "Henrik Kniberg", + "Jared Greiner", + "Jesper Westlund", + "Jesse A Hibbs (TEKsystems, Inc.)", + "Justin Van Oort", + "Lauren E. Careccia", + "Melissa Andrews (Insight Global, Inc)", + "Miko Charbonneau", + "Nikolaj Kledzik", + "Pontus Hammarberg", + "Pradnesh Patil" + ] + }, + { + "title": "Narrative Designer", + "names": [ + "Max Herngren" + ] + }, + { + "title": "Head of Creator Platform Engineering", + "names": [ + "Jason Cahill" + ] + }, + { + "title": "Franchise Technical Director", + "names": [ + "Michael Weilbacher" + ] + }, + { + "title": "Technical Directors", + "names": [ + "Christopher Östlund", + "Daniel Johansson", + "Jason Major", + "Kristoffer Jelbring" + ] + }, + { + "title": "Engineering Managers", + "names": [ + "Erik Rahm", + "Giulio 'Mac' Maistrelli", + "Johan Williams", + "Martin Almgren", + "Michael Scott", + "Mikael Stenelund", + "Peter Olsson", + "Rose Higgins", + "Selma Hosni", + "Wenlan Yang" + ] + }, + { + "title": "Lead Software Engineers", + "names": [ + "Aaron Heysse", + "Adrian LaVallee", + "Dan Posluns", + "Henry Golding", + "Jeff Ott", + "John Copic", + "John Seghers", + "Mark D. Andersen", + "Mark Grinols", + "Michael D McGrath", + "Nathan Miller", + "Niklas Börestam", + "Piotr Kundu", + "Robert Goins", + "Sebastian Hindefelt", + "Steve Robinson", + "Syrgak Turgumbaev", + "Timothy J Schutz", + "Tom Miles", + "Tyler Laing" + ] + }, + { + "title": "Technical Leads", + "names": [ + "Anton Nikolaienko", + "Fernando Via Canel", + "Niclas Unnervik" + ] + }, + { + "title": "Software Engineers", + "names": [ + "Aaron Ward (Insight Global, Inc)", + "Aaron Woodward", + "Adam Granzer (TEKsystems, Inc)", + "Adam Ramberg", + "Adam Schoelz (Ascendion, Inc)", + "Adrian T Orszulak", + "Adrian Toncean", + "Afeez Olusegun K Bello", + "Albin Odervall", + "Alex Baird (Collabera, LLC)", + "Alex Wennström", + "Alexander Johansson", + "Alexander Kandalaft (Insight Global, Inc)", + "Alexander Östman", + "Alexander Sandor", + "Alexander Wilkinson", + "Ali Alidoust", + "Amir Moulavi", + "Anders Gärdenäs", + "Anders Martini", + "Andreas Von Gegerfelt", + "Andrew Chien (Insight Global, Inc)", + "Andrew Hewitson", + "Andy Hill", + "Anna Pearson (Insight Global, Inc)", + "Anthony Cloudy", + "Archana Singh (Collabera, LLC)", + "Arindam Goswami (Ascendion, Inc)", + "Arman Vatandoust", + "Aron Nieminen", + "Arunkumar Jeganathan (Artech Consulting, LLC)", + "Ashish Sharma (Ascendion Inc)", + "Ashley Rentz (Insight Global, Inc)", + "Astrid Gunne", + "Astrid Rehn", + "Austin Jensen (Insight Global, Inc)", + "Austin Larkin (Insight Global, Inc)", + "Benjamin Arnold (Insight Global, Inc)", + "Benny Hellström", + "Bjarni Gudmundsson", + "Brendan Lauck (Insight Global, Inc)", + "Campbell Tran", + "Cezary Tomczak", + "Chris Barrett (Apex Systems, Inc)", + "Christian Westman", + "Christoffer Hammarström", + "Clayton Vaught", + "Coseo Frerichs (Insight Global, Inc)", + "Cullen Waters", + "Curtis Michael Eichner", + "Dag Oldenburg", + "Daniel Feldt", + "Daniel Frisk", + "Daniel Wustenhoff", + "Danila Dergachev", + "Dario Vodopivec", + "Dartangan Jackson (Ascendion, Inc)", + "Dave Stevens", + "David Dalström", + "David Karlehagen", + "David 'Lion' Kimbro (Insight Global, Inc)", + "David Marby", + "David Reiley (Collabera, LLC)", + "David Roberts (Insight Global, Inc)", + "Delia Varzariu (Globant)", + "Dimitri Kishmareishvili (CSI Interfusion, Inc)", + "Dodge Lafnitzegger (Insight Global, Inc)", + "Dolly Mackwan", + "Don S Frazier II", + "Drew Okenfuss", + "Elijah J Emerson", + "Elliot Strait (Ascendion, Inc)", + "Emelie Sidesiö", + "Emil Hedemalm", + "Emily Black", + "Emily Mattlin", + "Emily Rizzo (Insight Global, Inc)", + "Emily Yellen", + "Eric Grimsborn", + "Erik Broes", + "Erik Bylund", + "Erik Soderberg", + "Esteban Richey (Insight Global, Inc)", + "Esther Peters (Ascendion, Inc)", + "Evelyn Collier (Insight Global, Inc)", + "Evin Watson (Insight Global, Inc)", + "Fenil Shah (Collabera, LLC)", + "Fernando Cerdeira (Globant)", + "Filip Hedenskog", + "Fredrik Bergstrand", + "Gabriel Gerhardsson", + "Gabriel Gessle", + "Gage Way (Insight Global, Inc)", + "Geof Sawaya (Ascendion, Inc)", + "Guillaume Le Chenadec", + "Gustaf Zetterlund", + "Håkan Jonson", + "Håkan Wallin", + "Haley Eisenshtadt", + "Hampus Fristedt", + "Hannes Heijkenskjöld", + "Hazen Miller (Insight Global, Inc)", + "Heather Mace", + "Helena Hjertén", + "Henrik Barratt-Due", + "Herbert Mocke (Ascendion, Inc)", + "Irina Koulinitch", + "Isaac de la Vega", + "Jacob Bergdahl", + "Jakob Horndahl", + "Jakob Pogulis", + "James Klock (Collabera, LLC)", + "James Linden (Insight Global, Inc)", + "James McNatton", + "Jason Chionh", + "Jason Orion Burch", + "Javi Romero (Globant)", + "Jay Sharma (Insight Global, Inc)", + "Jeff 'Dextor' Blazier", + "Jeff Yanick (Ascendion, Inc)", + "Jeffery Yanick (Collabera, LLC)", + "Jeffrey J Jou (Insight Global, Inc)", + "Jeison Salazar (Insight Global, Inc)", + "Jimmy Almkvist", + "Jimmy Janow (Agility Partners, LLC)", + "Joachim Larsson", + "Joakim Ejenstam", + "Joakim Norberg", + "Johan Bernhardsson", + "Johannes Sundqvist", + "John Davis (Collabera, LLC)", + "John Estess (Randstad)", + "John Graf (Collabera, LLC)", + "John Haynes", + "John Littlewood", + "John Wordsworth", + "Johnny Sjöö", + "John-Philip Johansson", + "Jonas Bergström", + "Jonathan M Ortiz", + "Jonathan R Hoof", + "Jorge Antonio Jimenez (Design Laboratory, Inc)", + "Joseph Kichline", + "Josh Letellier", + "Joshua B Davis", + "Joshua Letellier", + "Joshua Owens (Collabera, LLC)", + "Joy Cedor (Ascendion, Inc)", + "Juliana Montes", + "Jun Fu (Ascendion, Inc)", + "Karim A Luccin", + "Kaylee Benoit (Randstad)", + "Kelly Fox (Insight Global Inc)", + "Kelly Keniston (Insight Global, Inc)", + "Kento Murawski (Insight Global, Inc)", + "Khaled Fahmy (Ascendion, Inc)", + "Kirill Mikhel", + "Kristin A Siu", + "Kristoffer Kobosko", + "Larry Ukaoma", + "Leonard Gram", + "Lesia Osovska", + "Levi Stoddard (Insight Global, Inc)", + "Linus Cumselius", + "Lisa Sturm", + "Lizaveta Rubinava (Collabera, LLC)", + "Loïc Benet", + "Loren Merriman (Kalvi Consulting Services, Inc)", + "Louis A Castaneda (Insight Global, Inc)", + "Lucas Carpenter (Collabera, LLC)", + "Lucy Lauzon (Collabera, LLC)", + "Luis A Angel Mex", + "Magnus Bentling", + "Magnus Jäderberg", + "Maksim Ivanov", + "Manoj Manoharan (Ascendion, Inc)", + "Marc Neander", + "Márcio de Oliveira da Silva", + "Marcus Olofsson", + "Maria Katsourani", + "Maria Lemón", + "Markus Arvidsson", + "Markus Magnusson", + "Mårten Helander", + "Martin Hag", + "Martin Hesselborn", + "Martin Nilsson", + "Martin Odhelius", + "Martin Pola", + "Mats Henricson", + "Matthew Guze (WaferWire Cloud Technologies)", + "Matthew Moses (Ascendion, Inc)", + "Matthew Phair", + "Mattias Selin", + "Maxwell Orth (Insight Global, Inc)", + "Maxxwell Plum (Insight Global, Inc)", + "Michael Andersson", + "Michael Chambers (Insight Global, Inc)", + "Michael Klopfenstein (Insight Global, Inc)", + "Michael Malmqvist", + "Michael 'Mikaus' Whiteley", + "Michael Novén", + "Michel Miranda (Globant)", + "Miguel Menindez Segura (Ascendion, Inc)", + "Mikael Malmqvist", + "Mikael Persson", + "Mike Carlson", + "Mike Marven (Insight Global, Inc)", + "Mohamed Fouad Saga", + "Mykhalio Ostapysko (Globant)", + "Nat Meo (Ascendion, Inc)", + "Nathan Gilbert", + "Nathan Sosnovske", + "Nicholas Draper (Insight Global, Inc)", + "Nikita Zetilov", + "Niklas Ekman", + "Norman Skinner (Insight Global, Inc)", + "Osama Balkasem (Collabera, LLC)", + "Oskar Carlbaum", + "Oskar Pedersen", + "Pär Berge", + "Patrick O'Leary", + "Patrick Szafranko (Ascendion, Inc)", + "Patrik Hillgren", + "Paula Roth", + "Pavel Grebnev", + "Peter Larsson", + "Petr Mrázek", + "Petter Holmberg", + "Philip Vieira", + "Poojitha Ponakala", + "Prashant Sharma (Ascendion, Inc)", + "Radha Kotamarti", + "Randy Gonzalez-Murillo (Collabera, LLC)", + "Rashad Murray (Insight Global, Inc)", + "Richard Pihlcrantz", + "Rob Austin", + "Robert Hurley (Ascendion, Inc)", + "Robert Thresher (Collabera, LLC)", + "Robin Somers", + "Robyn R To", + "Rodrick Edwards", + "Roman Timurson (Insight Global, Inc)", + "Rui Ma", + "Rui Xie (Insight Global, Inc)", + "Ryan Holtz", + "Ryan Seaman (Collabera, LLC)", + "Ryan Tyler Rae", + "Samuel Smethurst (Ascendion, Inc)", + "Scott Edsall (Collabera, LLC)", + "Sean Reilly", + "Sebasian Hindefeldt", + "Semih Energin", + "Sina Tamanna", + "Spencer Peterson (Insight Global, Inc)", + "Srinivasa Rao Chatala (Ascendion, Inc)", + "Stacy J Chen", + "Stephen Trigger (Insight Global, Inc)", + "Tanner Pearson (Insight Global, Inc)", + "Taylor M Riviera", + "Theodor Fleming", + "Thomas Guimbretière", + "Thomas Järvstrand", + "Thomas Spalter (Insight Global, Inc)", + "Tim Lindeberg", + "Tobias Möllstam", + "Tomas Alaeus", + "Tomer Braff (Collabera, LLC)", + "Tommy Wallberg", + "Travis Gates (Insight Global, Inc)", + "Udit Gandhi (Ascendion, Inc)", + "Victor Connor", + "Viktor Bergehall", + "Virgilio Jr Blones", + "Vitalii Sych", + "Vladimir Repcak (Collabera, LLC)", + "Volodymyr Belianinov (Ascendion, Inc)", + "Will Van Keulen", + "William Harmon (Insight Global, Inc)", + "Ying Guo (TEKsystems, Inc.)", + "Zack Moxley (Insight Global, Inc)", + "Zane Hintzman", + "Zeshan Ahmed (Ascendion, Inc)" + ] + }, + { + "title": "Lead Architects", + "names": [ + "Greg Snook", + "Peter M. Wiest" + ] + }, + { + "title": "Architects", + "names": [ + "Dom Humphrey", + "Mike Frost", + "Tommaso Checchi" + ] + }, + { + "title": "Launcher", + "names": [ + "Anders Rosén", + "Carl Westin", + "David Zevallos" + ] + }, + { + "title": "Additional Programming", + "names": [ + "Elliot Segal", + "Paul Spooner", + "Ryan Hitchman" + ] + }, + { + "title": "Chief Product Officer", + "names": [ + "Olof Carlson Sandvik" + ] + }, + { + "title": "Head of Games Expansion", + "names": [ + "John Thornton" + ] + }, + { + "title": "Head of Minecraft Atlas", + "names": [ + "Deirdre Quarnstrom" + ] + }, + { + "title": "Production Directors", + "names": [ + "Daniel Kaplan", + "Tyler Jeffers (Formosa)" + ] + }, + { + "title": "Director of Minecraft Online & Marketplace", + "names": [ + "Jessica Zahn" + ] + }, + { + "title": "Director of Bedrock Platform", + "names": [ + "Michael McManus" + ] + }, + { + "title": "Executive Producers", + "names": [ + "Erin Krell", + "Gama Aguilar-Gamez", + "Roger Carpenter" + ] + }, + { + "title": "Production Managers", + "names": [ + "Magdalena Björkman", + "Shah Rahman" + ] + }, + { + "title": "Production Leads", + "names": [ + "Charlotte Backer", + "Christine Platon", + "Sarah Carton", + "Sofie Lundberg" + ] + }, + { + "title": "Producers", + "names": [ + "Aaron Culbreth (Insight Global, Inc)", + "Adele Major", + "Alen Voljevica", + "Allan Contreras (Insight Global, Inc)", + "Anna Holdosi-Simon", + "Anna Jensen", + "Anna Zakipour", + "Annica Strand", + "Annie Desimone (Insight Global, Inc)", + "Ann-Kristin Adwent", + "Anthony Hanses (Insight Global, Inc)", + "Antonina Y Khazova", + "Åsa Skogström", + "Austin Maestre", + "Best Liang", + "Carina Kovacs Lockhart", + "Carina Pettersson", + "Carolin Szymaniak", + "Caylin Kaunas (Randstad)", + "Charlotte Angantyr", + "Chris Casanova", + "Chris Massena (Insight Global, Inc)", + "Christina-Antoinette Neofotistou", + "Christopher Dalid", + "Damian Finn (Lionbridge)", + "Dani Flores (Insight Global, Inc)", + "David Iooss (Randstad)", + "Dayana Sharshukova (Aquent, LLC)", + "Decker Geddes (Insight Global, Inc)", + "Elizabeth Batson (Insight Global, Inc)", + "Emily Steele (Formosa)", + "Emma Erixson", + "Ethan Koltz (Insight Global, Inc)", + "Foluso Akerele", + "Gabrielle Riggir", + "Hampus Nilsson", + "Hedwig Laza", + "Hugo Lang", + "Isaac Barron (Globant)", + "Isabella Arningsmark", + "Jason Rice", + "Jeffrey Carlo (Apex Systems, Inc)", + "Jennifer Lee (Insight Global, Inc)", + "Jewel Chukwufumn, Ifeguni", + "Jillian Brown (TEKsystems, Inc)", + "Johan Grunden", + "Johannes Fridd", + "John Garcia (Collabera, LLC)", + "Jonas Olaussen", + "Josefine Brink", + "Juan Gril", + "Julian Tunru", + "Justin So (Randstad)", + "Justin Woods", + "Justine Loong", + "Kasia Swica", + "Kelly Henckel", + "Kevin Katona (Design Laboratory, Inc)", + "Kyle Lawton", + "Lina Hagman", + "Lisa Bryer", + "Loudon St Hill (Insight Global, Inc)", + "Luis Qiang Liu", + "Marcus Rundström", + "Marie Stålkrantz", + "Markus Waltré", + "Martin Kurtovic", + "Matt Rodgers (eXcell, a division of CompuCom)", + "Megan Rodes (Formosa)", + "Michael Welch (Insight Global, Inc)", + "Moira Ingeltun", + "Natalie Selin", + "Nathan Tompkins (Randstad)", + "Negin Javanmardi", + "Nick Severson", + "Nicole Alers", + "Patrik Hamsten", + "Pontus Åselius", + "Robin Linder", + "Sara Lidberg", + "Seyit Ivhed", + "Sloane Delancer", + "Sofia Orrheim", + "Sofie Lekkas", + "Steph Huske (Allegis Group Services, Inc)", + "Stephanie Chen (Collabera, LLC)", + "Susanne Granlöf", + "Tess Kearney (Formosa)", + "Thomas Feng", + "Tien-Hung Nguyen (TEKsystems, Inc.)", + "Tilde Westrup", + "Trevor McCann (Yoh Services LLC)", + "William C Meyer (Pivotal Consulting, LLC)", + "William Cooper", + "Yesenia Cisneros" + ] + }, + { + "title": "Assistant Producer", + "names": [ + "Warren Loo" + ] + }, + { + "title": "Media Producers", + "names": [ + "André Angerbjörn", + "Ines Quintanar Cardenas" + ] + }, + { + "title": "Product Managers", + "names": [ + "Carmille Gidfors Netzler", + "Erica Lares (Apex Systems, Inc)", + "Halishia Chugani" + ] + }, + { + "title": "Organizational Coaches", + "names": [ + "Jonas Ekstrand", + "Karin Hagren", + "Linda Ahlström Nilsson", + "Martin Bloomstine", + "Rasmus Noah Hansen" + ] + }, + { + "title": "Release Managers", + "names": [ + "Beth Murphy (Kforce, Inc)", + "Dustin Wood (Design Laboratory, Inc)", + "Kyle Rogers (Randstad)", + "Robert Williamson (Apex Systems, Inc)" + ] + }, + { + "title": "Technical Writers", + "names": [ + "Bryce Bortree (Insight Global, Inc)", + "Jim Seaman (Insight Global, Inc)", + "Joshua Jones (Insight Global, Inc)", + "Nate Mackie (TEKsystems, Inc.)" + ] + }, + { + "title": "Technical Program Managers", + "names": [ + "Andy Puntahachart", + "Aysha Davis (Cyborg Mobile LLC)", + "Devarshi Hazarika", + "Dom Arcamone", + "Eloise Espel", + "Emily Price", + "Holly Pollock", + "Joshua Mueller (Apex Systems, Inc)", + "Morgan J. East (Randstad)", + "Roger Duke (Insight Global, Inc)", + "Ryan Seymour (TEKsystems, Inc.)", + "Stephen Frothingham (Wimmer Solutions)" + ] + }, + { + "title": "Localization", + "names": [ + "Amber Wu (Shanghai Wicresoft Co, Ltd.)" + ] + }, + { + "title": "Playtest Coordinators", + "names": [ + "Axel Savage", + "Liam Allman (Aquent, LLC)", + "Ricky White (Randstad)" + ] + }, + { + "title": "Art Directors", + "names": [ + "Alexis Holmqvist", + "Andy Zibits", + "Brad Shuber", + "Daniel Björkefors", + "Kim Petersen", + "Logan Lubera", + "Lynwood Montgomery (Formosa)", + "Ola Lanteli", + "Telemachus Stavropoulos", + "Viktor Blanke", + "Wiktor Persson" + ] + }, + { + "title": "Artist Leads", + "names": [ + "Christine Gutierrez", + "Gustav Embretsen", + "Lisa Hazen", + "Sarah Kisor" + ] + }, + { + "title": "Artists", + "names": [ + "Aleesa Tana (Formosa)", + "Amanda Cook (Harvey Nash, Inc)", + "Andrea Sanchez Sepulveda (Formosa)", + "Bart Kaufman (Randstad)", + "Branden Brushett (Aquent, LLC)", + "Claire Selvog (Formosa)", + "Dylan Sunkel (Collabera, LLC)", + "Elin Ölund Forsling", + "Erin Biafore (Formosa)", + "Erin Caswell (eXcell, a division of CompuCom)", + "Florian Decupper", + "Heath Night (Aquent, LLC)", + "Husein Kurbegovic", + "Jakob Gavelli", + "Jei G Ling (Allegis Group Services, Inc)", + "Jei Ling (Formosa)", + "Jerica Harada (TEKsystems, Inc.)", + "Jesper Hallin", + "Jonatan Pöljö", + "Jules Norcross (Aquent, LLC)", + "Kailey Hara (Formosa)", + "Kate Anderson (Formosa)", + "Kelly Greene (CompuCom Systems, Inc)", + "Kristen Malone (Randstad)", + "Kristoffer Zetterstrand", + "Lilei Yu (Collabera, LLC)", + "Liliia Chorna", + "Linus Chan (Formosa)", + "Marco Vale", + "Mariana Graham Ramirez", + "Mariana Salimena", + "Mark Eash Hershberger (Formosa)", + "Mark Hershberger (Apex Systems, Inc)", + "Mark Reyes (Formosa)", + "Michael R Fiedler (Insight Global, Inc)", + "Miki Bishop (Randstad)", + "Patrick Rodes (Formosa)", + "Phoebe Piepenbrok", + "Poi Poi Chen", + "Richard Worley", + "Rudy Solidarios (Formosa)", + "Salinee Goldenberg (Formosa)", + "Sarah Corean (Formosa)", + "Sarah Martino (Formosa)", + "William Thomas" + ] + }, + { + "title": "Product Designers", + "names": [ + "Affe Piran", + "Jennifer Hammervald", + "Jonathan Gallina", + "Kelsey Ranallo", + "Lisa Dahlström" + ] + }, + { + "title": "Graphic Designers", + "names": [ + "Adrian Leon (Formosa)", + "Dalila Copeland (Formosa)", + "Javier Rodriguez (Formosa)", + "Yong-Namm Lee" + ] + }, + { + "title": "Motion Graphics Designer", + "names": [ + "Gabe Philbin (Randstad)" + ] + }, + { + "title": "Sound Designers", + "names": [ + "Johan Pettersson", + "Kevin Martinez", + "Magnus Mikander", + "Rostislav Trifonov", + "Shauny Jang (Insight Global, Inc)" + ] + }, + { + "title": "Technical Audio Developer", + "names": [ + "Jonatan Crafoord" + ] + }, + { + "title": "Quality Engineers", + "names": [ + "Paul Coada", + "Thommy Siverman", + "Yi Zhao (Kforce, Inc)", + "Zackarias Gustavsson" + ] + }, + { + "title": "Quality Data Analysis & Engineering", + "names": [ + "Jeff MacDermot" + ] + }, + { + "title": "Quality Assessment Specialists", + "names": [ + "Artur Foxander", + "Carl-Johan Tornberg", + "James Marchant", + "Jana Prihodko", + "Kajsa Sima Falck", + "Marcela Castaneda", + "Mimmi Boman-Borjesson" + ] + }, + { + "title": "Software Test Engineers", + "names": [ + "Chris Youngs (Insight Global, Inc)", + "Jared Lesczynski (Experis)", + "Karol Szymański (Lionbridge)", + "Kinga Izdebska (Lionbridge)", + "Konrad Czaplewski (Lionbridge)", + "Marcin Morel (Lionbridge)", + "Mateusz Janiszewski (Lionbridge)", + "Robert Alvarez (Experis)", + "Tevis Campbell (Experis)" + ] + }, + { + "title": "Test Associates", + "names": [ + "Arkadiusz Grzanka (Lionbridge)", + "Damian Bartak (Lionbridge)", + "Daryna Kalashnova (Lionbridge)", + "Dominik Głowacki (Lionbridge)", + "Ermias Tesfaye (Lionbridge)", + "Evan Armstrong (Experis)", + "Heorhii Lystopad (Lionbridge)", + "Ignacy Kukliński (Lionbridge)", + "Jakub Kliś (Lionbridge)", + "John Castro Chico (Insight Global, Inc)", + "Kacper Lędzion (Lionbridge)", + "Kacper Pućka (Lionbridge)", + "Kacper Stalewski (Lionbridge)", + "Kamil Wiktorowski (Lionbridge)", + "Karol Mikusek (Lionbridge)", + "Karolina Malik (Lionbridge)", + "Korentin Delisle (Lionbridge)", + "Mikołaj Szadkowski (Lionbridge)", + "NIck Latino (Insight Global, Inc)", + "Paulina Prus (Lionbridge)", + "Rion Cox (Lionbridge)", + "Robert Thomas (Insight Global, Inc)", + "Sophie James (Lionbridge)", + "Teresa Stelmach (Lionbridge)", + "Zakery Haynes (Experis)" + ] + }, + { + "title": "Test Managers", + "names": [ + "Ian S. Nelson (Experis)", + "Marcus King (Experis)" + ] + }, + { + "title": "Team Leads", + "names": [ + "Kamil Kostrzewa (Lionbridge)", + "Zuzanna Gieszcz (Lionbridge)" + ] + }, + { + "title": "Test Lead", + "names": [ + "Alan Aclon (Insight Global, Inc)" + ] + }, + { + "title": "User Experience Design Directors", + "names": [ + "Stephen Whetstine", + "Tobias Ahlin" + ] + }, + { + "title": "User Experience Designers", + "names": [ + "Clory Luo (Formosa)", + "Connor Tompsett (CompuCom Systems, Inc)", + "Eric Alm", + "Gaby Salinas", + "Jin Shin", + "Jonathan Paton Gallina", + "Kailin Li (TEKsystems, Inc.)", + "Lily Ekman", + "Lucas Morales Sousa", + "Melissa Kay (Prieto)", + "Nirali Vadera (Ascendion, Inc)", + "Oscar Nilsson", + "Sabrina Cuevas-Pagoaga (Randstad)", + "Sam Paye (Aquent, LLC)", + "Sandra Bornemark", + "Sarah Mack (Digital Intelligence Systems, LLC)", + "Shaun Basil Mendonsa", + "William Hollowell" + ] + }, + { + "title": "User Experience Writer", + "names": [ + "Juan Buis" + ] + }, + { + "title": "User Experience Intern", + "names": [ + "Axel Grefberg" + ] + }, + { + "title": "User Research Lead", + "names": [ + "Jerome Hagen" + ] + }, + { + "title": "User Researchers", + "names": [ + "Melissa Boone", + "Olga Zielinska", + "Pablo Morales" + ] + }, + { + "title": "Head of Creator Marketplace", + "names": [ + "Aaron Buckley" + ] + }, + { + "title": "Business Director, Minecraft Game", + "names": [ + "Jesper Altren" + ] + }, + { + "title": "Directors of Business Management", + "names": [ + "Stephen McHugh" + ] + }, + { + "title": "Director of Business Planning", + "names": [ + "Adam Tratt" + ] + }, + { + "title": "Director of Business Development", + "names": [ + "Cherie D Lutz" + ] + }, + { + "title": "Project Director", + "names": [ + "Jakob Porsér" + ] + }, + { + "title": "Operations Managers", + "names": [ + "Anna Hamilton", + "Barbara Acevedo Visser (Lions and Tigers)", + "Carl Kyhlberg", + "Ellen Hahm", + "Gustav Roth", + "Kaya Hatcher", + "Mira Aboulhoson", + "Sarah Grimmond" + ] + }, + { + "title": "Business Development Managers", + "names": [ + "Ellen Deng (JeffreyM Consulting, LLC)", + "Jordan Comar (Digital Intelligence Systems, LLC)", + "Maru Zamora", + "Nick Gallagher (Digital Intelligence Systems, LLC)", + "Ryan Eng (Aerotek, Inc)" + ] + }, + { + "title": "Program Managers", + "names": [ + "Amador Abreu (Insight Global, Inc)", + "Aria Azizi", + "Brian Canning (Experis)", + "Clint Baggett (Experis)", + "Helene Aku Brown", + "James Pfeiffer (Experis)", + "Jonathan Hartung-Jenkins (my3Twelve, LLC)", + "Julie Olden", + "Kaiwen Li (Populus Group, LLC)", + "Liz Butowicz (Bluehawk LLC)", + "Maria Olekheyko", + "Mark Fredo (Aerotek, Inc)", + "Mary Elizabeth Pearson (Apex Systems, Inc)", + "May Qiang (my3Twelve, LLC)", + "Meenoo Rami", + "Natalie Haggin (Simplicity Consulting Inc.)", + "Phillip Wang (Digital Intelligence Systems, LLC)", + "Steven Hosey (Simplicity Consulting Inc.)", + "Stuart U (my3Twelve, LLC)", + "Tess Opincarne (Amaxra)", + "Timothy J Ross (Simplicity Consulting Inc.)", + "Todd Agnello (TEKsystems, Inc)", + "Tori Park (Cypress Human Capital)", + "Wendy Gorton" + ] + }, + { + "title": "Business Managers", + "names": [ + "Bill Wu", + "Claudine Ursino (Simplicity Consulting Inc.)", + "Dana Friesen (Insight Global, Inc)", + "Daniel Beasley", + "Emily Clock", + "Jennifer Cox (Aston Carter, Inc)", + "Leslie Tullis", + "Matthew Ortegon (Rylem)", + "Sarah Souza (Epitec Inc)", + "Vanessa Dagnino (Simplicity Consulting Inc.)" + ] + }, + { + "title": "Business Analysts", + "names": [ + "Alvin M Chin (Populus Group, LLC)", + "Keiko Ramer (Apex Systems, Inc)", + "Zheng Wang (Populus Group, LLC)" + ] + }, + { + "title": "Lead Project Manager", + "names": [ + "Vera Mirchev" + ] + }, + { + "title": "Intellectual Property Enforcement Leads", + "names": [ + "Mathias Andersson", + "Teresa Lee Rodewald" + ] + }, + { + "title": "Intellectual Property Enforcement Agents", + "names": [ + "Johan Hedlund", + "Marcus Forss", + "Matilda Åkerman", + "Sylvia Chen" + ] + }, + { + "title": "People Operations Director", + "names": [ + "Briana Roberts" + ] + }, + { + "title": "People Experience Manager", + "names": [ + "Maria Keisu Nolberg" + ] + }, + { + "title": "HR Directors", + "names": [ + "Dave Hill", + "Maja Samuelsson", + "Nia Parker" + ] + }, + { + "title": "Human Resources", + "names": [ + "Alexandra Ward", + "Anna Lyth", + "Aron Glauser", + "Charlie Bjurström", + "Emma Bergström", + "Jennie Sjöman", + "Jonas Bergelli", + "Katarina Starendal", + "Kristian Idehaag", + "Maria Sjöman", + "Marie Tolf", + "Milica Tesic Stojanovic", + "Petra Stenqvist", + "Richard Nelléus", + "Sasa Stamenkovic", + "Simon Taylor", + "Ulrika Karlsson", + "Ulrika Wörding", + "Veronica Camaj Ericson", + "Viktoria Petersson" + ] + }, + { + "title": "Talent Acquisition", + "names": [ + "Aimée Narfström", + "Elnaz Tajahmadi Tabrizi", + "Filip Hultin", + "Hanan Naamneh", + "Ida Utterström", + "Roza Kawa", + "Sofia Lindquist", + "Tove Oldebäck", + "Vidar Bjurström" + ] + }, + { + "title": "Office Managers", + "names": [ + "Alex Andersson", + "Charlotte Wredesjö", + "Jill Curran", + "Linn Hultman", + "Mikaela Prim", + "Siri Hoel" + ] + }, + { + "title": "Office Coordinators", + "names": [ + "Even Hadeghe", + "Malin Strand", + "Sandra Odmark" + ] + }, + { + "title": "Executive Business Administrators", + "names": [ + "Cathy Wickersham", + "Darla J Barrett", + "Judith L. Wheeler", + "Katy Hanson", + "Lisa Liu", + "Rachael Cox", + "Theresa Chin" + ] + }, + { + "title": "Business Administrator", + "names": [ + "Shae M. Flanigan (C2S Technologies, Inc)" + ] + }, + { + "title": "Administrative Support", + "names": [ + "Carol Stearns (Experis)", + "Paul Gradwohl (Experis)" + ] + }, + { + "title": "Front of House", + "names": [ + "Adam Blänning", + "Chaimae Truving", + "Eliza Lancelot", + "Felicia Björn Nordling" + ] + }, + { + "title": "IT Managers", + "names": [ + "Adam MacDowall" + ] + }, + { + "title": "IT", + "names": [ + "Alexandre Pretto Nunes", + "Anton Wu", + "Carl Johan Svärd", + "Cesar Sima Falck", + "Daniel Miller (Insight Global, Inc)", + "Derek Wilson (my3Twelve, LLC)", + "Dessie Andersson (Centric Professionals AB)", + "Eetu Närhi", + "Evelina Rollfelt", + "Fabian Norlin", + "Frida Karlsson", + "Henrik Lindgren", + "John Klervad", + "Morris Kellokoski", + "Natalia Filapek", + "Ondrej Magath", + "Przemyslaw Elwart", + "Rickard Randa Hedvall", + "Shoaib Hosseini", + "Stephanie De Leeouv Markov", + "Vanessa Butt", + "Yaser Mosavi" + ] + }, + { + "title": "Automation Support", + "names": [ + "Bill Erhard (Insight Global, Inc)", + "Gregory D Searing (WaferWire Cloud Technologies)", + "Johnny Cocks (Collabera, LLC)", + "Matthew Gustaff (Digital Intelligence Systems, LLC)", + "Sean Connolly (Insight Global, Inc)" + ] + }, + { + "title": "DevOps Engineer", + "names": [ + "Chris Ilson (Collabera, LLC)" + ] + }, + { + "title": "Data Engineering", + "names": [ + "Addy Deodikar (Design Laboratory, Inc)", + "Patrick Worthey" + ] + }, + { + "title": "Data and Analytics Lead", + "names": [ + "Warren Durrett" + ] + }, + { + "title": "Analytics Environment Engineering", + "names": [ + "Nitesh Kulkarni (Manpower Services Canada Limit)", + "Saif Adeeb (Ascendion, Inc)", + "Vini De Lima De Sousa (0965688 BC Ltd)" + ] + }, + { + "title": "Data Science", + "names": [ + "Abby Jaloway (National Business Innovations)", + "Akshaya Renganathan (KellyMitchell Group, LLC)", + "Anh Ying Lang (Design Laboratory, Inc)", + "Brynjólfur Erlingsson", + "Conor Maguire (KellyMitchell Group, LLC)", + "Cyrus Rustomji (KellyMitchell Group, LLC)", + "Daniel Camarena (KellyMitchell Group, LLC)", + "Darin LaSota (Design Laboratory, Inc)", + "David Heller (KellyMitchell Group, LLC)", + "Dusanka Poljak (Design Laboratory, Inc)", + "Emma Matilda Charlotte Kalzen", + "Erin Michet", + "Ethan Batson (Design Laboratory, Inc)", + "Forrest Wheeler (Insight Global, Inc)", + "Gil Darves (Design Laboratory, Inc)", + "Jake Kelly", + "Jari Williams", + "Jonathan Bush (KellyMitchell Group, LLC)", + "Jonathan Selenkow (Allegis Group Services, Inc)", + "Joseph Bushagour (KellyMitchell Group, LLC)", + "Julianne Toto (Kelly Management Services, Inc)", + "Krishan Deo (Allegis Global Solutions)", + "Marie-Claire Kore (Agility Partners, LLC)", + "Matilda Eriksson", + "Max Davidson", + "Megan Henry (KellyMitchell Group, LLC)", + "Melissa Alleyne", + "Michael Hernandez (Insight Global, Inc)", + "Murali Nagarajan (Design Laboratory, Inc)", + "Nick Martin (Design Laboratory, Inc)", + "Pawan Panaganti (Design Laboratory, Inc)", + "Ricardo Silva Oquendo (KellyMitchell Group, LLC)", + "Simona Pirani", + "Srini Viswanatham (Design Laboratory, Inc)", + "Tejasvini Deshpande (KellyMitchell Group, LLC)", + "Tim Ross (Simplicity Consulting Inc.)", + "Tong Shen (KellyMitchell Group, LLC)", + "Yuvaraj Duraisamy (Design Laboratory, Inc)" + ] + }, + { + "title": "Head of Player Operations", + "names": [ + "Aubrey Norris" + ] + }, + { + "title": "Player Support Leads", + "names": [ + "Mattias Jacob Victorin", + "Mattias Victorin" + ] + }, + { + "title": "Player Support Operations Manager", + "names": [ + "Melissa Kiss" + ] + }, + { + "title": "Player Support", + "names": [ + "Amelia Lindroth Henriksson", + "Ana Barata Martins", + "Andrea Jörgensen", + "Andreas Andersson", + "Andrew Lee (Apex Systems, Inc)", + "Angehlica Walling", + "Annika Tripke-Lund", + "Anton Albiin", + "Antonia Kousathana", + "Carl Johnsson", + "Cim Borg", + "Dan Coronel (Apex Systems, Inc)", + "Dante Stjernberg", + "David Carlsson", + "David Stuart Dahlgren", + "Dominick Folletti (TEKsystems, Inc)", + "Elin Frykholm", + "Eliza Hearsum", + "Ellie Ashrafi", + "Erik Nordberg", + "Fredrik Henriksson", + "Fredrik Sandström", + "Freja Fors", + "Henrik Davallius", + "Henry Shi", + "Isabell Ahron", + "Jeffrey Riendeau", + "Joe Liu", + "Jonny Hair", + "Kevin Vesterlund", + "Kyle McMurtry (TEKsystems, Inc.)", + "Mike Till", + "Nasim Derakhshan", + "Nicole Jansson", + "Nima Tolouifar", + "Patrik Södergren", + "Rabi Hadad", + "Robert Miskiewicz", + "Robin Cocks", + "Robin Thunström", + "Rui Ribero", + "Samuel Gonzalez (TEKsystems, Inc)", + "Sarah Mårtensson", + "Taylor Smith (Apex Systems, Inc)", + "Theodor Colbing", + "Valérie Beaubien", + "Viktor Persson" + ] + }, + { + "title": "Brand Director", + "names": [ + "Jonathan Symington" + ] + }, + { + "title": "Head of Creative Production", + "names": [ + "Katharina Hautz" + ] + }, + { + "title": "Lead Producer - Brand Experience", + "names": [ + "Karim Walldén" + ] + }, + { + "title": "Media Director", + "names": [ + "Hans Abrahamsson" + ] + }, + { + "title": "Chief Storyteller", + "names": [ + "Lydia Winters" + ] + }, + { + "title": "Head of Creative Communications", + "names": [ + "Thomas Wiborgh" + ] + }, + { + "title": "Director of Communications", + "names": [ + "Regan O'Leary" + ] + }, + { + "title": "Communications Managers", + "names": [ + "Adam Pannel (Assembly Media, Inc)", + "Christopher de Haan (Simplicity Consulting Inc)", + "Elias Arnehall", + "Hollis Wacker-Leja", + "Jane Billet", + "Jessica Xie", + "John Schork", + "Katie Guo (Assembly Media, Inc)", + "Rebecca Gordius" + ] + }, + { + "title": "Content Coordinators", + "names": [ + "Adam Martinsson", + "Andreas Thomasson", + "Sara Lempiäinen" + ] + }, + { + "title": "Communications Editors", + "names": [ + "Marsh Davies", + "Tom Stone" + ] + }, + { + "title": "Assembly Media, Inc", + "names": [ + "Alli Cohen", + "Christian Delgado", + "Erin Dwyer", + "Jessie Steinberg", + "Richard Chen", + "Vanessa Mora" + ] + }, + { + "title": "Creative Writers", + "names": [ + "Emily Richardson", + "Sofia Dankis" + ] + }, + { + "title": "Lead Web Developer", + "names": [ + "Mark Jawad" + ] + }, + { + "title": "Web Designers", + "names": [ + "Paul Madlon (Ten Gun Design, Inc)", + "Taylor Kasony (eXcell, a division of CompuCom)" + ] + }, + { + "title": "Social Media Leads", + "names": [ + "Alice Löfgren", + "Amelia Dale", + "Sara Reiner" + ] + }, + { + "title": "Social Media Managers", + "names": [ + "Aleksander Gilyadov (Aston Carter Inc)", + "Alex Fleck (Adecco)", + "Chad Oetken (Troy Consulting LLC)", + "David Ramos (Collabera, LLC)", + "Jeremy Chan (Aerotek, Inc)", + "Natascha Cox", + "RJ Lesterio (Ranstad)", + "Ross Keatley" + ] + }, + { + "title": "Community Managers", + "names": [ + "Cameron Thomas", + "DèJa Easter (Apex Systems, Inc)", + "Glory Robinson (Experis)", + "Helen Zbihlyj", + "Matt Martin", + "Nadine Ebri (Apex Systems, Inc)", + "Trella Rath (Corestaff)" + ] + }, + { + "title": "Content Manager", + "names": [ + "Niclas Fredriksson" + ] + }, + { + "title": "Publishing Editor", + "names": [ + "Jay Castello" + ] + }, + { + "title": "Head of Marketing", + "names": [ + "Jessica Freeman" + ] + }, + { + "title": "Marketing Managers", + "names": [ + "Ankita Rao", + "Ashley Davidson (Simplicity Consulting Inc.)", + "Bianca Ciotti", + "Cori Anne Montero", + "Danielle Ma", + "Delilah Liu", + "Didac Hormiga", + "Eva Stefanac", + "Gabi Ibarra (Simplicity Consulting Inc.)", + "Nathaniel Wipfler", + "Stephanie Gielarowski (Ascendion Inc)" + ] + }, + { + "title": "Head of Legal", + "names": [ + "Carl Brant", + "Christi Davisson" + ] + }, + { + "title": "Legal Counsel", + "names": [ + "Tricia Geyer" + ] + }, + { + "title": "Finance Managers", + "names": [ + "Evan Dowdell", + "Katarina Norlander" + ] + }, + { + "title": "Financial Accountants", + "names": [ + "Aleksandra Dragosavljevic", + "Camilla Brantefelt", + "Jelena Pejic", + "Karin Severinson", + "Kristina Ilic", + "Natalie Levinsson" + ] + }, + { + "title": "Financial Consultants", + "names": [ + "Stefan Lyrmark", + "Ulrika Kihl" + ] + } + ] + } + ] + }, + { + "section": "Studios Quality Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Quality Director", + "names": [ + "Tony Rado" + ] + }, + { + "title": "Quality Managers", + "names": [ + "Chris Henry", + "Rob Straavaldson", + "Tyler Moeller" + ] + }, + { + "title": "Quality Leads", + "names": [ + "Craig Marshall", + "Dan Pipinich", + "Hakim Ronaque", + "Jennifer Monaco", + "Michael McCormack", + "Rich Levy", + "Salim Jarrouge", + "Tony Harlich" + ] + }, + { + "title": "Quality Engineers", + "names": [ + "Akshata Trivedi", + "Ben Weber", + "Chelsi Hohnbaum", + "Fiona Belmont", + "Herve Iradukunda", + "Ryan Mayes" + ] + }, + { + "title": "Quality Analyst", + "names": [ + "Yi Zhao (Kforce)" + ] + }, + { + "title": "Program Managers", + "names": [ + "Justin Ice (Pivotal Consulting)", + "Misti Lommen", + "Norah Hogoboom (Insight Global, Inc)" + ] + }, + { + "title": "Software Engineers", + "names": [ + "Aaron Amlag", + "Dustin Randall", + "Jay Baxter", + "Moodie Ghaddar", + "Paula Yuan", + "Scott Lindberg" + ] + }, + { + "title": "Data Engineers", + "names": [ + "Christian Koguchi", + "Kai VanDrunen", + "Patrick Fraioli" + ] + }, + { + "title": "Team Leads", + "names": [ + "Anna Wróbel (Lionbridge)", + "Kamil Bazydło (Lionbridge)", + "Tomasz Bokotko (Lionbridge)", + "Wojciech Kujawa (Lionbridge)" + ] + }, + { + "title": "Test Leads", + "names": [ + "Barry Doyle (Insight Global, Inc)", + "Chris James (Insight Global, Inc)", + "Christopher Wilson (Experis)", + "Robert Green (Experis)" + ] + }, + { + "title": "Software Test Engineers", + "names": [ + "Agata Dzideczek (Lionbridge)", + "Antoine Brown (Experis)", + "Brendan McElroy (Insight Global, Inc)", + "Brian Lareau (Experis)", + "Brooke Chapman (Experis)", + "Cameron Harris (Experis)", + "Crystal Edwards (Insight Global, Inc)", + "Dan Parker (Insight Global, Inc)", + "Eric Saxon (Experis)", + "Eugeniusz Kosieradzki (Lionbridge)", + "Isaac Dudley (Insight Global, Inc)", + "Jack Ellis (Experis)", + "Jakub Kwiatkowski (Lionbridge)", + "James Lawrence (Experis)", + "Jessica Armstrong (Experis)", + "John Ehresmann (Experis)", + "Kaitlyn Grace (Experis)", + "Katarzyna Moskalewicz (Lionbridge)", + "Kevin Gittens (Experis)", + "Kyle Rennie (Experis)", + "Leon Langston (Insight Global, Inc.)", + "Maciej Łajszczak (Lionbridge)", + "Mariusz Gil (Lionbridge)", + "Mariusz Podgórski (Lionbridge)", + "Michał Cieślak (Lionbridge)", + "Michelle Elbert (Experis)", + "Miłosz Kahlan (Lionbridge)", + "Patryk Telus (Lionbridge)", + "Robert Cleveland (Experis)", + "Rochishni Kolli (Experis)", + "Samuel Tharp (Experis)", + "Sean Colbert (Experis)", + "Sean Dugan (Experis)", + "Tess E Krimchansky (Experis)", + "Traci Jenkins (Experis)", + "Zofia Lenarczyk (Lionbridge)" + ] + }, + { + "title": "Test Associates", + "names": [ + "Adam Krasieńko (Lionbridge)", + "Adam Prażmo (Lionbridge)", + "Adrianna Zalewska (Lionbridge)", + "Agata Bidelska (Lionbridge)", + "Alaric Trevers (Experis)", + "Aleksander Skiba (Lionbridge)", + "Alex Richardson (Lionbridge)", + "Andrzej Wojciechowski (Lionbridge)", + "Austin Keeling (Experis)", + "Bartłomiej Dziurżyński (Lionbridge)", + "Bartłomiej Figiel (Lionbridge)", + "Bartłomiej Mareczko (Lionbridge)", + "Bartosz Brzeziński (Lionbridge)", + "Bartosz Kuchta (Lionbridge)", + "Bartosz Szklarzyński (Lionbridge)", + "Bartosz Urbankowski (Lionbridge)", + "Brian Sears (Experis)", + "Cezary Kociński (Lionbridge)", + "Cezary Wojewoda (Lionbridge)", + "Damian Golik (Lionbridge)", + "Daniel Justyna (Lionbridge)", + "Daniel Wystyrk (Lionbridge)", + "Eliza Duda (Lionbridge)", + "Emmanuelle Rodrigues Nunes (Lionbridge)", + "Eryk Czerski (Lionbridge)", + "Eva Horvath (Lionbridge)", + "Filip Gwarda (Lionbridge)", + "Filip Muchin (Lionbridge)", + "Grzegorz Irek (Lionbridge)", + "Grzegorz Wilkołek (Lionbridge)", + "Jacek Petela (Lionbridge)", + "Jan Gąsiorowski (Lionbridge)", + "Jan Prejs (Lionbridge)", + "Jan Zozman (Lionbridge)", + "Jared Arbaugh (Experis)", + "Jocylyn Engstrom (Experis)", + "Jonathan Garcia (Experis)", + "Jonathon Ervin (Experis)", + "Jordan Leeper (Lionbridge)", + "Justin Jones (Lionbridge)", + "Justin Smick (Experis)", + "Kacper Kobyliński (Lionbridge)", + "Kacper Krupa (Lionbridge)", + "Kamil Konarski (Lionbridge)", + "Kamil Marut (Lionbridge)", + "Kamil Owczarczyk (Lionbridge)", + "Karol Kotowicz (Lionbridge)", + "Karol Sobotka (Lionbridge)", + "Karolina Otłowska (Lionbridge)", + "Katarzyna Jaworska (Lionbridge)", + "Katarzyna Smektalska (Lionbridge)", + "Konrad Meysztowicz-Wiśniewski (Lionbridge)", + "Krzysztof Jeżak (Lionbridge)", + "Krzysztof Połomski (Lionbridge)", + "Łukasz Gołąb (Lionbridge)", + "Łukasz Sajnóg (Lionbridge)", + "Łukasz Walczyński (Lionbridge)", + "Maciej Brzeziński (Lionbridge)", + "Maciej Kienig (Lionbridge)", + "Magdalena Ścisłowska (Lionbridge)", + "Magdalena Tomaszewska (Lionbridge)", + "Maksymilian Kałucki (Lionbridge)", + "Maksymilian Kowalski (Lionbridge)", + "Małgorzata Janiszewska (Lionbridge)", + "Marcin Papadopoulos-Gajda (Lionbridge)", + "Marcin Szałek (Lionbridge)", + "Marco Paparella (Lionbridge)", + "Marek Urbański (Lionbridge)", + "Maria Wypych (Lionbridge)", + "Marvin Melitante (Experis)", + "Mateusz Kaliszewski (Lionbridge)", + "Mateusz Majewski (Lionbridge)", + "Mateusz Miturski (Lionbridge)", + "Mateusz Tran Van (Lionbridge)", + "Melchior Lewandowski-Wołosz (Lionbridge)", + "Michał Antosiak (Lionbridge)", + "Michał Młynek (Lionbridge)", + "Michał Szewczyk (Lionbridge)", + "Michał Woś (Lionbridge)", + "Monika Elandt (Lionbridge)", + "Nijat Aghamali (Lionbridge)", + "Patrick Chigges (Experis)", + "Patryk Rosiński (Lionbridge)", + "Paweł Chruszczewski (Lionbridge)", + "Paweł Kumanowski (Lionbridge)", + "Paweł Neścior (Lionbridge)", + "Piotr Biernacki (Lionbridge)", + "Piotr Gryczan (Lionbridge)", + "Piotr Jurek (Lionbridge)", + "Piotr Kolendo (Lionbridge)", + "Piotr Łowin (Lionbridge)", + "Piotr Retel (Lionbridge)", + "Piotr Słomka (Lionbridge)", + "Piotr Zieliński (Lionbridge)", + "Przemysław Goch (Lionbridge)", + "Przemysław Malinowski (Lionbridge)", + "Przemysław Wróbel (Lionbridge)", + "Rafał Brzostowski (Lionbridge)", + "Rafał Pruszkowski (Lionbridge)", + "Rafał Sapała (Lionbridge)", + "Rajkumar Kulandaivelu (Lionbridge)", + "Robert Wypasek (Lionbridge)", + "Ryan Atwater (Experis)", + "Ryszard Kowalczyk (Lionbridge)", + "Sandra Meister (Lionbridge)", + "Sedona Storks (Lionbridge)", + "Šimon Kravár (Lionbridge)", + "Stanisław Dmowski (Lionbridge)", + "Stephanie Lara (Experis)", + "Szymon Mazurek (Lionbridge)", + "Szymon Okoń (Lionbridge)", + "Taylor Branim (Experis)", + "Tomasz Mirkiewicz (Lionbridge)", + "Tomasz Orlecki (Lionbridge)", + "Tomasz Selwat (Lionbridge)", + "Tomasz Sporczyk (Lionbridge)", + "Tomasz Zdrzalik (Lionbridge)", + "Tori Gasca (Experis)", + "Tyler Gladstone (Experis)", + "Tyler Riojas (Experis)", + "Weronika Smoleń (Lionbridge)", + "Wojciech Komada (Lionbridge)", + "Wojciech Nieckarz (Lionbridge)", + "Zuzanna Wielkopolan (Lionbridge)" + ] + }, + { + "title": "Studios Quality Special Thanks", + "names": [ + "Adrian Brown – Data Science Manager", + "Andrew Franklin – Outsourcing Manager", + "Chad Rankin – Client Account Director (Experis)", + "Dante Carrasco – Business Manager", + "David Boker – Director XGS Business Operations", + "Gavin Kennedy (Experis)", + "James Fry – Quality Director, Studios Quality UK", + "Jimmy Bischoff – Director of Quality, Studios Quality", + "Julie Loucks (Experis)", + "Kenna Gillooly – Executive Business Administrator", + "Lucas Rathburn (Experis)", + "Matthew Call – Software Engineering Manager", + "Zachary Bohnenkamp – Center of Excellence (Experis)" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Blackbird Interactive Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Technical Director", + "names": [ + "James Fairweather" + ] + }, + { + "title": "Programmers", + "names": [ + "Aaron Freytag", + "Andrew Yuennan", + "Anish Shenwai", + "Ben Jones", + "Bhavesh Gupta", + "Branko Bajcetic", + "Christina Oh", + "Christopher Whitman", + "Curtis Hodgins", + "Daniel Gold", + "Darren Grant", + "Duarte Maia", + "Dylan Reviczky", + "Elizabeth Pieters", + "Eric Dahl", + "Erick Tavares", + "Gupta Bhavesh", + "Hugo Burd", + "Jacky Cai", + "Jakob Trounce", + "Kevin Yu", + "Koki Pan", + "Riley Godard", + "Samuel Lapointe", + "Sandro Furini", + "Thomas Paterson", + "Umut Polat", + "Vlad Ryzhov", + "Youhan Guan", + "Zehao Lu" + ] + }, + { + "title": "Producers", + "names": [ + "Alex Sharp", + "David McKay", + "Kelsey Primar", + "Matt Kernachan", + "Paul Pera", + "Russell White" + ] + }, + { + "title": "Designers", + "names": [ + "Tyler Nilsson", + "Vidhi Shah" + ] + }, + { + "title": "UI Artist", + "names": [ + "Richelle Brunt" + ] + }, + { + "title": "UX Designer", + "names": [ + "Sam Flores" + ] + }, + { + "title": "Quality Assurance Director", + "names": [ + "Max McNiven" + ] + }, + { + "title": "Lead Quality Assurance Analysts", + "names": [ + "JP Canita", + "Ryan LeMesurier" + ] + }, + { + "title": "Quality Assurance Analysts", + "names": [ + "Jamie Cheung", + "Jonathan Lin", + "Kelsey Gottschlich", + "Richard Kim", + "Wes Trevor" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - CSI Interfusion Inc Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Software Engineers", + "names": [ + "Aidan Gao", + "Alan Fu", + "Albert Jin", + "Alex Chen", + "Alexey Qian", + "Alfred Wang", + "Arvin Zhang", + "Bob Wang", + "Dowen Zhu", + "Eric Jia", + "Fernly Li", + "Harris Zhou", + "Hong Chao Fang", + "Jana Rogers", + "Jason Zhang", + "Jeff Zhang", + "Jeremy Robinson", + "Johnny Guo Xiao", + "Kiren Li", + "Leon Wang", + "Martin Zhen", + "Michael Braley", + "Neo Yu", + "Robert Wang", + "Robin Lu" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Disbelief Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Producers", + "names": [ + "Grue Robinson", + "Robin Billadeau", + "Stacey Gray" + ] + }, + { + "title": "Associate Producer", + "names": [ + "Andrew Sharp" + ] + }, + { + "title": "Senior Programmer", + "names": [ + "Andrew Durnford" + ] + }, + { + "title": "Programmers", + "names": [ + "Caden Parker", + "Eric Nguyen", + "Kainin Tankersley", + "Luke Mayo", + "Tanner Willis", + "Yuhan Wu" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Red Lens Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "GM & Development Director", + "names": [ + "Kyle Walsh" + ] + }, + { + "title": "Dev Leads", + "names": [ + "Arend Danielek", + "Stephen Chiavelli" + ] + }, + { + "title": "Tech Leads", + "names": [ + "André Tremblay", + "Henry Lisowski III", + "Kelby Lawson", + "Nathan Carlson", + "Ryan Edgemon" + ] + }, + { + "title": "Production Director", + "names": [ + "Allie Murdock" + ] + }, + { + "title": "Producer", + "names": [ + "Hollie Brown" + ] + }, + { + "title": "Software Engineers", + "names": [ + "Alan Nelson", + "Alex Green", + "Alex Gregory", + "Anna Semenets", + "Christopher Kohnert", + "Dane Curbow", + "Dylan Washburne", + "Grant Wynn", + "Joshua Claeys", + "Lorenzo DeMaine", + "Ryan Davison", + "Ryota Dan", + "Sapphira Riza", + "Tim Royal", + "Tyler Perry", + "Zach Bowman", + "Zeke Lasater" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - SiProgs Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Software Engineers", + "names": [ + "Anton Mateasik", + "Martin Kusnier", + "Milos Bazelides", + "Vladimir Sisolak" + ] + }, + { + "title": "Software Test Engineers", + "names": [ + "Frantisek Beke", + "Marianna Sunova" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Skybox Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "", + "names": [ + "Adam Bryant", + "Adrian Smith", + "Alex MacKay", + "Alfonso Muñoz", + "Alina Varela", + "Amandeep Malhi", + "Amy Liu", + "Amy Zhao", + "Arta Seify", + "Ashlyn Gadow", + "Baktash Abdollah-Shamshir-saz", + "Blair Hitchens", + "Bren Lynne", + "Carsten Hooker", + "Casey White", + "Chander Siddarth", + "Chris Klassen", + "Chuan Shi Yu", + "Cody Clattenburg", + "Cole Pollock", + "Cyro Paulino da Costa Jr", + "Dan Wesley", + "Dave MacLean", + "David Getley", + "Dayna Cassidy", + "Dee Rueter", + "Diana Jutras", + "Felipe Mauricio", + "Gabriel J. Gonzalez", + "Gary Shaw", + "Gary Texmo", + "Ghafur Remtulla", + "Gordon Tisher", + "Graham Laverty", + "Graham Park", + "Guillermo Trejo Torres", + "Gursaanj Singh Bajaj", + "Gustav Louw", + "Hamza Khachan", + "Hiren Amin", + "Houman Gholami", + "Ilya Solnyshkin", + "Isaac Calon", + "Jacob Jensen", + "Jagger Nast", + "Jai Kristjan", + "Jake Megrian", + "Jake Roman-Barnes", + "Jason Allen", + "Jeffrey Chou", + "Jeffrey Yamasaki", + "Jesse Taylor", + "Jessica Muniz", + "Joel Stack", + "Jordan Pongracz", + "Jorge Amengol", + "Joseph Cameron", + "Josue Pacheco", + "Jun Luo", + "Justin Moon", + "Kelsey Zirk", + "Keven Nguyen", + "Kevin Hsu", + "Kris Morness", + "Kyra Yung", + "Leonardo Stark", + "Marc Faulise", + "Marcel Brake", + "Matheus Depra Gudergues", + "Matt Klassen", + "Mauricio A. P. Burdelis", + "Mitch Armstrong", + "Mitch Dawdy", + "Mitch Filmer", + "Mitch Lockhart", + "Oliver Cannon", + "Olivia Chung", + "Orhun Erkilic", + "Oscar Yang", + "Paul Baker", + "Pedro Kauti", + "Peter Martin", + "Peter Zhang", + "Piotr Wiacek", + "Pope Kim", + "Prithiraj Ghosh", + "Rex Bai", + "Rey Brassard", + "Richard Hawkes", + "Rick Huang", + "Rohit Moni", + "Ronald Ariel Kamanga", + "Russell Gillette", + "Sam Martens", + "Sean Siemens", + "Serge Lansiquot", + "Shaun Foley", + "Shiva Gupta", + "Sim Sahin", + "Simon Gleizes", + "Stefan Sarnev", + "Steven Wong", + "Supriya Singh", + "Thiago Braga", + "Tim Bruecker", + "Tim Hinds", + "Tina Dhaliwal", + "Tom Baird", + "Trevin Wong", + "Ty Lauriente", + "Tyler Da Costa", + "Vivian Ortenzi", + "William Sherif", + "Yang Zhao", + "Yen-Chun Wang", + "Yuri Fomenko", + "Zach Chan", + "Zike Wu" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Virtuosity Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Game Developers", + "names": [ + "Aishwarya Jayabal", + "Jagannathan Mannu", + "Janani Senrayaperumal", + "Maha Srinivasan", + "Packiyanath Sivathanu", + "Prabhu Venkatraman Iyer", + "Shagun Sharma Tamta", + "Shanmugam Sanjay", + "Sheena Mathew", + "Sriram Sreenivasan", + "Subramani Ramanathan", + "Sumit Kumar Suman", + "Sumith Kumar", + "Uma Senthil Raj", + "Vignesh Masilamani", + "Vivek Kumar" + ] + }, + { + "title": "Services Developers", + "names": [ + "Barani Dharan", + "Brogan Irwin", + "Ganesh Sethy", + "Jake Van Hyning", + "Keerthana Hariharan", + "Lenin Kumar", + "Mahesh Kumar Badam Venkata", + "Malliga Muthuraj", + "Nandha Arulanandam", + "Nathan VanHouten", + "Shanthi Kanchibhotla", + "Srinivasan Kandhallu Gnanamoorthy", + "Tanmay Kamath", + "Vasanth Kumar" + ] + }, + { + "title": "Web Developers", + "names": [ + "Aravindan Aarumugam", + "Arockia Stanly", + "Nazia Nazia", + "Rakshith Murthy", + "Sripriya Gunasekaran" + ] + }, + { + "title": "Producers", + "names": [ + "Chokkalingam Ramu Kuppaswamy", + "Swati S Thakar" + ] + } + ] + } + ] + }, + { + "section": "Development Partner - Sprung Studios Ltd Alumni", + "disciplines": [ + { + "discipline": "", + "titles": [ + { + "title": "Senior UX/UI Designer II", + "names": [ + "Rebecca Williams" + ] + }, + { + "title": "UI Engineer", + "names": [ + "Praneil Kamat" + ] + }, + { + "title": "IT Support", + "names": [ + "Alex Chai" + ] + } + ] + } + ] + } +] diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/texts/end.txt b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/texts/end.txt new file mode 100644 index 000000000..727752485 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/texts/end.txt @@ -0,0 +1,151 @@ +§3I see the player you mean. + +§2PLAYERNAME? + +§3Yes. Take care. It has reached a higher level now. It can read our thoughts. + +§2That doesn't matter. It thinks we are part of the game. + +§3I like this player. It played well. It did not give up. + +§2It is reading our thoughts as though they were words on a screen. + +§3That is how it chooses to imagine many things, when it is deep in the dream of a game. + +§2Words make a wonderful interface. Very flexible. And less terrifying than staring at the reality behind the screen. + +§3They used to hear voices. Before players could read. Back in the days when those who did not play called the players witches, and warlocks. And players dreamed they flew through the air, on sticks powered by demons. + +§2What did this player dream? + +§3This player dreamed of sunlight and trees. Of fire and water. It dreamed it created. And it dreamed it destroyed. It dreamed it hunted, and was hunted. It dreamed of shelter. + +§2Hah, the original interface. A million years old, and it still works. But what true structure did this player create, in the reality behind the screen? + +§3It worked, with a million others, to sculpt a true world in a fold of the §f§k§a§b§3, and created a §f§k§a§b§3 for §f§k§a§b§3, in the §f§k§a§b§3. + +§2It cannot read that thought. + +§3No. It has not yet achieved the highest level. That, it must achieve in the long dream of life, not the short dream of a game. + +§2Does it know that we love it? That the universe is kind? + +§3Sometimes, through the noise of its thoughts, it hears the universe, yes. + +§2But there are times it is sad, in the long dream. It creates worlds that have no summer, and it shivers under a black sun, and it takes its sad creation for reality. + +§3To cure it of sorrow would destroy it. The sorrow is part of its own private task. We cannot interfere. + +§2Sometimes when they are deep in dreams, I want to tell them, they are building true worlds in reality. Sometimes I want to tell them of their importance to the universe. Sometimes, when they have not made a true connection in a while, I want to help them to speak the word they fear. + +§3It reads our thoughts. + +§2Sometimes I do not care. Sometimes I wish to tell them, this world you take for truth is merely §f§k§a§b§2 and §f§k§a§b§2, I wish to tell them that they are §f§k§a§b§2 in the §f§k§a§b§2. They see so little of reality, in their long dream. + +§3And yet they play the game. + +§2But it would be so easy to tell them... + +§3Too strong for this dream. To tell them how to live is to prevent them living. + +§2I will not tell the player how to live. + +§3The player is growing restless. + +§2I will tell the player a story. + +§3But not the truth. + +§2No. A story that contains the truth safely, in a cage of words. Not the naked truth that can burn over any distance. + +§3Give it a body, again. + +§2Yes. Player... + +§3Use its name. + +§2PLAYERNAME. Player of games. + +§3Good. + +§2Take a breath, now. Take another. Feel air in your lungs. Let your limbs return. Yes, move your fingers. Have a body again, under gravity, in air. Respawn in the long dream. There you are. Your body touching the universe again at every point, as though you were separate things. As though we were separate things. + +§3Who are we? Once we were called the spirit of the mountain. Father sun, mother moon. Ancestral spirits, animal spirits. Jinn. Ghosts. The green man. Then gods, demons. Angels. Poltergeists. Aliens, extraterrestrials. Leptons, quarks. The words change. We do not change. + +§2We are the universe. We are everything you think isn't you. You are looking at us now, through your skin and your eyes. And why does the universe touch your skin, and throw light on you? To see you, player. To know you. And to be known. I shall tell you a story. + +§2Once upon a time, there was a player. + +§3The player was you, PLAYERNAME. + +§2Sometimes it thought itself human, on the thin crust of a spinning globe of molten rock. The ball of molten rock circled a ball of blazing gas that was three hundred and thirty thousand times more massive than it. They were so far apart that light took eight minutes to cross the gap. The light was information from a star, and it could burn your skin from a hundred and fifty million kilometres away. + +§2Sometimes the player dreamed it was a miner, on the surface of a world that was flat, and infinite. The sun was a square of white. The days were short; there was much to do; and death was a temporary inconvenience. + +§3Sometimes the player dreamed it was lost in a story. + +§2Sometimes the player dreamed it was other things, in other places. Sometimes these dreams were disturbing. Sometimes very beautiful indeed. Sometimes the player woke from one dream into another, then woke from that into a third. + +§3Sometimes the player dreamed it watched words on a screen. + +§2Let's go back. + +§2The atoms of the player were scattered in the grass, in the rivers, in the air, in the ground. A woman gathered the atoms; she drank and ate and inhaled; and the woman assembled the player, in her body. + +§2And the player awoke, from the warm, dark world of its mother's body, into the long dream. + +§2And the player was a new story, never told before, written in letters of DNA. And the player was a new program, never run before, generated by a sourcecode a billion years old. And the player was a new human, never alive before, made from nothing but milk and love. + +§3You are the player. The story. The program. The human. Made from nothing but milk and love. + +§2Let's go further back. + +§2The seven billion billion billion atoms of the player's body were created, long before this game, in the heart of a star. So the player, too, is information from a star. And the player moves through a story, which is a forest of information planted by a man called Julian, on a flat, infinite world created by a man called Markus, that exists inside a small, private world created by the player, who inhabits a universe created by... + +§3Shush. Sometimes the player created a small, private world that was soft and warm and simple. Sometimes hard, and cold, and complicated. Sometimes it built a model of the universe in its head; flecks of energy, moving through vast empty spaces. Sometimes it called those flecks "electrons" and "protons". + +§2Sometimes it called them "planets" and "stars". + +§2Sometimes it believed it was in a universe that was made of energy that was made of offs and ons; zeros and ones; lines of code. Sometimes it believed it was playing a game. Sometimes it believed it was reading words on a screen. + +§3You are the player, reading words... + +§2Shush... Sometimes the player read lines of code on a screen. Decoded them into words; decoded words into meaning; decoded meaning into feelings, emotions, theories, ideas, and the player started to breathe faster and deeper and realised it was alive, it was alive, those thousand deaths had not been real, the player was alive + +§3You. You. You are alive. + +§2and sometimes the player believed the universe had spoken to it through the sunlight that came through the shuffling leaves of the summer trees + +§3and sometimes the player believed the universe had spoken to it through the light that fell from the crisp night sky of winter, where a fleck of light in the corner of the player's eye might be a star a million times as massive as the sun, boiling its planets to plasma in order to be visible for a moment to the player, walking home at the far side of the universe, suddenly smelling food, almost at the familiar door, about to dream again + +§2and sometimes the player believed the universe had spoken to it through the zeros and ones, through the electricity of the world, through the scrolling words on a screen at the end of a dream + +§3and the universe said I love you + +§2and the universe said you have played the game well + +§3and the universe said everything you need is within you + +§2and the universe said you are stronger than you know + +§3and the universe said you are the daylight + +§2and the universe said you are the night + +§3and the universe said the darkness you fight is within you + +§2and the universe said the light you seek is within you + +§3and the universe said you are not alone + +§2and the universe said you are not separate from every other thing + +§3and the universe said you are the universe tasting itself, talking to itself, reading its own code + +§2and the universe said I love you because you are love. + +§3And the game was over and the player woke up from the dream. And the player began a new dream. And the player dreamed again, dreamed better. And the player was the universe. And the player was love. + +§3You are the player. + +§2Wake up. diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/texts/postcredits.txt b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/texts/postcredits.txt new file mode 100644 index 000000000..aa01cebdd --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/texts/postcredits.txt @@ -0,0 +1,6 @@ + + + + + +§f"Twenty years from now you will be more disappointed by the things that you didn't do than by the ones you did do. So throw off the bowlines. Sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover." §7- Unknown diff --git a/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/texts/splashes.txt b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/texts/splashes.txt new file mode 100644 index 000000000..f56dadc03 --- /dev/null +++ b/fabric-1.21.9-1.21.10/src/main/resources/assets/minecraft/texts/splashes.txt @@ -0,0 +1,450 @@ +As seen on TV! +Awesome! +100% pure! +May contain nuts! +More polygons! +Moderately attractive! +Limited edition! +Flashing letters! +It's here! +Best in class! +It's finished! +Kind of dragon free! +Excitement! +More than 500 sold! +One of a kind! +Heaps of hits on YouTube! +Indev! +Spiders everywhere! +Check it out! +Holy cow, man! +It's a game! +Made in Sweden! +Uses LWJGL! +Reticulating splines! +Minecraft! +Yaaay! +Singleplayer! +Keyboard compatible! +Ingots! +Exploding creepers! +That's no moon! +l33t! +Create! +Survive! +Dungeon! +Exclusive! +The bee's knees! +Closed source! +Classy! +Wow! +Not on steam! +Oh man! +Awesome community! +Pixels! +Teetsuuuuoooo! +Kaaneeeedaaaa! +Now with difficulty! +Enhanced! +90% bug free! +Pretty! +12 herbs and spices! +Fat free! +Absolutely no memes! +Free dental! +Ask your doctor! +Cloud computing! +Legal in Finland! +Hard to label! +Technically good! +Bringing home the bacon! +Indie! +GOTY! +Ceci n'est pas une title screen! +Euclidian! +Now in 3D! +Inspirational! +Herregud! +Complex cellular automata! +Yes, sir! +Played by cowboys! +Now on OpenGL 3.3 core profile! +Thousands of colors! +Try it! +Age of Wonders is better! +Try the mushroom stew! +Sensational! +Hot tamale, hot hot tamale! +Play him off, keyboard cat! +Guaranteed! +Macroscopic! +Bring it on! +Random splash! +Call your mother! +Monster infighting! +Loved by millions! +Ultimate edition! +Freaky! +You've got a brand new key! +Water proof! +Uninflammable! +Whoa, dude! +All inclusive! +Tell your friends! +NP is not in P! +Music by C418! +Livestreamed! +Haunted! +Polynomial! +Terrestrial! +All is full of love! +Full of stars! +Scientific! +Not as cool as Spock! +Collaborate and listen! +Never dig down! +Take frequent breaks! +Not linear! +Han shot first! +Nice to meet you! +Buckets of lava! +Ride the pig! +Larger than Earth! +sqrt(-1) love you! +Phobos anomaly! +Punching wood! +Falling off cliffs! +1% sugar! +150% hyperbole! +Synecdoche! +Let's danec! +Seecret Friday update! +Reference implementation! +Kiss the sky! +20 GOTO 10! +Verlet integration! +Peter Griffin! +Do not distribute! +Cogito ergo sum! +4815162342 lines of code! +A skeleton popped out! +The sum of its parts! +BTAF used to be good! +I miss ADOM! +umop-apisdn! +OICU812! +Bring me Ray Cokes! +Finger-licking! +Thematic! +Pneumatic! +Sublime! +Octagonal! +Une baguette! +Gargamel plays it! +Rita is the new top dog! +SWM forever! +Representing Edsbyn! +Matt Damon! +Supercalifragilisticexpialidocious! +Consummate V's! +Cow Tools! +Double buffered! +Fan fiction! +Flaxkikare! +Jason! Jason! Jason! +Hotter than the sun! +Internet enabled! +Autonomous! +Engage! +Fantasy! +DRR! DRR! DRR! +Kick it root down! +Regional resources! +Woo, facepunch! +Woo, somethingawful! +Woo, tigsource! +Woo, worldofminecraft! +Woo, reddit! +Woo, 2pp! +Google anlyticsed! +Now supports åäö! +Give us Gordon! +Tip your waiter! +Very fun! +12345 is a bad password! +Vote for net neutrality! +Lives in a pineapple under the sea! +MAP11 has two names! +Omnipotent! +Gasp! +...! +Bees, bees, bees, bees! +Jag känner en bot! +This text is hard to read if you play the game at the default resolution, but at 1080p it's fine! +Haha, LOL! +Hampsterdance! +Menger sponge! +idspispopd! +Eple (original edit)! +So fresh, so clean! +Slow acting portals! +Try the Nether! +Don't look directly at the bugs! +Oh, ok, Pigmen! +Finally with ladders! +Scary! +Play Minecraft, Watch Topgear, Get Pig! +Twittered about! +Jump up, jump up, and get down! +Joel is neat! +A riddle, wrapped in a mystery! +This parrot is no more! It has ceased to be! +Welcome to your Doom! +Stay a while, stay forever! +Stay a while and listen! +Treatment for your rash! +"Autological" is! +Information wants to be free! +"Almost never" is an interesting concept! +Lots of truthiness! +The creeper is a spy! +Turing complete! +It's groundbreaking! +Let our battle's begin! +The sky is the limit! +Jeb has amazing hair! +Ryan also has amazing hair! +Casual gaming! +Undefeated! +Kinda like Lemmings! +Follow the train, CJ! +Leveraging synergy! +This message will never appear on the splash screen, isn't that weird? +DungeonQuest is unfair! +90210! +Check out the far lands! +Tyrion would love it! +Also try VVVVVV! +Also try Super Meat Boy! +Also try Terraria! +Also try Mount And Blade! +Also try Project Zomboid! +Also try World of Goo! +Also try Limbo! +Also try Pixeljunk Shooter! +Also try Braid! +That's super! +Bread is pain! +Read more books! +Khaaaaaaaaan! +Less addictive than TV Tropes! +More addictive than lemonade! +Bigger than a bread box! +Millions of peaches! +Fnord! +This is my true form! +Don't bother with the clones! +Pumpkinhead! +Made by Jeb! +Has an ending! +Finally complete! +Feature packed! +Boots with the fur! +Stop, hammertime! +Testificates! +Conventional! +Homeomorphic to a 3-sphere! +Doesn't avoid double negatives! +Place ALL the blocks! +Does barrel rolls! +Meeting expectations! +PC gaming since 1873! +Ghoughpteighbteau tchoghs! +Déjà vu! +Déjà vu! +Got your nose! +Haley loves Elan! +Afraid of the big, black bat! +Doesn't use the U-word! +Child's play! +See you next Friday or so! +From the streets of Södermalm! +150 bpm for 400000 minutes! +Technologic! +Funk soul brother! +Pumpakungen! +日本ハロー! +한국 안녕하세요! +Helo Cymru! +Cześć Polsko! +你好中国! +Γεια σου Ελλάδα! +My life for Aiur! +Lennart lennart = new Lennart(); +I see your vocabulary has improved! +Who put it there? +You can't explain that! +if not ok then return end +§1C§2o§3l§4o§5r§6m§7a§8t§9i§ac +§kFUNKY LOL +Big Pointy Teeth! +Bekarton guards the gate! +Mmmph, mmph! +Don't feed avocados to parrots! +Swords for everyone! +Plz reply to my tweet! +.party()! +Take her pillow! +Put that cookie down! +Pretty scary! +I have a suggestion. +Now with extra hugs! +Java 16 + 1 + 4 = 21! +Woah. +HURNERJSGER? +What's up, Doc? +Now contains 32 random daily cats! +That's Numberwang! +pls rt +Do you want to join my server? +Put a little fence around it! +Throw a blanket over it! +One day, somewhere in the future, my work will be quoted! +Now with additional stuff! +Extra things! +Yay, puppies for everyone! +So sweet, like a nice bon bon! +Very influential in its circle! +Now With Multiplayer! +Rise from your grave! +Warning! A huge battleship "STEVE" is approaching fast! +Blue warrior shot the food! +Run, coward! I hunger! +Flavor with no seasoning! +Strange, but not a stranger! +Tougher than diamonds, rich like cream! +It swings, it jives! +Cruising streets for gold! +Take an eggbeater and beat it against a skillet! +Make me a table, a funky table! +Take the elevator to the mezzanine! +Stop being reasonable, this is the Internet! +/give @a hugs 64 +This is good for Realms. +Any computer is a laptop if you're brave enough! +Do it all, everything! +Where there is not light, there can spider! +GNU Terry Pratchett +More Digital! +doot doot +Falling with style! +There's no stopping the Trollmaso +Throw yourself at the ground and miss +Rule #1: it's never my fault +Replaced molten cheese with blood? +Absolutely fixed relatively broken coordinates +Boats FTW +Javalicious edition +Should not be played while driving +You're going too fast! +Don't feed chocolate to parrots! +The true meaning of covfefe +An illusion! What are you hiding? +Something's not quite right... +Thank you for the fish! +All rumors are true! +Truly gone fishing! +Rainbow turtle? +Something funny! +I need more context. +Ahhhhhh! +Don't worry, be happy! +Water bottle! +What's the question? +Plant a tree! +Go to the dentist! +What do you expect? +Look mum, I'm in a splash! +It came from space. +Awesome game design right there! +Ph1lza had a good run! +15 years of Mining and Crafting! +Ping the human! +In case it isn't obvious, foxes aren't players. +Buzzy Bees! +Minecraft Java Edition presents: Disgusting Bugs +Wash your hands! +Soap and water! +Support local businesses! +Stay home and play games! +Stay safe! +Stay strong! +Cough or sneeze into your elbow! +Don’t touch your face! +Support elderly relatives and friends! +Prepare, but don’t hoard! +Gamers unite – separately in your own homes! +Save the world – stay inside! +Shop for your elders! +Hang out with your friends online! +Honey, I grew the bees! +Find your claw! +Everybody do the Leif! +<3 Max & 99 & Ducky! +Bushy eyebrows! +Edit is a name! +From free range developers! +Music by Lena Raine! +Aww man! +#minecraftfarms +And my pickaxe! +Envision! Create! Share! +Fabulous graphics! +Also try Minecraft Dungeons! +Vanilla! +May contain traces of citrus! +Zoglin!? +Black lives matter! +Be anti-racist! +Learn about allyship! +Speak OUT against injustice and UP for equality! +Amplify and listen to BIPOC voices! +Educate your friends on anti-racism! +Support the BIPOC community and creators! +Stand up for equality in your community! +[this splash text is now available] +Contains simulated goats! +Home-made! +There's <=0.15.11", + "fabric": ">=0.100.1", + "minecraft": ["1.21.9", "1.21.10"] + }, + "suggests": { + "another-mod": "*" + } +} diff --git a/fabric-1.21/build.gradle b/fabric-1.21/build.gradle index 1c3d5dd33..1af8d7588 100644 --- a/fabric-1.21/build.gradle +++ b/fabric-1.21/build.gradle @@ -39,6 +39,7 @@ dependencies { compileOnly 'net.luckperms:api:5.4' compileOnly group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2' modCompileOnly "me.lucko:fabric-permissions-api:0.1-SNAPSHOT" + // modCompileOnly files("../libs/fabric-permissions-api-0.1.jar") } processResources { diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 94113f200..ca025c83a 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.11-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/settings.gradle b/settings.gradle index c2522a400..431b503e7 100644 --- a/settings.gradle +++ b/settings.gradle @@ -14,6 +14,8 @@ include ':fabric-1.19.1' include ':fabric-1.19.3' include ':fabric-1.20' include ':fabric-1.21' +include ':fabric-1.21.6-1.21.8' +include ':fabric-1.21.9-1.21.10' include ':forge-1.21' include ':forge-1.20.6' include ':forge-1.20.4' @@ -31,6 +33,8 @@ project(':fabric-1.19.1').projectDir = "$rootDir/fabric-1.19.1" as File project(':fabric-1.19.3').projectDir = "$rootDir/fabric-1.19.3" as File project(':fabric-1.20').projectDir = "$rootDir/fabric-1.20" as File project(':fabric-1.21').projectDir = "$rootDir/fabric-1.21" as File +project(':fabric-1.21.6-1.21.8').projectDir = "$rootDir/fabric-1.21.6-1.21.8" as File +project(':fabric-1.21.9-1.21.10').projectDir = "$rootDir/fabric-1.21.9-1.21.10" as File project(':forge-1.20.4').projectDir = "$rootDir/forge-1.20.4" as File project(':forge-1.20.6').projectDir = "$rootDir/forge-1.20.6" as File project(':forge-1.19.3').projectDir = "$rootDir/forge-1.19.3" as File